/* ═══════════════════════════════════════════
   GenieMode — Light Editorial
   Modeled after antigravity.google
   ═══════════════════════════════════════════ */

/* ─── Google Sans Flex (variable) ─── */
@font-face {
  font-family: 'Google Sans Flex';
  src: url('https://fonts.gstatic.com/s/googlesansflex/v1/2zDhZJj6QO9bknDUGvqvDkE0v1pKXsFRQE0.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 50% 200%;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans Text';
  src: url('https://fonts.gstatic.com/s/googlesanstext/v1/5aUz9-KzpRiLCAt98hCDO2dUKaKXrx3Uw.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans Text';
  src: url('https://fonts.gstatic.com/s/googlesanstext/v1/5aUu9-KzpRiLCAt98hCDO2dUKiT7xNRfiA.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Google Sans Text';
  src: url('https://fonts.gstatic.com/s/googlesanstext/v1/5aUu9-KzpRiLCAt98hCDO2dUKgj4xNRfiA.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --surface: #f8f9fa;
  --surface-2: #f1f3f4;
  --text-1: #202124;
  --text-2: #3c4043;
  --text-3: #5f6368;
  --text-4: #9aa0a6;
  --blue: #1a73e8;
  --blue-light: #e8f0fe;
  --green: #1e8e3e;
  --green-light: #e6f4ea;
  --border: #dadce0;
  --border-light: #e8eaed;
  --radius: 12px;
  --radius-lg: 16px;
  --max-w: 1200px;
  --font-display: 'Google Sans Flex', 'Google Sans', 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Google Sans Text', 'Google Sans', 'Inter', system-ui, sans-serif;
  --font-mono: 'Google Sans Mono', 'JetBrains Mono', 'SF Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--blue-light);
  color: var(--text-1);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-1);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-1);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-1);
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-1);
}

.body-lg {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-3);
}

.body-md {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-3);
}

.body-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-3);
}

.label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.mono {
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}

.nav.scrolled {
  border-bottom-color: var(--border-light);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 14px 40px; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon span {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; color: #fff;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

/* Desktop links */
.nav-links { display: none; align-items: center; gap: 0; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-3);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover { color: var(--text-1); }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  left: 50%; top: 100%;
  margin-top: 8px;
  transform: translateX(-50%);
  width: 320px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.04);
}
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 12px 14px;
  border-radius: 8px; transition: background .15s;
}
.nav-dropdown a:hover { background: var(--surface); }
.dd-title { font-size: 14px; font-weight: 500; color: var(--text-1); }
.dd-desc { font-size: 13px; color: var(--text-4); margin-top: 2px; }

/* CTA */
.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: 9999px;
  background: var(--blue); color: #fff;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  transition: background .2s, box-shadow .2s;
}
.btn-primary:hover {
  background: #1567d3;
  box-shadow: 0 1px 3px rgba(26,115,232,.3);
}

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 24px; border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--blue); font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  transition: background .2s, border-color .2s;
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--text-4);
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: 20px; padding: 10px 0;
  position: relative; z-index: 110;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block; height: 1.5px; width: 100%; background: var(--text-1);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 400; color: var(--text-1);
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(2) { transition-delay: .06s; }
.mobile-menu.open a:nth-child(3) { transition-delay: .12s; }
.mobile-menu.open a:nth-child(4) { transition-delay: .18s; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero { padding-top: 200px; padding-bottom: 140px; }
}

.hero .label { margin-bottom: 20px; display: block; }

.hero h1 {
  max-width: 800px;
  margin: 0 auto;
}

.hero .body-lg {
  max-width: 520px;
  margin: 24px auto 0;
}

.hero-actions {
  margin-top: 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section {
  padding: 80px 0;
}
@media (min-width: 768px) { .section { padding: 120px 0; } }

.section-bordered {
  border-top: 1px solid var(--border-light);
}

.section-surface {
  background: var(--surface);
}

.section-header {
  margin-bottom: 56px;
}
@media (min-width: 768px) { .section-header { margin-bottom: 72px; } }

.section-header .label { margin-bottom: 16px; display: block; }
.section-header .body-lg { margin-top: 16px; max-width: 520px; }

.section-header-centered {
  text-align: center;
}
.section-header-centered .body-lg {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Stats ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}

.stat { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  color: var(--text-1);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px;
  color: var(--text-4);
  margin-top: 4px;
}

/* ─── Cards grid ─── */
.cards-grid-2 {
  display: grid; gap: 20px;
}
@media (min-width: 768px) { .cards-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.cards-grid-3 {
  display: grid; gap: 20px;
}
@media (min-width: 768px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ─── Service card ─── */
.service-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
@media (min-width: 768px) { .service-card { padding: 40px; } }
.service-card:hover {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.card-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 20px;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-3);
  margin-bottom: 28px;
}

.card-features { display: flex; flex-direction: column; gap: 10px; }
.card-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-2);
  line-height: 1.5;
}
.card-features .dot {
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .4;
  margin-top: 7px;
}

/* ─── Case study card ─── */
.case-card {
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.case-card:hover {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.case-client {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-4); margin-bottom: 20px;
}
.case-result {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: 12px;
}
.case-desc {
  font-size: 15px; line-height: 1.7; color: var(--text-3);
  flex: 1; margin-bottom: 28px;
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 4px 12px; border-radius: 9999px;
  background: var(--surface);
  font-size: 12px; color: var(--text-3);
}

/* ─── View all link ─── */
.cases-header {
  display: flex; flex-direction: column; gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .cases-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--blue);
  transition: gap .2s;
}
.view-all:hover { gap: 10px; }

/* ─── Logos ─── */
.logos-label {
  text-align: center;
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 36px;
}
.logos-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 36px;
}
@media (min-width: 768px) { .logos-row { gap: 56px; } }
.logos-row span {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--text-4);
  opacity: .6;
  transition: opacity .2s;
}
.logos-row span:hover { opacity: 1; }

/* ─── Timeline ─── */
.timeline-items {
  display: flex; flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex; gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
}
@media (min-width: 768px) { .timeline-item { gap: 48px; padding: 48px 0; } }
.timeline-item:last-child { border-bottom: none; }

.timeline-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-4);
  flex-shrink: 0;
  width: 32px;
  padding-top: 2px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.timeline-duration {
  display: inline-block;
  margin-left: 16px;
  padding: 2px 12px;
  border-radius: 9999px;
  background: var(--surface);
  font-size: 12px; font-weight: 500;
  color: var(--text-4);
  vertical-align: middle;
}

.timeline-text {
  margin-top: 8px;
  font-size: 15px; line-height: 1.7;
  color: var(--text-3);
  max-width: 520px;
}

/* ─── CTA section ─── */
.cta-section {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 80px 32px;
  margin: 0 24px;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 120px 64px;
    margin: 0 40px;
    border-radius: 24px;
  }
}

.cta-section .body-lg {
  max-width: 460px;
  margin: 16px auto 0;
}
.cta-buttons {
  margin-top: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
@media (min-width: 480px) { .cta-buttons { flex-direction: row; justify-content: center; } }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border-light);
  margin-top: 80px;
}
@media (min-width: 768px) { .footer { margin-top: 120px; } }

.footer-inner { padding: 64px 0; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }
.footer-brand p {
  margin-top: 16px; font-size: 14px;
  line-height: 1.7; color: var(--text-3); max-width: 240px;
}

.footer-col h4 {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-4); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--text-3); transition: color .2s;
}
.footer-col a:hover { color: var(--text-1); }

.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p, .footer-bottom a {
  font-size: 12px; color: var(--text-4);
}
.footer-bottom a:hover { color: var(--text-3); }
.footer-legal { display: flex; gap: 24px; }

/* ═══════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
  padding-top: 140px;
  padding-bottom: 64px;
}
@media (min-width: 768px) { .page-hero { padding-top: 180px; padding-bottom: 100px; } }

.page-hero h1 {
  max-width: 720px;
}
.page-hero .body-lg {
  margin-top: 20px;
  max-width: 520px;
}

/* ─── Pricing ─── */
.pricing-grid { display: grid; gap: 20px; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px; background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
@media (min-width: 768px) { .pricing-card { padding: 40px; } }
.pricing-card:hover {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.pricing-card.highlighted {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 4px 24px rgba(26,115,232,.08);
}

.pricing-badge {
  position: absolute; top: -12px; left: 32px;
  padding: 4px 14px; border-radius: 9999px;
  background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 500;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500; color: var(--text-1);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-1);
  margin-top: 8px;
  letter-spacing: -0.02em;
}
.pricing-desc {
  font-size: 14px; color: var(--text-3); margin-top: 8px;
}
.pricing-features {
  margin-top: 28px; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2);
}
.pricing-features li svg {
  flex-shrink: 0; margin-top: 3px; color: var(--blue); opacity: .6;
}
.pricing-cta { margin-top: 28px; display: block; text-align: center; }

/* ─── Project card (work page) ─── */
.project-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white);
}
.project-card:hover {
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.project-inner { padding: 32px; }
@media (min-width: 768px) { .project-inner { padding: 48px; display: flex; gap: 48px; } }

.project-main { flex: 1; }
.project-client {
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-4); margin-bottom: 8px;
}
.project-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 400; color: var(--text-1);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.project-result {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500;
  color: var(--blue); margin-bottom: 20px;
}
.project-desc {
  font-size: 15px; line-height: 1.7;
  color: var(--text-3); margin-bottom: 20px;
}

.project-metrics {
  flex-shrink: 0; display: flex; gap: 24px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .project-metrics {
    width: 180px; flex-direction: column; gap: 28px; margin-top: 0;
  }
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400; color: var(--blue);
  letter-spacing: -0.02em;
}
.metric-label { font-size: 12px; color: var(--text-4); margin-top: 2px; }

/* ─── Contact ─── */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 64px; } }

.form-row { display: grid; gap: 20px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px; font-weight: 500; color: var(--text-3);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-1); font-size: 15px;
  font-family: var(--font-body);
  outline: none; transition: border-color .2s;
  resize: none;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--text-4);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}
.field select { appearance: none; cursor: pointer; }

.form-success {
  min-height: 360px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  border-radius: var(--radius-lg);
  background: var(--surface); padding: 48px;
}
.form-success .icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light); margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 400; color: var(--text-1);
}
.form-success p { margin-top: 8px; font-size: 15px; color: var(--text-3); }

.sidebar-box {
  border-radius: var(--radius); border: 1px solid var(--border-light);
  padding: 24px; background: var(--white);
}
.sidebar-box h3 {
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-4); margin-bottom: 14px;
}
.sidebar-box p { font-size: 14px; line-height: 1.7; color: var(--text-3); }
.sidebar-box a { font-size: 14px; color: var(--blue); transition: opacity .2s; }
.sidebar-box a:hover { opacity: .7; }

.expect-steps { display: flex; flex-direction: column; gap: 16px; }
.expect-step { display: flex; gap: 14px; }
.expect-dot {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--text-4);
}
.expect-step p { font-size: 14px; line-height: 1.6; color: var(--text-3); }

/* ─── Divider CTA ─── */
.divider-cta {
  border-top: 1px solid var(--border-light);
  text-align: center;
  padding: 80px 0;
}
@media (min-width: 768px) { .divider-cta { padding: 120px 0; } }
.divider-cta .display-lg { max-width: 600px; margin: 0 auto; }
.divider-cta .body-lg {
  margin: 16px auto 0; max-width: 460px;
}
.divider-cta .btn-primary { margin-top: 32px; }

/* ─── Inner page service list ─── */
.service-list {
  display: flex; flex-direction: column; gap: 20px;
}
