* {
  box-sizing: border-box;
}

:root {
  --navy: #07233f;
  --navy-2: #0f3156;
  --text: #0d1b33;
  --muted: #36445a;
  --orange: #f96a11;
  --orange-2: #ff7a1c;
  --green: #1caf55;
  --bg: #eef3f8;
  --card: #ffffff;
  --shadow: 0 18px 42px rgba(11, 35, 66, 0.16);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #ffffff;
}

body {
  min-width: 320px;
}

img {
  /* max-width: 100%; */
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100%, 1460px) !important;
  margin: 0 auto;
  padding: 0 30px;
}

.topbar {
  background: linear-gradient(90deg, #08203d 0%, #0a2b4e 100%);
  color: #fff;
  font-size: 18px;
}

.topbar-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 34px;
}

.top-item {
  opacity: 0.95;
  white-space: nowrap;
}

.lang-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.flag {
  display: inline-block;
  width: 22px;
  height: 14px;
  border-radius: 2px;
}

.flag-ua {
  background: linear-gradient(#2978ff 0 50%, #ffc936 50% 100%);
}

.mini-icon {
  opacity: 0.9;
  font-size: 14px;
}

.navbar {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(10, 43, 78, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.navbar-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 410px;
  max-width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: #223047;
}

.nav-links span {
  font-size: 10px;
  margin-left: 6px;
}

.cta-nav {
  margin-left: 12px;
  background: linear-gradient(180deg, #ff8b2f 0%, #f96a11 100%);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  padding: 18px 28px;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(249, 106, 17, 0.28);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 32px;
}

.hero-wrap {
  overflow: hidden;
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(250,251,253,0.98) 0%, rgba(244,247,251,0.95) 28%, rgba(237,242,248,0.70) 52%, rgba(233,239,245,0.36) 100%),
    linear-gradient(180deg, #e9eff5 0%, #f4f7fb 100%);
  min-height: 700px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.65) 26%, rgba(255,255,255,0) 58%),
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.72) 22%, rgba(255,255,255,0.0) 56%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(420px, 1fr);
  gap: 16px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  max-width: 500px;
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 0.94;
  letter-spacing: -1.8px;
  font-weight: 900;
  color: #07182f;
}

.accent {
  color: var(--orange);
}

.lead {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.36;
  color: #1f2b3f;
  max-width: 470px;
}

.lead strong {
  font-weight: 800;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.25;
  color: #17253a;
}

.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  background: linear-gradient(180deg, #1bc35c 0%, #109a43 100%);
  box-shadow: 0 6px 16px rgba(24, 176, 79, 0.28);
}

.cta-main {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
  padding: 15px 20px 13px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(242, 95, 8, 0.30);
}

.cta-main > span {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.cta-main small {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.96;
}

.mobile-hero-cta {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    margin-top: 8px;
    padding: 9px 12px 8px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(242, 95, 8, 0.18);
  }

.hero-badges {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  max-width: 500px;
}

.hero-badge {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(34, 28, 19, 0.60) 0%, rgba(25, 22, 25, 0.78) 100%);
  box-shadow: 0 14px 30px rgba(18, 22, 32, 0.20);
  backdrop-filter: blur(10px);
}

.badge-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.badge-icon-shield {
  color: #31d46b;
}

.badge-text {
  min-width: 0;
}

.badge-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-stars {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 15px;
  line-height: 1;
}

.tp .badge-stars {
  color: #18d67c;
}

.gg .badge-stars {
  color: #ffc61a;
}

.badge-score {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.brand-slider-section {
  position: relative;
  z-index: 3;
  margin-top: -8px;
  margin-bottom: 18px;
}

.brand-slider-shell {
    display: flex;
    gap: 16px;
    overflow: hidden;
    /* background: rgba(255, 255, 255, 0.94); */
    /* border: 1px solid rgba(14, 37, 65, 0.08); */
    /* border-radius: 16px; */
    padding: 12px 0;
    /* box-shadow: 0 12px 28px rgba(13, 35, 66, 0.10); */
}

.brand-slider-track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  animation: brand-marquee 24s linear infinite;
}

.brand-slide {
  width: 194px;
  height: 62px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  box-shadow: inset 0 0 0 1px rgba(13, 35, 66, 0.06);
}

.brand-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 16px));
  }
}

.hero-media {
  position: relative;
  min-height: 594px;
  overflow: visible;
}

.hero-image-shell {
  position: absolute;
  inset: 0 0 0 8px;
  overflow: hidden;
  border-radius: 0;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  transform: scale(1);
  filter: saturate(0.98) contrast(1.02);
}

.soft-fade {
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, rgba(242,246,250,0.96) 0%, rgba(242,246,250,0.72) 18%, rgba(242,246,250,0.08) 62%, rgba(242,246,250,0) 100%);
}

.promo-card {
  position: absolute;
  left: 3%;
  top: 44%;
  width: 172px;
  transform: rotate(-2.2deg);
  filter: drop-shadow(0 12px 20px rgba(188, 95, 0, 0.30));
  z-index: 2;
}

.promo-top {
  background: linear-gradient(180deg, #ffd35a 0%, #f2b52f 100%);
  border: 2px solid #d88409;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  color: #1d1a15;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 6px 8px 5px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

.promo-box {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #ff892e 0%, #e26010 100%);
  border: 2px solid #d88409;
  color: #fff6d8;
  border-radius: 0 0 6px 6px;
  text-align: center;
  padding: 9px 8px 10px;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.08;
}

.price-line {
  color: #fff;
  font-size: 18px;
  margin: 2px 0 1px;
}

.price-line span {
  font-size: 49px;
  line-height: 1;
  font-weight: 900;
  color: #fff2cf;
  text-shadow: 0 3px 0 rgba(130, 53, 0, 0.20);
}

.call-card {
  position: absolute;
  right: 14px;
  bottom: 18px;
  /* width: min(100%, 380px); */
  background: rgba(255,255,255,0.96);
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(10, 34, 63, 0.14);
  overflow: hidden;
  border: 1px solid rgba(18, 41, 69, 0.08);
}



.phone-line {
  font-size: 15px;
  color: #051a35;
}

.phone-line strong {
  font-size: 17px;
  font-weight: 900;
}

.callback-note {
  font-size: 14px;
  color: #2d3d52;
  white-space: normal;
  text-align: right;
}



.logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: center;
}

.mini-brand {
  font-size: 14px;
  font-weight: 900;
}

.call-button {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  text-align: left;
  background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 184px;
  box-shadow: 0 10px 18px rgba(242, 95, 8, 0.24);
}

.call-button-icon {
  grid-row: 1 / span 2;
  font-size: 22px;
  line-height: 1;
}

.call-button-text {
  display: block;
  font-size: 16px;
}

.call-button-number {
  display: block;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.95;
}

.bottom-proof {
  background: linear-gradient(180deg, #05192f 0%, #091f3b 100%);
  color: #fff;
  padding: 26px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.proof-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proof-block {
  min-height: 148px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 28px;
}

.proof-block:first-child {
  border-left: 0;
  padding-left: 0;
}

.shield {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 20%, #27d964 0%, #118b3c 100%);
  display: grid;
  place-items: center;
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.09);
  margin-right: 24px;
  clip-path: polygon(50% 0%, 88% 14%, 100% 40%, 93% 82%, 50% 100%, 7% 82%, 0% 40%, 12% 14%);
}

.guarantee h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
}

.guarantee p,
.reviews p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 19px;
  line-height: 1.34;
}

.reviews {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.stars {
  color: #f6c335;
  font-size: 28px;
}
.stars strong {
  color: #fff;
}

.small-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-blue { background: #2e78ff; width: 18px; height: 12px; }
.flag-yellow { background: #f5c533; width: 32px; height: 12px; }
.flag-orange { background: #ff8a3d; width: 18px; height: 12px; }

.text-brand {
  font-size: 20px;
  font-weight: 800;
}

.phone-panel {
  justify-content: space-between;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  background: rgba(255,255,255,0.98);
  color: #0d1b33;
  border-radius: 22px;
  padding: 24px 28px;
  border-left: 0;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-number {
  font-size: 22px;
  font-weight: 900;
}

.info-badge {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: #2d86f7;
  color: white;
  border-radius: 999px;
  font-weight: 800;
}

.small-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2e5178;
  font-weight: 900;
  font-size: 19px;
}

.services-highlight {
  background:
    linear-gradient(180deg, rgba(236, 242, 250, 0.94) 0%, rgba(232, 239, 248, 0.92) 100%);
  padding: 26px 0 34px;
}

.services-panel {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 12px 6px 0;
}

.services-panel h2 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 500;
  color: #243553;
}

.services-panel h2 strong {
  font-weight: 900;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(20, 43, 73, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 10px 22px rgba(12, 34, 63, 0.08);
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  flex: 0 0 auto;
}

.service-icon-blue {
  background: linear-gradient(180deg, #4fa7ff 0%, #1a6ed9 100%);
}

.service-icon-orange {
  background: linear-gradient(180deg, #ffb24c 0%, #f36b0d 100%);
}

.service-icon-navy {
  background: linear-gradient(180deg, #2f78c6 0%, #0d3f7a 100%);
}

.service-icon-deep {
  background: linear-gradient(180deg, #2e78c3 0%, #163e83 100%);
}

.service-tile h3 {
  margin: 0 0 3px;
  font-size: 14px;
  font-weight: 900;
  color: #1b2c49;
}

.service-tile p {
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
  color: #53647e;
}

.services-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(242, 95, 8, 0.28);
}

.services-cta span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.78);
  font-size: 12px;
}


.footer {
  background: url('background.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
  font-family: 'Inter', sans-serif;
}

/* Dark overlay for readability */
.footer-overlay {
  background:#153C61;
  padding: 60px 20px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logo */
.footer-left .logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-left ul,
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-left li,
.footer-col li {
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.9;
}

/* Columns */
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  opacity: 0.8;
}


@media (max-width: 1350px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 740px;
  }

  .hero-image-shell {
    position: relative;
    inset: auto;
  }

  .hero-image {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 100%;
  }

  .soft-fade {
    width: 28%;
  }

  .promo-card {
    left: 24px;
    top: 150px;
    transform: scale(0.86);
    transform-origin: left top;
  }

  .call-card {
    right: 20px;
    bottom: 20px;
    /* width: min(100%, 520px); */
  }

  .proof-inner {
    grid-template-columns: 1fr;
  }

  .proof-block {
    border-left: 0;
    padding-left: 0;
  }

  .brand-slider-section {
    margin-top: 12px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .topbar {
    font-size: 14px;
  }

  .topbar-inner,
  .topbar-left,
  .topbar-right {
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-links,
  .cta-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .brand img {
    width: 280px;
  }

  .hero-copy {
    padding-top: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 56px;
    letter-spacing: -1.8px;
  }

  .lead {
    font-size: 22px;
  }

  .benefits li {
    font-size: 21px;
  }

  .cta-main {
    min-width: auto;
    width: 100%;
  }

  .hero-badges {
    max-width: 100%;
  }

  .hero-media {
    min-height: 620px;
  }

  .call-card-top,
  .call-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-slide {
    width: 116px;
    height: 48px;
  }

  .services-panel {
    padding-top: 4px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-col {
    width: 100%;
  }

  .proof-inner {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .navbar-inner {
    min-height: 82px;
  }

  .hero {
    padding-bottom: 26px;
  }

  .hero-copy h1 {
    font-size: 24px;
    line-height: 0.92;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
  }

  .lead {
    font-size: 12px;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .benefits li {
    align-items: center;
    gap: 8px;
    font-size: 10px;
    line-height: 1.25;
  }

  .check {
    width: 14px;
    height: 14px;
    font-size: 9px;
    box-shadow: none;
  }

  .mobile-hero-cta {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    margin-top: 8px;
    padding: 9px 12px 8px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(242, 95, 8, 0.18);
  }

  .mobile-hero-cta > span {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.05;
  }

  .mobile-hero-cta small {
    font-size: 8px;
    font-weight: 700;
    opacity: 0.96;
  }

  .hero-inner {
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 8px;
    max-width: 100%;
  }

  .hero-badge {
    gap: 8px;
    padding: 7px 9px;
    border-radius: 10px;
  }

  .badge-icon {
    width: 18px;
    height: 18px;
  }

  .badge-title {
    font-size: 8px;
    margin-bottom: 2px;
  }

  .badge-stars {
    font-size: 9px;
    gap: 0;
  }

  .badge-score {
    font-size: 9px;
  }

  .hero-media {
    min-height: 210px;
    margin-top: 2px;
  }

  .hero-image-shell {
    inset: 0;
    border-radius: 14px;
  }

  .hero-image {
    border-radius: 14px;
    object-position: top center;
  }

  .soft-fade {
    display: none;
  }

  .promo-card {
    left: 2px;
    top: 6px;
    width: 94px;
    transform: rotate(-1.5deg);
  }

  .promo-top {
    font-size: 7px;
    padding: 4px 4px 3px;
  }

  .promo-box {
    padding: 5px 4px 6px;
    font-size: 7px;
  }

  .price-line {
    font-size: 10px;
  }

  .price-line span {
    font-size: 26px;
  }

  .hero .call-card {
    display: none;
  }

  .brand-slider-shell {
    border-radius: 14px;
    padding: 10px 0;
  }

  .brand-slide {
    width: 102px;
    height: 42px;
  }

  .proof-block {
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-panel h2 {
    font-size: 18px;
  }

  .services-cta {
    width: 100%;
    justify-content: center;
    font-size: 17px;
  }

  .shield {
    width: 78px;
    height: 78px;
    font-size: 40px;
    margin-right: 16px;
  }

  .guarantee h3,
  .stars,
  .phone-number {
    font-size: 20px;
  }

  .guarantee p,
  .reviews p,
  .small-logos {
    font-size: 16px;
  }
}

.proof-media-logos {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.media-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 94px;
  border-radius: 6px;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}

.media-logo-red {
  background: #de1c17;
}

.media-logo-red.outline {
  background: #de3126;
  font-size: 52px;
  letter-spacing: 2px;
}

.media-logo-pink {
  min-width: 132px;
  background: #df1253;
  font-size: 50px;
  font-style: italic;
}

.white-sections {
  background: #fff;
}

.story-section,
.service-showcase,
.feature-gallery,
.info-split,
.closing-overview {
  background: #fff;
  padding: 40px 0;
}

.feature-gallery {
  padding: 28px 0 44px;
}

.story-grid,
.feature-gallery-grid,
.info-split-grid,
.closing-overview-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 34px;
  align-items: center;
}

.story-photo-card,
.showcase-visual,
.gallery-visual-card {
  position: relative;
}

.story-frame,
.showcase-image-frame {
  background: #fff;
  border: 1px solid rgba(20, 43, 73, 0.08);
  border-radius: 30px;
  padding: 16px;
  box-shadow: 0 24px 56px rgba(12, 35, 66, 0.08);
}

.story-frame img,
.showcase-image-frame img,
.gallery-visual-card > img,
.info-split-media img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.story-counter {
  position: absolute;
  left: 18px;
  bottom: -18px;
  width: 220px;
  background: linear-gradient(180deg, #264f98 0%, #1d356d 100%);
  color: #fff;
  border-radius: 28px;
  padding: 24px 22px;
  box-shadow: 0 18px 42px rgba(18, 44, 84, 0.18);
}

.story-counter strong,
.closing-mini-card strong {
  display: block;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.95;
}

.story-counter span,
.closing-mini-card span {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
  margin-top: 8px;
}

.story-stars {
  margin-top: 14px;
  color: #ffbf29;
  font-size: 28px;
  letter-spacing: 2px;
}

.story-copy h2,
.showcase-main h2,
.gallery-copy-card h2,
.info-split-copy h2,
.closing-card h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  color: #0a1c44;
  font-weight: 900;
}

.story-copy p,
.showcase-main p,
.gallery-copy-card p,
.info-split-copy p,
.closing-card p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.65;
  color: #42506a;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #f26a10;
  font-size: 20px;
  font-weight: 600;
}

.eyebrow img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.story-checklist {
  display: grid;
  gap: 16px;
  padding: 28px 28px;
  background: #f8fafc;
  border: 1px solid rgba(20, 43, 73, 0.06);
  border-radius: 18px;
  margin: 26px 0 24px;
}

.story-checklist div,
.side-project-card li,
.closing-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #122445;
}

.story-checklist span,
.side-project-card li span,
.closing-points span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #6cc292;
  color: #fff;
  font-size: 15px;
  flex: 0 0 auto;
}

.orange-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(242, 95, 8, 0.24);
}

.orange-pill-link.wide {
  width: 100%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 34px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stat-icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #f07a21;
  border-radius: 999px;
  color: #1a2e59;
  font-size: 26px;
  flex: 0 0 auto;
}

.stat-item strong {
  display: block;
  font-size: 62px;
  line-height: 0.95;
  color: #11224b;
}

.stat-item small {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: #2f4164;
}

.service-showcase-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.12fr 0.68fr;
  gap: 30px;
  align-items: stretch;
  padding: 30px 28px 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 82%, rgba(104, 132, 220, 0.22) 0%, rgba(104, 132, 220, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid rgba(20, 43, 73, 0.06);
  box-shadow: 0 18px 44px rgba(13, 35, 66, 0.08);
}

.showcase-main,
.gallery-copy-card,
.closing-card {
  padding: 8px 0;
}

.repair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.repair-card {
  background: #fff;
  border: 1px solid rgba(20, 43, 73, 0.08);
  border-radius: 18px;
  padding: 20px 18px 22px;
  box-shadow: 0 14px 30px rgba(12, 35, 66, 0.06);
}

.repair-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  background: #f5f7fb;
  border-radius: 12px;
  color: #215fbe;
  font-size: 32px;
}

.repair-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
  line-height: 1.18;
  color: #122446;
}

.repair-card h3 span {
  display: block;
  color: #ff7f1f;
}

.repair-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #5d6b84;
}

.side-project-card {
  align-self: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(20, 43, 73, 0.08);
  box-shadow: 0 20px 40px rgba(12, 35, 66, 0.08);
  overflow: hidden;
}

.side-project-head {
  padding: 20px 24px 18px;
  background: linear-gradient(180deg, #ff8427 0%, #f05c08 100%);
  color: #fff;
}

.side-project-head strong {
  display: block;
  font-size: 34px;
  line-height: 0.98;
  font-weight: 900;
}

.side-project-head strong em {
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
}

.side-project-head span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.side-project-card ul {
  list-style: none;
  margin: 0;
  padding: 24px 24px 18px;
  display: grid;
  gap: 18px;
}

.side-project-card .orange-pill-link.wide {
  width: calc(100% - 48px);
  margin: 6px 24px 24px;
  padding: 16px 18px;
  font-size: 16px;
}

.showcase-image-frame {
  padding: 12px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65), 0 20px 38px rgba(15, 36, 68, 0.10);
}

.showcase-image-frame img {
  min-height: 650px;
  object-fit: cover;
  object-position: center;
}

.showcase-main .eyebrow {
  margin-bottom: 12px;
}

.showcase-main h2 {
  font-size: clamp(44px, 4vw, 62px);
  line-height: 0.98;
  margin-bottom: 20px;
}

.showcase-main p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.6;
}

.feature-gallery-panel {
  position: relative;
  padding: 28px 26px 22px;
  border-radius: 28px;
  overflow: hidden;
  /* background:
    radial-gradient(circle at 12% 78%, rgba(248, 112, 38, 0.28) 0%, rgba(248, 112, 38, 0) 30%),
    radial-gradient(circle at 88% 14%, rgba(109, 125, 255, 0.18) 0%, rgba(109, 125, 255, 0) 28%),
    linear-gradient(180deg, #2b2d5e 0%, #1e2346 100%); */
    color: black;
  box-shadow: 0 26px 56px rgba(14, 24, 58, 0.14);
}

.feature-gallery-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%;
  pointer-events: none;
  opacity: 0.18;
}

.feature-gallery-panel > * {
  position: relative;
  z-index: 1;
}

.gallery-visual-dark {
  align-self: stretch;
}

.gallery-visual-dark > img,
.gallery-visual-card > img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 22px 48px rgba(7, 16, 40, 0.28);
}

.gallery-copy-dark h2,
.gallery-copy-dark p {
  /* color: #fff; */
}

.gallery-copy-dark h2 {
  font-size: clamp(30px, 3.2vw, 52px);
  margin-bottom: 14px;
}

.gallery-copy-dark p {
  max-width: 760px;
  /* color: rgba(255,255,255,0.86); */
  font-size: 15px;
  line-height: 1.65;
}

.gallery-counter-card {
  position: absolute;
  left: 14px;
  bottom: 16px;
  width: 210px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, rgba(55, 74, 132, 0.96) 0%, rgba(30, 46, 94, 0.97) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  color: #fff;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 42px rgba(9, 17, 46, 0.28);
}

.gallery-counter-card strong {
  display: block;
  font-size: 54px;
  line-height: 0.92;
}

.gallery-counter-card span {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
}

.gallery-counter-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.counter-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8b35 0%, #f05b08 100%);
  flex: 0 0 auto;
}

.gallery-benefits {
  display: grid;
  color:  black;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 24px;
}

.gallery-benefit.dark {
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.05) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.gallery-benefit.dark.active {
  border-color: rgba(255, 138, 55, 0.7);
  box-shadow: 0 0 0 1px rgba(255,138,55,0.28), 0 0 28px rgba(255,116,33,0.24);
}

.gallery-benefit.dark span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8f3a 0%, #f05e08 100%);
  color: #fff;
  margin-bottom: 10px;
}

.gallery-benefit.dark strong {
  display: block;
  /* color: #fff; */
  font-size: 18px;
  margin-bottom: 6px;
}

.gallery-benefit.dark small {
   font-size: 12px;
  line-height: 1.45;
}

.top-products-card.dark {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.04) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  padding: 20px 20px 18px;
}

.top-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.top-products-head h3 {
  margin: 0 0 6px;
  font-size: 30px;
  color: #122446;
}

.top-products-head p {
  margin: 0;
  font-size: 16px;
}

.top-products-card.dark .top-products-head h3 {
  /* color: #fff; */
  font-size: 34px;
}

.top-products-card.dark .top-products-head p {
  /* color: rgba(255,255,255,0.78); */
  font-size: 14px;
}

.mini-orange-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  border-radius: 18px;
  border: 1px solid rgba(20, 43, 73, 0.08);
  background: #fff;
  box-shadow: 0 14px 30px rgba(12, 35, 66, 0.05);
  padding: 16px;
}

.product-card.dark {
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.05) 100%);
  box-shadow: 0 12px 24px rgba(7, 16, 40, 0.20);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff3e9;
  color: #f15d08;
  font-size: 12px;
  font-weight: 800;
}

.product-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #122446;
}

.product-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
}

.product-card a {
  color: #f15d08;
  font-size: 14px;
  font-weight: 800;
}

.product-card.dark h4 {
  /* color: #fff; */
}

.product-card.dark p {
   font-size: 12px;
}

.product-card.dark a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
  color: #fff;
  font-size: 12px;
}

.product-card.dark .product-tag {
  background: rgba(255, 122, 28, 0.18);
  color: #ff9b53;
}

.info-split-copy h3 {
  margin: -4px 0 18px;
  color: #f26a10;
  font-size: 28px;
  font-weight: 600;
}

.info-split-media img {
  border: 1px solid rgba(20, 43, 73, 0.08);
  box-shadow: 0 22px 44px rgba(12, 35, 66, 0.08);
}

.closing-overview-grid {
  align-items: start;
}

.closing-points {
  display: grid;
  gap: 16px;
  margin: 24px 0 28px;
}

.closing-stack {
  display: grid;
  gap: 18px;
}

.closing-mini-card {
  padding: 30px 28px;
  border-radius: 24px;
  border: 1px solid rgba(20, 43, 73, 0.08);
  background: #fff;
  box-shadow: 0 18px 36px rgba(12, 35, 66, 0.06);
}

.closing-mini-card strong {
  font-size: 50px;
  color: #122446;
}

.closing-mini-card span {
  font-size: 20px;
  color: #43506a;
}

.locations-section {
  /* background:
    radial-gradient(circle at 18% 12%, rgba(162, 181, 255, 0.26) 0%, rgba(162, 181, 255, 0) 18%),
    radial-gradient(circle at 82% 20%, rgba(176, 191, 255, 0.24) 0%, rgba(176, 191, 255, 0) 18%),
    linear-gradient(180deg, #edf3ff 0%, #dbe6ff 100%); */
  padding: 56px 0 84px;
}

.locations-grid {
  display: grid;
  gap: 34px;
}

.locations-grid-top {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 38px;
}

.locations-grid-bottom {
  justify-content: center;
}

.location-card {
  max-width: 100%;
  padding: 28px 38px 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.56) 0%, rgba(255,255,255,0.40) 100%);
  border: 6px solid rgba(255,255,255,0.58);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.56),
    0 18px 40px rgba(57, 84, 148, 0.12);
  backdrop-filter: blur(10px);
}

.location-card-wide {
  width: min(100%, 832px);
  margin: 0 auto;
}

.location-card h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #1a2952;
  font-weight: 900;
}

.location-tags {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px 12px;
  margin-bottom: 26px;
}

.location-tags-wide {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.location-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 10px;
  border-radius: 8px;
  background: linear-gradient(180deg, #5f8ef6 0%, #4777dd 100%);
  border: 1px solid rgba(34, 70, 155, 0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(19, 37, 90, 0.18);
}

.location-cta {
  display: flex;
  width: fit-content;
  min-width: 372px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 17px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a2f 0%, #e35b13 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 12px 24px rgba(227, 91, 19, 0.24);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

@media (max-width: 1350px) {
  .story-grid,
  .feature-gallery-grid,
  .info-split-grid,
  .closing-overview-grid,
  .service-showcase-grid {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .gallery-benefits,
  .product-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-media-logos {
    justify-content: flex-start;
  }

  .feature-gallery-panel {
    padding: 22px 18px 18px;
  }

  .gallery-benefits {
    grid-template-columns: 1fr;
  }

  .locations-grid-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .stats-row,
  .gallery-benefits,
  .product-cards {
    grid-template-columns: 1fr 1fr;
  }

  .story-counter,
  .gallery-counter-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .story-photo-card,
  .gallery-visual-card {
    display: grid;
    gap: 18px;
  }

  .repair-grid {
    grid-template-columns: 1fr;
  }

  .location-tags {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .location-tags-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .story-section,
  .service-showcase,
  .feature-gallery,
  .info-split,
  .closing-overview {
    padding: 28px 0;
  }

  .story-copy h2,
  .showcase-main h2,
  .gallery-copy-card h2,
  .info-split-copy h2,
  .closing-card h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .story-copy p,
  .showcase-main p,
  .gallery-copy-card p,
  .info-split-copy p,
  .closing-card p {
    font-size: 16px;
  }

  .story-checklist,
  .top-products-card {
    padding: 18px;
  }

  .feature-gallery-panel {
    border-radius: 22px;
    padding: 16px 14px 14px;
  }

  .gallery-copy-dark h2 {
    font-size: 34px;
  }

  .gallery-counter-card {
    width: 100%;
  }

  .story-checklist div,
  .side-project-card li,
  .closing-points div {
    font-size: 16px;
    align-items: flex-start;
  }

  .stats-row,
  .gallery-benefits,
  .product-cards {
    grid-template-columns: 1fr;
  }

  .top-products-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-logo {
    min-width: 110px;
    height: 74px;
    font-size: 22px;
  }

  .media-logo-red.outline,
  .media-logo-pink {
    font-size: 34px;
  }

  .proof-media-logos {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .locations-section {
    padding: 34px 0 48px;
  }

  .location-card {
    padding: 20px 16px 20px;
    border-radius: 22px;
    border-width: 4px;
  }

  .location-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .location-tags,
  .location-tags-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  .location-tags span {
    min-height: 46px;
    font-size: 18px;
  }

  .location-cta {
    min-width: 100%;
    width: 100%;
    font-size: 18px;
    padding: 14px 18px;
  }
}

/* Final mobile-only hero precision override */
@media (max-width: 720px) {
  .hero {
    min-height: 500px;
    padding-bottom: 10px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(247,249,253,0.94) 0%, rgba(239,244,251,0.76) 42%, rgba(228,235,247,0.18) 100%);
  }

  .hero-inner {
    position: relative;
    display: block;
    min-height: 490px;
    padding-top: 6px;
    padding-bottom: 0;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 54%;
    padding-top: 0;
  }

  .hero-copy h1 {
    margin: 0 0 7px;
    font-size: 18px;
    line-height: 0.9;
    letter-spacing: -0.6px;
  }

  .lead {
    margin: 0 0 7px;
    font-size: 9px;
    line-height: 1.28;
    max-width: 100%;
  }

  .benefits {
    margin: 0 0 7px;
    gap: 4px;
  }

  .benefits li {
    gap: 6px;
    font-size: 9px;
    line-height: 1.22;
  }

  .check {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }

  .mobile-hero-cta {
    margin-top: 4px;
    width: 156px;
    padding: 7px 9px 6px;
    border-radius: 8px;
  }

  .mobile-hero-cta > span {
    font-size: 10px;
  }

  .mobile-hero-cta small {
    font-size: 7px;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    margin-top: 0;
  }

  .hero-image-shell {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    border-radius: 0;
  }

  .hero::before {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.42) 28%, rgba(255,255,255,0.06) 56%, rgba(255,255,255,0) 100%);
  }

  .hero-copy,
  .hero-badges {
    position: relative;
    z-index: 3;
  }

  .promo-card {
    left: 0;
    top: 245px;
    width: 102px;
    transform: rotate(-1.8deg);
    filter: drop-shadow(0 6px 10px rgba(188, 95, 0, 0.26));
  }

  .promo-top {
    font-size: 7px;
    padding: 4px 5px 3px;
  }

  .promo-box {
    padding: 5px 4px 6px;
    font-size: 8px;
  }

  .price-line {
    font-size: 10px;
    margin: 1px 0;
  }

  .price-line span {
    font-size: 28px;
  }

  .hero .call-card {
    display: block;
    position: absolute;
    right: 2px;
    bottom: 48px;
    width: 132px;
    padding: 5px 6px 6px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(10, 34, 63, 0.16);
  }

  .hero .call-card-top {
    margin-bottom: 4px;
  }

  .hero .phone-line,
  .hero .phone-line strong {
    font-size: 8px;
    line-height: 1;
  }

  .hero .hero-call-btn {
    border-radius: 7px;
  }

  .hero .hero-call-btn .btn-left {
    min-height: 28px;
    padding: 6px 7px;
    gap: 5px;
    font-size: 8px;
  }

  .hero .hero-call-btn .btn-left .icon {
    font-size: 9px;
  }

  .hero .hero-call-btn .btn-right {
    min-width: 40px;
    padding: 0 8px;
    font-size: 9px;
  }

  .hero-badges {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 0;
  }

  .hero-badge {
    padding: 6px 8px;
    border-radius: 8px;
    gap: 6px;
    background: linear-gradient(180deg, rgba(35, 30, 22, 0.78) 0%, rgba(28, 26, 31, 0.86) 100%);
  }

  .badge-icon {
    width: 14px;
    height: 14px;
  }

  .badge-title {
    font-size: 7px;
    margin-bottom: 1px;
  }

  .badge-stars {
    font-size: 7px;
  }

  .badge-score {
    font-size: 7px;
  }
}
.footer {
  background: url('background.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
  font-family: 'Inter', sans-serif;
}

/* Dark overlay for readability */
.footer-overlay {
  background: rgba(10, 20, 40, 0.85);
  padding: 60px 20px 20px;
}

.container {
  max-width: 1500px;
  margin: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Logo */
.footer-left .logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-left ul,
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-left li,
.footer-col li {
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.9;
}

/* Columns */
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-col {
    width: 100%;
  }
}
.call-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  /* width: 360px; */
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  font-family: 'Inter', sans-serif;
}

/* Top section */
.call-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.phone-line {
  font-size: 18px;
  color: #0d1b33;
}

.callback-note {
  font-size: 13px;
  color: #2bb673;
  font-weight: 500;
}

/* Bottom */
.call-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* Logos */
.logo-row {
  display: flex;
  gap: 10px;
}

.mini-brand {
  font-size: 12px;
  font-weight: 700;
}

.junkers { color: #1f4ea3; }
.bosch { color: #d72828; }

/* Button */
.call-btn {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Left orange */
.btn-left {
  background: linear-gradient(180deg, #ff7a1a, #e85a00);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icon */
.btn-left .icon {
  background: rgba(255,255,255,0.2);
  padding: 5px;
  border-radius: 50%;
  font-size: 12px;
}

/* Right price */
.btn-right {
  background: #2f3f55;
  padding: 14.5px 17px;
  height: 100%;
  font-size:20px;
  font-weight: 700;
}

/* Exact override for hero CTA and bottom shield only */
.hero .call-card {
  right: 24px;
  bottom: 18px;
  width: 278px;
  padding: 12px 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(18, 41, 69, 0.10);
  box-shadow: 0 14px 28px rgba(10, 34, 63, 0.16);
}

.hero .call-card-top {
  margin-bottom: 10px;
  padding: 0;
  display: block;
}

.hero .phone-line {
  font-size: 16px;
  color: #0c1d3c;
  line-height: 1.1;
}

.hero .phone-line strong {
  font-size: 16px;
  font-weight: 900;
}

.hero .callback-note,
.hero .logo-row,
.hero .call-button {
  display: none;
}

.hero .call-card-bottom {
  display: block;
  padding: 0;
}

.hero .hero-call-btn {
  width: 100%;
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(242, 95, 8, 0.18);
}

.hero .hero-call-btn .btn-left {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
}

.hero .hero-call-btn .btn-left .icon {
  padding: 0;
  background: transparent;
  font-size: 13px;
}

.hero .hero-call-btn .btn-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding:15px 12px;
  font-size: 13px;
  font-weight: 800;
  background: #2f3f55;
}

.bottom-proof .shield {
  width: 92px;
  height: 112px;
  margin-right: 22px;
  border-radius: 0;
  background: linear-gradient(180deg, #2ce364 0%, #0a9f39 100%);
  box-shadow:
    inset 0 0 0 7px rgba(255,255,255,0.10),
    0 14px 26px rgba(5, 28, 49, 0.18);
  clip-path: polygon(50% 0%, 88% 12%, 100% 42%, 94% 78%, 50% 100%, 6% 78%, 0% 42%, 12% 12%);
  position: relative;
}

.bottom-proof .shield::before {
  content: "";
  position: absolute;
  inset: 10px 12px 18px;
  border: 4px solid rgba(255,255,255,0.34);
  border-bottom-width: 5px;
  clip-path: polygon(50% 0%, 88% 12%, 100% 42%, 94% 78%, 50% 100%, 6% 78%, 0% 42%, 12% 12%);
}

.bottom-proof .shield {
  font-size: 52px;
  font-weight: 900;
}

/* Precision override for "Beliebte Reparaturdienste" section */
.service-showcase .stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 34px;
}

.service-showcase .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-showcase .stat-icon {
  width: 62px;
  height: 62px;
  border: 2px solid #f07a21;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #172752;
}

.service-showcase .stat-icon i {
  font-size: 27px;
  line-height: 1;
}

.service-showcase .stat-item strong {
  display: block;
  font-size: 60px;
  line-height: 0.9;
  color: #10244d;
}

.service-showcase .stat-item small {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: #2e4062;
}

.service-showcase .service-showcase-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.16fr 0.66fr;
  gap: 32px;
  align-items: stretch;
  padding: 30px 30px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 88%, rgba(91, 122, 216, 0.20) 0%, rgba(91, 122, 216, 0) 26%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid rgba(20, 43, 73, 0.06);
  box-shadow: 0 18px 44px rgba(13, 35, 66, 0.08);
}

.service-showcase .showcase-image-frame {
  height: 100%;
  padding: 12px;
  border-radius: 34px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65), 0 20px 38px rgba(15, 36, 68, 0.10);
}

.service-showcase .showcase-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 652px;
  object-fit: cover;
  object-position: left center;
  border-radius: 28px;
  display: block;
}

.service-showcase .showcase-main {
  padding-top: 10px;
}

.service-showcase .showcase-main .eyebrow {
  margin-bottom: 14px;
}

.service-showcase .showcase-main h2 {
  margin: 0 0 18px;
  font-size: 62px;
  line-height: 0.96;
  letter-spacing: -2px;
  color: #0d234c;
}

.service-showcase .showcase-main p {
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #48566f;
}

.service-showcase .repair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-showcase .repair-card {
  background: #fff;
  border: 1px solid rgba(20, 43, 73, 0.08);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: 0 14px 30px rgba(12, 35, 66, 0.06);
}

.service-showcase .repair-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #f4f6fb;
  color: #2464c4;
  font-size: 32px;
}

.service-showcase .repair-card h3 {
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.2;
  color: #122446;
}

.service-showcase .repair-card h3 span {
  display: block;
  color: #ff7a1a;
}

.service-showcase .repair-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #616f88;
}

.service-showcase .showcase-side {
  display: flex;
  align-items: center;
}

.service-showcase .side-project-card {
  width: 100%;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(20, 43, 73, 0.08);
  box-shadow: 0 20px 40px rgba(12, 35, 66, 0.08);
  overflow: hidden;
}

.service-showcase .side-project-head {
  padding: 22px 24px 18px;
  background: linear-gradient(180deg, #ff8427 0%, #f05c08 100%);
}

.service-showcase .side-project-head strong {
  display: block;
  font-size: 34px;
  line-height: 0.96;
  color: #fff;
}

.service-showcase .side-project-head strong em {
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
}

.service-showcase .side-project-head span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  color: #fff;
}

.service-showcase .side-project-card ul {
  list-style: none;
  margin: 0;
  padding: 24px 24px 18px;
  display: grid;
  gap: 18px;
}

.service-showcase .side-project-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.45;
  color: #122446;
  font-weight: 700;
}

.service-showcase .side-project-card li span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #72c694;
  color: #fff;
  font-size: 14px;
}

.service-showcase .orange-pill-link.wide {
  width: calc(100% - 48px);
  margin: 4px 24px 24px;
  padding: 17px 18px;
  font-size: 16px;
}

@media (max-width: 1350px) {
  .service-showcase .service-showcase-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .service-showcase .showcase-image-frame img {
    min-height: 430px;
  }
}

@media (max-width: 1100px) {
  .service-showcase .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-showcase .stat-item strong {
    font-size: 44px;
  }

  .service-showcase .showcase-main h2 {
    font-size: 44px;
  }

  .service-showcase .repair-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .service-showcase .stats-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-showcase .service-showcase-grid {
    padding: 16px;
    border-radius: 24px;
  }

  .service-showcase .showcase-image-frame {
    padding: 8px;
    border-radius: 22px;
  }

  .service-showcase .showcase-image-frame img {
    min-height: 300px;
    border-radius: 18px;
  }

  .service-showcase .showcase-main h2 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .service-showcase .orange-pill-link.wide {
    width: calc(100% - 32px);
    margin: 4px 16px 16px;
  }
}

/* Home page redesign after first 3 sections only */
.home-redesign {
  --home-navy: #0f2449;
  --home-blue: #2371ff;
  --home-orange: #ff5e14;
  --home-orange-deep: #ef4e07;
  --home-cream: #f6f8fc;
  --home-ink: #1b2c4b;
  --home-muted: #65748e;
  --home-border: rgba(15, 36, 73, 0.08);
  --home-shadow: 0 24px 60px rgba(11, 27, 56, 0.08);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fbff 0%, #edf3fb 100%);
}

.home-redesign__hero-band {
  padding: 88px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(255, 94, 20, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(35, 113, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f6f9ff 0%, #eef4fd 100%);
}

.home-redesign__surface {
  padding: 24px 0 96px;
}

.home-redesign__review-band,
.home-redesign__contact-strip,
.home-redesign__about,
.home-redesign__choose,
.home-redesign__service-story,
.home-redesign__testimonial-card {
  display: grid;
  gap: 28px;
  align-items: center;
}

.home-redesign__review-band,
.home-redesign__contact-strip,
.home-redesign__about,
.home-redesign__choose,
.home-redesign__service-story {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-redesign__review-score,
.home-redesign__review-slider,
.home-redesign__contact-form,
.home-redesign__about-copy,
.home-redesign__choose-copy,
.home-redesign__product-card,
.home-redesign__testimonial-card,
.home-redesign__service-story-copy,
.home-redesign__area-group,
.home-redesign__tab-shell {
  border-radius: 30px;
  box-shadow: var(--home-shadow);
}

.home-redesign__section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-redesign__section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-redesign__section-intro h2,
.home-redesign__about-copy h2,
.home-redesign__contact-copy h2,
.home-redesign__choose-copy h2,
.home-redesign__service-story-copy h2,
.home-redesign__testimonial-copy h2 {
  margin: 0;
  color: var(--home-navy);
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-redesign__section-intro p,
.home-redesign__about-copy p,
.home-redesign__contact-copy p,
.home-redesign__choose-copy p,
.home-redesign__service-story-copy p,
.home-redesign__tab-copy p,
.home-redesign__product-card-copy p,
.home-redesign__review-quote p,
.home-redesign__testimonial-copy p {
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.75;
}

.home-redesign__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 94, 20, 0.1);
  color: var(--home-orange-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-redesign__review-band,
.home-redesign__media,
.home-redesign__contact-strip,
.home-redesign__about,
.home-redesign__facts,
.home-redesign__tabs,
.home-redesign__choose,
.home-redesign__products-full,
.home-redesign__testimonials,
.home-redesign__brands,
.home-redesign__service-story,
.home-redesign__areas {
  margin-top: 32px;
}

.home-redesign__review-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
  background: linear-gradient(135deg, #0f2449 0%, #163362 100%);
  color: #fff;
}

.home-redesign__review-score img {
  width: 160px;
  max-width: 38%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.18));
}

.home-redesign__review-label,
.home-redesign__review-score span {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.home-redesign__review-score strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.1;
}

.home-redesign__stars {
  margin-top: 8px;
  color: #ffd167;
  letter-spacing: 0.22em;
  font-size: 18px;
}

.home-redesign__review-slider {
  position: relative;
  min-height: 220px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--home-border);
}

.home-redesign__review-quote {
  display: none;
}

.home-redesign__review-quote.is-active {
  display: block;
}

.home-redesign__review-quote strong,
.home-redesign__testimonial-copy strong {
  display: block;
  margin-top: 16px;
  color: var(--home-navy);
  font-size: 18px;
}

.home-redesign__review-quote span {
  display: block;
  margin-top: 8px;
  color: var(--home-orange-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-redesign__media-card {
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
}

.home-redesign__media-card img,
.home-redesign__choose-media img,
.home-redesign__testimonial-media img,
.home-redesign__service-story-media img,
.home-redesign__tab-media img,
.home-redesign__about-shot img,
.home-redesign__product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-redesign__media-card img {
  height: auto;
  object-fit: contain;
}

.home-redesign__contact-strip {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(15, 36, 73, 0.98) 0%, rgba(24, 50, 96, 0.96) 100%);
  color: #fff;
}

.home-redesign__contact-copy h2,
.home-redesign__contact-copy p {
  color: #fff;
}

.home-redesign__contact-pills,
.home-redesign__field-grid,
.home-redesign__service-checks,
.home-redesign__facts,
.home-redesign__choose-grid,
.home-redesign__product-grid,
.home-redesign__area-grid {
  display: grid;
}

.home-redesign__contact-pills {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.home-redesign__contact-pills a,
.home-redesign__button,
.home-redesign__tab-button,
.home-redesign__area-grid a {
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-redesign__contact-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.home-redesign__contact-form {
  padding: 26px;
  background: rgba(255, 255, 255, 0.98);
}

.home-redesign__field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-redesign__field-grid input:nth-child(3) {
  grid-column: 1 / -1;
}

.home-redesign__contact-form input,
.home-redesign__contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 36, 73, 0.12);
  border-radius: 18px;
  background: #f8fafd;
  color: var(--home-ink);
  padding: 16px 18px;
  font-size: 15px;
}

.home-redesign__contact-form textarea {
  margin-top: 14px;
  resize: vertical;
}

.home-redesign__service-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.home-redesign__service-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff7f1;
  color: var(--home-ink);
  font-weight: 700;
}

.home-redesign__service-checks input {
  width: 18px;
  height: 18px;
  accent-color: var(--home-orange);
}

.home-redesign__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-orange) 0%, var(--home-orange-deep) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(255, 94, 20, 0.24);
}

.home-redesign__button--ghost {
  background: #fff;
  color: var(--home-navy);
  box-shadow: none;
  border: 1px solid rgba(15, 36, 73, 0.12);
}

.home-redesign__about-media {
  position: relative;
  display: grid;
  /* grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr); */
  gap: 18px;
  align-items: end;
}

.home-redesign__about-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--home-shadow);
}

.home-redesign__about-shot--large {
  height: 560px;
}

.home-redesign__about-shot--small {
  height: 390px;
  margin-bottom: 48px;
}

.home-redesign__badge-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--home-orange) 0%, var(--home-orange-deep) 100%);
  color: #fff;
  box-shadow: 0 24px 40px rgba(255, 94, 20, 0.28);
}

.home-redesign__badge-card strong,
.home-redesign__facts strong {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
  font-weight: 800;
}

.home-redesign__badge-card span,
.home-redesign__facts span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
}

.home-redesign__badge-card small {
  display: block;
  margin-top: 8px;
  opacity: 0.88;
  font-size: 13px;
  line-height: 1.5;
}

.home-redesign__about-copy {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--home-border);
}

.home-redesign__bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.home-redesign__bullet-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--home-cream);
  color: var(--home-ink);
  font-weight: 700;
}

.home-redesign__facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-redesign__facts article {
  padding: 28px 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--home-border);
  text-align: center;
  box-shadow: var(--home-shadow);
}

.home-redesign__tabs {
  padding: 42px 0 0;
}

.home-redesign__tab-shell {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--home-border);
}

.home-redesign__tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.home-redesign__tab-button {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(15, 36, 73, 0.1);
  border-radius: 999px;
  background: #f4f7fc;
  color: var(--home-navy);
  font-weight: 800;
}

.home-redesign__tab-button.is-active {
  background: linear-gradient(135deg, var(--home-orange) 0%, var(--home-orange-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 94, 20, 0.24);
}

.home-redesign__tab-panel {
  display: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  align-items: center;
}

.home-redesign__tab-panel.is-active {
  display: grid;
}

.home-redesign__tab-media {
  overflow: hidden;
  border-radius: 24px;
  height: 420px;
}

.home-redesign__tab-copy {
  padding: 14px 8px;
}

.home-redesign__tab-copy h3,
.home-redesign__product-card-copy h3,
.home-redesign__area-head h3 {
  margin: 0;
  color: var(--home-navy);
  font-size: 30px;
  line-height: 1.12;
}

.home-redesign__tab-copy ul,
.home-redesign__product-card-copy ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.home-redesign__tab-copy li,
.home-redesign__product-card-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--home-muted);
}

.home-redesign__tab-copy li::before,
.home-redesign__product-card-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--home-orange);
}

.home-redesign__choose-copy {
  padding: 34px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid var(--home-border);
}

.home-redesign__choose-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.home-redesign__choose-grid article {
  padding: 18px;
  border-radius: 20px;
  background: #f4f7fc;
}

.home-redesign__choose-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--home-navy);
  font-size: 18px;
}

.home-redesign__choose-grid p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
}

.home-redesign__choose-media {
  overflow: hidden;
  min-height: 420px;
  border-radius: 32px;
  box-shadow: var(--home-shadow);
}

.home-redesign__products-full {
  padding-top: 10px;
}

.home-redesign__showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-redesign__showcase-card {
  padding: 14px 14px 18px;
  border-radius: 8px;
  background: #2f6ef2;
  box-shadow: 0 18px 30px rgba(15, 36, 73, 0.18);
}

.home-redesign__showcase-carousel {
  position: relative;
  height: 186px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  border: 6px solid #ffffff;
}

.home-redesign__showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-redesign__showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-redesign__showcase-slide.is-active {
  opacity: 1;
}

.home-redesign__showcase-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-image-shell,
.home-redesign__tab-media,
.home-redesign__product-media,
.home-redesign__showcase-carousel,
.home-redesign__showcase-slide {
  background: linear-gradient(135deg, #eef5fb, #fff3e5);
}

.hero-image-shell,
.home-redesign__tab-media,
.home-redesign__product-media,
.home-redesign__showcase-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image,
.home-redesign__tab-media img,
.home-redesign__product-media img,
.home-redesign__showcase-slide img {
  object-fit: cover !important;
  object-position: top center !important;
}

.home-redesign__showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 36, 73, 0.76);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 2;
}

.home-redesign__showcase-arrow--prev {
  left: 8px;
}

.home-redesign__showcase-arrow--next {
  right: 8px;
}

.home-redesign__showcase-copy {
  padding: 14px 6px 8px;
}

.home-redesign__showcase-type {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
}

.home-redesign__showcase-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.home-redesign__showcase-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.6;
}

.home-redesign__showcase-accordion {
  margin-top: 8px;
}

.home-redesign__showcase-item {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.home-redesign__showcase-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  padding: 6px 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.home-redesign__showcase-item summary::-webkit-details-marker {
  display: none;
}

.home-redesign__showcase-summary-icon {
  position: relative;
  width: 14px;
  height: 14px;
  font-size: 16px;
  font-weight: 700;
  color: transparent;
}

.home-redesign__showcase-summary-icon::before,
.home-redesign__showcase-summary-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.home-redesign__showcase-summary-icon::before {
  width: 10px;
  height: 2px;
}

.home-redesign__showcase-summary-icon::after {
  width: 2px;
  height: 10px;
}

.home-redesign__showcase-item[open] .home-redesign__showcase-summary-icon::after {
  display: none;
}

.home-redesign__showcase-item ul {
  margin: 0;
  padding: 8px 10px 10px;
  list-style: none;
  background: #fff;
}

.home-redesign__showcase-item li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  color: #163362;
  font-size: 11px;
  line-height: 1.45;
}

.home-redesign__showcase-check {
  flex: 0 0 auto;
  color: #ff5e14;
  font-size: 11px;
  margin-top: 1px;
}

.home-redesign__showcase-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  min-height: 26px;
  margin: 14px auto 0;
  border-radius: 2px;
  background: #fff;
  color: #163362;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
}

.home-redesign__showcase-footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.home-redesign__showcase-footer .home-redesign__button {
  min-height: 34px;
  margin-top: 0;
  padding: 0 18px;
  font-size: 12px;
  background: #2f6ef2;
  color: #fff;
  border: 1px solid rgba(47, 110, 242, 0.2);
  box-shadow: none;
}

.home-redesign__testimonial-card {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  padding: 30px;
  background: linear-gradient(135deg, #0f2449 0%, #183462 100%);
}

.home-redesign__testimonial-copy h2,
.home-redesign__testimonial-copy p,
.home-redesign__testimonial-copy strong {
  color: #fff;
}

.home-redesign__testimonial-media {
  overflow: hidden;
  border-radius: 26px;
  height: 320px;
}

.home-redesign__brand-rail {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
}

.home-redesign__brand-rail img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
}

.home-redesign__service-story-copy {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--home-border);
}

.home-redesign__service-story-media {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--home-shadow);
  min-height: 420px;
}

.home-redesign__area-group {
  padding: 28px;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--home-border);
}

.home-redesign__area-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.home-redesign__area-head a {
  color: var(--home-orange-deep);
  text-decoration: none;
  font-weight: 800;
}

.home-redesign__area-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.home-redesign__area-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4f7fc;
  color: var(--home-navy);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(35, 113, 255, 0.1);
}

.home-redesign__button:hover,
.home-redesign__tab-button:hover,
.home-redesign__contact-pills a:hover,
.home-redesign__area-grid a:hover {
  transform: translateY(-2px);
}

.home-redesign__area-grid a:hover,
.home-redesign__contact-pills a:hover {
  background: var(--home-orange);
  color: #fff;
}

@media (max-width: 1200px) {
  .home-redesign__showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-redesign__brand-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-redesign__area-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-redesign__review-band,
  .home-redesign__contact-strip,
  .home-redesign__about,
  .home-redesign__choose,
  .home-redesign__service-story,
  .home-redesign__tab-panel,
  .home-redesign__testimonial-card {
    grid-template-columns: 1fr;
  }

  .home-redesign__facts,
  .home-redesign__choose-grid,
  .home-redesign__bullet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-redesign__about-shot--large,
  .home-redesign__about-shot--small,
  .home-redesign__tab-media,
  .home-redesign__service-story-media {
    min-height: 320px;
    height: 320px;
  }

  .home-redesign__contact-pills,
  .home-redesign__field-grid,
  .home-redesign__service-checks {
    grid-template-columns: 1fr;
  }

  .home-redesign__field-grid input:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .home-redesign__hero-band {
    padding: 72px 0 30px;
  }

  .home-redesign__surface {
    padding-bottom: 72px;
  }

  .home-redesign__review-score,
  .home-redesign__contact-strip,
  .home-redesign__about-copy,
  .home-redesign__choose-copy,
  .home-redesign__contact-form,
  .home-redesign__service-story-copy,
  .home-redesign__area-group,
  .home-redesign__testimonial-card {
    padding: 22px;
  }

  .home-redesign__review-score {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-redesign__facts,
  .home-redesign__choose-grid,
  .home-redesign__bullet-grid,
  .home-redesign__showcase-grid,
  .home-redesign__brand-rail,
  .home-redesign__area-grid {
    grid-template-columns: 1fr;
  }

  .home-redesign__about-media {
    grid-template-columns: 1fr;
  }

  .home-redesign__media-card,
  .home-redesign__about-shot,
  .home-redesign__choose-media,
  .home-redesign__testimonial-media,
  .home-redesign__service-story-media,
  .home-redesign__tab-media {
    min-height: 260px;
    height: 260px;
  }

  .home-redesign__media-card img,
  .home-redesign__about-shot img,
  .home-redesign__choose-media img,
  .home-redesign__testimonial-media img,
  .home-redesign__service-story-media img,
  .home-redesign__tab-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .home-redesign__showcase-carousel {
    height: 240px;
  }

  .home-redesign__about-shot--small {
    margin-bottom: 0;
  }

  .home-redesign__badge-card {
    position: static;
  }

  .home-redesign__tab-shell {
    padding: 16px;
  }

  .home-redesign__tab-button {
    width: 100%;
    justify-content: center;
  }

  .home-redesign__tab-copy h3,
  .home-redesign__area-head h3,
  .home-redesign__showcase-copy h3 {
    font-size: 24px;
  }
}


.service-expand-card + .service-expand-card, .service-card + .service-card, .service-faq-list details + details  {

        height: fit-content !important;
margin-top: 0 !important;
}


#service-scope .service-card__content > p:first-of-type {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.3;
    color: #6f7d97;
    margin-bottom: 6px;
}



@media (max-width: 768px) {
  .hero-image-shell {
    position: relative;
    overflow: hidden;
  }

  .hero-image-shell::after {
    content: "";
    position: absolute;
    inset: 0;

    /* LEFT → RIGHT fade */
    background: linear-gradient(
      90deg,
      rgba(47, 110, 243, 0.9) 0%,
      rgba(47, 110, 243, 0.7) 30%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.1) 80%,
      rgba(0, 0, 0, 0) 100%
    );

    z-index: 2;
    pointer-events: none;
  }

  .hero-image {
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 720px) {
  .promo-card {
    right: 6px !important;
    top: 6px !important;
    width: 85px;
  }

  .promo-top {
    font-size: 6px;
  }

  .promo-box {
    font-size: 7px;
  }

  .price-line span {
    font-size: 22px;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    min-height: calc(100svh - 62px);
    padding: 0;
    margin: 0;
    background:
      linear-gradient(180deg, rgba(247,249,253,0.94) 0%, rgba(239,244,251,0.76) 42%, rgba(228,235,247,0.18) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero::before {
    display: none !important;
  }

  .hero-inner {
    position: relative;
    display: block;
    min-height:calc(96vh - 62px);
    padding: 0;
    border-radius: 0 0 22px 22px;
    overflow: hidden;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
    margin: 0;
  }

  .hero-image-shell {
    position: absolute;
    inset: 0;
    border-radius: 0 0 22px 22px;
  }

  .hero-image-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(47, 110, 243, 0.9) 0%, rgba(47, 110, 243, 0.7) 30%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 80%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 0 22px 22px;
    filter: saturate(0.98) contrast(1.02);
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 329px;
    padding: 24px 12px 196px;
  }

  .hero-copy h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 34px;
    line-height: 0.96;
    letter-spacing: -0.8px;
    font-weight: 900;
    text-wrap: balance;
    text-shadow: 0 2px 12px rgba(5, 24, 47, 0.24);
  }

  .lead {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.96);
    max-width: 244px;
    text-shadow: 0 1px 8px rgba(5, 24, 47, 0.2);
  }

  .benefits {
    gap: 8px;
    margin-bottom: 14px;
  }

  .benefits li {
    align-items: center;
    gap: 7px;
    font-size: 14px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(5, 24, 47, 0.2);
  }

  .check {
    width: 14px;
    height: 14px;
    font-size: 9px;
    background: linear-gradient(180deg, #1bc35c 0%, #109a43 100%);
    color: #ffffff;
    box-shadow: none;
    border: 0;
  }

  .promo-card {
    top: 8px !important;
    right: 8px !important;
    left: auto !important;
    width: 96px;
    transform: rotate(-1.5deg);
    z-index: 4;
  }

  .promo-top {
    font-size: 6px;
    padding: 4px 4px 3px;
  }

  .promo-box {
    font-size: 7px;
    line-height: 1.03;
    padding: 7px 5px 8px;
  }

  .price-line {
    font-size: 12px;
  }

  .price-line span {
    font-size: 28px;
  }

  .mobile-hero-cta {
    width: 100%;
    /* max-width: 210px; */
    margin-top: 4px;
    padding: 11px 13px 10px;
    border-radius: 11px;
    background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
    box-shadow: 0 12px 24px rgba(242, 95, 8, 0.22);
  }

  .mobile-hero-cta > span {
    font-size: 17px;
    line-height: 1.08;
    font-weight: 800;
  }

  .mobile-hero-cta small {
    display: block;
    font-size: 13px;
    font-weight: 700;
    opacity: 0.96;
  }

  .hero-badges {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 76px;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
    max-width: none;
  }

  .hero-badge {
    gap: 6px;
    padding: 9px 10px;
    border-radius: 10px;
    background: rgba(28, 20, 12, 0.86);
    box-shadow: 0 10px 24px rgba(12, 9, 7, 0.22);
  }

  .soft-fade {
    display: block !important;
    width: 48%;
    background: linear-gradient(90deg, rgba(47,110,243,0.75) 0%, rgba(47,110,243,0.56) 32%, rgba(242,246,250,0.12) 72%, rgba(242,246,250,0) 100%);
    z-index: 2;
  }

  .hero .call-card {
    display: block;
    position: absolute;
    right: 8px;
    left: 10px;
    right: 10px;
    bottom: 16px;
    width: 184px;
    padding: 6px 7px 7px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(10, 34, 63, 0.16);
    z-index: 4;
  }

  .hero .call-card {
    width: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .hero .call-card-top {
    display: none;
  }

  .hero .phone-line,
  .hero .phone-line strong {
    font-size: 8px;
    line-height: 1;
  }

  .hero .call-card-bottom {
    display: block;
    padding: 0;
  }

  .hero .hero-call-btn {
    width: 100%;
    display: flex;
    align-items: stretch;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 14px 24px rgba(242, 101, 8, 0.22);
  }

  .hero .hero-call-btn .btn-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 8px 10px;
    background: linear-gradient(180deg, #ff7f1f 0%, #f25f08 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
  }

  .hero .hero-call-btn .btn-left::before {
    content: "+43 1 4420363";
    display: block;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.1;
  }

  .hero .hero-call-btn .btn-left .icon {
    display: none;
  }

  .hero .hero-call-btn .btn-right {
    display: inline-grid;
    place-items: center;
    width: 24px;
    background: #f26508;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
  }

  .badge-icon {
    width: 25px;
    height: 25px;
  }

  .badge-title {
    margin-bottom: 2px;
    font-size: 13px;
    color: rgba(255, 244, 229, 0.9);
  }

  .badge-row {
    gap: 5px;
  }

  .badge-stars {
    font-size: 14px;
  }

  .badge-score {
    font-size: 16px;
  }

  .brand-slider-section {
    margin-top: 0;
    margin-bottom: 0;
  }

  .brand-slider-shell {
    padding: 0;
  }
}
