/* ============================================================
 * MotionPod website : shared stylesheet
 * Modern static site, no build step. Brand language carries over
 * from the proposal one-pager : bright coral + navy + cream,
 * Inter typography, magazine-style cards, full responsive.
 * ============================================================ */

:root {
  --coral: #ff4400;
  --coral-dark: #d63a00;
  --coral-soft: #FFF1E8;
  --navy: #0b1628;
  --navy-2: #16223a;
  --slate: #5b6376;
  --slate-2: #99a0b3;
  --gold: #C9A96E;
  --cream: #FFFBF6;
  --cream-2: #FDF8F1;
  --line: #eadcc8;
  --shadow-sm: 0 1px 2px rgba(11,22,40,0.04), 0 4px 12px rgba(11,22,40,0.06);
  --shadow-md: 0 4px 14px rgba(11,22,40,0.10), 0 12px 32px rgba(11,22,40,0.08);
  --shadow-lg: 0 8px 24px rgba(11,22,40,0.14), 0 24px 56px rgba(11,22,40,0.10);
  --shadow-coral: 0 8px 24px rgba(255, 68, 0, 0.18), 0 2px 6px rgba(255, 68, 0, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
 * NAVIGATION
 * ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(11, 22, 40, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.4px;
}
.nav-brand img { width: 34px; height: 34px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.1px;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease, transform 0.1s ease;
}
.nav-cta:hover { background: #1a2744; }
.nav-cta:active { transform: translateY(1px); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

@media (max-width: 880px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 16px 28px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.04); width: 100%; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ============================================================
 * BUTTONS
 * ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.2px;
  cursor: pointer;
  border: none;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover { background: var(--coral-dark); }
.btn-ghost {
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-dark {
  background: var(--navy);
  color: var(--cream);
}
.btn-dark:hover { background: #1a2744; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ============================================================
 * SECTION HEADINGS
 * ============================================================ */
.eyebrow {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-h {
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 760px;
}
.section-h .accent { color: var(--coral); }
.section-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 680px;
  margin-bottom: 48px;
}
.section-center { text-align: center; }
.section-center .section-h, .section-center .section-lead { margin-left: auto; margin-right: auto; }

/* Dark section variant */
.section-dark {
  background: var(--navy);
  color: var(--cream);
}
.section-dark .section-h { color: var(--cream); }
.section-dark .section-lead { color: var(--slate-2); }
.section-dark .eyebrow { background: rgba(255,255,255,0.08); color: var(--gold); }

/* Cream-2 section variant */
.section-cream-2 { background: var(--cream-2); }

/* ============================================================
 * HERO
 * ============================================================ */
.hero {
  padding: 80px 0 110px;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, var(--coral-soft) 0%, transparent 50%),
              linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--navy);
}
.hero h1 .accent { color: var(--coral); }
.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  text-align: center;
  position: relative;
}
.hero-image img {
  max-width: 100%;
  width: 480px;
  filter: drop-shadow(0 30px 60px rgba(11, 22, 40, 0.22));
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--coral);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-weight: 600;
}

@media (max-width: 880px) {
  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 42px; letter-spacing: -1.2px; }
  .hero-image img { width: 320px; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .section { padding: 70px 0; }
  .section-h { font-size: 32px; }
  .section-lead { font-size: 16px; }
}

/* ============================================================
 * CARDS
 * ============================================================ */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #d9c8b0;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral-soft) 0%, #ffe1cc 100%);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: inset 0 -2px 4px rgba(255, 68, 0, 0.08);
}
.card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  color: var(--navy);
}
.card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
}

.section-dark .card {
  background: var(--navy-2);
  border-color: #243150;
}
.section-dark .card h3 { color: var(--cream); }
.section-dark .card p { color: var(--slate-2); }
.section-dark .card:hover { background: #1c2a47; border-color: var(--coral); }

@media (max-width: 880px) {
  .card-grid.cols-2,
  .card-grid.cols-3,
  .card-grid.cols-4 { grid-template-columns: 1fr; }
  .card { padding: 26px 22px; }
  .section-h { font-size: 30px; }
}

/* ============================================================
 * APP CARDS (with phone screenshot)
 * ============================================================ */
.app-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.app-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 68, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.app-phone {
  text-align: center;
  position: relative;
  z-index: 1;
}
.phone-frame {
  background: var(--navy);
  border-radius: 22px;
  padding: 6px;
  display: inline-block;
  box-shadow: var(--shadow-lg);
}
.phone-frame img {
  width: 180px;
  border-radius: 16px;
  display: block;
}
.app-card.wide .phone-frame img { width: 280px; }
.app-pill {
  display: inline-block;
  background: var(--coral-soft);
  color: var(--coral);
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.app-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: var(--navy);
}
.app-card > div:last-child > p {
  font-size: 14.5px;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.55;
}
.app-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.app-features li {
  font-size: 13.5px;
  color: var(--slate);
  padding: 4px 0 4px 22px;
  position: relative;
}
.app-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 880px) {
  .app-card { grid-template-columns: 1fr; text-align: center; padding: 30px 24px; }
  .app-features li { text-align: left; }
}

/* ============================================================
 * FLOW STRIP (4 steps)
 * ============================================================ */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
}
.flow-step {
  background: var(--navy-2);
  border: 1px solid #243150;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.flow-step:hover { transform: translateY(-4px); border-color: var(--coral); }
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 19px;
  background: var(--coral);
  color: white;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-coral);
}
.flow-step h4 {
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.flow-step p {
  font-size: 13.5px;
  color: var(--slate-2);
  line-height: 1.5;
}
.flow-arrow {
  font-size: 24px;
  color: var(--coral);
  font-weight: 800;
}
.flow-tag {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 880px) {
  .flow { grid-template-columns: 1fr; gap: 12px; }
  .flow-arrow { display: none; }
}

/* ============================================================
 * CONTACT CARD
 * ============================================================ */
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 540px;
  margin: 36px auto 0;
  text-align: center;
}
.contact-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 6px;
  color: var(--cream);
}
.contact-role {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.contact-rows {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 15.5px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: var(--cream);
}
.contact-row .label {
  color: var(--slate-2);
  min-width: 54px;
  text-align: right;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.contact-row a {
  color: var(--cream);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.contact-row a:hover { border-bottom-color: var(--gold); }

/* ============================================================
 * SKU TABLE
 * ============================================================ */
.sku-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.sku-table th, .sku-table td {
  text-align: left;
  padding: 16px 22px;
}
.sku-table thead {
  background: var(--navy);
  color: var(--cream);
}
.sku-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.sku-table td {
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--slate);
}
.sku-table tr:last-child td { border-bottom: none; }
.sku-table td strong { color: var(--navy); font-weight: 700; }

/* ============================================================
 * CALLOUT
 * ============================================================ */
.callout {
  background: var(--coral-soft);
  border-left: 4px solid var(--coral);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 14.5px;
  color: var(--navy);
}
.callout strong { color: var(--coral); }

/* ============================================================
 * FOOTER
 * ============================================================ */
.footer {
  background: #060a14;
  color: var(--slate-2);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { width: 44px; height: 44px; margin-bottom: 14px; }
.footer-brand h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: var(--slate-2);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
 * SCROLL REVEAL ANIMATIONS
 * Page-load: every .reveal element auto-animates in via CSS keyframes.
 * Works without JavaScript, works in headless renders, works with
 * SEO crawlers. No flash of invisible content.
 *
 * The .reveal-delay-N variants stagger the entrance.
 * ============================================================ */
@keyframes revealIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: revealIn 0.7s ease-out both;
}
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
 * PAGE-SPECIFIC : SWAP FLOW ILLUSTRATION
 * ============================================================ */
.swap-illust-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.swap-illust-wrap img { max-width: 100%; border-radius: var(--radius); margin: 0 auto; }
.swap-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.swap-label {
  text-align: left;
  background: var(--cream-2);
  border-radius: 10px;
  border-left: 4px solid var(--coral);
  padding: 16px 20px;
}
.swap-label .step {
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.swap-label .desc {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================================
 * PAGE-SPECIFIC : APPS TABS
 * ============================================================ */
.apps-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.apps-tabs::-webkit-scrollbar { display: none; }
.apps-tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 22px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s ease, border-color 0.15s ease;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.apps-tab:hover { color: var(--navy); }
.apps-tab.active { color: var(--coral); border-bottom-color: var(--coral); }
.apps-panel { display: none; }
.apps-panel.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
 * PAGE-SPECIFIC : PRODUCT SHOWCASE
 * ============================================================ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.product-image {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--line);
}
.product-image img { max-width: 100%; width: 360px; margin: 0 auto; }
.product-image-caption {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--slate);
  font-weight: 700;
  margin-top: 16px;
}
.spec-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}
.spec-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec-list li strong {
  color: var(--coral);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: center;
}
.spec-list li:last-child { border-bottom: none; }

@media (max-width: 880px) {
  .product-showcase { grid-template-columns: 1fr; gap: 36px; }
  .spec-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
 * PAGE-SPECIFIC : CTA BANNER
 * ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 68, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 36px;
  letter-spacing: -0.8px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  font-size: 16px;
  color: var(--slate-2);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ============================================================
 * FORM
 * ============================================================ */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 68, 0, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}
