/* ════════════════════════════════════════════════════════════════
   StretchE — Main Stylesheet
   Theme: IBM Plex Serif / Outfit / JetBrains Mono
   Matches: index_v2_designed.html visual language
   ════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=IBM+Plex+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --teal: #0f766e;
  --teal-dark: #0d5f59;
  --teal-light: #14b8a6;
  --teal-xlight: #d1faf5;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fef3c7;
  --bg: #f8fafc;
  --white: #ffffff;
  --ink: #0f172a;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-teal: #99f6e4;
  --card-bg: #ffffff;

  --shadow: 0 1px 3px rgba(0, 0, 0, .07), 0 4px 16px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 24px rgba(15, 118, 110, .13);
  --shadow-lg: 0 12px 32px rgba(15, 118, 110, .14);
  --shadow-xl: 0 20px 48px rgba(15, 118, 110, .16);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-display: 'IBM Plex Serif', Georgia, serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);

  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -.3px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ════════════════════ NAV ════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 8px rgba(15, 118, 110, .05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--teal);
  letter-spacing: -.3px;
  transition: color .2s;
}

.nav-logo:hover {
  color: var(--teal-dark);
}

.nav-logo span {
  color: var(--amber);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  position: relative;
  transition: all .2s var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease-out);
}

.nav-links a:hover {
  color: var(--teal);
  background: var(--teal-xlight);
}

.nav-links a.active {
  color: var(--teal);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ════════════════════ BUTTONS ════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all .2s var(--ease-out);
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-amber {
  background: var(--amber);
  color: var(--ink);
}

.btn-amber:hover {
  background: var(--amber-dark);
}

.btn-lg {
  padding: 15px 32px;
  font-size: .98rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: .82rem;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ════════════════════ LAYOUT ════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 56px 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
}

/* ════════════════════ HERO ════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2332 100%);
  color: var(--white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 65% 40%, rgba(15, 118, 110, .22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--amber);
  animation: fadeUp .6s var(--ease-out) both;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -.8px;
  animation: fadeUp .7s var(--ease-out) .08s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp .7s var(--ease-out) .16s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .7s var(--ease-out) .24s both;
}

.hero-tagline {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--font-mono);
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .08em;
  animation: fadeUp .7s var(--ease-out) .32s both;
}

/* ── Hero right panel (report card) ── */
.hero-stats {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInRight .8s var(--ease-out) .3s both;
}

.hero-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.hero-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-stat-val {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.hero-stat-label {
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ════════════════════ TRUST BAR ════════════════════ */
.trust-bar {
  background: linear-gradient(90deg, var(--teal-xlight) 0%, rgba(15, 118, 110, .05) 100%);
  padding: 18px 0;
  border-top: 1px solid rgba(15, 118, 110, .1);
  border-bottom: 1px solid rgba(15, 118, 110, .1);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--teal-dark);
}

.trust-item::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ════════════════════ STAT CARDS ════════════════════ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 48px 0;
  background: var(--border);
}

.stat-card {
  border-left: 6px solid var(--teal);
  padding: 44px 36px;
  background: var(--white);
  transition: all .3s var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.stat-card-emoji {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.stat-card-num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card-desc {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════ HOW-CARDS ════════════════════ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease-out);
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--teal);
}

.how-card-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
}

.how-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.how-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════ VALUE TABLE ════════════════════ */
.value-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.value-table th {
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  padding: 16px 20px;
  text-align: left;
  font-size: .92rem;
}

.value-table td {
  padding: 16px 20px;
  font-size: .92rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  vertical-align: top;
}

.value-table tr:last-child td {
  border-bottom: none;
}

.value-table tr:nth-child(even) td {
  background: var(--bg);
}

.value-table td:first-child {
  font-weight: 500;
  color: var(--teal-dark);
}

/* ════════════════════ FLOW STEPS ════════════════════ */
.flow-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 48px 0;
  overflow-x: auto;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.flow-step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.flow-step-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
  max-width: 110px;
}

.flow-connector {
  flex: 1;
  height: 2px;
  background: var(--border-teal);
  margin-top: -24px;
  min-width: 24px;
}

/* ════════════════════ TESTIMONIAL ════════════════════ */
.testimonial {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 52px;
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 4px;
  left: 36px;
  font-size: 8rem;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, .15);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 20px;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-attr {
  font-size: .88rem;
  color: rgba(255, 255, 255, .75);
}

/* ════════════════════ CTA BAND ════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 88px 0;
  text-align: center;
  color: var(--white);
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
  font-size: 1.05rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn-amber {
  font-size: 1rem;
  padding: 15px 36px;
}

/* ════════════════════ FOOTER ════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .7);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.3px;
}

.footer-brand span {
  color: var(--amber);
  font-style: italic;
}

.footer-tagline {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 10px;
}

/* ════════════════════ PAGE HERO (inner pages) ════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #1a2332 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 30%, rgba(15, 118, 110, .22) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -.5px;
}

.page-hero h1 em {
  color: var(--amber);
  font-style: italic;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .78);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-hero .eyebrow {
  color: var(--amber);
  justify-content: center;
  display: block;
  text-align: center;
}

/* ════════════════════ ACCORDION ════════════════════ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color .2s;
}

.accordion-item:hover {
  border-color: var(--teal);
}

.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: .98rem;
  transition: color .2s;
}

.accordion-header:hover {
  color: var(--teal);
  background: var(--bg);
}

.accordion-icon {
  color: var(--teal);
  font-size: 1.3rem;
  transition: transform .3s var(--ease-out);
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 24px 22px;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.accordion-body.show {
  display: block;
  animation: fadeUp .3s var(--ease-out);
}

.accordion-example {
  background: var(--teal-xlight);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: .85rem;
  font-style: italic;
  color: var(--teal-dark);
}

/* ════════════════════ PRICING CARDS ════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: all .3s var(--ease-out);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.pricing-card.featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing-plan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
}

.pricing-card.featured .pricing-plan {
  color: var(--white);
}

.pricing-deploy {
  font-size: .9rem;
  color: var(--text-muted);
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-deploy {
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .18);
}

.pricing-best {
  font-size: .88rem;
  color: var(--text-muted);
}

.pricing-card.featured .pricing-best {
  color: rgba(255, 255, 255, .7);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

/* ════════════════════ FEATURES GRID ════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: all .25s var(--ease-out);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.feature-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════ COMPARE TABLE ════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.compare-table th {
  background: var(--teal);
  color: var(--white);
  padding: 16px 18px;
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
}

.compare-table th:first-child {
  text-align: left;
}

.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  font-size: .9rem;
  text-align: center;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--teal-dark);
}

.compare-table tr:nth-child(even) td {
  background: var(--bg);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.tick {
  color: var(--teal);
  font-weight: 700;
  font-size: 1.05rem;
}

.cross {
  color: var(--text-light);
}

.partial {
  color: var(--amber-dark);
  font-size: .8rem;
  font-weight: 600;
}

/* ════════════════════ CONTACT FORM ════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-top: 48px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: all .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: all .25s var(--ease-out);
}

.contact-info-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-info-card a {
  color: var(--teal);
  font-weight: 500;
}

/* ════════════════════ BLOG CARDS ════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.blog-card-tag {
  display: inline-block;
  background: var(--teal-xlight);
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 100px;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.blog-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.blog-card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-light);
}

.blog-img-placeholder {
  height: 160px;
  background: linear-gradient(135deg, var(--teal-xlight), rgba(15, 118, 110, .04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ════════════════════ THERAPIST / CRED LIST ════════════════════ */
.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .94rem;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .2s;
}

.cred-list li:hover {
  border-color: var(--teal);
}

.cred-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ════════════════════ PHASE BLOCKS ════════════════════ */
.phase-block {
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 30px 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  transition: box-shadow .25s var(--ease-out);
}

.phase-block:hover {
  box-shadow: var(--shadow-md);
}

.phase-label {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 8px;
}

.phase-block h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.phase-block p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════ INCLUDED LIST ════════════════════ */
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .94rem;
}

.included-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-xlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  flex-shrink: 0;
}

/* ════════════════════ MOBILE NAV ════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--white);
  flex-direction: column;
  padding: 80px 24px 40px;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--teal-xlight);
  color: var(--teal);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ════════════════════ MISC COMPONENTS ════════════════════ */
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-xlight);
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 12px;
}

.highlight-box {
  background: var(--amber-light);
  border: 1.5px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.7;
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.tab-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .2s var(--ease-out);
}

.tab-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.tab-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.tab-item-title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 4px;
}

.tab-item-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.onboard-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.onboard-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 32px;
  position: relative;
}

.onboard-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: var(--border-teal);
}

.onboard-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.onboard-step-title {
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: 4px;
}

.onboard-step-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════ SERVICE TILES ════════════════════ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-tile {
  background: var(--white);
  padding: 36px 28px;
  cursor: pointer;
  transition: all .2s var(--ease-out);
  position: relative;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background .2s;
}

.service-tile:hover {
  background: var(--teal-xlight);
}

.service-tile:hover::before {
  background: var(--teal);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform .2s var(--ease-out);
}

.service-tile:hover .service-icon {
  transform: scale(1.1);
}

.service-tile h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.service-tile p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ════════════════════ INNER TABS ════════════════════ */
.inner-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
}

.inner-tab {
  padding: 12px 20px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}

.inner-tab:hover {
  color: var(--teal);
}

.inner-tab.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.inner-panel {
  display: none;
}

.inner-panel.active {
  display: block;
  animation: fadeUp .3s var(--ease-out);
}

/* ════════════════════ TIER CARDS (MSK) ════════════════════ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tier-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: all .25s var(--ease-out);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tier-card.t1 {
  background: var(--teal-xlight);
  border-left: 4px solid var(--teal);
}

.tier-card.t2 {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
}

.tier-card.t3 {
  background: var(--ink);
  color: var(--white);
  border-left: 4px solid var(--amber);
}

.tier-card.t3 p {
  color: rgba(255, 255, 255, .78);
}

.tier-card.t3 li {
  color: rgba(255, 255, 255, .78);
}

.tier-card h3 {
  margin-bottom: 10px;
}

/* ════════════════════ FAQ ════════════════════ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* ════════════════════ RESPONSIVE ════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: none;
  }

  .tier-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stat-grid,
  .how-grid,
  .features-grid,
  .blog-grid,
  .tier-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .compare-table {
    font-size: .8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 36px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .value-table {
    display: block;
    overflow-x: auto;
  }

  .section {
    padding: 64px 0;
  }

  .tab-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 80px 0 60px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}