/* ============================================================
   SlideFlow AI — Sales Landing Page
   Styling terinspirasi Gamma: langit gradient, awan, kartu
   rounded soft-shadow, tombol pill gradient. Brand indigo→ungu.
   ============================================================ */

:root {
  --indigo: #4f46e5;
  --indigo-700: #4338ca;
  --violet: #7c3aed;
  --purple: #a855f7;
  --pink: #ec4899;
  --blue: #3b82f6;

  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e6e8f0;

  --sky-1: #eef2ff;
  --sky-2: #dbeafe;
  --sky-3: #f5f3ff;
  --cosmic: #0b1024;
  --cosmic-2: #16183a;

  --grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
  --grad-soft: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);

  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow: 0 18px 50px -12px rgba(79, 70, 229, 0.28);
  --shadow-lg: 0 40px 90px -20px rgba(79, 70, 229, 0.35);
  --maxw: 1140px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Plus Jakarta Sans", var(--font);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: #fff;
  color: var(--indigo);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--indigo);
  transform: translateY(-2px);
}
.btn--light {
  background: #fff;
  color: var(--indigo);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.35);
}
.btn--lg {
  font-size: 16px;
  padding: 15px 30px;
}
.btn--sm {
  font-size: 14px;
  padding: 9px 18px;
}
.btn--block {
  width: 100%;
  justify-content: center;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(15, 23, 42, 0.2);
}
.nav__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}
.brand__glyph {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.brand__ai {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links > a:not(.btn) {
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  transition: color 0.15s;
}
.nav__links > a:not(.btn):hover {
  color: var(--indigo);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #eef2ff 0%, #e6ecff 32%, #f7f5ff 70%, #ffffff 100%);
  overflow: hidden;
}
.hero__sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cloud {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  filter: blur(2px);
  opacity: 0.75;
}
.cloud--1 {
  width: 180px;
  height: 46px;
  top: 12%;
  left: 8%;
  box-shadow: 60px 10px 0 -6px #fff, 110px -6px 0 -10px #fff;
}
.cloud--2 {
  width: 140px;
  height: 40px;
  top: 24%;
  right: 12%;
  box-shadow: -50px 12px 0 -8px #fff;
  opacity: 0.6;
}
.cloud--3 {
  width: 220px;
  height: 54px;
  bottom: 14%;
  left: 20%;
  opacity: 0.5;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.orb--a {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  top: -80px;
  right: -60px;
}
.orb--b {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #60a5fa, transparent 70%);
  bottom: -120px;
  left: -80px;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.pill-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--indigo);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 18px;
}
.hero__sub {
  font-size: 18px;
  color: var(--slate);
  max-width: 520px;
}
.hero__sub strong {
  color: var(--ink);
}
.hero__cta {
  display: flex;
  gap: 14px;
  margin: 30px 0 22px;
  flex-wrap: wrap;
}
.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* Hero mockups */
.hero__visual {
  position: relative;
  height: 440px;
}
.mock {
  position: absolute;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.mock--slide {
  width: 100%;
  max-width: 440px;
  top: 20px;
  right: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.mock__chrome {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: #f8f9fc;
  border-bottom: 1px solid var(--line);
}
.mock__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7dbe6;
}
.mock__chrome span:nth-child(1) {
  background: #ff6058;
}
.mock__chrome span:nth-child(2) {
  background: #ffbe2f;
}
.mock__chrome span:nth-child(3) {
  background: #2aca44;
}
.mock__slide {
  padding: 30px 30px 34px;
  background: linear-gradient(150deg, #0ea5e9 0%, #6366f1 55%, #a855f7 100%);
  color: #fff;
  min-height: 260px;
}
.mock__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.85;
}
.mock__h {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  margin: 10px 0 8px;
}
.mock__p {
  font-size: 14px;
  opacity: 0.9;
  max-width: 300px;
}
.mock__stats {
  display: flex;
  gap: 26px;
  margin-top: 26px;
}
.mock__stats b {
  font-family: var(--display);
  font-size: 26px;
  display: block;
}
.mock__stats small {
  font-size: 12px;
  opacity: 0.85;
}
.mock--card {
  width: 210px;
  padding: 16px;
  left: -10px;
  bottom: 10px;
  border: 1px solid var(--line);
}
.mock__chip {
  display: inline-block;
  background: var(--sky-1);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.mock__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-top: 14px;
}
.mock__bars i {
  flex: 1;
  background: var(--grad);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}
.mock--pill {
  top: -6px;
  left: 30px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  box-shadow: var(--shadow);
}
.float-a {
  animation: floaty 6s ease-in-out infinite;
}
.float-b {
  animation: floaty 5s ease-in-out infinite 0.4s;
}
.float-c {
  animation: floaty 7s ease-in-out infinite 0.2s;
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ---------- Benefit strip ---------- */
.strip {
  background: var(--cosmic);
  color: #fff;
  padding: 34px 0;
}
.strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.strip__item b {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(120deg, #a5b4fc, #e9d5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.strip__item span {
  color: #b8bdd6;
  font-size: 14px;
}

/* ---------- Section head ---------- */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--slate);
  font-size: 17px;
  margin-top: 14px;
}
.section-head--light h2,
.section-head--light .eyebrow {
  color: #fff;
}
.section-head--light .eyebrow {
  color: #c7d2fe;
}
.section-head--light p {
  color: #c7cbe6;
}

/* ---------- Feature grid ---------- */
.features {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feat-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 26px;
  border-radius: 14px;
  background: var(--sky-1);
  margin-bottom: 18px;
}
.feat-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.feat-card p {
  color: var(--slate);
  font-size: 15px;
}

/* ---------- Semua fitur (daftar lengkap) ---------- */
.allfeat {
  padding: 90px 0;
  background: var(--grad-soft);
  border-top: 1px solid var(--line);
}
.allfeat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.allfeat__col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.allfeat__col:hover {
  box-shadow: var(--shadow-sm);
  border-color: #d7dbf0;
}
.allfeat__col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.allfeat__ic {
  width: 32px;
  height: 32px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 16px;
  border-radius: 9px;
  background: var(--sky-1);
}
.allfeat__col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}
.allfeat__col li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--slate);
}
.allfeat__col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--violet);
}
.allfeat__col li b {
  color: var(--ink);
  font-weight: 600;
}
.allfeat__col code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  background: var(--sky-1);
  padding: 1px 5px;
  border-radius: 5px;
  color: var(--indigo-700);
}

/* ---------- Alternating rows ---------- */
.rows {
  padding: 90px 0 40px;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 46px 24px;
}
.row--rev .row__media {
  order: 2;
}
.tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.tag--indigo {
  background: var(--sky-1);
  color: var(--indigo);
}
.tag--pink {
  background: #fce7f3;
  color: var(--pink);
}
.tag--violet {
  background: #f3e8ff;
  color: var(--violet);
}
.row__copy h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.check {
  list-style: none;
  margin-bottom: 26px;
}
.check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 15.5px;
}
.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.check code,
.row__copy code {
  background: var(--sky-1);
  color: var(--indigo);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 0.9em;
}

/* Mini-slide mockups */
.row__media {
  display: flex;
  justify-content: center;
}
.mini-slide {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mini--gen {
  background: linear-gradient(140deg, #4f46e5, #7c3aed);
}
.mini--edit {
  background: linear-gradient(140deg, #db2777, #7c3aed);
}
.mini--share {
  background: linear-gradient(140deg, #0ea5e9, #4f46e5);
}
.mini__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.85;
}
.mini__line {
  height: 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}
.mini__line.w80 {
  width: 80%;
}
.mini__line.w70 {
  width: 70%;
}
.mini__line.w60 {
  width: 55%;
  opacity: 0.7;
}
.mini__chips {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.mini__chips i {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
}
.mini__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.mini__grid i {
  height: 46px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.mini__bar {
  height: 12px;
  width: 60%;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
}
.mini__files {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.mini__files b {
  font-family: var(--display);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 10px;
}

/* ---------- Why ---------- */
.why {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #ffffff, #eef2ff);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.why__ic {
  font-size: 34px;
  margin-bottom: 12px;
}
.why__item h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.why__item p {
  color: var(--slate);
  font-size: 14px;
}

/* ---------- Pricing ---------- */
.pricing {
  padding: 100px 0;
  background: radial-gradient(1200px 500px at 50% -10%, #1e1b4b 0%, transparent 60%), var(--cosmic);
  color: #fff;
}
.price-wrap {
  display: flex;
  justify-content: center;
}
.price-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 40px 34px 34px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.5);
}
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.price-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
.price-card__price {
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.price-card__cur {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--slate);
}
.price-card__amt {
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__per {
  color: var(--muted);
  font-size: 14px;
}
.price-card__note {
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  margin-bottom: 24px;
}
.price-card__list {
  list-style: none;
  margin-bottom: 26px;
}
.price-card__list li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--slate);
}
.price-card__list li:last-child {
  border-bottom: none;
}
.price-card__guarantee {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 90px 0 100px;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 4px 22px;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: #c7d2fe;
}
.faq__item summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--indigo);
  transition: transform 0.2s;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__item p {
  color: var(--slate);
  font-size: 15px;
  padding: 0 0 20px;
}

/* ---------- Final CTA ---------- */
.cta-final {
  position: relative;
  padding: 100px 0 130px;
  background: linear-gradient(180deg, #0b1024 0%, #1e1b4b 60%, #312e81 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final__stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1.5px 1.5px at 20% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, #fff, transparent),
    radial-gradient(1px 1px at 40% 60%, #c7d2fe, transparent),
    radial-gradient(1.5px 1.5px at 85% 50%, #fff, transparent),
    radial-gradient(1px 1px at 55% 80%, #a5b4fc, transparent);
  opacity: 0.7;
}
.cta-final__inner {
  position: relative;
  z-index: 2;
}
.cta-final h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto 16px;
}
.cta-final p {
  color: #c7cbe6;
  font-size: 18px;
  margin-bottom: 30px;
}
.cta-final__wordmark {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(70px, 18vw, 240px);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
  background: #0b1024;
  color: #b8bdd6;
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand--footer {
  color: #fff;
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 14px;
  max-width: 300px;
  color: #9096b8;
}
.footer__col h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: #9096b8;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer__col a:hover {
  color: #c7d2fe;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: #7a80a0;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero__visual {
    height: 400px;
    margin-top: 20px;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .allfeat__grid {
    grid-template-columns: 1fr 1fr;
  }
  .strip__row {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .why__grid {
    grid-template-columns: 1fr 1fr;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0;
  }
  .row--rev .row__media {
    order: 0;
  }
}
@media (max-width: 640px) {
  .nav__links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    gap: 16px;
    align-items: stretch;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav__links.open {
    display: flex;
  }
  .nav__cta {
    text-align: center;
    justify-content: center;
  }
  .nav__toggle {
    display: flex;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .allfeat__grid {
    grid-template-columns: 1fr;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .hero {
    padding: 44px 0 70px;
  }
  .mock--slide {
    max-width: 340px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-a, .float-b, .float-c {
    animation: none;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
