/* ==========================================================================
   LAUNCHPAD — Startup / Small Business Website Template
   Plain HTML5 + CSS3 + Vanilla JS. No frameworks. No image files.
   --------------------------------------------------------------------------
   REBRAND: Change the brand palette, fonts, radius and shadows below in the
   :root block. Everything else inherits from these variables. Swap the logo
   mark text/emoji in the header of each HTML page and update footer details.
   ========================================================================== */

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS (edit here to rebrand the whole site)
   --------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --brand: #7c3aed;          /* vibrant purple — primary */
  --brand-dark: #5b21b6;     /* darker purple for hovers */
  --brand-light: #a78bfa;    /* light purple tints */
  --accent: #ec4899;         /* pink accent */
  --accent-dark: #db2777;

  /* Surfaces */
  --bg: #ffffff;             /* base background */
  --bg-soft: #faf5ff;        /* soft alternating section bg */
  --bg-dark: #1e1b2e;        /* deep purple-charcoal for dark blocks */

  /* Text */
  --text: #1f1633;           /* near-black with purple cast */
  --text-soft: #564d6b;      /* muted body copy */
  --text-invert: #f5f3ff;    /* text on dark backgrounds */

  /* Lines & borders */
  --border: #ece6f5;
  --border-strong: #d8cdec;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --grad-brand-soft: linear-gradient(135deg, #a78bfa 0%, #f9a8d4 100%);
  --grad-dark: linear-gradient(160deg, #2a2342 0%, #1e1b2e 60%, #2d1840 100%);

  /* Typography */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, .08);
  --shadow-md: 0 12px 30px rgba(124, 58, 237, .12);
  --shadow-lg: 0 28px 60px rgba(124, 58, 237, .18);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 120px);

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

p { color: var(--text-soft); }

::selection { background: var(--accent); color: #fff; }

/* ---------------------------------------------------------------------------
   3. LAYOUT HELPERS
   --------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section--soft { background: var(--bg-soft); }

.section--dark {
  background: var(--grad-dark);
  color: var(--text-invert);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(245, 243, 255, .78); }

.section-head {
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head p { margin-top: 16px; font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: #f3ecff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.section--dark .eyebrow { background: rgba(167, 139, 250, .18); color: var(--brand-light); }

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

/* ---------------------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: #fff;
  color: var(--brand);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--brand); transform: translateY(-2px); }

.btn--light {
  background: #fff;
  color: var(--brand);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------------------------------------------------------------------------
   5. HEADER / NAV (shared on every page)
   --------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(124, 58, 237, .07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo__mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.logo__mark svg { width: 20px; height: 20px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-weight: 500;
  font-size: .97rem;
  color: var(--text-soft);
  padding: 9px 15px;
  border-radius: var(--r-pill);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--brand); background: #f5efff; }
.nav__links a.active { color: var(--brand); font-weight: 600; }

.nav__cta { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  background: #fff;
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------------------
   6. HERO (home page)
   --------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(60px, 8vw, 110px) clamp(70px, 9vw, 120px);
  background:
    radial-gradient(circle at 12% 18%, rgba(167, 139, 250, .22), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(236, 72, 153, .16), transparent 40%),
    var(--bg);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-strong);
  padding: 7px 16px 7px 8px;
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.hero__badge b {
  background: var(--grad-brand);
  color: #fff;
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
}
.hero h1 { margin-bottom: 22px; }
.hero__lead { font-size: 1.18rem; max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note {
  margin-top: 22px;
  font-size: .9rem;
  color: var(--text-soft);
  display: flex; align-items: center; gap: 8px;
}

/* CSS/SVG product graphic */
.hero__visual { position: relative; }
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(.5deg);
}
.product-card__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.product-card__bar i {
  width: 11px; height: 11px; border-radius: 50%; display: inline-block;
}
.dot-r { background: #ff6b6b; } .dot-y { background: #ffd166; } .dot-g { background: #06d6a0; }
.product-card__body { padding: 22px; }
.pc-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pc-title { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.pc-pill { font-size: .72rem; font-weight: 600; color: #06916a; background: #d7f8ec; padding: 4px 10px; border-radius: var(--r-pill); }
.pc-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.pc-stat { background: var(--bg-soft); border-radius: var(--r-md); padding: 14px; }
.pc-stat span { font-size: .76rem; color: var(--text-soft); }
.pc-stat b { font-family: var(--font-head); font-size: 1.5rem; display: block; margin-top: 4px; }
.pc-chart { height: 120px; display: flex; align-items: flex-end; gap: 9px; padding-top: 6px; }
.pc-bar { flex: 1; border-radius: 7px 7px 3px 3px; background: var(--grad-brand-soft); }
.pc-bar:nth-child(even) { background: var(--grad-brand); }

.hero__float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 11px;
  font-size: .85rem;
  font-weight: 500;
}
.hero__float .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 1.05rem; }
.hero__float--1 { top: -22px; right: 10px; animation: floaty 5s ease-in-out infinite; }
.hero__float--2 { bottom: -24px; left: -18px; animation: floaty 6s ease-in-out infinite .8s; }
.hero__float small { color: var(--text-soft); font-weight: 400; display: block; }
.hero__float b { font-family: var(--font-head); }

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

/* ---------------------------------------------------------------------------
   7. LOGO STRIP
   --------------------------------------------------------------------------- */
.logos { padding-block: clamp(40px, 5vw, 60px); }
.logos__title { text-align: center; color: var(--text-soft); font-size: .9rem; margin-bottom: 28px; letter-spacing: .04em; }
.logos__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(28px, 5vw, 56px);
}
.logos__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: #9a8fb3;
  display: inline-flex; align-items: center; gap: 9px;
  opacity: .85;
  transition: color .25s, opacity .25s;
}
.logos__item:hover { color: var(--brand); opacity: 1; }
.logos__item svg { width: 24px; height: 24px; }

/* ---------------------------------------------------------------------------
   8. CARDS / GRIDS (features, values, etc.)
   --------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.card__icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: #f3ecff;
  color: var(--brand);
}
.card__icon--pink { background: #fde8f3; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* ---------------------------------------------------------------------------
   9. PAGE BANNER (inner pages)
   --------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  padding-block: clamp(70px, 10vw, 130px);
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 139, 250, .25), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(236, 72, 153, .2), transparent 45%),
    var(--bg-soft);
  overflow: hidden;
}
.page-banner h1 { margin-bottom: 16px; }
.page-banner p { max-width: 600px; margin: 0 auto; font-size: 1.12rem; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text-soft);
  margin-bottom: 20px;
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--brand); }

/* ---------------------------------------------------------------------------
   10. HOW IT WORKS (steps)
   --------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step { text-align: center; padding: 12px; }
.step__num {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-strong);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .96rem; }

/* ---------------------------------------------------------------------------
   11. STATS
   --------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 14px; }
.stat b {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
}
.stat span { color: var(--text-soft); font-size: .95rem; margin-top: 8px; display: block; }
.section--dark .stat span { color: rgba(245, 243, 255, .7); }

/* ---------------------------------------------------------------------------
   12. TESTIMONIALS
   --------------------------------------------------------------------------- */
.quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote__stars { color: #ffb703; font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 22px; }
.quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.quote__who { margin-top: 28px; display: inline-flex; align-items: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700;
}
.quote__who .meta { text-align: left; }
.quote__who .meta b { font-family: var(--font-head); }
.quote__who .meta span { font-size: .9rem; color: var(--text-soft); display: block; }

.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.tcard .stars { color: #ffb703; letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { color: var(--text); font-size: 1.02rem; }
.tcard .who { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.tcard .who b { font-family: var(--font-head); font-size: .95rem; }
.tcard .who span { font-size: .85rem; color: var(--text-soft); display: block; }

/* ---------------------------------------------------------------------------
   13. CTA BAND
   --------------------------------------------------------------------------- */
.cta-band { position: relative; }
.cta-box {
  background: var(--grad-brand);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255, 255, 255, .25), transparent 50%);
}
.cta-box > * { position: relative; }
.cta-box h2 { color: #fff; margin-bottom: 16px; }
.cta-box p { color: rgba(255, 255, 255, .9); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-box .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   14. PRICING
   --------------------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan--featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-5px); }
.plan__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  padding: 6px 16px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.plan__name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.plan__desc { font-size: .92rem; margin: 8px 0 22px; }
.plan__price { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 6px; }
.plan__price b { font-family: var(--font-head); font-size: 3rem; line-height: 1; letter-spacing: -0.03em; }
.plan__price span { color: var(--text-soft); margin-bottom: 8px; font-size: .95rem; }
.plan__bill { font-size: .85rem; color: var(--text-soft); margin-bottom: 26px; }
.plan .btn { width: 100%; margin-bottom: 26px; }
.plan__features li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 0;
  font-size: .95rem;
  color: var(--text);
}
.plan__features svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--brand); }
.plan__features li.off { color: var(--text-soft); opacity: .6; }
.plan__features li.off svg { color: var(--text-soft); }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; font-size: .95rem; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.compare thead th { font-family: var(--font-head); font-size: 1rem; }
.compare thead th:not(:first-child) { text-align: center; }
.compare td:not(:first-child) { text-align: center; }
.compare tbody tr:hover { background: var(--bg-soft); }
.compare .yes { color: #06916a; font-weight: 700; }
.compare .no { color: var(--border-strong); }
.compare .col-feat { background: #faf5ff; }

/* ---------------------------------------------------------------------------
   15. FAQ (accordion)
   --------------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  color: var(--text); text-align: left;
}
.faq__q .plus {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; background: #f3ecff; color: var(--brand);
  display: grid; place-items: center; font-size: 1.2rem; line-height: 1;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.faq__item.open .plus { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 4px 24px; font-size: .98rem; }

/* ---------------------------------------------------------------------------
   16. ABOUT — story, values, team, milestones
   --------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split__media {
  border-radius: var(--r-lg);
  min-height: 360px;
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .3), transparent 45%);
}
.split__media .glyph { font-size: clamp(4rem, 10vw, 7rem); position: relative; z-index: 1; }

.values-list li { display: flex; gap: 16px; margin-bottom: 22px; }
.values-list .ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r-md); background: #f3ecff; color: var(--brand);
  display: grid; place-items: center; font-size: 1.25rem;
}
.values-list b { font-family: var(--font-head); display: block; margin-bottom: 4px; }
.values-list p { font-size: .95rem; }

.team-card { text-align: center; }
.team-card .face {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--grad-brand-soft);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff;
}
.team-card b { font-family: var(--font-head); font-size: 1.05rem; }
.team-card span { font-size: .88rem; color: var(--brand); display: block; margin-top: 3px; }
.team-card p { font-size: .9rem; margin-top: 10px; }

.timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px;
  width: 2px; background: var(--border-strong);
}
.timeline__item { position: relative; padding-bottom: 38px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -34px; top: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--grad-brand); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand-light);
}
.timeline__year { font-family: var(--font-head); font-weight: 700; color: var(--brand); font-size: .95rem; }
.timeline__item h3 { margin: 4px 0 6px; }
.timeline__item p { font-size: .96rem; }

/* ---------------------------------------------------------------------------
   17. FEATURES PAGE — grouped feature rows
   --------------------------------------------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 8vw, 96px); }
.feature-row--rev .feature-row__media { order: -1; }
.feature-row__media {
  border-radius: var(--r-lg);
  min-height: 320px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  padding: 30px;
}
.feature-row ul.checks li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: .98rem; }
.feature-row ul.checks svg { width: 19px; height: 19px; color: var(--brand); flex-shrink: 0; margin-top: 3px; }

.mock-ui {
  width: 100%;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mock-ui__head { display: flex; gap: 6px; padding: 12px 14px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.mock-ui__head i { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.mock-ui__body { padding: 18px; display: grid; gap: 12px; }
.mock-line { height: 12px; border-radius: 6px; background: #efe9f8; }
.mock-line.w-70 { width: 70%; } .mock-line.w-50 { width: 50%; } .mock-line.w-90 { width: 90%; }
.mock-line.accent { background: var(--grad-brand); width: 40%; height: 30px; border-radius: 8px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 6px; }
.mock-tile { height: 56px; border-radius: 10px; background: #f3ecff; }
.mock-tile:nth-child(2) { background: #fde8f3; }

/* Integrations grid */
.integrations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.intg {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px 16px; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.intg:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.intg .emoji { font-size: 1.9rem; }
.intg b { font-family: var(--font-head); display: block; margin-top: 10px; font-size: .95rem; }

/* Security badges */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sec {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  padding: 24px;
}
.sec .ico { font-size: 1.6rem; }
.sec b { font-family: var(--font-head); color: #fff; display: block; margin-bottom: 6px; }
.sec p { font-size: .92rem; }

/* ---------------------------------------------------------------------------
   18. CONTACT PAGE
   --------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.form { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .9rem; display: block; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .12);
}
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
.field.row2 .field { margin-bottom: 0; }
.field .err { color: var(--accent-dark); font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--accent); }
.field.invalid .err { display: block; }
.form__success {
  display: none;
  background: #d7f8ec; color: #06745a;
  border: 1px solid #9be8cf;
  border-radius: var(--r-md);
  padding: 16px; margin-bottom: 22px;
  font-weight: 500; font-size: .95rem;
}
.form__success.show { display: block; }

.contact-info { display: grid; gap: 18px; }
.info-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 22px; display: flex; gap: 16px; align-items: flex-start;
}
.info-card .ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r-md); background: #f3ecff; color: var(--brand);
  display: grid; place-items: center; font-size: 1.25rem;
}
.info-card b { font-family: var(--font-head); display: block; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .94rem; color: var(--text-soft); }
.info-card a:hover { color: var(--brand); }

.map-placeholder {
  margin-top: 18px;
  border-radius: var(--r-lg);
  min-height: 280px;
  background:
    linear-gradient(rgba(124, 58, 237, .06), rgba(236, 72, 153, .06)),
    repeating-linear-gradient(0deg, var(--border) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, var(--border) 0 1px, transparent 1px 44px),
    var(--bg-soft);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  position: relative;
}
.map-placeholder .pin {
  font-size: 2.6rem;
  filter: drop-shadow(0 6px 10px rgba(124, 58, 237, .3));
  animation: floaty 4s ease-in-out infinite;
}
.map-placeholder .label {
  position: absolute; bottom: 16px; left: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 7px 16px; font-size: .85rem; font-weight: 500; box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------------------------
   19. FOOTER (shared)
   --------------------------------------------------------------------------- */
.site-footer {
  background: var(--grad-dark);
  color: var(--text-invert);
  padding-block: clamp(56px, 8vw, 84px) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__brand .logo { color: #fff; margin-bottom: 16px; }
.footer__brand p { color: rgba(245, 243, 255, .72); font-size: .95rem; max-width: 300px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
}
.footer__social a:hover { background: var(--grad-brand); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col a { display: block; color: rgba(245, 243, 255, .72); font-size: .94rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--brand-light); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding-top: 28px;
  font-size: .88rem; color: rgba(245, 243, 255, .6);
}
.footer__bottom a:hover { color: #fff; }

/* ---------------------------------------------------------------------------
   20. SCROLL REVEAL (IntersectionObserver)
   Fallback: if JS is off, .no-js class is never removed... so we default to
   visible and only HIDE when .js is present (added by main.js).
   --------------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal][data-delay="1"] { transition-delay: .08s; }
.js [data-reveal][data-delay="2"] { transition-delay: .16s; }
.js [data-reveal][data-delay="3"] { transition-delay: .24s; }
.js [data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------------------------------------------------------------------------
   21. RESPONSIVE
   --------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; }
  .split, .feature-row, .feature-row--rev .feature-row__media,
  .contact-grid { grid-template-columns: 1fr; }
  .feature-row--rev .feature-row__media { order: 0; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .integrations { grid-template-columns: repeat(3, 1fr); }
  .sec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .hamburger { display: block; }
  /* Mobile menu panel */
  .nav__links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter) 22px;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s var(--ease);
  }
  .nav__links.open { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 14px 12px; border-radius: var(--r-sm); font-size: 1.05rem; }
  .nav__links .btn--mobile { display: inline-flex; margin-top: 10px; width: 100%; }

  .grid--3, .grid--2, .grid--4, .pricing, .steps, .stats, .integrations { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-5px); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .field.row2 { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare { min-width: 560px; }
}

@media (max-width: 460px) {
  .footer__top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
}
