/* ============================================================
   Easy Draft — Landing Page Styles
   Palette:
     Slate:    #2F4156 / #4A6274 / #6B8499
     Orange:   #E8602C / #F47B3E / #D94F1E
     Neutrals: #F5F0EB / #1A2A36 / #E8DDD4
   ============================================================ */

:root {
  --slate-900: #1A2A36;
  --slate-700: #2F4156;
  --slate-500: #4A6274;
  --slate-300: #6B8499;
  --slate-100: #B6C2CC;

  --orange-700: #D94F1E;
  --orange-500: #E8602C;
  --orange-400: #F47B3E;

  --bg:        #F5F0EB;
  --bg-card:   #FFFFFF;
  --bg-warm:   #E8DDD4;
  --text:      #1A2A36;
  --text-muted:#4A6274;

  --border:    rgba(47, 65, 86, 0.14);
  --border-strong: rgba(47, 65, 86, 0.28);

  --shadow-sm: 0 1px 2px rgba(26, 42, 54, 0.06), 0 2px 4px rgba(26, 42, 54, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 42, 54, 0.08), 0 2px 4px rgba(26, 42, 54, 0.04);
  --shadow-lg: 0 20px 40px rgba(26, 42, 54, 0.10), 0 4px 12px rgba(26, 42, 54, 0.06);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;

  --container: 1200px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: var(--orange-700);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(47,65,86,0.05);
  border-color: var(--slate-700);
}

.btn-lg {
  padding: 16px 26px;
  font-size: 16px;
  border-radius: 8px;
}

.btn-block { display: flex; width: 100%; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Visible keyboard focus across interactive elements. */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-to-content link — visually hidden until focused. */
.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--slate-700);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

/* Honor reduced-motion preference for animations and transitions. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 235, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand img { width: 38px; height: 38px; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--slate-700);
}
.brand-text.light { color: var(--bg); }
.brand-accent { color: var(--orange-500); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-500);
}
.nav-links a:hover { color: var(--slate-700); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 64px 0 32px;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(232, 96, 44, 0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(47, 65, 86, 0.06), transparent 60%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(47,65,86,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47,65,86,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47,65,86,0.08);
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.eyebrow .ico { width: 16px; height: 16px; color: var(--orange-500); }

/* Variant for when the eyebrow is placed below the trust bullets instead
   of above the headline — needs top spacing to separate it from the
   bullets and a slight tonal lift so it still reads as a secondary tag. */
.eyebrow-bottom {
  margin-top: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 20px;
  color: var(--slate-700);
}
.hero h1 .hl { color: var(--slate-900); }
.hero h1 .hl::after {
  content: "";
  display: inline-block;
  width: 0;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  list-style: none;
  margin: 0; padding: 0;
  color: var(--slate-500);
  font-weight: 500;
  font-size: 14px;
}
.hero-bullets li {
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-bullets svg { width: 16px; height: 16px; color: var(--orange-500); }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-canvas {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  /* The iframe takes the full size of this container. Aspect ratio keeps
     the demo legible across viewport widths without locking a pixel size. */
  aspect-ratio: 5 / 4;
}
.hero-canvas iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--bg);
}

.hero-demo-caption {
  margin: 14px 4px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.hero-demo-caption svg {
  width: 16px;
  height: 16px;
  color: var(--orange-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mobile fallback for the hero demo. The interactive editor isn't usable on a
   phone, so on small screens we hide the live iframe and show a static
   floor-plan illustration plus a notice. Hidden on desktop by default. */
.hero-static { display: none; }
.hero-caption-mobile { display: none; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 48px; }
}

@media (max-width: 768px) {
  .hero-canvas,
  .hero-caption-desktop { display: none; }
  .hero-static {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  .hero-caption-mobile { display: flex; }
}

.trust-strip {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px dashed var(--border-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-strip ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 12px 28px;
}
.trust-strip li {
  position: relative; padding-left: 18px;
}
.trust-strip li::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--orange-500);
  border-radius: 2px;
}

/* ---------- Section heads ---------- */
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--slate-700);
  margin: 0 0 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- PROBLEM ---------- */
.problem { padding: 96px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(232, 96, 44, 0.10);
  color: var(--orange-500);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.problem-icon svg { width: 24px; height: 24px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--slate-700);
}
.problem-card p { margin: 0; color: var(--text-muted); }

.problem-bottom {
  text-align: center;
  margin-top: 56px;
  font-size: 18px;
  color: var(--text-muted);
}
.problem-answer {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--slate-700);
  margin-top: 8px;
  font-weight: 600;
}

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

/* ---------- FEATURES ---------- */
.features {
  padding: 96px 0;
  background: var(--bg-warm);
  position: relative;
}
.features::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(47,65,86,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47,65,86,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}
.features .container { position: relative; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.feature-lg { grid-column: span 2; }
.feature-highlight {
  background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-900) 100%);
  color: var(--bg);
  border-color: var(--slate-900);
}
/* Compound selector (.feature-card.feature-highlight) to outrank the
   later-declared .feature-card h3 / .feature-card p rules, which would
   otherwise paint slate-700 text on this dark card. */
.feature-card.feature-highlight h3 { color: #fff; }
.feature-card.feature-highlight p { color: rgba(245,240,235,0.88); }
.feature-card.feature-highlight .feature-bullets li { color: rgba(245,240,235,0.92); }
.feature-card.feature-highlight .feature-bullets svg { color: var(--orange-400); }

.feature-gif {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transform: translateY(6px);
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease, transform 0.3s ease;
}
.feature-card:hover .feature-gif,
.feature-card:focus-within .feature-gif {
  max-height: 480px;
  opacity: 1;
  margin-top: 18px;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .feature-gif { transition: opacity 0.2s ease; }
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(47, 65, 86, 0.08);
  color: var(--slate-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-icon-accent {
  background: var(--orange-500);
  color: #fff;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--slate-700);
  line-height: 1.25;
}
.feature-card p { margin: 0; color: var(--text-muted); font-size: 15px; }

.feature-bullets {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.feature-bullets li {
  display: inline-flex; align-items: center; gap: 6px;
}
.feature-bullets li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--orange-500);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-lg { grid-column: span 2; }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-lg { grid-column: span 1; }
}

/* ---------- HOW ---------- */
.how { padding: 96px 0; }
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange-500);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--slate-700);
}
.step p { margin: 0; color: var(--text-muted); }

.step-arrow {
  align-self: center;
  color: var(--slate-300);
}
.step-arrow svg { width: 28px; height: 28px; }

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

/* ---------- COMPARE ---------- */
.compare {
  padding: 96px 0;
  background: var(--slate-900);
  color: var(--bg);
}
.compare .section-head h2 { color: #fff; }
.compare .section-sub { color: rgba(245,240,235,0.7); }
.compare .kicker { color: var(--orange-400); }

.compare-table-wrap {
  background: rgba(245,240,235,0.04);
  border: 1px solid rgba(245,240,235,0.12);
  border-radius: var(--radius);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(245,240,235,0.08);
  vertical-align: middle;
}
.compare-table thead th {
  font-weight: 600;
  color: rgba(245,240,235,0.75);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.compare-table thead th.col-us {
  color: #fff;
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 700;
}
.compare-table tbody th {
  font-weight: 600;
  color: rgba(245,240,235,0.85);
  width: 26%;
}
.compare-table td { color: rgba(245,240,235,0.7); }
.compare-table .col-us {
  background: rgba(232,96,44,0.10);
  color: #fff;
  font-weight: 600;
  position: relative;
}
.compare-table .col-us strong { color: var(--orange-400); }

.yes { color: #9CD89E; font-weight: 600; }
.no { color: #E8866D; font-weight: 600; }
.compare-table .col-us .yes { color: #B7F0BA; }

/* ---------- AUDIENCE ---------- */
.audience { padding: 96px 0; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.aud-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aud-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.aud-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--slate-700);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.aud-icon svg { width: 24px; height: 24px; }
.aud-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--slate-700);
}
.aud-card p { margin: 0; color: var(--text-muted); font-size: 15px; }

@media (max-width: 980px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 96px 0;
  background: var(--bg-warm);
  position: relative;
}
.pricing::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(47,65,86,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(47,65,86,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.4;
}
.pricing .container { position: relative; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.price-card-main {
  border: 2px solid var(--orange-500);
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--orange-500);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 4px;
  color: var(--slate-700);
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0 24px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: flex-start;
}
.dollar {
  font-size: 36px;
  margin-right: 4px;
  margin-top: 6px;
  color: var(--slate-500);
  font-weight: 600;
}
.price-once {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.price-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.price-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.price-list svg {
  width: 18px; height: 18px;
  color: var(--orange-500);
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.price-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.addon-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--slate-700);
}
.addon-card p { margin: 0 0 12px; color: var(--text-muted); font-size: 14px; }
.addon-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange-500);
}
.addon-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}
.addon-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(47, 65, 86, 0.06);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 13px;
}
.addon-note svg {
  width: 18px; height: 18px;
  color: var(--slate-500);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px; }
  .price-amount { font-size: 56px; }
}

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-list details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 24px;
  color: var(--orange-500);
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  padding: 0 24px 22px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- FINAL CTA ---------- */
.final-cta { padding: 64px 0 96px; }
.final-card {
  background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-900) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.final-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(245,240,235,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,240,235,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.final-card > * { position: relative; }
.final-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.final-copy p { margin: 0; color: rgba(245,240,235,0.78); font-size: 17px; }
.final-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.final-note {
  margin: 0;
  font-size: 13px;
  color: rgba(245,240,235,0.6);
  text-align: center;
}

@media (max-width: 880px) {
  .final-card { grid-template-columns: 1fr; padding: 36px; gap: 24px; }
  .final-action { align-items: stretch; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--slate-900);
  color: rgba(245,240,235,0.7);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,240,235,0.1);
}
.footer-brand { max-width: 360px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { margin: 0; color: rgba(245,240,235,0.6); line-height: 1.6; }

.footer-col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.footer-col a { color: rgba(245,240,235,0.7); }
.footer-col a:hover { color: var(--orange-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(245,240,235,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

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