/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: #0A0A0A;
  background: #FFFFFF;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
address { font-style: normal; }

:root {
  --midnight: #0D1B2A;
  --navy-mid: #162032;
  --accent: #FF6B00;
  --accent-hover: #FF8C33;
  --accent-active: #E55F00;
  --accent-tint: #FFF5E8;
  --silver: #8892A0;
  --charcoal: #1C2B3A;
  --offwhite: #F7F8FA;
  --border: #E8ECF0;
  --fg: #0A0A0A;
}

.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;
}

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

/* Section label */
.section-label { display: flex; align-items: center; gap: 12px; }
.section-label__line { display: block; height: 2px; width: 40px; background: var(--accent); }
.section-label__text { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--fg); }
.section-label--dark .section-label__text { color: #FFFFFF; }

/* Headings */
.section-heading { margin-top: 16px; font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--fg); }
.section-heading--white { color: #FFFFFF; }
@media (min-width: 768px) { .section-heading { font-size: 52px; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.25,.1,.25,1), transform .6s cubic-bezier(.25,.1,.25,1); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }

/* Tick */
.tick { display: inline-flex; flex-shrink: 0; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; line-height: 1; }
.tick--lg { width: 20px; height: 20px; font-size: 11px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 8px; font-weight: 600; white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.btn-accent { background: var(--accent); color: var(--midnight); }
.btn-accent:hover { background: var(--accent-hover); }
.btn-accent-dark { background: var(--accent); color: var(--fg); }
.btn-accent-dark:hover { background: var(--accent-active); }
.btn-dark { background: var(--midnight); color: #FFFFFF; }
.btn-dark:hover { background: var(--navy-mid); }
.btn-outline { background: #FFFFFF; color: var(--fg); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--midnight); }
.btn:hover { transform: translateY(-2px); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #FFFFFF; border-bottom: 1px solid var(--border);
  transition: background-color .3s ease, border-color .3s ease;
}
.nav.scrolled {
  background: rgba(13,27,42,0.92);
  border-bottom-color: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: 1200px; height: 72px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--fg); transition: color .15s ease; }
.logo .dot { color: var(--accent); }
.nav.scrolled .logo { color: #FFFFFF; }
.logo--light { color: #FFFFFF; }

.nav__links { display: none; align-items: center; gap: 36px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--fg); transition: color .15s ease; }
.nav.scrolled .nav__links a { color: rgba(255,255,255,0.7); }
.nav__links a:hover { color: var(--accent); }

.nav__cta { display: none; }
.nav__cta .btn { height: 40px; padding: 0 20px; font-size: 14px; }

.nav__toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; padding: 4px; color: var(--fg); transition: color .15s ease;
}
.nav.scrolled .nav__toggle { color: #FFFFFF; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: block; }
  .nav__toggle { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 60; display: flex; flex-direction: column;
  background: var(--midnight); padding: 32px;
  transform: translateX(100%); transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__close { background: none; border: none; color: #fff; padding: 4px; }
.mobile-menu__links { margin-top: 64px; display: flex; flex-direction: column; gap: 32px; }
.mobile-menu__links a { font-size: 28px; font-weight: 600; color: #FFFFFF; }
.mobile-menu__cta { margin-top: auto; }
.mobile-menu__cta .btn { height: 48px; padding: 0 28px; font-size: 15px; }
@media (min-width: 768px) { .mobile-menu { display: none; } }

/* ============ HERO ============ */
.hero { position: relative; background: var(--midnight); padding: 90px 24px 50px; }
@media (min-width: 768px) { .hero { padding: 110px 24px 50px; } }
.hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hero__eyebrow { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.hero h1 { margin-top: 32px; font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.hero h1 span { display: block; font-size: 46px; }
.hero h1 .white { color: #FFFFFF; }
.hero h1 .accent { color: var(--accent); }
@media (min-width: 768px) { .hero h1 span { font-size: 84px; } }
.hero__lede { margin: 32px auto 0; max-width: 560px; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.6); }
@media (min-width: 768px) { .hero__lede { font-size: 19px; } }
.hero__actions { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero__actions .btn { margin-bottom: 30px; height: 56px; padding: 0 36px; font-size: 15px; }
.hero__badges { width: 100%; max-width: 390px; height: auto; }

/* ============ MARQUEE ============ */
.marquee-section { background: var(--offwhite); padding: 28px 0; }
.marquee-section__label { text-align: center; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--silver); }
.marquee {
  position: relative; margin-top: 32px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee__item { display: flex; height: 60px; width: 16.6667vw; min-width: 170px; flex-shrink: 0; align-items: center; justify-content: center; padding: 0 24px; }
.marquee__item img { height: 40px; width: auto; max-width: 100%; object-fit: contain; opacity: .7; transition: opacity .2s ease; }
.marquee__item img:hover { opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SERVICES ============ */
.services { background: #FFFFFF; padding: 40px 0 0; }
@media (min-width: 768px) { .services { padding: 60px 0 0; } }
.services .section-heading { max-width: 700px; }

.services-row { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--border); min-height: 360px; }
.services-row:first-child { border-top: none; }
@media (min-width: 768px) { .services-row { grid-template-columns: 1fr 1fr; } }

.services-row__content { display: flex; flex-direction: column; justify-content: center; background: #FFFFFF; padding: 40px; transition: background-color .3s ease; }
@media (min-width: 768px) { .services-row__content { padding: 48px; } }
.services-row:hover .services-row__content { background: var(--offwhite); }

.services-row__tag {
  display: inline-block; width: fit-content; border-radius: 8px; border: 1px solid rgba(255,107,0,.35);
  background: var(--accent-tint); padding: 9px 20px; font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--accent);
}
.services-row__title { margin-top: 20px; font-size: 28px; font-weight: 600; line-height: 1.2; color: var(--fg); }
@media (min-width: 768px) { .services-row__title { font-size: 36px; } }
.services-row__body { margin-top: 16px; max-width: 420px; font-size: 17px; line-height: 1.7; color: var(--silver); }
.services-row__link { margin-top: 32px; display: inline-block; font-size: 14px; font-weight: 600; color: var(--midnight); transition: color .15s ease; }
.services-row__link:hover { color: var(--accent); }

.services-row__panel { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #FFFFFF; padding: 24px; padding-top: 80px; padding-bottom: 60px; }
.services-row__panel--tall { padding-top: 120px; }
.services-row__panel img { max-height: 100%; max-width: 100%; object-fit: contain; }

.panel-desktop { display: none; }
.panel-mobile { display: flex; }
@media (min-width: 768px) {
  .panel-desktop { display: flex; }
  .panel-mobile { display: none; }
}

/* ============ SERVICES CTA ============ */
.services-cta { background: #FFFFFF; padding-bottom: 50px; }
@media (min-width: 768px) { .services-cta { padding-bottom: 70px; } }
.services-cta__card {
  position: relative; overflow: hidden; border-radius: 16px; background: var(--midnight);
  padding: 28px 32px; box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
@media (min-width: 768px) { .services-cta__card { padding: 36px 64px; } }
.services-cta__circle {
  position: absolute; top: -96px; right: -96px; width: 320px; height: 320px;
  border-radius: 50%; background: var(--accent); opacity: .06; pointer-events: none;
}
.services-cta__inner { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
@media (min-width: 768px) { .services-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.services-cta__inner h3 { max-width: 640px; font-size: 28px; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: #FFFFFF; }
@media (min-width: 768px) { .services-cta__inner h3 { font-size: 40px; } }
.services-cta__inner p { margin-top: 16px; max-width: 640px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.6); }
@media (min-width: 768px) { .services-cta__inner p { font-size: 17px; } }
.services-cta .btn { height: 56px; padding: 0 28px; font-size: 15px; flex-shrink: 0; }

/* ============ PRICING ============ */
.pricing { background: var(--offwhite); padding: 80px 0; }
@media (min-width: 768px) { .pricing { padding: 120px 0; } }
.pricing .section-label, .pricing .section-heading, .pricing__sub { text-align: center; justify-content: center; }
.pricing__sub { margin-top: 16px; font-size: 18px; color: var(--silver); }

.pricing__toggle { margin: 44px auto 0; display: flex; width: fit-content; gap: 4px; }
.pricing__toggle button {
  height: 42px; border-radius: 8px; padding: 0 24px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border); background: #FFFFFF; color: var(--silver); transition: all .2s ease;
}
.pricing__toggle button.active { background: var(--midnight); color: #FFFFFF; border-color: transparent; }

.pricing__grid { margin-top: 44px; display: grid; grid-template-columns: 1fr; gap: 20px; align-items: stretch; }
@media (min-width: 768px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing__grid { grid-template-columns: repeat(5, 1fr); } }

.pricing-card { position: relative; height: 100%; border-radius: 8px; background: #FFFFFF; padding: 36px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.pricing-card--featured { border: 2px solid var(--midnight); box-shadow: 0 8px 40px rgba(13,27,42,.1); }
.pricing-card__badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  border-radius: 8px; background: var(--midnight); padding: 6px 20px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; color: #FFFFFF; white-space: nowrap;
}
.pricing-card__tag {
  display: inline-block; width: fit-content; border-radius: 8px; border: 1px solid var(--border);
  background: var(--offwhite); padding: 4px 10px; font-size: 11px; font-weight: 500;
  text-transform: uppercase; color: var(--silver);
}
.pricing-card--featured .pricing-card__tag { background: var(--accent-tint); border-color: rgba(13,27,42,.15); color: var(--midnight); }
.pricing-card__price { margin-top: 20px; display: flex; flex-direction: column; }
.pricing-card__amount { font-size: 44px; font-weight: 800; color: var(--fg); }
@media (min-width: 768px) { .pricing-card__amount { font-size: 52px; } }
.pricing-card--featured .pricing-card__amount { color: var(--midnight); }
.pricing-card__links { font-size: 15px; color: var(--silver); }
.pricing-card__divider { margin: 24px 0; height: 1px; background: var(--border); }
.pricing-card__features { display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--charcoal); }
.pricing-card .btn { margin-top: 32px; height: 48px; width: 100%; font-size: 14px; }
.pricing__note { margin-top: 32px; text-align: center; font-size: 15px; line-height: 1.65; color: var(--silver); }
.pricing__note strong { color: var(--fg); }

/* ============ PROCESS ============ */
.process { background: var(--midnight); padding: 80px 0; }
@media (min-width: 768px) { .process { padding: 120px 0; } }
.process__wrap { position: relative; margin-top: 64px; }
.process__line { display: none; }
@media (min-width: 768px) { .process__line { display: block; position: absolute; top: 28px; left: 0; right: 0; height: 2px; background: var(--accent); } }
.process__steps { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
@media (min-width: 640px) { .process__steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .process__steps { grid-template-columns: repeat(6, 1fr); gap: 0; } }
.process__step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.process__num {
  display: flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 50%; border: 2px solid var(--accent); background: var(--midnight);
  font-size: 18px; font-weight: 800; color: var(--accent);
}
.process__title { margin-top: 16px; font-size: 14px; font-weight: 600; color: #FFFFFF; }
.process__desc { margin-top: 6px; max-width: 110px; font-size: 12px; color: rgba(255,255,255,.4); }

/* ============ REVIEWS ============ */
.reviews { background: var(--offwhite); padding: 80px 0; }
@media (min-width: 768px) { .reviews { padding: 120px 0; } }
.reviews .section-heading { white-space: nowrap; }
@media (max-width: 380px) { .reviews .section-heading { white-space: normal; font-size: 28px; } }
.reviews__grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { border-radius: 8px; border: 1px solid var(--border); background: #FFFFFF; padding: 32px; transition: all .2s ease; }
.review-card:hover { border-color: var(--midnight); box-shadow: 0 4px 20px rgba(13,27,42,.06); }
.review-card__stars { font-size: 16px; color: var(--accent); letter-spacing: 2px; }
.review-card__quote { margin-top: 16px; font-size: 15px; line-height: 1.7; color: var(--charcoal); }
.review-card__divider { margin: 20px 0; height: 1px; background: var(--border); }
.review-card__name { font-size: 14px; font-weight: 600; color: var(--fg); }
.review-card__company { font-size: 13px; color: var(--silver); }

/* ============ GUARANTEES ============ */
.guarantees { background: var(--midnight); padding: 80px 0; }
@media (min-width: 768px) { .guarantees { padding: 120px 0; } }
.guarantees__grid { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .guarantees__grid { grid-template-columns: 44% 56%; gap: 80px; } }
.guarantees__left { position: relative; }
.guarantees__left h2 { font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #FFFFFF; }
@media (min-width: 768px) { .guarantees__left h2 { font-size: 52px; } }
.guarantees__left h2 .accent { color: var(--accent); }
.guarantees__left p { margin-top: 24px; max-width: 320px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.5); }
.guarantees__watermark {
  position: absolute; top: -48px; right: -16px; display: none; font-size: 240px; font-weight: 800;
  line-height: 1; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.04); user-select: none; pointer-events: none;
}
@media (min-width: 768px) { .guarantees__watermark { display: block; } }
.guarantees__left .btn { margin-top: 40px; height: 44px; padding: 0 24px; font-size: 14px; }
.guarantees__cards { display: grid; grid-template-columns: 1fr; gap: 2px; }
@media (min-width: 640px) { .guarantees__cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .guarantees__cards { grid-template-columns: repeat(3, 1fr); } }
.guarantee-card { padding: 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); transition: background-color .2s ease; }
.guarantee-card:hover { background: rgba(255,255,255,.07); }
.guarantee-card__icon {
  display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 50%; border: 2px solid var(--accent); font-size: 14px; font-weight: 700; color: var(--accent);
}
.guarantee-card h3 { margin-top: 14px; font-size: 16px; font-weight: 600; color: #FFFFFF; }
.guarantee-card p { margin-top: 6px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.5); }

/* ============ WHY CHOOSE US ============ */
.why-us { background: #FFFFFF; padding: 80px 0; }
@media (min-width: 768px) { .why-us { padding: 120px 0; } }
.why-us__grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) {
  .why-us__grid { grid-template-columns: repeat(3, 1fr); grid-template-areas: "c1 c1 c2" "c3 c4 c4"; }
  .why-us__c1 { grid-area: c1; } .why-us__c2 { grid-area: c2; } .why-us__c3 { grid-area: c3; } .why-us__c4 { grid-area: c4; }
}
.why-card { border-radius: 8px; padding: 36px; }
.why-card--feature { border: 1px solid var(--border); transition: border-color .2s ease; }
.why-card--feature:hover { border-color: var(--midnight); }
.why-card .label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--silver); }
.why-card--feature h3 { margin-top: 12px; font-size: 26px; font-weight: 700; line-height: 1.2; color: var(--fg); }
.why-card--feature p { margin-top: 16px; font-size: 15px; line-height: 1.65; color: var(--silver); }
.why-card--dark { background: var(--midnight); }
.why-card--dark .stat { font-size: 64px; font-weight: 800; line-height: 1; color: var(--accent); }
.why-card--dark.small .stat { font-size: 48px; }
.why-card--dark p { margin-top: 12px; font-size: 15px; color: rgba(255,255,255,.6); }
.why-card--accent { background: var(--accent); }
.why-card--accent .label { color: rgba(13,27,42,.7); }
.why-card--accent h3 { margin-top: 12px; font-size: 28px; font-weight: 800; line-height: 1.15; color: var(--midnight); }
.why-card--accent p { margin-top: 12px; font-size: 15px; line-height: 1.6; color: rgba(13,27,42,.8); }

/* ============ FAQ ============ */
.faq { background: var(--offwhite); padding: 80px 0; }
@media (min-width: 768px) { .faq { padding: 120px 0; } }
.faq__list { margin: 56px auto 0; max-width: 800px; }
.faq-item { margin-bottom: 8px; border-radius: 8px; background: #FFFFFF; border: 1px solid var(--border); border-left: 1px solid var(--border); padding: 20px 28px; transition: all .2s ease; }
.faq-item.open { border-color: var(--midnight); border-left: 3px solid var(--accent); background: var(--accent-tint); }
.faq-item__q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; text-align: left; font-size: 16px; font-weight: 600; color: var(--fg); background: none; border: none; padding: 0; }
.faq-item__icon {
  display: flex; flex-shrink: 0; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 50%; font-size: 18px; line-height: 1; background: var(--offwhite); color: var(--midnight); transition: all .2s ease;
}
.faq-item.open .faq-item__icon { background: var(--midnight); color: #FFFFFF; }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height .3s ease, margin-top .3s ease; }
.faq-item.open .faq-item__a { max-height: 600px; margin-top: 14px; }
.faq-item__a-inner { border-top: 1px solid var(--border); padding-top: 14px; font-size: 15px; line-height: 1.7; color: var(--silver); }

/* ============ CONTACT ============ */
.contact { background: var(--midnight); padding: 80px 0; }
@media (min-width: 768px) { .contact { padding: 120px 0; } }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .contact__grid { grid-template-columns: repeat(2, 1fr); gap: 80px; align-items: start; } }
.contact__info h2 { margin-top: 16px; font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: #FFFFFF; }
@media (min-width: 768px) { .contact__info h2 { font-size: 48px; } }
.contact__info h2 .accent { color: var(--accent); }
.contact__info > p { margin-top: 20px; max-width: 380px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.5); }
.contact__rows { margin-top: 44px; display: flex; flex-direction: column; gap: 20px; }
.contact__row { display: flex; align-items: center; gap: 14px; }
.contact__row-icon {
  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--accent);
}
.contact__row-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.35); }
.contact__row-value { margin-top: 2px; font-size: 14px; font-weight: 600; color: #FFFFFF; }
.contact__divider { margin: 36px 0; height: 1px; background: rgba(255,255,255,.07); }
.contact__rating { display: flex; align-items: center; }
.contact__rating .stars { font-size: 18px; color: var(--accent); letter-spacing: 2px; }
.contact__rating .label { margin-left: 10px; font-size: 13px; color: rgba(255,255,255,.4); }

.contact-form { overflow: hidden; border-radius: 8px; background: #FFFFFF; box-shadow: 0 24px 64px rgba(0,0,0,.3); }
.contact-form__header { border-bottom: 1px solid var(--border); padding: 32px 36px 24px; }
.contact-form__header h3 { font-size: 20px; font-weight: 700; color: var(--fg); }
.contact-form__header p { margin-top: 6px; font-size: 14px; color: var(--silver); }
.contact-form form { display: flex; flex-direction: column; gap: 14px; padding: 28px 36px 36px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.input {
  width: 100%; height: 48px; border: 1px solid var(--border); border-radius: 8px; padding: 0 14px;
  font-size: 14px; font-family: inherit; color: var(--fg); background: #FFFFFF;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder { color: var(--silver); }
.input:focus { outline: none; border-color: var(--midnight); box-shadow: 0 0 0 3px rgba(13,27,42,.06); }
textarea.input { height: 120px; padding-top: 12px; padding-bottom: 12px; resize: vertical; font-family: inherit; }
.contact-form .btn { height: 52px; width: 100%; font-size: 14px; }

/* ============ FOOTER ============ */
.footer { background: var(--midnight); padding: 80px 24px 40px; }
.footer__grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 64px; } }
.footer__about p { margin-top: 16px; max-width: 260px; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.45); }
.footer__about .copyright { margin-top: 28px; font-size: 12px; color: rgba(255,255,255,.25); }
.footer h4 { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); }
.footer__nav ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s ease; }
.footer__nav a:hover { color: #FFFFFF; }
.footer__contact a { display: block; font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s ease; }
.footer__contact a:hover { color: #FFFFFF; }
.footer__contact .trial-link { margin-top: 12px; font-weight: 600; color: var(--accent); }
.footer__contact .trial-link:hover { opacity: .8; color: var(--accent); }
.footer__powered { margin-top: 20px; }
.footer__powered span { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); }
.footer__powered img { margin-top: 6px; height: 24px; width: auto; }
@media (min-width: 768px) { .footer__address { text-align: right; } }
.footer__address address { margin-top: 16px; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.55); }
.footer__address a { margin-top: 8px; display: block; font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s ease; }
.footer__address a:hover { color: #FFFFFF; }
.footer__bottom {
  max-width: 1200px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06); font-size: 12px; color: rgba(255,255,255,.25);
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__bottom .links { display: flex; gap: 24px; }
.footer__bottom a:hover { color: rgba(255,255,255,.5); }

/* ============ THANK YOU ============ */
.thank-you { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--midnight); padding: 80px 24px; }
.thank-you__inner { width: 100%; max-width: 640px; text-align: center; }
.thank-you__icon {
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
  width: 80px; height: 80px; border-radius: 50%; background: var(--accent);
  font-size: 36px; font-weight: 700; color: var(--fg);
}
.thank-you__title { margin-top: 32px; font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: #FFFFFF; }
.thank-you__title .accent { color: var(--accent); }
@media (min-width: 768px) { .thank-you__title { font-size: 56px; } }
.thank-you__text { margin: 20px auto 0; max-width: 480px; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.6); }
.thank-you__actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.thank-you__actions .btn { height: 52px; padding: 0 28px; font-size: 14px; }
.btn-outline-light { background: transparent; color: #FFFFFF; border: 1px solid rgba(255,255,255,.15); }
.btn-outline-light:hover { background: rgba(255,255,255,.05); }
.thank-you__divider { margin: 40px auto; height: 1px; max-width: 320px; background: rgba(255,255,255,.1); }
.thank-you__badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; font-size: 13px; color: rgba(255,255,255,.5); }
.thank-you__badges .dot { color: var(--accent); margin-right: 6px; }

/* ============ LEGAL PAGES ============ */
.legal-header { background: var(--midnight); padding: 140px 24px 60px; text-align: center; }
.legal-header__eyebrow { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.legal-header h1 { margin-top: 16px; font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: #FFFFFF; }
@media (min-width: 768px) { .legal-header h1 { font-size: 56px; } }
.legal-header__meta { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.5); }

.legal { background: #FFFFFF; padding: 80px 0 100px; }
.legal__content { max-width: 760px; margin: 0 auto; }
.legal__content h2 { margin-top: 48px; font-size: 24px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.legal__content h2:first-child { margin-top: 0; }
.legal__content p { margin-top: 16px; font-size: 16px; line-height: 1.75; color: var(--charcoal); }
.legal__content ul { margin-top: 16px; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal__content li { font-size: 16px; line-height: 1.75; color: var(--charcoal); list-style: disc; }
.legal__content a { color: var(--accent); font-weight: 600; }
.legal__content a:hover { text-decoration: underline; }
.legal__content strong { color: var(--fg); }
