:root {
  --bg: #f3f7fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #102a57;
  --muted: #5a6f97;
  --line: rgba(16, 42, 87, 0.1);
  --yellow: #f28a1a;
  --yellow-deep: #e07000;
  --blue: #143d8d;
  --blue-deep: #0c2450;
  --green: #0a7f47;
  --shadow-xl: 0 40px 100px rgba(12, 36, 80, 0.12);
  --shadow-lg: 0 22px 50px rgba(12, 36, 80, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 16%, rgba(242, 138, 26, 0.14), transparent 24%),
    linear-gradient(180deg, #fdfefe 0%, var(--bg) 100%);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-shell { width: 100%; padding: 0 0 60px; }

.hero-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 42%, rgba(242, 138, 26, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  padding-top: 120px;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 1000;
  width: min(1560px, calc(100% - 64px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, padding 220ms ease;
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(12, 36, 80, 0.08);
  box-shadow: 0 18px 44px rgba(12, 36, 80, 0.1);
  backdrop-filter: blur(16px);
}

.topbar.menu-open {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(12, 36, 80, 0.08);
  box-shadow: 0 18px 44px rgba(12, 36, 80, 0.1);
  backdrop-filter: blur(16px);
}

body.has-scrolled .topbar,
.topbar.scrolled,
.topbar.menu-open {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(12, 36, 80, 0.1) !important;
  box-shadow: 0 18px 44px rgba(12, 36, 80, 0.12) !important;
  backdrop-filter: blur(18px) !important;
}


.brand-logo {
  display: block;
  width: 150px;
  height: auto;
  transition: width 240ms ease, transform 240ms ease;
  transform-origin: left center;
}


body.has-scrolled .brand-logo,
.topbar.scrolled .brand-logo,
.topbar.menu-open .brand-logo {
  width: 104px;
}

.footer-brand .brand-logo {
  width: 116px;
  padding: 7px 9px;
  border-radius: 8px;
  background: #ffffff;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 0.88;
}

.brand-mark strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.28rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  color: var(--blue-deep);
}

.brand-mark em {
  display: block;
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  margin-top: 5px;
  padding-left: 2px;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.52em;
  color: var(--yellow-deep);
  text-align: justify;
  text-align-last: justify;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.25vw, 20px);
  font-size: clamp(0.78rem, 0.92vw, 0.92rem);
  color: var(--blue-deep);
}

.nav a { font-weight: 700; white-space: nowrap; }

.topbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.phone-link {
  color: #eef4ff;
  font-weight: 700;
  background: rgba(16, 42, 87, 0.72);
  padding: 11px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  white-space: nowrap;
}

.topbar-actions .button { white-space: nowrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  background: var(--yellow);
  color: #15213f;
  box-shadow: 0 12px 24px rgba(224, 112, 0, 0.28);
}

.button-primary:hover {
  background: var(--yellow-deep);
}

.button-blue {
  background: var(--blue);
  color: #f6f9ff;
  box-shadow: 0 12px 24px rgba(12, 36, 80, 0.16);
}

.button-blue:hover {
  background: var(--blue-deep);
}

.button-secondary {
  color: var(--blue);
  border-color: rgba(20, 61, 141, 0.28);
  background: rgba(255, 255, 255, 0.86);
}

.button-secondary-strong {
  border-color: rgba(20, 61, 141, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(12, 36, 80, 0.08);
}

.hero-layout {
  display: grid;
  grid-template-columns: 48.5% 51.5%;
  align-items: stretch;
  min-height: 760px;
  width: 100%;
  margin: 0;
  padding: 0 0 0 max(36px, calc((100vw - 1560px) / 2 + 36px));
}

.hero-copy { position: relative; padding: 48px 48px 96px 52px; }

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 24px 40px 92px 16px;
  z-index: 0;
  border-radius: 28px;
  background:
    linear-gradient(rgba(20, 61, 141, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 61, 141, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 24% 22%, rgba(242, 138, 26, 0.12), transparent 28%);
  background-size: 38px 38px, 38px 38px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.03));
  pointer-events: none;
}

.hero-copy > * { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-deep);
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.4rem, 5.3vw, 5.65rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--blue-deep);
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.06em;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--yellow-deep);
}

.lead {
  max-width: 42ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.48;
  color: var(--muted);
}

.hero-proof-line {
  max-width: 48ch;
  margin-top: 24px;
  padding: 16px 18px 16px 20px;
  border-left: 4px solid var(--yellow);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(12, 36, 80, 0.08);
  backdrop-filter: blur(10px);
}

.hero-proof-line strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-proof-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }

.hero-media {
  position: relative;
  min-height: 760px;
  margin-top: -120px;
  overflow: hidden;
  clip-path: polygon(3.5% 0, 100% 0, 100% 100%, 0 100%, 0 15%);
  background: linear-gradient(180deg, #eff5fc 0%, #dfeaf7 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.42) 2.5%, rgba(255, 255, 255, 0.14) 6%, rgba(255, 255, 255, 0.03) 9.5%, rgba(255, 255, 255, 0) 12%);
  pointer-events: none;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }

.stats-card {
  position: absolute;
  right: 28px;
  bottom: 92px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(720px, calc(100% - 56px));
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(12, 36, 80, 0.12);
  backdrop-filter: blur(18px);
}

.stats-card article { padding: 20px 18px 22px; text-align: center; }
.stats-card article:not(:last-child) { border-right: 1px solid rgba(16, 42, 87, 0.08); }
.stat-icon { display: inline-flex; margin-bottom: 8px; color: var(--yellow-deep); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.08em; }
.stats-card strong { display: block; margin-bottom: 4px; font-size: 1.45rem; line-height: 1; color: var(--blue-deep); }
.stats-card p { font-size: 0.86rem; color: rgba(16, 42, 87, 0.76); line-height: 1.5; }

.section-heading {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
  padding: 0 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--blue-deep);
}

.section-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading-compact { margin-bottom: 24px; }

.process-section, .faq-section {
  max-width: 1560px;
  margin: 72px auto 0;
  padding: 0 36px;
}

.process-grid, .faq-grid {
  display: grid;
  gap: 18px;
}

.process-grid { grid-template-columns: repeat(4, 1fr); }
.faq-grid { grid-template-columns: repeat(3, 1fr); }

.process-grid article, .faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.process-grid article, .faq-grid article { padding: 24px; }

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(242, 138, 26, 0.16);
  color: var(--yellow-deep);
  font-weight: 900;
  margin-bottom: 18px;
}

.process-grid h3, .faq-grid h3 {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.process-grid p, .faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1560px;
  margin: 72px auto 0;
  padding: 0 36px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 392px;
  padding: 0 20px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
}

.service-card img { width: calc(100% + 40px); height: 156px; margin: 0 -20px; object-fit: cover; object-position: center; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-top: -24px;
  border: 2px solid rgba(242, 138, 26, 0.92);
  border-radius: 50%;
  background: #ffffff;
  color: var(--yellow-deep);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.92);
}

.service-card h2 { margin: 16px 0 10px; font-size: 1.55rem; line-height: 1.08; letter-spacing: -0.04em; color: var(--blue-deep); }
.service-card p { font-size: 0.95rem; }
.service-card a { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--blue); font-weight: 800; font-size: 0.94rem; }

.conversion-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1320px;
  margin: 72px auto 0;
  padding: 34px 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-deep), #17469a);
  color: #fff;
  box-shadow: var(--shadow-xl);
}

.conversion-band h2 { margin: 0; font-size: clamp(1.8rem, 2.8vw, 2.7rem); letter-spacing: -0.04em; }
.conversion-band p:not(.eyebrow) { max-width: 68ch; margin: 10px 0 0; color: rgba(255,255,255,0.76); line-height: 1.5; }
.conversion-band .eyebrow { color: var(--yellow); }

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1560px;
  margin: 80px auto 0;
  padding: 0 36px;
  align-items: start;
}

.about-copy h2, .contact-info h2 {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--blue-deep);
  margin: 0 0 16px;
}

.about-body { color: var(--muted); line-height: 1.6; margin: 16px 0 32px; font-size: 1rem; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pillar { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); }
.pillar-icon { display: block; font-size: 1.5rem; color: var(--yellow-deep); margin-bottom: 12px; }
.pillar strong { display: block; font-size: 0.98rem; color: var(--blue-deep); margin-bottom: 8px; }
.pillar p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

.brands-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1560px;
  margin: 70px auto 0;
  padding: 26px 36px 0;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  flex: 1;
  align-items: center;
  color: rgba(16, 42, 87, 0.42);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.brands-list span {
  display: inline-flex;
  white-space: nowrap;
}

.brands-button { flex-shrink: 0; }

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1320px;
  margin: 80px auto 0;
  padding: 60px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 61, 141, 0.06);
  border: 2px solid rgba(20, 61, 141, 0.1);
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--blue-deep); margin-bottom: 2px; }
.contact-item a, .contact-item p { font-size: 0.93rem; color: var(--muted); margin: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.86rem; font-weight: 700; color: var(--blue-deep); letter-spacing: 0.01em; }
.form-field label span { color: var(--yellow-deep); }
.form-field input, .form-field select, .form-field textarea {
  padding: 11px 16px;
  border: 1.5px solid rgba(20, 61, 141, 0.16);
  border-radius: 12px;
  background: var(--surface-soft);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20, 61, 141, 0.1); }
.form-field textarea { resize: vertical; min-height: 100px; }
.contact-submit { width: 100%; min-height: 52px; font-size: 1rem; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 0.84rem; }
.form-success { margin: 0; padding: 14px 18px; background: rgba(16, 141, 70, 0.08); border: 1px solid rgba(16, 141, 70, 0.2); border-radius: 12px; color: #0a5c2d; font-weight: 700; font-size: 0.93rem; }

.site-footer { background: var(--blue-deep); color: rgba(255, 255, 255, 0.6); margin-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; max-width: 1560px; margin: 0 auto; padding: 64px 36px; }
.footer-brand p { font-size: 0.93rem; line-height: 1.6; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.06); font-size: 0.82rem; font-weight: 700; color: rgba(255, 255, 255, 0.6); transition: background 160ms, color 160ms; }
.footer-social a:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-col strong { font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 5px; }
.footer-nav-col a { font-size: 0.91rem; color: rgba(255, 255, 255, 0.56); transition: color 160ms; }
.footer-nav-col a:hover { color: #fff; }
.footer-nav-col p { margin: 0; font-size: 0.86rem; color: rgba(255, 255, 255, 0.4); line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; max-width: 1560px; margin: 0 auto; padding: 20px 36px 28px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-bottom p { margin: 0; font-size: 0.84rem; color: rgba(255, 255, 255, 0.38); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.84rem; color: rgba(255, 255, 255, 0.38); transition: color 160ms; }
.footer-legal a:hover { color: rgba(255, 255, 255, 0.7); }
.brand-mark--light strong { color: #fff; }
.brand-mark--light em { color: var(--yellow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid rgba(20, 61, 141, 0.16);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--blue-deep); border-radius: 2px; transition: transform 220ms ease, opacity 220ms ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1380px) {
  .nav { gap: 18px; font-size: 0.9rem; }
  .hero-layout { grid-template-columns: 52% 48%; min-height: 700px; }
  .services-grid { grid-template-columns: repeat(6, 1fr); }
  .service-card { grid-column: span 2; min-height: 390px; }
  .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1180px) {
  .hero-panel { padding-top: 86px; }
  .topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; width: 100%; display: flex; flex-wrap: wrap; align-items: center; transform: none; margin: 0; padding: 12px 18px; gap: 0; border-radius: 0; border-left: 0; border-right: 0; background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: blur(0); }
  .topbar.scrolled, .topbar.menu-open, body.has-scrolled .topbar { padding-top: 9px; padding-bottom: 9px; background: rgba(255,255,255,0.98); border-color: rgba(12,36,80,0.1); box-shadow: 0 12px 32px rgba(12,36,80,0.12); backdrop-filter: blur(18px); }
  .brand { flex: 1; min-width: 150px; }
  .nav-toggle { display: flex; margin-left: 8px; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 0; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); justify-content: unset; font-size: 1rem; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); text-align: left; }
  .topbar-actions { display: none; width: 100%; flex-direction: column; gap: 10px; margin-top: 12px; padding-bottom: 4px; }
  .topbar-actions.open { display: flex; }
  .topbar-actions .button, .topbar-actions .phone-link { justify-content: center; width: 100%; text-align: center; }
  .hero-layout { padding-top: 0; }
}

@media (max-width: 980px) {
  .topbar-actions { flex-wrap: wrap; justify-content: center; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding-left: 0; }
  .hero-copy { padding: 48px 28px 32px; }
  .hero-copy::before { inset: 18px 16px 42px; }
  .hero-media { min-height: 480px; margin-top: 0; clip-path: none; }
  .stats-card { width: auto; margin: 18px 28px 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
  .brands-row, .conversion-band { flex-direction: column; align-items: stretch; margin-left: 28px; margin-right: 28px; }
  .brands-list { gap: 14px 22px; font-size: 1rem; }
  .about-section { grid-template-columns: 1fr; gap: 40px; margin-top: 60px; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; margin: 60px 28px 0; padding: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 28px; }
}

@media (max-width: 700px) {
  .site-shell { padding: 0 0 40px; }
  .hero-panel { padding-top: 78px; }
  .brand-logo { width: 124px; }
  body.has-scrolled .brand-logo, .topbar.scrolled .brand-logo, .topbar.menu-open .brand-logo { width: 92px; }
  .hero-copy { padding: 30px 18px 28px; }
  .hero-copy h1 { max-width: none; font-size: clamp(3.05rem, 13vw, 5rem); }
  .lead { max-width: none; font-size: 1.04rem; }
  .hero-proof-line { max-width: none; }
  .hero-actions .button { width: 100%; }
  .hero-media { min-height: 340px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); margin: 12px 14px 18px; }
  .stats-card article:nth-child(2) { border-right: 0; }
  .stats-card article:nth-child(-n + 2) { border-bottom: 1px solid rgba(16,42,87,0.08); }
  .process-section, .faq-section { margin-top: 46px; padding: 0 18px; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; padding: 0 18px; margin-top: 46px; }
  .conversion-band { margin: 46px 14px 0; padding: 28px 20px; }
  .brands-list { gap: 12px 18px; font-size: 0.95rem; }
  .about-section { margin-top: 46px; padding: 0 20px; }
  .about-pillars { grid-template-columns: 1fr; }
  .contact-section { margin: 46px 14px 0; padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { padding: 40px 20px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 16px 20px 24px; gap: 12px; }
}
