/* ==========================================================
   Bubble LMS — Premium Landing Page
   ========================================================== */

:root{
  --bg: #FFFFFF;
  --surface: #FAFAF9;
  --surface-2: #F4F3F1;
  --ink: #111111;
  --ink-2: #4A4A4A;
  --ink-mute: #8A8A8A;
  --border: rgba(17,17,17,0.10);
  --border-soft: rgba(17,17,17,0.07);

  --accent: #D93B30;
  --accent-hover: #B72E24;
  --accent-tint: rgba(217,59,48,0.08);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(17,17,17,0.05);
  --shadow-md: 0 12px 28px -12px rgba(17,17,17,0.14);
  --shadow-lg: 0 24px 60px -20px rgba(17,17,17,0.18);

  --ease: cubic-bezier(.22,.61,.36,1);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

section[id], main [id]{ scroll-margin-top: 88px; }

@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; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in-view{ opacity: 1; transform: translateY(0); }

[data-reveal-group] > *{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i, 0) * 55ms);
}
[data-reveal-group].in-view > *{ opacity: 1; transform: translateY(0); }

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

h1,h2,h3,h4{
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.14;
  color: var(--ink);
}

p{ margin: 0 0 1em; color: var(--ink-2); }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
svg{ display:block; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:999;
  background: var(--ink); color:#fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left:0; }

/* Ambient background: fixed behind all content, doesn't scroll away. */
#bg-canvas{
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
.nav, main, .footer, .mobile-cta{ position: relative; z-index: 1; }

:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }

.wrap{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-narrow{ max-width: 760px; }

section{ padding: 120px 0; }

/* ---------- Section heads ---------- */
.section-head{ max-width: 620px; margin: 0 auto 64px; text-align:center; }
.section-head-left{ text-align:left; margin: 0 0 40px; }
.kicker{
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 14px;
}
.section-head h2{ font-size: clamp(2.1rem, 3.4vw, 2.9rem); }
.section-sub{ font-size: 1.05rem; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items:center; justify-content:center; gap: 8px;
  padding: 13px 24px; border-radius: 10px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary{ background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary{ background: #fff; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover{ border-color: var(--ink); transform: translateY(-1px); }

.btn:active{ transform: scale(.96); transition: transform .1s var(--ease); }

.btn-sm{ padding: 9px 18px; font-size: .88rem; border-radius: 8px; }
.btn-lg{ padding: 15px 30px; font-size: 1rem; }
.btn-block{ width: 100%; }

/* ---------- Nav ---------- */
.nav{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.nav.scrolled{ border-color: var(--border-soft); }
.nav-inner{
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 72px; display:flex; align-items:center; justify-content:space-between; gap: 24px;
}
.brand{ display:flex; align-items:center; }
.brand-logo{ height: 22px; width:auto; display:block; }
.brand-lg .brand-logo{ height: 40px; }
.nav-links{ display:flex; align-items:center; gap: 34px; }
.nav-links a{ font-size: .93rem; font-weight: 500; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover{ color: var(--ink); }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px; }
.nav-toggle span{ width:20px; height:1.6px; background: var(--ink); transition: transform .25s, opacity .25s; }

/* ---------- Hero ---------- */
.hero{ padding: 120px 0 110px; }
.hero-inner{
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items:center;
}
.kicker{ display:block; }
.hero h1{
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  letter-spacing: -0.035em;
}
.hero-sub{ font-size: 1.2rem; max-width: 440px; margin-top: 24px; }
.hero-actions{ display:flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-copy{ animation: heroIn .8s var(--ease) both; }
.hero-visual{ animation: heroIn .9s var(--ease) .12s both; }
@keyframes heroIn{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

.btn-arrow{ width: 16px; height:16px; fill:none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* Hero visual: floating UI cards */
.hero-visual{
  position: relative; height: 480px;
}
.hv-card{
  position:absolute; background:#fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 18px;
  will-change: transform;
}
.hv-float{ animation: floatCard 8s ease-in-out infinite; }
.hv-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 10px; }
.hv-tag{ font-size: .68rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color: var(--ink-mute); }
.hv-meta{ font-size:.78rem; color: var(--ink-mute); margin-top:4px; }
.hv-dot{ width:7px; height:7px; border-radius:50%; background: var(--border); }

.hv-course{ width: 250px; top: 10px; left: 0; z-index:3; }
.hv-course .hv-float{ animation-delay: 0s; }
.hv-course strong{ font-size: .95rem; }
.hv-progress{ height:5px; border-radius: 4px; background: var(--surface-2); margin-top: 12px; overflow:hidden; }
.hv-progress span{ display:block; height:100%; width: var(--w); background: var(--accent); border-radius:4px; }

.hv-live{ width: 210px; top: 190px; left: 40px; z-index:4; }
.hv-live .hv-float{ animation-delay: 1.2s; }
.hv-live strong{ font-size: .88rem; }
.hv-live-dot{ width:7px; height:7px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.hv-avatars{ display:flex; gap:6px; margin-top: 10px; }
.hv-avatars span{
  width: 26px; height:26px; border-radius:50%; background: var(--ink); color:#fff;
  font-size: .6rem; font-weight:700; display:flex; align-items:center; justify-content:center;
}

.hv-cert{ width: 220px; bottom: 20px; left: 0; z-index:2; text-align:center; }
.hv-cert .hv-float{ animation-delay: 2.4s; }
.hv-cert-seal{
  width: 42px; height:42px; border-radius:50%; margin: 0 auto 10px;
  background: var(--accent-tint); border: 1.5px solid var(--accent);
  position:relative;
}
.hv-cert-seal::after{
  content:"✓"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color: var(--accent); font-weight:700; font-size: .95rem;
}
.hv-cert strong{ font-size: .88rem; display:block; }

.hv-progress-card{ width: 150px; top: 0; right: 0; z-index:5; text-align:center; }
.hv-progress-card .hv-float{ animation-delay: 0.6s; }
.hv-ring{ position:relative; width: 76px; height:76px; margin: 6px auto 0; }
.hv-ring svg{ width:100%; height:100%; transform: rotate(-90deg); }
.hv-progress-card em{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-style:normal; font-weight:700; font-size:.95rem; }

.hv-analytics{ width: 210px; bottom: 40px; right: 10px; z-index:3; }
.hv-analytics .hv-float{ animation-delay: 1.8s; }
.hv-bars{ display:flex; align-items:flex-end; gap:6px; height: 60px; margin-top: 10px; }
.hv-bars i{ flex:1; height: var(--h); background: var(--surface-2); border-radius: 3px 3px 1px 1px; font-style:normal; }
.hv-bars i:last-child, .hv-bars i:nth-child(4){ background: var(--accent); }

.ring-track{ fill:none; stroke: var(--surface-2); stroke-width: 6; }
.ring-fill{ fill:none; stroke: var(--accent); stroke-width: 6; stroke-linecap: round; }

@keyframes floatCard{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* ---------- Story / capabilities (storytelling scroll) ----------
   Every animated property below reads --p (0→1), a scroll-progress
   value JS writes to each .story-item on every scroll frame. Nothing
   here uses transitions — the scroll position IS the animation, so
   it scrubs precisely forward and backward with the user's input. */
.story-item{ padding: 120px 0; --p: 0; }
.story-pin{ width:100%; }
.story-inner{
  display:grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items:center;
}
.story-reverse .story-copy{ order: 2; }
.story-reverse .story-visual{ order: 1; }

/* Enhanced mode: each item becomes a full-screen scroll track. The panel
   pins via position:sticky while the extra track height is consumed, giving
   the animation room to play before the next feature takes over. */
.story--pinned .story-item{ padding:0; height: 175vh; }
.story--pinned .story-pin{
  position: sticky; top: 0; height: 100vh;
  display:flex; align-items:center; overflow:hidden;
}

.story-copy{ position: relative; padding-left: 26px; }
.story-copy::before{
  content:""; position:absolute; left:0; top:2px; bottom:2px; width:2px;
  background: var(--border);
}
.story-copy::after{
  content:""; position:absolute; left:0; top:2px; bottom:2px; width:2px;
  background: var(--accent);
  transform-origin: top;
  transform: scaleY(clamp(0, calc(var(--p) / 0.4), 1));
}
.story-index, .story-copy h2, .story-copy p{
  opacity: clamp(0, calc(var(--p) / 0.22), 1);
  transform: translateY(calc((1 - clamp(0, calc(var(--p) / 0.22), 1)) * 34px));
}
.story-index{
  display:block; font-size: .8rem; font-weight:700; color: var(--accent);
  letter-spacing: .06em; margin-bottom: 18px;
}
.story-copy h2{
  font-size: clamp(2.1rem, 4.4vw, 3.3rem); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px;
}
.story-copy p{ font-size: 1.08rem; max-width: 380px; color: var(--ink-2); margin: 0; }

.story-visual{ display:flex; justify-content:center; }
.story-panel{
  width: 100%; max-width: 440px; min-height: 260px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: 32px;
  display:flex; flex-direction:column; justify-content:center; gap: 14px;
  opacity: clamp(0, calc(var(--p) / 0.3), 1);
  transform: translateY(calc((1 - clamp(0, calc(var(--p) / 0.3), 1)) * 90px))
             scale(calc(0.85 + clamp(0, calc(var(--p) / 0.3), 1) * 0.15));
}

/* 01 — course builder rows */
.sp-row{
  --local: clamp(0, calc((var(--p) - 0.12 - var(--d, 0) * 0.15) / 0.22), 1);
  display:flex; align-items:center; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--border-soft); border-radius: var(--r-sm);
  font-size: .9rem; color: var(--ink-2);
  opacity: var(--local);
  transform: translateX(calc((1 - var(--local)) * -70px));
}
.sp-dot{ width: 9px; height:9px; border-radius:50%; flex-shrink:0; }
.sp-dot-a{ background: var(--accent); } .sp-dot-b{ background: var(--ink); }
.sp-dot-c{ background: var(--ink-mute); } .sp-dot-d{ background: var(--accent); }

/* 02 — roster */
.sp-student{
  --local: clamp(0, calc((var(--p) - 0.12 - var(--d, 0) * 0.13) / 0.2), 1);
  display:flex; align-items:center; gap: 12px; padding: 10px 0;
  opacity: var(--local);
  transform: translateY(calc((1 - var(--local)) * 46px));
}
.sp-avatar{
  width: 34px; height:34px; border-radius:50%; background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:700; flex-shrink:0;
}
.sp-student strong{ display:block; font-size: .88rem; margin-bottom: 5px; }
.sp-mini-bar{ width: 160px; height:5px; border-radius:4px; background: var(--surface-2); overflow:hidden; }
.sp-mini-bar i{ display:block; height:100%; width: calc(var(--local, 0) * var(--w)); background: var(--accent); border-radius:4px; }

/* 03 — live room */
.sp-live-head{ display:flex; align-items:center; gap:8px; font-size:.85rem; font-weight:600; margin-bottom: 6px; }
.sp-live-dot{ width:8px; height:8px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); animation: livePulse 1.8s infinite; }
@keyframes livePulse{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }
.sp-live-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.sp-live-avatar{
  --local: clamp(0, calc((var(--p) - 0.12 - var(--d, 0) * 0.13) / 0.2), 1);
  aspect-ratio: 1; border-radius: var(--r-md); background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:.75rem; font-weight:700; position:relative;
  opacity: var(--local);
  transform: scale(calc(0.3 + var(--local) * 0.7)) translateY(calc((1 - var(--local)) * 24px));
}
.sp-live-avatar i{ position:absolute; bottom:6px; right:6px; width:10px; height:10px; border-radius:50%; background: var(--accent); border: 2px solid #fff; }

/* 04 — certificate */
.sp-cert{ align-items:center; text-align:center; }
.sp-cert-seal{
  --local: clamp(0, calc((var(--p) - 0.18) / 0.35), 1);
  width: 56px; height:56px; border-radius:50%; background: var(--accent-tint); border: 1.5px solid var(--accent);
  color: var(--accent); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1.3rem;
  transform: scale(var(--local));
}
.sp-cert strong{
  opacity: clamp(0, calc((var(--p) - 0.35) / 0.3), 1);
  transform: translateY(calc((1 - clamp(0, calc((var(--p) - 0.35) / 0.3), 1)) * 20px));
  font-size: 1rem;
}
.sp-cert span{ font-size: .82rem; color: var(--ink-mute); }

/* 05 — track performance */
.sp-track{ flex-direction: row; align-items:center; gap: 28px; }
.sp-ring{ position:relative; width: 90px; height:90px; flex-shrink:0; }
.sp-ring svg{ width:100%; height:100%; transform: rotate(-90deg); }
.sp-ring em{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-style:normal; font-weight:700; }
.sp-ring-fill{
  stroke-dasharray: 170;
  stroke-dashoffset: calc(170 - clamp(0, calc((var(--p) - 0.1) / 0.5), 1) * 139.4);
}
.sp-bars{ flex:1; display:flex; flex-direction:column; gap: 14px; }
.sp-bar span{ font-size: .82rem; color: var(--ink-2); display:block; margin-bottom: 6px; }
.sp-bar-track{ height:6px; border-radius:4px; background: var(--surface-2); overflow:hidden; }
.sp-bar-track i{
  --local: clamp(0, calc((var(--p) - 0.35) / 0.45), 1);
  display:block; height:100%; width: calc(var(--local) * var(--w)); background: var(--accent); border-radius:4px;
}

/* 06 — scale globally */
.sp-scale{ gap: 24px; }
.sp-map{ position:relative; height: 150px; border: 1px solid var(--border-soft); border-radius: var(--r-md); background: var(--surface); overflow:hidden; }
.sp-map::before{
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 20px 20px; opacity:.7;
}
.sp-pin{
  --local: clamp(0, calc((var(--p) - 0.15 - var(--d, 0) * 0.12) / 0.2), 1);
  position:absolute; left: var(--x); top: var(--y); width:8px; height:8px; border-radius:50%;
  background: var(--accent); transform: translate(-50%,-50%) scale(var(--local));
}
.sp-pin::after{
  content:""; position:absolute; inset:-6px; border-radius:50%; border: 1.5px solid var(--accent); opacity:.5;
  animation: pinPulse 2.2s infinite;
}
@keyframes pinPulse{ 0%{ transform:scale(.6); opacity:.6; } 100%{ transform:scale(2.2); opacity:0; } }
.sp-scale-stats{ display:flex; gap: 32px; }
.sp-scale-stats strong{ display:block; font-size: 1.6rem; font-weight:700; }
.sp-scale-stats span{ font-size: .78rem; color: var(--ink-mute); }

/* ---------- Solutions / Industries ---------- */
.industry-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.industry-card{
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 22px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.industry-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.industry-card:hover .ind-icon svg{ stroke: var(--accent); }
.industry-card h3{ font-size: 1rem; margin-bottom: 6px; }
.industry-card p{ font-size: .87rem; margin:0; }
.ind-icon{ display:inline-flex; width: 34px; height:34px; margin-bottom: 16px; }
.ind-icon svg{ width:100%; height:100%; fill:none; stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s var(--ease); }

/* ---------- Interactive Showcase ---------- */

.journey{
  --rx: 0; --ry: 0; --mx: 50%; --my: 50%;
  background:#fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  max-width: 920px; margin: 0 auto; position: relative; overflow: hidden;
  transform: perspective(1400px) rotateX(calc(var(--rx) * 1deg)) rotateY(calc(var(--ry) * 1deg));
  transform-style: preserve-3d;
  box-shadow:
    calc(var(--ry) * -2.4px) calc(24px + var(--rx) * 2.4px) 70px -18px rgba(17,17,17,.24),
    0 2px 0 rgba(17,17,17,.03);
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.journey.is-tilting{ transition: transform .08s linear; }
.journey::before{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(217,59,48,.08), transparent 55%);
  opacity:0; transition: opacity .4s ease;
}
.journey.is-tilting::before{ opacity:1; }

/* Window chrome: makes the demo read as an actual app screen. */
.journey-titlebar{
  display:flex; align-items:center; gap: 18px;
  padding: 14px 20px; background: var(--surface); border-bottom: 1px solid var(--border);
  position:relative; z-index: 2;
}
.journey-dots-deco{ display:flex; gap: 7px; flex-shrink:0; }
.journey-dots-deco span{ width: 11px; height:11px; border-radius:50%; background: var(--border); }
.journey-url{
  flex:1; display:flex; align-items:center; justify-content:center; gap: 8px;
  background: #fff; border: 1px solid var(--border-soft); border-radius: 999px;
  padding: 7px 16px; max-width: 340px; margin: 0 auto;
  font-size: .78rem; color: var(--ink-mute);
}
.journey-url svg{ width:13px; height:13px; fill:none; stroke:currentColor; stroke-width:1.7; flex-shrink:0; }
.journey-url span{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.journey-window-actions{ display:flex; gap: 6px; flex-shrink:0; width: 44px; justify-content:flex-end; }
.journey-window-actions span{ width: 14px; height:2px; border-radius:2px; background: var(--border); }
.journey-window-actions span:last-child{ width: 10px; }

.journey-body{ padding: 56px 60px; position:relative; z-index: 1; }

.journey-rail{ display:flex; align-items:center; justify-content:center; margin: 0 0 52px; list-style:none; padding:0; }
.journey-dot{
  width: 38px; height:38px; border-radius:50%; border: 1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center; font-size:.86rem; font-weight:700; color: var(--ink-mute);
  background:#fff; position:relative; flex-shrink:0;
  transition: border-color .4s var(--ease), color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.journey-dot:not(:last-child)::after{
  content:""; position:absolute; left:100%; top:50%; width: 56px; height: 1.5px;
  background: var(--border); transform: translateY(-50%);
  transition: background .4s var(--ease);
}
.journey-dot.active{
  border-color: var(--ink); color: var(--ink);
  box-shadow: 0 0 0 5px var(--accent-tint);
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse{
  0%,100%{ box-shadow: 0 0 0 5px var(--accent-tint); }
  50%{ box-shadow: 0 0 0 9px rgba(217,59,48,.03); }
}
.journey-dot.completed{ border-color: var(--accent); background: var(--accent); color:#fff; animation:none; }
.journey-dot.completed:not(:last-child)::after{ background: var(--accent); }

.journey-stage{ position:relative; min-height: 280px; perspective: 1200px; }
.journey-step{ display:none; text-align:center; }
.journey-step.active{ display:block; animation: journeyIn .6s cubic-bezier(.22,1.1,.4,1); transform-style: preserve-3d; }
@keyframes journeyIn{
  from{ opacity:0; transform: translateY(28px) scale(.94) rotateX(-10deg); filter: blur(10px); }
  to{ opacity:1; transform:none; filter:blur(0); }
}
.demo-num{ font-size: .8rem; font-weight:700; color: var(--accent); letter-spacing:.04em; }
.journey-step .demo-num{ display:block; margin-bottom: 8px; }
.journey-step h3{ font-size: 1.6rem; margin: 0 0 8px; }
.journey-step > p{ font-size: 1.02rem; max-width: 400px; margin: 0 auto 26px; }
.journey-step .demo-form, .journey-step .demo-row{ justify-content:center; max-width: 440px; margin: 0 auto; text-align:left; }
.journey-step .demo-result, .journey-step .cert-stage, .journey-step .live-stage{ text-align:left; }

.journey-complete-icon{
  width: 76px; height:76px; border-radius:50%; background: var(--accent); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.9rem; margin: 0 auto 22px;
  box-shadow: 0 0 0 8px var(--accent-tint);
  animation: completePulse 2.4s ease-in-out infinite;
}
@keyframes completePulse{
  0%,100%{ box-shadow: 0 0 0 8px var(--accent-tint); transform: scale(1); }
  50%{ box-shadow: 0 0 0 14px rgba(217,59,48,.04); transform: scale(1.04); }
}
.journey-complete .btn{ margin: 6px auto 0; }
.journey-restart{
  display:block; margin: 16px auto 0; background:none; border:none; font-size:.85rem;
  color: var(--ink-mute); text-decoration: underline; cursor:pointer;
}
.journey-restart:hover{ color: var(--ink); }

.demo-stage{ min-height: 0; }
.demo-form{ display:flex; flex-direction:column; gap: 18px; align-items:flex-start; }
.demo-field{ width:100%; display:flex; flex-direction:column; gap:8px; }
.demo-field label{ font-size: .74rem; color: var(--ink-mute); font-weight:600; text-transform:uppercase; letter-spacing:.03em; }

input[type="text"], input[type="email"], select, textarea{
  font-family: inherit; font-size: .96rem; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color .2s, box-shadow .2s, transform .2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus{
  outline:none; border-color: var(--ink); box-shadow: 0 0 0 3px var(--accent-tint); transform: translateY(-1px);
}
input.field-error{ border-color: var(--accent); animation: shake .35s; }
@keyframes shake{
  25%{ transform: translateX(-4px); } 75%{ transform: translateX(4px); }
}

.demo-btn{ height: 48px; white-space: nowrap; font-size: 1rem; }
.demo-btn.is-loading{ position:relative; color: transparent; pointer-events:none; }
.demo-btn.is-loading::after{
  content:""; position:absolute; inset:0; margin:auto; width:18px; height:18px;
  border: 2px solid rgba(255,255,255,.4); border-top-color:#fff; border-radius:50%;
  animation: spin .7s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.demo-result{ margin-top: 20px; }
.result-card{
  display:flex; align-items:center; gap: 16px; padding: 18px 20px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--surface); opacity:0; transform: translateY(14px) scale(.96) rotateX(-6deg);
  box-shadow: 0 4px 10px -6px rgba(17,17,17,.1);
  animation: popIn .5s cubic-bezier(.22,1.4,.4,1) forwards;
}
@keyframes popIn{ to{ opacity:1; transform: translateY(0) scale(1) rotateX(0); box-shadow: 0 16px 32px -14px rgba(17,17,17,.22); } }
.result-check{
  width: 30px; height:30px; border-radius:50%; background: var(--accent); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:.82rem; flex-shrink:0;
  box-shadow: 0 0 0 5px var(--accent-tint);
}
.result-card strong{ display:block; font-size: .98rem; }
.result-card span{ font-size: .84rem; color: var(--ink-mute); }

.demo-row{ display:flex; gap: 10px; }
.demo-row select{ flex:1; }

.demo-live-dot{
  width:8px; height:8px; border-radius:50%; background: var(--accent); flex-shrink:0;
  box-shadow: 0 0 0 4px var(--accent-tint); animation: livePulse 1.8s infinite;
}

/* Step 1 — form + live course-card preview, side by side */
.step1-grid{
  display:grid; grid-template-columns: 1fr 240px; gap: 44px; align-items:start;
  text-align:left; max-width: 620px; margin: 4px auto 0;
}
.step1-grid .demo-form{ max-width:none; margin:0; }

.step1-preview{ display:flex; flex-direction:column; gap: 10px; }
.step1-preview-label{
  font-size: .72rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color: var(--ink-mute);
}
.course-preview-card{
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px;
  background:#fff; box-shadow: var(--shadow-sm);
}
.cpc-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 16px; }
.cpc-icon{
  width: 32px; height:32px; display:flex; align-items:center; justify-content:center;
  border-radius: 9px; background: var(--surface);
}
.cpc-icon svg{ width:18px; height:18px; fill:none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap:round; stroke-linejoin:round; }
.course-preview-card strong{ display:block; font-size: .96rem; margin-bottom: 8px; transition: color .15s var(--ease); }
.cpc-cat{
  display:inline-block; font-size: .7rem; font-weight:600; color: var(--accent);
  background: var(--accent-tint); padding: 3px 10px; border-radius: 999px; margin-bottom: 16px;
}
.cpc-progress{ height:5px; border-radius:4px; background: var(--surface-2); overflow:hidden; }
.cpc-progress span{ display:block; height:100%; width: var(--w, 0%); background: var(--accent); border-radius:4px; transition: width .6s var(--ease); }

/* Category pills */
.demo-pills{ display:flex; flex-wrap:wrap; gap: 8px; }
.demo-pill{
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border);
  background:#fff; font-size: .84rem; font-weight:600; color: var(--ink-2);
  transition: all .2s var(--ease);
}
.demo-pill:hover{ border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.demo-pill.active{ background: var(--ink); border-color: var(--ink); color:#fff; }

/* Student avatar picker */
.demo-avatar-picker{ display:flex; flex-wrap:wrap; gap: 10px; margin-bottom: 20px; justify-content:center; }
.demo-avatar-chip{
  display:flex; align-items:center; gap: 9px; padding: 8px 16px 8px 8px;
  border-radius: 999px; border: 1px solid var(--border); background:#fff;
  font-size: .86rem; font-weight:600; color: var(--ink-2);
  transition: all .2s var(--ease);
}
.demo-avatar-chip span{
  width: 26px; height:26px; border-radius:50%; background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:.65rem; font-weight:700; flex-shrink:0;
  transition: background .2s var(--ease);
}
.demo-avatar-chip:hover{ border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.demo-avatar-chip.active{ border-color: var(--accent); background: var(--accent-tint); color: var(--ink); }
.demo-avatar-chip.active span{ background: var(--accent); }

/* Certificate step context line */
.demo-ready-line{
  font-size: .88rem; color: var(--ink-mute); margin: -8px auto 20px; max-width: 400px;
}
.demo-ready-line strong{ color: var(--ink); }

/* Certificate demo */
.cert-stage{ margin-top: 20px; min-height: 0; }
.cert{
  border: 1.5px solid var(--ink); border-radius: var(--r-md); padding: 30px;
  text-align:center; position:relative; opacity:0; transform: scale(.88) rotateX(-8deg);
  box-shadow: 0 6px 16px -8px rgba(17,17,17,.12);
  animation: certIn .6s cubic-bezier(.22,1.3,.4,1) forwards;
}
@keyframes certIn{ to{ opacity:1; transform: scale(1) rotateX(0); box-shadow: 0 26px 54px -18px rgba(17,17,17,.28); } }
.cert::before{
  content:""; position:absolute; inset: 8px; border: 1px solid var(--border); border-radius: 8px; pointer-events:none;
}
.cert-kicker{ font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-mute); }
.cert-title{ font-size: 1.2rem; font-weight:700; margin: 10px 0 4px; }
.cert-course{ font-size: .9rem; color: var(--ink-2); }
.cert-seal{
  width: 46px; height:46px; border-radius:50%; margin: 16px auto 0;
  background: var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1rem;
  box-shadow: 0 0 0 7px var(--accent-tint);
  animation: sealBreathe 2.6s ease-in-out infinite;
}
@keyframes sealBreathe{
  0%,100%{ transform: scale(1); box-shadow: 0 0 0 7px var(--accent-tint); }
  50%{ transform: scale(1.06); box-shadow: 0 0 0 11px rgba(217,59,48,.05); }
}
.confetti-wrap{ position:relative; }
.confetti-piece{
  position:absolute; top:0; left:50%; width:6px; height:10px; opacity:0;
  animation: confettiFall 1.1s ease-out forwards;
}
@keyframes confettiFall{
  0%{ opacity:1; transform: translate(0,0) rotate(0deg); }
  100%{ opacity:0; transform: translate(var(--dx), 120px) rotate(var(--rot)); }
}

/* Live session demo */
.live-stage{ margin-top: 18px; min-height:0; }
.live-room{
  border: 1px solid var(--border); border-radius: var(--r-md); padding: 20px;
  opacity:0; transform: translateY(14px) scale(.97) rotateX(-6deg);
  box-shadow: 0 4px 10px -6px rgba(17,17,17,.1);
  animation: popIn .5s cubic-bezier(.22,1.4,.4,1) forwards;
}
.live-room-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 14px; }
.live-status{ display:flex; align-items:center; gap:8px; font-size:.84rem; font-weight:600; }
.live-status-dot{
  width:8px; height:8px; border-radius:50%; background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-tint); animation: livePulse 1.8s infinite;
}
.live-timer{ font-size:.84rem; color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.live-participants{ display:flex; gap:12px; flex-wrap:wrap; }
.live-avatar{
  width: 56px; height:56px; border-radius: var(--r-sm); background: var(--ink); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center; font-size:.76rem; font-weight:700;
  opacity:0; transform: translateY(10px) scale(.9); position: relative;
  animation: avatarPop .5s cubic-bezier(.22,1.4,.4,1) forwards, avatarFloat 4s ease-in-out .5s infinite;
}
@keyframes avatarPop{ to{ opacity:1; transform: translateY(0) scale(1); } }
@keyframes avatarFloat{ 0%,100%{ transform: translateY(0) scale(1); } 50%{ transform: translateY(-4px) scale(1); } }
.live-avatar .mic{
  position:absolute; bottom:-4px; right:-4px; width:16px; height:16px; border-radius:50%;
  background: var(--accent); border: 2px solid #fff;
}

/* ---------- Compare ---------- */
.compare-table{ border: 1px solid var(--border); border-radius: var(--r-lg); overflow:hidden; }
.compare-row{
  display:grid; grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-soft);
}
.compare-row:last-child{ border-bottom:none; }
.compare-row > span{ padding: 18px 22px; font-size: .92rem; color: var(--ink-2); display:flex; align-items:center; gap: 10px; }
.compare-row > span:first-child{ font-weight:600; color: var(--ink); }
.compare-head{ background: var(--surface); font-weight:700; }
.compare-head > span{ color: var(--ink); font-size:.82rem; text-transform:uppercase; letter-spacing:.04em; }
.compare-highlight{ background: var(--accent-tint); color: var(--ink) !important; font-weight:600; }

.ic-check, .ic-x{ position:relative; width: 15px; height:15px; border-radius:50%; flex-shrink:0; }
.ic-check{ background: var(--accent); }
.ic-check::before{ content:""; position:absolute; left:4px; top:2px; width:5px; height:8px; border: solid #fff; border-width: 0 1.6px 1.6px 0; transform: rotate(45deg); }
.ic-x{ background: var(--border); }
.ic-x::before{ content:""; position:absolute; left:4px; top:6.5px; width:7px; height:1.6px; background: var(--ink-mute); }

/* ---------- Analytics ---------- */
.analytics-inner{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items:center; }
.analytics-panel{
  background:#fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 28px; box-shadow: var(--shadow-md);
}
.ap-metrics{ display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 22px; }
.ap-metric{ border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 14px 16px; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.ap-metric:hover{ border-color: var(--border); transform: translateY(-2px); }
.ap-metric span{ display:block; font-size:.76rem; color: var(--ink-mute); margin-bottom: 6px; }
.ap-metric strong{ font-size: 1.3rem; }
.ap-metric .ap-icon{ display:inline-flex; width: 20px; height:20px; margin-bottom: 10px; color: var(--accent); }
.ap-icon svg{ width:100%; height:100%; fill:none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ap-chart{ border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 14px; }
.ap-line{ fill:none; stroke: var(--accent); stroke-width: 2.5; }
.ap-caption{ margin: 12px 0 0; font-size: .78rem; color: var(--ink-mute); text-align:center; }

/* ---------- Pricing ---------- */
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items:stretch; }
.price-card{
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px 28px;
  display:flex; flex-direction:column; position:relative;
}
.price-featured{ border-color: var(--ink); box-shadow: var(--shadow-md); }
.price-badge{
  position:absolute; top:-12px; left: 28px; background: var(--ink); color:#fff;
  font-size:.68rem; font-weight:700; padding: 4px 12px; border-radius: 999px;
}
.price-icon{ display:inline-flex; width: 30px; height:30px; margin-bottom: 16px; }
.price-icon svg{ width:100%; height:100%; fill:none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.price-card h3{ font-size: 1.1rem; }
.price-desc{ font-size: .86rem; margin-bottom: 20px; }
.price-amt{ font-size: 2.2rem; font-weight:700; margin-bottom: 22px; }
.price-amt span{ font-size: .95rem; font-weight:400; color: var(--ink-mute); }
.price-card ul{ display:flex; flex-direction:column; gap: 11px; margin-bottom: 26px; flex:1; }
.price-card ul li{ font-size: .86rem; color: var(--ink-2); padding-left: 20px; position:relative; }
.price-card ul li::before{ content:"—"; position:absolute; left:0; color: var(--accent); }

/* ---------- Testimonials ---------- */
.testi-carousel{ position:relative; max-width: 680px; margin: 0 auto; }
.testi-track{ position:relative; min-height: 210px; }
.testi-card{
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: 34px;
  position:absolute; inset:0; opacity:0; pointer-events:none; transition: opacity .5s var(--ease);
}
.testi-card.active{ opacity:1; pointer-events:auto; position:relative; }
.testi-quote{ display:inline-flex; width: 30px; height:30px; margin-bottom: 14px; color: var(--accent); opacity: .8; }
.testi-quote svg{ width:100%; height:100%; fill:none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.testi-card p{ font-size: 1.08rem; color: var(--ink); margin-bottom: 22px; }
.testi-card footer{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width: 40px; height:40px; border-radius:50%; background: var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.9rem; flex-shrink:0;
}
.testi-card footer strong{ display:block; font-size: .88rem; }
.testi-card footer span{ font-size: .78rem; color: var(--ink-mute); }
.testi-controls{ display:flex; align-items:center; justify-content:center; gap: 18px; margin-top: 26px; }
.testi-btn{
  width: 36px; height:36px; border-radius:50%; border: 1px solid var(--border); background:#fff;
  font-size: .9rem; transition: border-color .2s, transform .2s;
}
.testi-btn:hover{ border-color: var(--ink); transform: translateY(-1px); }
.testi-dots{ display:flex; gap:8px; }
.testi-dots button{
  width:7px; height:7px; border-radius:50%; background: var(--border); border:none; padding:0;
}
.testi-dots button.active{ background: var(--accent); }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap: 12px; }
.faq-item{ border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 22px; }
.faq-item summary{
  cursor:pointer; list-style:none; display:flex; justify-content:space-between; align-items:center;
  font-weight:600; font-size: .96rem;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-icon{ position:relative; width:16px; height:16px; flex-shrink:0; }
.faq-icon::before, .faq-icon::after{ content:""; position:absolute; background: var(--ink); border-radius:2px; }
.faq-icon::before{ width:12px; height:1.6px; top:7px; left:2px; }
.faq-icon::after{ width:1.6px; height:12px; top:2px; left:7px; transition: transform .25s; }
.faq-item[open] .faq-icon::after{ transform: rotate(90deg); }
.faq-item p{ margin: 14px 0 0; font-size: .9rem; }

/* ---------- Final CTA ---------- */
.final-cta-inner{ display:grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items:start; }
.final-cta-copy h2{ font-size: clamp(2rem, 3.4vw, 2.7rem); }
.final-cta-copy p{ font-size: 1.05rem; }

.book-form{
  background:#fff; border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px; display:flex; flex-direction:column; gap: 16px; box-shadow: var(--shadow-sm);
}
.hp-field{
  position:absolute; left:-9999px; width:1px; height:1px; opacity:0; pointer-events:none;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field{ display:flex; flex-direction:column; gap:6px; }
.field label{ font-size: .78rem; color: var(--ink-mute); font-weight:600; }
.form-note{ text-align:center; font-size:.8rem; color: var(--ink-mute); margin:0; }
.form-note.success{ color: var(--accent); font-weight:600; }
.form-note.error{ color: #b91c1c; font-weight:600; }

/* ---------- Footer ---------- */
.footer{ border-top: 1px solid var(--border-soft); background: var(--surface); }
.footer-top{
  display:grid; grid-template-columns: 1.2fr 1.6fr 1fr; gap: 60px; align-items:start;
  padding: 100px 0 56px;
}

.footer-brand p{ font-size: .95rem; max-width: 280px; margin: 16px 0 28px; }

.footer-contact{ display:flex; flex-direction:column; gap: 10px; align-items:flex-start; }
.footer-contact-row{
  display:flex; align-items:center; gap: 12px;
  font-size: 1rem; font-weight:600; color: var(--ink);
  padding: 10px 14px; border-radius: 999px; border: 1px solid var(--border); background:#fff;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.footer-contact-row:hover{ border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.fc-icon{
  width: 30px; height:30px; border-radius:50%; background: var(--accent-tint); color: var(--accent);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.fc-icon svg{ width: 15px; height:15px; fill:none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.footer-links{ display:grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col{ display:flex; flex-direction:column; gap: 12px; }
.footer-col h4{ font-size: .78rem; text-transform:uppercase; letter-spacing:.05em; color: var(--ink-mute); margin-bottom: 2px; }
.footer-col a{ font-size: .88rem; color: var(--ink-2); transition: color .2s; }
.footer-col a:hover{ color: var(--ink); }

.footer-social{ display:flex; align-items:center; justify-content:center; }

/* A small live particle constellation — dots drift, draw connecting lines
   when near each other, and gently part around the cursor. Canvas-driven,
   see the "Footer constellation" block in script.js. */
.footer-constellation{ width: 220px; height: 160px; display:block; cursor: default; }

.social-row{ display:flex; gap: 10px; margin-top: 18px; }
.social-row a{
  width: 36px; height:36px; border-radius:50%; border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
  color: var(--ink-2);
}
.social-row a:hover{ border-color: var(--ink); color: var(--accent); transform: translateY(-2px); }
.social-row svg{ width: 17px; height:17px; fill:none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.footer-bottom{ padding: 22px 0 32px; border-top: 1px solid var(--border-soft); font-size: .8rem; color: var(--ink-mute); }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta{
  display:none; position: fixed; left:0; right:0; bottom:0; z-index: 90;
  padding: 12px 16px; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-soft);
}

/* ============ Responsive ============ */
@media (max-width: 1080px){
  .industry-grid{ grid-template-columns: repeat(2,1fr); }
  .analytics-inner{ grid-template-columns: 1fr; }
  .final-cta-inner{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .footer-social{ grid-column: 2; grid-row: 1; align-items:center; }
  .footer-links{ grid-column: 1 / -1; grid-row: 2; }
  .story-inner{ grid-template-columns: 1fr; gap: 40px; }
  .story-reverse .story-copy{ order:1; }
  .story-reverse .story-visual{ order:2; }
  .story-copy p{ max-width: 100%; }
}

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-links.open{
    display:flex; flex-direction:column; position:absolute; top:72px; left:0; right:0;
    background: #fff; border-bottom: 1px solid var(--border-soft); padding: 20px 28px; gap: 16px;
  }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ height: 380px; order:-1; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .price-featured{ order:-1; }
  .compare-row{ grid-template-columns: 1fr 1fr 1fr; }
  .compare-row > span{ padding: 14px 12px; font-size: .82rem; }
  .mobile-cta{ display:block; }
  .sp-track{ flex-direction:column; align-items:flex-start; }
  .journey-body{ padding: 32px 22px; }
  .journey-titlebar{ padding: 12px 16px; gap: 10px; }
  .journey-url{ font-size: .7rem; padding: 6px 12px; }
  .journey-dot:not(:last-child)::after{ width: 22px; }
  .step1-grid{ grid-template-columns: 1fr; max-width: 420px; gap: 24px; }
}

@media (max-width: 640px){
  section{ padding: 80px 0; }
  .story-item{ padding: 80px 0; }
  .industry-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; padding: 64px 0 40px; text-align:center; }
  .footer-social{ grid-column: 1; grid-row: auto; }
  .footer-links{ grid-column: 1; grid-row: auto; grid-template-columns: repeat(3,1fr); text-align:left; }
  .footer-contact{ align-items:center; }
  .brand-lg{ margin: 0 auto; }
  .compare-row{ grid-template-columns: 1fr; }
  .compare-row > span:first-child{ padding-bottom: 4px; }
  .compare-row > span:not(:first-child){ padding-top: 4px; }
}
