/* =========================================================
   StockTrack marketing site — vanilla CSS
   Palette:
     navy     #1E3A5F  (primary)
     teal     #2DA89E  (secondary accent)
     lime     #9DD356  (CTA highlight)
     cream    #F8F6F0  (background)
     charcoal #1F2937  (body text)
     white    #FFFFFF  (cards)
   Mobile-first. Single breakpoint at 768px.
   ========================================================= */

:root {
  --navy:     #1E3A5F;
  --navy-700: #16294a;
  --teal:     #2DA89E;
  --teal-700: #1f7e77;
  --lime:     #9DD356;
  --lime-700: #7cb83b;
  --cream:    #F8F6F0;
  --charcoal: #1F2937;
  --muted:    #5b6573;
  --white:    #FFFFFF;
  --line:     #e6e2d6;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow:    0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--teal-700);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.1rem; font-weight: 800; }
h2 { font-size: 1.7rem; font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.container-narrow { max-width: 760px; }

.section { padding: 64px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-lede {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.eyebrow-dark { color: var(--navy); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.05s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-large { min-height: 56px; padding: 16px 26px; font-size: 1.05rem; }
.btn-small { min-height: 40px; padding: 8px 16px; font-size: 0.9rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--lime-700);
  border-color: var(--lime-700);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
}
.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
}
.footer-mark {
  width: 40px;
  height: 40px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links .btn { color: var(--navy); }

/* Hamburger toggle button — visible only on mobile */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle:hover { background: rgba(30, 58, 95, 0.06); }
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile: hamburger appears, nav-links become a dropdown */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 20px 18px;
    gap: 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a:not(.btn) {
    display: block;
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:not(.btn):last-of-type {
    border-bottom: none;
  }
  .nav-links .btn {
    margin-top: 12px;
    width: 100%;
  }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 90% -10%, rgba(45, 168, 158, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(157, 211, 86, 0.18), transparent 60%),
    var(--cream);
  padding: 48px 0 32px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-paragraph {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* App screen mockup — wraps a real screenshot in a phone bezel */
.hero-visual {
  display: flex;
  justify-content: center;
}
.app-screen {
  width: 280px;
  background: #0f1a2c;
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.app-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  background: var(--cream);
}
.app-screen-hero {
  /* slight tilt on desktop adds energy without breaking layout */
}
@media (min-width: 768px) {
  .app-screen { width: 240px; }
}

@media (min-width: 768px) {
  .hero { padding: 40px 0 32px; }
  .hero-inner { grid-template-columns: 1.1fr 1fr; gap: 56px; }
  .hero-copy h1 { font-size: 3.2rem; }
  .hero-sub { font-size: 1.4rem; }
  h2 { font-size: 2.1rem; }
}

/* ---------- Why this exists (founder + problem cards merged) ---------- */
.section-why {
  background: var(--white);
  padding: 32px 0 64px;
}
.why-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.why-head .eyebrow { color: var(--lime-700); }
.why-lede {
  max-width: 640px;
  margin: 0 auto 36px;
}
.why-lede p {
  font-size: 1.15rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0 0 18px;
}
.why-lede p:last-child { margin-bottom: 0; }
.why-closer {
  color: var(--navy);
  font-weight: 700;
}
.why-head h2 { margin-bottom: 8px; }

@media (min-width: 768px) {
  .why-head { margin-bottom: 48px; }
  .why-lede { margin-bottom: 44px; }
  .why-lede p { font-size: 1.25rem; }
}

/* ---------- Problem cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { margin: 0; color: var(--charcoal); }

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

/* ---------- How it works ---------- */
.section-how {
  background:
    linear-gradient(180deg, var(--cream) 0%, #f1ede0 100%);
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 168, 158, 0.12);
  color: var(--teal);
  margin: 0 auto 14px;
}
.step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-weight: 800;
  color: var(--lime-700);
  font-size: 1.4rem;
  opacity: 0.7;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

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

/* Feature row — text + screenshot */
.feature-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.feature-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.feature-copy p {
  color: var(--muted);
  margin: 0 0 12px;
}
.feature-copy .eyebrow { color: var(--teal); }
.feature-meta {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin: 8px 0 0 !important;
}
.feature-visual {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 80px;
  }
  .feature-row-reverse .feature-copy { order: 2; }
  .feature-row-reverse .feature-visual { order: 1; }
  .feature-copy h3 { font-size: 1.8rem; }
}

/* ---------- See it in action — embedded tutorial videos inside How it works ---------- */
.see-it {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.see-it-head {
  text-align: center;
  margin-bottom: 28px;
}
.see-it-head .eyebrow { color: var(--teal); }
.see-it-head h3 {
  font-size: 1.4rem;
  margin: 8px 0 0;
  color: var(--navy);
}
.see-it-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.see-it-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.see-it-card h4 {
  font-size: 1rem;
  margin: 0 0 14px;
  color: var(--navy);
}
.see-it-embed {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.see-it-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.see-it-foot {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 32px 0 0;
}
.see-it-foot a { color: var(--teal); }

@media (min-width: 640px) {
  .see-it-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .see-it-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .see-it-head h3 { font-size: 1.7rem; }
}

/* ---------- Focus (one job, done well) — replaces "What it isn't" mockup ---------- */
.section-focus {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(45, 168, 158, 0.08), transparent 60%),
    var(--cream);
  text-align: center;
  padding: 80px 0;
}
.section-focus .eyebrow { color: var(--teal); }
.section-focus h2 {
  font-size: 1.9rem;
  margin-bottom: 22px;
}
.focus-lede {
  font-size: 1.08rem;
  color: var(--charcoal);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 22px;
}
.focus-closer {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
@media (min-width: 768px) {
  .section-focus { padding: 96px 0; }
  .section-focus h2 { font-size: 2.3rem; }
  .focus-lede { font-size: 1.2rem; }
}

/* ---------- The maths (value / savings band) ---------- */
.section-value {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
}
.section-value h2 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); }
.section-value .section-lede { color: rgba(255, 255, 255, 0.78); font-size: 1.15rem; }
.section-value .eyebrow-dark {
  color: var(--lime);
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}

/* Scenario cards (stacked, one money story + one time story) */
.scenario-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.scenario-card + .scenario-card { margin-top: 24px; }
.scenario-title {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 0 14px;
}
.scenario-story p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 0.97rem;
}
.scenario-story p:last-child { margin: 0; }
.scenario-bill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.bill-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 16px;
}
.bill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.bill-list li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bill-list li:last-child { border-bottom: none; padding-bottom: 0; }
.bill-amount {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  width: 72px;
}
.bill-detail {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}
.bill-knockon .bill-amount { color: rgba(255, 255, 255, 0.55); }
.bill-total {
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}
.bill-total-amount {
  color: var(--lime);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bill-total-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin: 6px 0 0;
}
.bill-equiv {
  color: var(--white);
  font-weight: 700;
  margin: 14px 0 0;
  font-size: 1rem;
}
.value-closer {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 32px auto 0;
  max-width: 640px;
}

@media (min-width: 768px) {
  .scenario-card {
    grid-template-columns: 1.3fr 1fr;
    gap: 36px;
    padding: 40px 36px;
  }
  .scenario-title { font-size: 1.4rem; }
  .scenario-story p { font-size: 1.02rem; }
  .bill-total-amount { font-size: 2.8rem; }
  .value-closer { margin-top: 40px; font-size: 1.2rem; }
}

/* ---------- (Legacy) What it isn't — kept for easy revert if mockup rejected ---------- */
.section-not { background: var(--navy); color: rgba(255,255,255,0.92); }
.section-not h2 { color: var(--white); }
.section-not .section-lede { color: rgba(255,255,255,0.78); }
.section-not .eyebrow-dark { color: var(--lime); }

.not-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.not-item {
  display: flex;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.not-item h3 { color: var(--white); margin-bottom: 6px; }
.not-item p {
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-size: 0.97rem;
}
.not-x {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(214, 69, 69, 0.18);
  color: #ff8a8a;
  font-weight: 800;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (min-width: 768px) {
  .not-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* ---------- Pricing tiers ---------- */
.section-pricing { background: var(--cream); }

.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.pricing-tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.tier-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 14px;
}
.tier-price {
  margin: 0 0 6px;
  line-height: 1;
}
.tier-price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.tier-price-per {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}
.tier-price-annual {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 22px;
  min-height: 36px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.tier-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.95rem;
}
.tier-features li:last-child { border-bottom: none; }

.tier-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.pricing-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 28px auto 24px;
  max-width: 620px;
}
.pricing-cta {
  display: flex;
  margin: 0 auto;
  width: fit-content;
}

@media (min-width: 768px) {
  .pricing-tiers {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .pricing-tier { padding: 36px 28px; }
  .tier-price-amount { font-size: 2.4rem; }
}

/* ---------- FAQ ---------- */
.section-faq { background: var(--white); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: rgba(45, 168, 158, 0.06); }
.faq-chev {
  display: inline-flex;
  color: var(--teal);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq[open] .faq-chev { transform: rotate(180deg); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--charcoal);
}
.faq-body p { margin: 0; color: var(--charcoal); }

/* ---------- Trial form ---------- */
.section-trial {
  background:
    linear-gradient(180deg, var(--cream) 0%, #efe9d8 100%);
}
.trial-perks {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 600px;
  display: grid;
  gap: 10px;
}
.trial-perks li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.97rem;
  color: var(--charcoal);
}
.trial-perks li strong { color: var(--navy); }

.trial-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
label {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.req { color: #b22b2b; font-weight: 800; }
.optional { color: var(--muted); font-weight: 500; font-size: 0.85rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  font-family: inherit;
  font-size: 16px; /* prevents iOS zoom on focus */
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--charcoal);
  min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}
select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
input:focus,
select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45, 168, 158, 0.18);
}
.form-foot {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trial-form { padding: 36px 36px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-700);
  color: rgba(255,255,255,0.78);
  padding: 40px 0 32px;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  color: var(--white);
}
.footer-meta p { margin: 0 0 4px; font-size: 0.92rem; }
.footer-meta a { color: var(--lime); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}
.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 6px 0 0;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: center;
  }
  .footer-meta { text-align: center; }
  .footer-links { justify-content: flex-end; }
  .footer-copy { grid-column: 1 / -1; text-align: center; margin-top: 14px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
