/* =========================================================================
   Lightning72 — Main Stylesheet
   Table of contents:
   1. Design tokens
   2. Reset & base
   3. Layout utilities
   4. Typography helpers
   5. Buttons
   6. Header / navigation
   7. Hero
   8. Section: Problem (white)
   9. Section: Core message (dark)
   10. Section: Solution (white)
   11. Section: Who this is for (dark)
   12. Section: Business types (white)
   13. Section: Demo websites (dark)
   14. Section: What's included (white)
   15. Section: SEO structure (graphic/dark)
   16. Section: How it works (white)
   17. Section: Timeline notice (graphic band)
   18. Section: Pricing (dark)
   19. Section: Trust / results (white)
   20. Section: Guarantee (graphic/dark)
   21. Section: FAQ (dark)
   22. Section: Book a consult (white)
   23. Section: Final CTA (dark)
   24. Footer
   25. Responsive breakpoints
   26. Accessibility & motion
   ========================================================================= */

/* ---------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------- */
:root {
  --l72-black: #050413;
  --l72-black-2: #08091A;
  --l72-navy: #0B0D22;
  --l72-white: #FFFFFF;
  --l72-off-white: #FAFAFB;
  --l72-light: #F5F6FA;
  --l72-text: #050413;
  --l72-body: #383846;
  --l72-muted: #605F64;
  --l72-white-body: #D7D8E5;
  --l72-white-muted: #A8A8B8;

  --l72-orange: #FA6114;
  --l72-orange-2: #FF8A00;
  --l72-pink: #EF195F;
  --l72-magenta: #E80C9D;
  --l72-purple: #5E0DF1;
  --l72-purple-2: #7B18FF;
  --l72-blue: #079FF7;
  --l72-blue-2: #0C5FEC;

  --l72-gradient: linear-gradient(90deg, #FA6114 0%, #EF195F 35%, #5E0DF1 70%, #079FF7 100%);
  --l72-gradient-diag: linear-gradient(135deg, #FA6114 0%, #EF195F 35%, #5E0DF1 70%, #079FF7 100%);

  --l72-radius-card: 22px;
  --l72-radius-card-lg: 28px;
  --l72-radius-button: 12px;

  --l72-shadow-light: 0 14px 45px rgba(5, 4, 19, 0.08);
  --l72-shadow-glow: 0 0 40px rgba(94, 13, 241, 0.22);

  --l72-container: 1200px;
  --l72-header-h: 78px;

  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Inter', 'Montserrat', Arial, sans-serif;
}

/* ---------------------------------------------------------------------
   2. Reset & base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--l72-header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--l72-body);
  background: var(--l72-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
}

p { margin: 0; }

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Visible keyboard focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--l72-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------
   3. Layout utilities
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--l72-container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-tight { padding: 72px 0; }

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

.section-head.align-left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--l72-pink);
  margin-bottom: 18px;
}

.dark-section .eyebrow { color: var(--l72-orange-2); }

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-style: italic;
  margin-bottom: 18px;
}

.section-head p {
  font-size: 18px;
  line-height: 1.6;
}

.dark-section {
  background: var(--l72-black);
  color: var(--l72-white-body);
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--l72-white); }
.dark-section .muted { color: var(--l72-white-muted); }

.light-section {
  background: var(--l72-white);
  color: var(--l72-body);
}
.light-section h1, .light-section h2, .light-section h3, .light-section h4 { color: var(--l72-text); }
.light-section .muted { color: var(--l72-muted); }

.graphic-section {
  background: var(--l72-navy);
  color: var(--l72-white-body);
  position: relative;
  overflow: hidden;
}
.graphic-section h1, .graphic-section h2, .graphic-section h3, .graphic-section h4 { color: var(--l72-white); }

.grid {
  display: grid;
  gap: 28px;
}

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

.gradient-text {
  background: var(--l72-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--l72-white);
  color: var(--l72-text);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  z-index: 1000;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------------
   4. Typography helpers
   --------------------------------------------------------------------- */
.h1-hero {
  font-size: clamp(36px, 5.4vw, 72px);
  font-style: italic;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 19px;
  line-height: 1.7;
}

.text-center { text-align: center; }

/* ---------------------------------------------------------------------
   5. Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 16px 30px;
  border-radius: var(--l72-radius-button);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  border: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn-primary {
  background: var(--l72-gradient);
  background-size: 160% 160%;
  color: #fff;
  box-shadow: 0 12px 30px rgba(232, 12, 157, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(232, 12, 157, 0.42);
  background-position: 100% 0;
}

.btn-outline-dark {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-dark:hover {
  border-color: var(--l72-pink);
  background: rgba(239, 25, 95, 0.08);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: #fff;
  color: var(--l72-text);
  border: 2px solid var(--l72-text);
}
.btn-outline-light:hover {
  background: var(--l72-text);
  color: #fff;
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ---------------------------------------------------------------------
   6. Header / navigation
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--l72-black);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: var(--l72-header-h);
  display: flex;
  align-items: center;
}

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

.brand {
  display: flex;
  align-items: center;
}
.brand img { height: 32px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a:not(.btn) {
  display: inline-block;
  padding: 10px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--l72-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 10px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nav-toggle .icon { width: 24px; height: 24px; }

/* ---------------------------------------------------------------------
   7. Hero
   --------------------------------------------------------------------- */
.hero {
  background: radial-gradient(120% 140% at 15% -10%, #17143a 0%, var(--l72-black) 55%),
              var(--l72-black);
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  pointer-events: none;
}
.hero::before {
  width: 480px; height: 480px;
  background: var(--l72-purple);
  top: -160px; right: -120px;
}
.hero::after {
  width: 420px; height: 420px;
  background: var(--l72-blue);
  bottom: -180px; left: -100px;
}

.hero-streaks {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

.hero-copy .eyebrow { color: var(--l72-orange-2); }

.hero h1 { color: #fff; margin-bottom: 22px; }

.hero-copy .lede {
  color: var(--l72-white-body);
  margin-bottom: 16px;
}

.hero-copy .lede + .lede { margin-top: -4px; }

.hero .btn-row { margin: 34px 0 30px; }

.trust-line {
  font-size: 14px;
  color: var(--l72-white-muted);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  line-height: 1.6;
}

.hero-bullets {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--l72-white-body);
}

.hero-bullets .icon {
  width: 18px; height: 18px;
  color: var(--l72-orange-2);
  margin-top: 3px;
}

.hero-panel {
  position: relative;
  border-radius: var(--l72-radius-card-lg);
  padding: 3px;
  background: var(--l72-gradient);
}

.hero-panel-inner {
  background: var(--l72-black-2);
  border-radius: calc(var(--l72-radius-card-lg) - 3px);
  padding: 34px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-stat:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.hero-stat .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 34px;
  color: #fff;
}

.hero-stat .label {
  font-size: 14px;
  color: var(--l72-white-muted);
  line-height: 1.5;
}

/* ---------------------------------------------------------------------
   8. Section: Problem (white)
   --------------------------------------------------------------------- */
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin: 34px 0;
}

.problem-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--l72-body);
  padding: 14px 16px;
  background: var(--l72-light);
  border-radius: 14px;
}

.problem-list .icon { color: var(--l72-pink); width: 18px; height: 18px; margin-top: 2px; }

.problem-copy { max-width: 760px; margin: 0 auto; text-align: center; }
.problem-copy p { margin-bottom: 18px; font-size: 18px; line-height: 1.7; }
.problem-copy p:last-child { margin-bottom: 0; font-weight: 700; color: var(--l72-text); }

/* ---------------------------------------------------------------------
   9. Section: Core message (dark)
   --------------------------------------------------------------------- */
.core-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.core-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--l72-radius-card);
  padding: 34px 30px;
}

.core-card .icon-badge { margin-bottom: 20px; }

.core-card h3 {
  font-size: 22px;
  font-style: italic;
  margin-bottom: 12px;
}

.core-card p { color: var(--l72-white-body); line-height: 1.65; }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--l72-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-badge .icon { color: #fff; width: 26px; height: 26px; }

.core-message-lead {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}
.core-message-lead p { margin-bottom: 14px; line-height: 1.7; font-size: 17px; color: var(--l72-white-body); }

/* ---------------------------------------------------------------------
   10. Section: Solution (white)
   --------------------------------------------------------------------- */
.solution-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.solution-copy p { margin-bottom: 18px; font-size: 17px; line-height: 1.7; }

.solution-flip {
  display: flex;
  gap: 24px;
  margin: 26px 0 8px;
}

.solution-flip .flip-item {
  flex: 1;
  text-align: center;
  padding: 20px 14px;
  border-radius: 16px;
  background: var(--l72-light);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--l72-muted);
}

.solution-flip .flip-item.is-answer {
  background: var(--l72-black);
  color: #fff;
}

.solution-visual {
  border-radius: var(--l72-radius-card-lg);
  background: var(--l72-black);
  padding: 3px;
  background-image: var(--l72-gradient);
}

.solution-visual-inner {
  background: var(--l72-black);
  border-radius: calc(var(--l72-radius-card-lg) - 3px);
  padding: 30px;
  display: grid;
  gap: 16px;
}

.solution-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
}
.solution-chip .icon { color: var(--l72-orange-2); width: 20px; height: 20px; }

/* ---------------------------------------------------------------------
   11. Section: Who this is for (dark)
   --------------------------------------------------------------------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.who-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}

.who-item .icon-check {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--l72-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.who-item .icon-check .icon { width: 16px; height: 16px; color: #fff; }
.who-item p { color: #fff; font-size: 15.5px; font-weight: 600; line-height: 1.5; }

/* ---------------------------------------------------------------------
   12. Section: Business types (white)
   --------------------------------------------------------------------- */
.type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.type-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--l72-radius-card);
  background: var(--l72-off-white);
  border: 1px solid #ECEDF3;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--l72-shadow-light);
  border-color: transparent;
}

.type-card .icon-badge {
  margin: 0 auto 16px;
  width: 50px; height: 50px;
}

.type-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.type-card p {
  font-size: 13.5px;
  color: var(--l72-muted);
  line-height: 1.5;
}

.type-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 36px 0 8px;
}

.type-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--l72-light);
  font-weight: 700;
  font-size: 14px;
  color: var(--l72-text);
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}

/* ---------------------------------------------------------------------
   13. Section: Demo websites (dark)
   --------------------------------------------------------------------- */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.demo-card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.demo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,25,95,.5);
  box-shadow: var(--l72-shadow-glow);
}

.demo-card .icon-badge {
  margin: 0 auto 14px;
  width: 46px; height: 46px;
}

.demo-card h3 {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

/* ---------------------------------------------------------------------
   14. Section: What's included (white)
   --------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 30px 26px;
  border-radius: var(--l72-radius-card);
  background: var(--l72-white);
  border: 1px solid #ECEDF3;
  box-shadow: var(--l72-shadow-light);
}

.feature-card .icon-badge { margin-bottom: 18px; width: 48px; height: 48px; }
.feature-card .icon-badge .icon { width: 22px; height: 22px; }

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--l72-muted);
}

/* ---------------------------------------------------------------------
   15. Section: SEO structure (graphic/dark)
   --------------------------------------------------------------------- */
.seo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.seo-copy p { margin-bottom: 16px; font-size: 17px; line-height: 1.7; }
.seo-copy .lede-strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  color: #fff;
}

.seo-checklist {
  display: grid;
  gap: 12px;
}

.seo-checklist li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.seo-checklist .icon { color: var(--l72-blue); width: 18px; height: 18px; flex-shrink: 0; }

/* ---------------------------------------------------------------------
   16. Section: How it works (white)
   --------------------------------------------------------------------- */
.steps-list {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.step-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 26px;
  border-radius: var(--l72-radius-card);
  background: var(--l72-off-white);
  border: 1px solid #ECEDF3;
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 34px;
}

.step-row h3 { font-size: 19px; margin-bottom: 8px; }
.step-row p { font-size: 15.5px; line-height: 1.65; color: var(--l72-muted); }
.step-row p + p { margin-top: 8px; }

/* ---------------------------------------------------------------------
   17. Section: Timeline notice (light graphic band — the bold gradient
       clock is the "graphic" accent here, kept light so it doesn't sit
       directly next to another dark section)
   --------------------------------------------------------------------- */
.timeline-band {
  background: var(--l72-light);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #E7E8F1;
  border-bottom: 1px solid #E7E8F1;
}
.timeline-band h2, .timeline-band h3 { color: var(--l72-text); }
.timeline-band .eyebrow { color: var(--l72-magenta); }

.timeline-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.timeline-clock {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-badge {
  width: 190px; height: 190px;
  border-radius: 50%;
  background: var(--l72-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  box-shadow: var(--l72-shadow-glow);
}
.clock-badge .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 46px;
  line-height: 1;
}
.clock-badge .unit { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }

.timeline-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.timeline-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--l72-text);
  font-weight: 600;
  font-size: 15.5px;
}
.timeline-list .icon { color: var(--l72-magenta); width: 18px; height: 18px; }
.timeline-note { color: var(--l72-muted); font-size: 15px; line-height: 1.65; }

/* ---------------------------------------------------------------------
   18. Section: Pricing (dark)
   --------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  border-radius: var(--l72-radius-card-lg);
  padding: 36px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.is-popular {
  border-image: var(--l72-gradient) 1;
  border-width: 2px;
  border-style: solid;
  box-shadow: var(--l72-shadow-glow);
  transform: scale(1.03);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 30px;
  background: var(--l72-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}

.price-card .tagline {
  color: var(--l72-white-muted);
  font-size: 14.5px;
  margin-bottom: 22px;
  line-height: 1.5;
  min-height: 44px;
}

.price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 44px;
  color: #fff;
  margin-bottom: 24px;
}

.price-features {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--l72-white-body);
  line-height: 1.5;
}
.price-features .icon { color: var(--l72-blue); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--l72-white-muted);
  font-size: 14px;
}

/* ---------------------------------------------------------------------
   18b. Section: DIY vs Lightning72 comparison (white)
   --------------------------------------------------------------------- */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--l72-radius-card);
  overflow: hidden;
  border: 1px solid #ECEDF3;
}

.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid #ECEDF3;
}

.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  color: var(--l72-text);
  background: var(--l72-light);
}

.compare-table thead th.col-l72 {
  background: var(--l72-black);
  color: #fff;
}

.compare-table tbody td:first-child {
  color: var(--l72-muted);
  font-weight: 600;
}

.compare-table tbody td.col-diy {
  color: var(--l72-muted);
}

.compare-table tbody td.col-l72 {
  background: rgba(94,13,241,.04);
  color: var(--l72-text);
  font-weight: 700;
}

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

.compare-table .icon-yes { color: var(--l72-purple); width: 18px; height: 18px; }
.compare-table .icon-no { color: var(--l72-muted); width: 18px; height: 18px; opacity: .5; }

/* ---------------------------------------------------------------------
   19. Section: Trust / results (white)
   --------------------------------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  padding: 30px;
  border-radius: var(--l72-radius-card);
  background: var(--l72-off-white);
  border: 1px solid #ECEDF3;
}

.trust-card .icon-badge { margin-bottom: 18px; }
.trust-card h3 { font-size: 18px; margin-bottom: 10px; }
.trust-card p { font-size: 15px; color: var(--l72-muted); line-height: 1.6; }

.trust-note {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--l72-muted);
  font-style: italic;
}

/* ---------------------------------------------------------------------
   20. Section: Guarantee (graphic/dark)
   --------------------------------------------------------------------- */
.guarantee-wrap {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  width: 74px; height: 74px;
  border-radius: 20px;
  background: var(--l72-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.guarantee-badge .icon { color: #fff; width: 34px; height: 34px; }

.guarantee-wrap p { font-size: 17px; line-height: 1.75; margin-bottom: 16px; color: var(--l72-white-body); }
.guarantee-wrap p.policy { font-weight: 700; color: #fff; }

/* ---------------------------------------------------------------------
   20b. Section: Satisfaction guarantee (white policy variant)
   --------------------------------------------------------------------- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.policy-card {
  padding: 26px;
  border-radius: var(--l72-radius-card);
  background: var(--l72-off-white);
  border: 1px solid #ECEDF3;
}

.policy-card .icon-badge { margin-bottom: 16px; width: 46px; height: 46px; }
.policy-card h3 { font-size: 17px; margin-bottom: 10px; }
.policy-card p { font-size: 14.5px; color: var(--l72-muted); line-height: 1.6; }

.policy-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: var(--l72-radius-card);
  background: var(--l72-black);
  text-align: center;
}
.policy-box p { color: var(--l72-white-body); font-size: 15.5px; line-height: 1.7; margin-bottom: 10px; }
.policy-box p:last-child { margin-bottom: 0; font-weight: 700; color: #fff; }

/* ---------------------------------------------------------------------
   21. Section: FAQ (dark)
   --------------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  color: #fff;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-align: left;
}

.faq-question .icon {
  color: var(--l72-pink);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question .icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--l72-white-body);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 22px;
}

.faq-item.is-open .faq-answer { padding: 0 24px; }

/* ---------------------------------------------------------------------
   22. Section: Book a consult (white)
   --------------------------------------------------------------------- */
.consult-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}

.consult-copy p { font-size: 17px; line-height: 1.7; margin-bottom: 20px; }

.consult-points { display: grid; gap: 14px; margin-top: 10px; }
.consult-points li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  color: var(--l72-text);
}
.consult-points .icon { color: var(--l72-pink); width: 18px; height: 18px; }

.consult-form {
  background: var(--l72-off-white);
  border: 1px solid #ECEDF3;
  border-radius: var(--l72-radius-card-lg);
  padding: 36px;
}

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

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--l72-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid #DCDDE8;
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--l72-text);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--l72-purple);
  outline: none;
}

.form-field textarea { resize: vertical; min-height: 100px; }

.consult-form .btn { margin-top: 8px; }

/* ---------------------------------------------------------------------
   23. Section: Final CTA (dark)
   --------------------------------------------------------------------- */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p { font-size: 18px; line-height: 1.7; margin-bottom: 14px; color: var(--l72-white-body); }
.final-cta .btn-row { justify-content: center; margin-top: 32px; }

/* ---------------------------------------------------------------------
   24. Footer
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--l72-black);
  color: var(--l72-white-muted);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: var(--l72-pink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 13.5px;
}

/* ---------------------------------------------------------------------
   25. Responsive breakpoints
   --------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .type-grid { grid-template-columns: repeat(3, 1fr); }
  .demo-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(1, 1fr); }
  .policy-grid { grid-template-columns: repeat(1, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-panel { order: -1; max-width: 480px; }
  .solution-wrap { grid-template-columns: 1fr; }
  .solution-visual { order: -1; }
  .seo-wrap { grid-template-columns: 1fr; }
  .timeline-wrap { grid-template-columns: 1fr; text-align: center; }
  .timeline-clock { order: -1; }
  .timeline-list { justify-items: center; }
  .consult-wrap { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.is-popular { transform: none; grid-column: span 2; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .main-nav ul { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta.desktop-only { display: none; }

  .site-header.is-open .main-nav {
    position: fixed;
    top: var(--l72-header-h);
    left: 0; right: 0;
    background: var(--l72-black);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .site-header.is-open .main-nav ul {
    display: grid;
    gap: 4px;
    width: 100%;
  }
  .site-header.is-open .main-nav a:not(.btn) { width: 100%; padding: 14px 10px; }
  .site-header.is-open .nav-cta { margin: 14px 0 0; width: 100%; }
  .site-header.is-open .nav-cta .btn { width: 100%; }
}

@media (max-width: 780px) {
  .compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 640px; }
  .section { padding: 68px 0; }
  .section-tight { padding: 52px 0; }
  .section-head { margin-bottom: 40px; }
  .problem-list { grid-template-columns: 1fr; }
  .core-cards { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-list .step-row { grid-template-columns: 56px 1fr; padding: 20px; }
  .step-num { font-size: 26px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.is-popular { grid-column: auto; max-width: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 88px 0 72px; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .demo-grid { grid-template-columns: 1fr 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

/* ---------------------------------------------------------------------
   26. Accessibility & motion
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
