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

:root {
  --navy: #0B204B;
  --navy-dark: #081833;
  --navy-ribbon: #0D2D6A;
  --gold: #C2933F;
  --gold-light: #E8C269;
  --white: #FFFFFF;
  --error: #CF222E;
  --ink: #16192B;
  --muted: #4B5266;
  --cream: #FBF8F2;
  --cream-deep: #F3EDE0;
  --border: #E7E2D6;
  --border-dark: rgba(255,255,255,0.14);
  --max-width: 1180px;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

::selection { background: var(--gold-light); color: var(--navy-dark); }

svg.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Blueprint grid texture, applied via ::before on .hero/.cta rather than
   a separate .blueprint class -- two same-specificity classes both setting
   `background`/`background-image` on one element would have the later
   rule win the whole property, silently dropping whichever layer lost the
   cascade (same pattern .pro-panel::before already uses, below). */
.blueprint::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* ---------- Photo banner ---------- */
.photo-banner { position: relative; padding: 0; height: 340px; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }
.photo-banner-caption {
  position: absolute; inset: auto 0 0 0; padding: 28px 28px 22px;
  background: linear-gradient(to top, rgba(8,24,51,0.82), rgba(8,24,51,0));
  color: var(--white); font-size: 18px; font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,32,75,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
}

.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 20px; color: var(--white); letter-spacing: -0.01em; }
.brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; background: var(--white); box-shadow: 0 0 0 2px rgba(194,147,63,0.5); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 600; position: relative; }
.nav-links button.link-btn { color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 600; position: relative; background: none; border: none; cursor: pointer; font-family: var(--sans); padding: 0; }
.nav-links a:not(.btn)::after, .nav-links button.link-btn::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:not(.btn):hover::after, .nav-links button.link-btn:hover::after { transform: scaleX(1); }
.nav-links a:not(.btn):hover, .nav-links button.link-btn:hover { color: var(--white); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 24px; border-radius: 7px; font-weight: 700; font-size: 16px;
  border: 1px solid transparent; cursor: pointer; font-family: var(--sans);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(194,147,63,0.35); }
.btn-outline-light { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline-light:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-ribbon); }
.btn-ghost { color: var(--navy); font-weight: 700; }
.btn-ghost:hover { color: var(--gold); }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; line-height: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 140% at 15% -10%, rgba(13,45,106,0.88) 0%, rgba(11,32,75,0.9) 42%, rgba(8,24,51,0.94) 100%),
    url('assets/homes.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 112px 0 100px;
  overflow: hidden;
}

.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.98fr; gap: 56px; align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; margin-bottom: 22px; }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); display: inline-block; }

.hero h1 {
  font-weight: 700;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 600; }

.hero p.lead { font-size: 19px; color: rgba(255,255,255,0.8); margin: 0 0 34px; max-width: 48ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn-outline-light { display: inline-flex; align-items: center; gap: 8px; }

/* Product mockup */
.mockup-frame {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.mockup-chrome { display: flex; align-items: center; gap: 6px; padding: 4px 8px 12px; }
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.mockup-title { margin-left: 8px; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.02em; }

.mockup-body { background: var(--cream); border-radius: 12px; padding: 18px; color: var(--ink); }
.mockup-toprow { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mockup-toprow strong { font-size: 16px; color: var(--navy); font-weight: 700; }
.mockup-badge { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.02em; background: #E9F5EC; color: #1a7f37; padding: 3px 9px; border-radius: 20px; }

.mockup-row { display: grid; grid-template-columns: 96px 1fr; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mockup-row:last-child { border-bottom: none; }
.mockup-day { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.02em; }
.mockup-task { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: 7px; padding: 7px 10px; }
.mockup-dotcolor { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mockup-dotcolor.critical { background: var(--navy); }
.mockup-dotcolor.delay { background: var(--gold); }
.mockup-dotcolor.done { background: #1a7f37; }
.mockup-tag { margin-left: auto; font-family: var(--mono); font-size: 10.5px; font-weight: 500; color: var(--muted); }

.mockup-toast {
  margin-top: 14px; display: flex; gap: 10px; align-items: flex-start;
  background: var(--navy); color: var(--white); border-radius: 10px; padding: 12px 14px;
}
.mockup-toast-icon { color: var(--gold-light); flex-shrink: 0; margin-top: 1px; }
.mockup-toast strong { display: block; font-size: 13px; margin-bottom: 2px; }
.mockup-toast span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ---------- Sections ---------- */
section { padding: 104px 0; }
.section-alt { background: var(--cream-deep); }

.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { color: var(--gold); }
.section-head .eyebrow::before { background: var(--navy); }
.section-head h2 { font-weight: 700; font-size: clamp(30px, 3.8vw, 44px); margin: 0 0 16px; color: var(--navy); letter-spacing: -0.015em; line-height: 1.15; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* Alternating feature showcase */
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 96px; }
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-copy { order: 2; }
.showcase-row.reverse .showcase-visual { order: 1; }

.showcase-eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.showcase-copy h3 { font-size: 29px; color: var(--navy); margin: 0 0 14px; font-weight: 700; letter-spacing: -0.01em; }
.showcase-copy p { color: var(--muted); font-size: 16px; margin: 0 0 18px; }
.showcase-list { list-style: none; padding: 0; margin: 0; }
.showcase-list li { display: flex; gap: 10px; font-size: 16px; color: var(--ink); padding: 6px 0; }
.showcase-list li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.showcase-visual { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 22px; box-shadow: 0 20px 45px rgba(11,32,75,0.08); }

/* mini report bars for the reporting showcase */
.mini-chart { display: flex; align-items: flex-end; gap: 10px; height: 140px; padding: 8px 4px 0; }
.mini-chart .bar { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--navy-ribbon), var(--navy)); position: relative; }
.mini-chart .bar.gold { background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.mini-chart-caption { display: flex; justify-content: space-between; margin-top: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--muted); font-weight: 500; }

/* Feature icon grid (secondary features) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(11,32,75,0.08); }
.feature-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--cream-deep); color: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 1px solid var(--border); }
.feature-card h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); font-weight: 700; }
.feature-card p { margin: 0; color: var(--muted); font-size: 16px; }

/* Pro tier */
.pro-panel { background: var(--navy); border-radius: 22px; padding: 56px; color: var(--white); position: relative; overflow: hidden; }
.pro-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.pro-panel-inner { position: relative; z-index: 1; }
.pro-panel .section-head { max-width: 640px; margin-bottom: 44px; }
.pro-panel .section-head h2 { color: var(--white); }
.pro-panel .section-head p { color: rgba(255,255,255,0.68); }
.pro-panel .eyebrow { color: var(--gold-light); }
.pro-panel .eyebrow::before { background: var(--gold-light); }

.pro-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pro-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(194,147,63,0.35); border-radius: 12px; padding: 18px; font-size: 15px; font-weight: 700; }
.pro-item span.tag { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; color: var(--gold-light); margin-bottom: 8px; }

/* Pricing */
.pricing-toggle { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; }
.toggle-btn { padding: 11px 24px; border-radius: 999px; border: 1px solid var(--border); background: var(--white); font-weight: 700; font-size: 15px; color: var(--muted); cursor: pointer; font-family: var(--sans); }
.toggle-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 880px; margin: 0 auto; }
.price-card { border: 1px solid var(--border); border-radius: 18px; padding: 38px; background: var(--white); }
.price-card.featured { border-color: var(--gold); box-shadow: 0 16px 40px rgba(11,32,75,0.1); position: relative; }
.price-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 800; letter-spacing: 0.06em; padding: 4px 14px; border-radius: 20px;
}
.price-card h3 { margin: 0 0 6px; font-size: 22px; color: var(--navy); font-weight: 700; }
.price-card .price-sub { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.price-amount { font-family: var(--mono); font-size: 42px; font-weight: 600; color: var(--navy); }
.price-amount span { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--muted); }
.price-note { font-size: 16px; color: var(--muted); margin: 8px 0 26px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.price-card li { padding: 10px 0; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: '✓'; color: var(--gold); font-weight: 800; }
.price-card .btn { width: 100%; }

.pricing-grid .annual-only { display: none; }
.pricing-grid.annual .annual-only { display: block; }
.pricing-grid.annual .monthly-only { display: none; }
.annual-savings { display: none; }
.annual .annual-savings { display: inline; color: #1a7f37; font-weight: 700; font-size: 13px; margin-left: 8px; font-family: var(--sans); }
.trial-note { text-align: center; color: var(--muted); font-size: 15px; margin-top: 32px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 4px 22px; }
.faq-item summary { cursor: pointer; padding: 19px 0; font-weight: 700; font-size: 17px; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--gold); font-weight: 400; flex-shrink: 0; transition: transform 0.15s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--muted); font-size: 16px; }

/* CTA */
.cta {
  background:
    radial-gradient(120% 160% at 85% 0%, rgba(13,45,106,0.9) 0%, rgba(11,32,75,0.92) 55%, rgba(8,24,51,0.95) 100%),
    url('assets/home-under-construction.jpg') center/cover no-repeat;
  color: var(--white); text-align: center; border-radius: 26px; padding: 64px 32px; margin: 0 28px; position: relative; overflow: hidden;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-weight: 700; margin: 0 0 14px; font-size: clamp(28px, 3.4vw, 36px); }
.cta p { margin: 0 0 30px; color: rgba(255,255,255,0.75); font-size: 17px; }
.cta .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 64px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.footer-brand img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--white); }
.footer-desc { max-width: 32ch; font-size: 16px; }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a, .footer-col button.link-btn { display: block; font-size: 16px; margin-bottom: 12px; color: rgba(255,255,255,0.65); background: none; border: none; padding: 0; text-align: left; cursor: pointer; font-family: var(--sans); }
.footer-col a:hover, .footer-col button.link-btn:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; font-size: 14px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Contact modal ---------- */
.modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(8,24,51,0.6); z-index: 100; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal-card { background: var(--white); border-radius: 16px; padding: 32px; width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 22px; color: var(--muted); cursor: pointer; line-height: 1; }
.modal-card h3 { margin: 0 0 6px; font-size: 22px; color: var(--navy); font-weight: 700; }
.modal-card .modal-sub { color: var(--muted); font-size: 16px; margin: 0 0 24px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 16px; font-family: var(--sans); color: var(--ink); background: var(--cream);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.modal-card .btn { width: 100%; margin-top: 4px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 16px 0; }
.form-success.show { display: block; }
.form-success svg.icon { width: 40px; height: 40px; color: #1a7f37; margin: 0 auto 14px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 16px; }

/* Legal pages */
.legal-page { padding: 72px 0 100px; }
.legal-page h1 { color: var(--navy); font-size: 36px; margin-bottom: 4px; font-weight: 700; }
.legal-page .updated { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.legal-page .placeholder-notice { background: #FFF7E6; border: 1px solid var(--gold); border-radius: 10px; padding: 16px 18px; font-size: 15px; color: #6B4E1B; margin: 20px 0 40px; }
.legal-page h2 { font-weight: 700; color: var(--navy); font-size: 21px; margin-top: 38px; }
.legal-page p, .legal-page li { color: var(--ink); font-size: 16px; }
.legal-page ul { padding-left: 22px; }

/* ---------- Demo page ---------- */
.demo-hero { background: var(--navy); color: var(--white); padding: 72px 0 56px; text-align: center; }
.demo-hero h1 { font-size: clamp(32px, 4vw, 46px); font-weight: 700; margin: 0 0 16px; letter-spacing: -0.01em; }
.demo-hero p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 60ch; margin: 0 auto; }

.demo-shot { margin-bottom: 88px; }
.demo-shot:last-child { margin-bottom: 0; }
.demo-shot-frame {
  background: var(--navy-dark); border-radius: 14px; padding: 10px; box-shadow: 0 24px 50px rgba(11,32,75,0.16); margin-bottom: 24px;
}
.demo-shot-chrome { display: flex; align-items: center; gap: 6px; padding: 6px 8px; }
.demo-shot-chrome .mockup-dot { background: rgba(255,255,255,0.25); }
/* Real app screenshots here run 2.3:1 to 3:1 (a full page capture, not a
   16:10 photo) -- object-fit: cover was cropping a big chunk off both
   sides of every one of them to fill a 16:10 box, which read as "zoomed
   in". contain never crops, just letterboxes into the frame's own
   background if a given screenshot is a bit taller or shorter than 2.5:1. */
.demo-shot-image { border-radius: 8px; overflow: hidden; aspect-ratio: 2.5 / 1; background: var(--cream-deep); }
.demo-shot-image img { width: 100%; height: 100%; object-fit: contain; }
.demo-shot-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--muted); text-align: center; padding: 20px;
}
.demo-shot-placeholder svg.icon { width: 34px; height: 34px; }
.demo-shot-placeholder span { font-size: 15px; font-weight: 600; }
.demo-shot h3 { font-size: 22px; color: var(--navy); font-weight: 700; margin: 0 0 8px; }
.demo-shot p { color: var(--muted); font-size: 16px; max-width: 70ch; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero .mockup-frame { max-width: 480px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-banner { height: 240px; }
  .pro-list { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .showcase-row { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.reverse .showcase-copy, .showcase-row.reverse .showcase-visual { order: initial; }
  .pro-panel { padding: 40px 26px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .nav-links {
    display: flex; position: absolute; top: 80px; left: 0; right: 0; background: var(--navy-dark);
    flex-direction: column; padding: 22px 28px 30px; gap: 20px; border-bottom: 1px solid var(--border-dark);
  }
  section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .pro-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta { margin: 0 16px; padding: 44px 22px; }
}
