/* =========================================================
   Get An IT Guy — Coaching Membership
   Plain-language, approachable, empowering.
   ========================================================= */

:root {
  /* Plan color system */
  --plan-a:        #1B4F9B;   /* Essentials — Blue */
  --plan-a-soft:   #DCE7F5;
  --plan-a-bg:     #F1F6FC;

  --plan-b:        #8B5CF6;   /* Foundation — Purple */
  --plan-b-soft:   #E4D9FB;
  --plan-b-bg:     #F4EFFE;

  --plan-c:        #0E7C4A;   /* Strategy — Green */
  --plan-c-soft:   #C9E5D5;
  --plan-c-bg:     #EAF6EF;

  --addon:         #F59E0B;   /* Add-Ons — Amber */
  --addon-soft:    #FBE4B6;
  --addon-bg:      #FEF6E5;

  /* Primary brand = Plan A blue (used for site-wide CTAs) */
  --brand:         var(--plan-a);
  --brand-deep:    #143A75;
  --brand-soft:    var(--plan-a-soft);
  --brand-bg:      var(--plan-a-bg);

  /* Neutrals */
  --ink:           #1B2536;
  --gray:          #5C6577;
  --gray-mid:      #8E96A6;
  --gray-soft:     #D5D9E2;
  --line:          #E7E9EF;
  --paper:         #FFFFFF;
  --paper-warm:    #F8FAFC;

  /* Type — friendly, approachable */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  --container: 1180px;
  --container-narrow: 860px;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(27,37,54,0.06), 0 2px 6px rgba(27,37,54,0.04);
  --shadow:    0 8px 24px rgba(27,37,54,0.08), 0 2px 4px rgba(27,37,54,0.04);
  --shadow-lg: 0 24px 60px rgba(27,37,54,0.14), 0 8px 20px rgba(27,37,54,0.06);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: var(--font-sans);
  font-size: 17px; line-height: 1.6;
  color: var(--gray);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .15s; }
a:hover { color: var(--brand-deep); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { margin: 0 0 1em; text-wrap: pretty; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--container-narrow); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .98rem; font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand); color: #fff;
  box-shadow: 0 6px 18px rgba(27,79,155,0.25);
}
.btn-primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #fff; }

/* Topbar + nav */
.topbar { background: var(--ink); color: #c9cdd6; font-size: .86rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px 0; }
.topbar a { color: #fff; }
.topbar .pipe { color: #5a637a; margin: 0 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 10px 14px;
  color: var(--ink); font-weight: 500; font-size: .98rem;
  border-radius: 8px; transition: all .15s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--brand-bg); color: var(--brand);
}
.nav-cta { margin-left: 8px; }

/* Dropdown nav */
.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex !important; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-toggle svg { transition: transform .15s; }
.has-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  list-style: none; margin: 0;
  display: none;
  z-index: 60;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 0; right: 0; height: 6px;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu li { display: block; }
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: .95rem;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--brand-bg); color: var(--brand); }
.menu-toggle { display: none; background: 0; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* Hero */
.hero { position: relative; background: var(--paper-warm); overflow: hidden; padding: 88px 0 96px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 480px at 92% -10%, rgba(27,79,155,0.08), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(139,92,246,0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--brand); }
.hero p.lede { font-size: 1.18rem; color: var(--gray); margin-bottom: 28px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px 28px; align-items: center; color: var(--gray); font-size: .92rem; }
.hero-trust .dot { color: var(--brand); font-weight: 800; }

.hero-art {
  position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--plan-a-soft) 0%, var(--plan-b-soft) 50%, var(--plan-c-soft) 100%);
}
.hero-art .img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(27,37,54,.6); text-align: center; padding: 24px;
}
.hero-art .img-placeholder .label { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.hero-art .img-placeholder .sublabel { font-size: .85rem; opacity: .8; margin-top: 4px; }
.hero-art svg { width: 64px; height: 64px; opacity: .55; margin-bottom: 14px; }

.hero-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-size: .9rem;
}
.hero-card .ico { width: 36px; height: 36px; border-radius: 9px; background: var(--brand-bg); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.hero-card.tl { top: 18px; left: -22px; }
.hero-card.br { bottom: 22px; right: -22px; }
.hero-card .label { color: var(--ink); font-weight: 600; line-height: 1.2; }
.hero-card .meta { color: var(--gray); font-size: .78rem; }

/* Sections */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
section.alt { background: var(--paper-warm); }
section.dark { background: var(--ink); color: #c9cdd6; }
section.dark h2, section.dark h3 { color: #fff; }
section.dark .eyebrow { color: #8db1e8; }
section.dark .eyebrow::before { background: #8db1e8; }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; }
.step .num {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: var(--brand); font-weight: 700; margin-bottom: 10px;
}
.step h4 { margin: 0 0 8px; font-size: 1.15rem; }
.step p { margin: 0; font-size: .96rem; }

/* Plan cards */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan .plan-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 18px;
  color: #fff;
}
.plan-a .plan-icon { background: var(--plan-a); }
.plan-b .plan-icon { background: var(--plan-b); }
.plan-c .plan-icon { background: var(--plan-c); }

.plan-a { border-top: 4px solid var(--plan-a); }
.plan-b { border-top: 4px solid var(--plan-b); }
.plan-c { border-top: 4px solid var(--plan-c); }
.plan.featured {
  box-shadow: 0 16px 44px rgba(139,92,246,0.16);
  transform: translateY(-4px);
}
.plan .badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--plan-b); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan .tier-label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 4px;
}
.plan-a .tier-label { color: var(--plan-a); }
.plan-b .tier-label { color: var(--plan-b); }
.plan-c .tier-label { color: var(--plan-c); }

.plan h3 { font-size: 1.5rem; margin: 0 0 4px; }
.plan .audience { color: var(--gray); font-size: .92rem; margin: 0 0 16px; }
.plan .price {
  font-family: var(--font-display); font-size: 2.6rem;
  color: var(--ink); font-weight: 800; line-height: 1; margin: 8px 0 4px;
}
.plan .price small { font-size: .9rem; color: var(--gray); font-weight: 500; }
.plan .setup-fee {
  font-size: .82rem; color: var(--gray);
  margin: 0 0 22px; padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan ul li {
  padding: 7px 0; display: flex; gap: 10px;
  align-items: flex-start; font-size: .95rem;
}
.plan ul li::before {
  content: "✓"; font-weight: 800; flex-shrink: 0;
  color: var(--brand);
}
.plan-a ul li::before { color: var(--plan-a); }
.plan-b ul li::before { color: var(--plan-b); }
.plan-c ul li::before { color: var(--plan-c); }

.plan .cta-btn {
  width: 100%; justify-content: center;
}
.plan-a .cta-btn { background: var(--plan-a); color: #fff; }
.plan-a .cta-btn:hover { background: #143A75; }
.plan-b .cta-btn { background: var(--plan-b); color: #fff; }
.plan-b .cta-btn:hover { background: #6D3FCF; }
.plan-c .cta-btn { background: var(--plan-c); color: #fff; }
.plan-c .cta-btn:hover { background: #0A5E38; }

/* Add-on cards */
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.addon {
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--addon);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.addon-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--addon-bg); color: var(--addon);
  display: grid; place-items: center; margin-bottom: 14px;
}
.addon h3 { margin: 0 0 4px; font-size: 1.25rem; }
.addon .addon-price {
  font-family: var(--font-display); font-weight: 700;
  color: var(--addon); font-size: 1.05rem; margin-bottom: 12px;
}
.addon ul { list-style: none; padding: 0; margin: 14px 0 0; }
.addon ul li { padding: 5px 0 5px 22px; position: relative; font-size: .92rem; }
.addon ul li::before { content: "•"; color: var(--addon); position: absolute; left: 6px; font-weight: 800; }

/* Comparison table */
.compare-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line);
  font-size: .94rem;
}
.compare-table th, .compare-table td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--paper-warm); color: var(--ink);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem;
}
.compare-table thead .col-a { color: var(--plan-a); border-bottom: 3px solid var(--plan-a); }
.compare-table thead .col-b { color: var(--plan-b); border-bottom: 3px solid var(--plan-b); }
.compare-table thead .col-c { color: var(--plan-c); border-bottom: 3px solid var(--plan-c); }
.compare-table tbody td:first-child { font-weight: 600; color: var(--ink); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .check { color: var(--plan-c); font-weight: 800; font-size: 1.1rem; }
.compare-table .dash { color: var(--gray-mid); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #6BA3F0, #B49BFA);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { margin-top: 6px; font-size: .92rem; color: #c9cdd6; }

/* Testimonial */
.testimonial { background: #fff; border-radius: var(--radius-lg); padding: 40px 44px; border: 1px solid var(--line); position: relative; }
.testimonial::before {
  content: "“"; position: absolute; top: -8px; left: 24px;
  font-family: var(--font-display); font-size: 6rem;
  color: var(--brand); line-height: 1; opacity: .35;
}
.testimonial blockquote {
  margin: 0 0 18px; font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500;
  color: var(--ink); line-height: 1.4;
}
.testimonial cite { font-style: normal; display: flex; align-items: center; gap: 12px; color: var(--gray); font-size: .94rem; }
.testimonial cite .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--plan-a-soft), var(--plan-b-soft));
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--plan-a), var(--plan-b));
  color: #fff; padding: 64px 56px;
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px;
  align-items: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; width: 420px; height: 420px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  top: -160px; right: -120px;
}
.cta-banner h2 { color: #fff; margin: 0 0 8px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-banner p { color: rgba(255,255,255,.92); margin: 0; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-self: end; }
.cta-banner .btn-primary { background: #fff; color: var(--plan-a); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.cta-banner .btn-primary:hover { background: var(--ink); color: #fff; }
.cta-banner .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-banner .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Newsletter */
.newsletter {
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 42px 44px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
}
.newsletter h3 { margin: 0 0 6px; font-size: 1.5rem; }
.newsletter form {
  display: flex; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px;
}
.newsletter input { flex: 1; border: 0; outline: 0; padding: 10px 16px; font: inherit; background: transparent; color: var(--ink); }
.newsletter button { border: 0; background: var(--brand); color: #fff; font: inherit; font-weight: 600; border-radius: 999px; padding: 10px 20px; cursor: pointer; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; color: var(--ink); font-size: 1.02rem; user-select: none;
}
.faq-q .chev { transition: transform .2s; color: var(--brand); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 20px; color: var(--gray); }
.faq-item.open .faq-a { display: block; }

/* Page hero */
.page-hero { background: var(--paper-warm); padding: 70px 0 56px; border-bottom: 1px solid var(--line); }
.page-hero .crumb { font-size: .86rem; color: var(--gray); margin-bottom: 12px; }
.page-hero .crumb a { color: var(--gray); }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin: 0 0 14px; }
.page-hero p { font-size: 1.12rem; max-width: 720px; margin: 0; }

/* Two-column */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.flip > :first-child { order: 2; }
.bullets { list-style: none; padding: 0; margin: 18px 0 0; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.bullets li::before { content: "✓"; color: var(--brand); font-weight: 800; flex-shrink: 0; }

/* YouTube embed */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.video-thumb {
  aspect-ratio: 16/9; position: relative; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--plan-a-soft), var(--plan-b-soft));
  color: rgba(27,37,54,.5);
}
.video-thumb .play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.video-thumb .play::before {
  content: ""; border-style: solid; border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--brand);
  margin-left: 4px;
}
.video-meta { padding: 16px 18px 18px; }
.video-meta h4 { margin: 0 0 4px; font-size: 1rem; }
.video-meta .duration { font-size: .8rem; color: var(--gray); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea, .field select {
  border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px;
  font: inherit; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(27,79,155,.15);
}

/* Footer */
.site-footer { background: #14192A; color: #aab1c2; padding: 64px 0 32px; }
.site-footer h5 { color: #fff; margin: 0 0 14px; font-family: var(--font-sans); font-size: .98rem; letter-spacing: .03em; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: #c5c8d2; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 60px; margin-bottom: 14px; background: #fff; padding: 8px 12px; border-radius: 8px; }
.footer-brand p { font-size: .92rem; color: #8d93a4; max-width: 320px; }
.veteran-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  padding: 6px 12px; border-radius: 999px;
  font-size: .8rem; color: #d4d8e0; margin-top: 14px;
}
.veteran-badge .star { color: var(--addon); }
.legal {
  border-top: 1px solid #2a3046; margin-top: 48px; padding-top: 22px;
  display: flex; justify-content: space-between;
  font-size: .85rem; color: #7e8497; flex-wrap: wrap; gap: 14px;
}

/* Density tweaks */
[data-density="cozy"]   section { padding: 100px 0; }
[data-density="dense"]  section { padding: 64px 0; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .split, .grid-3, .plans-grid, .footer-grid, .video-grid, .addon-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; padding: 44px 28px; }
  .cta-banner .actions { justify-self: start; }
  .newsletter { grid-template-columns: 1fr; padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-inner .left-info { display: none; }
  .compare-table { font-size: .82rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }

  /* Mobile nav drawer */
  .menu-toggle { display: block; z-index: 70; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    gap: 4px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 60;
    list-style: none;
    margin: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; list-style: none; display: block; }
  .nav-links a { display: block; padding: 14px 16px; font-size: 1.02rem; }
  .nav-cta { display: none; }
  .has-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--brand-soft);
    border-radius: 0;
    margin: 4px 0 4px 12px;
    padding: 4px 0 4px 8px;
    display: none;
    list-style: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown:hover .dropdown-menu { display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  section { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat .num { font-size: 2rem; }
  .plan { padding: 26px 22px 24px; }
  .price { font-size: 2.4rem; }
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .featured-post { padding: 24px; }
  .archive-list li { padding: 16px 18px; }
  .topbar-inner { font-size: .78rem; padding: 7px 0; }
  .brand img { height: 40px; }
  .footer-grid { gap: 32px; }
  .legal { flex-direction: column; gap: 8px; text-align: center; }
}
