/* =============================================================
   Wixop — Premium Landing CSS
   Design system: tokens · base · layout · components · sections
   ============================================================= */

/* -------------------------------------------------------------
   1. Design Tokens
   ------------------------------------------------------------- */
:root {
  /* Colors */
  --c-primary: #635BFF;
  --c-primary-hover: #574FFF;
  --c-primary-soft: rgba(99, 91, 255, 0.08);
  --c-primary-glow: rgba(99, 91, 255, 0.35);

  --c-dark: #0A0A0B;
  --c-dark-2: #111113;
  --c-neutral-bg: #F7F8FB;
  --c-white: #FFFFFF;

  --c-text: #111113;
  --c-text-secondary: #66697A;
  --c-text-tertiary: #9498A8;
  --c-text-light: rgba(255, 255, 255, 0.92);
  --c-text-light-2: rgba(255, 255, 255, 0.64);

  --c-border: #ECEEF5;
  --c-border-strong: #D9DCE7;
  --c-border-dark: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #635BFF 0%, #8B7FFF 100%);
  --grad-text: linear-gradient(135deg, #635BFF 0%, #B5A8FF 100%);
  --grad-dark: linear-gradient(180deg, #0A0A0B 0%, #15131F 100%);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(17, 17, 19, 0.04);
  --shadow-sm: 0 2px 6px rgba(17, 17, 19, 0.05), 0 1px 2px rgba(17, 17, 19, 0.04);
  --shadow-md: 0 10px 30px rgba(17, 17, 19, 0.08), 0 2px 6px rgba(17, 17, 19, 0.04);
  --shadow-lg: 0 24px 60px rgba(17, 17, 19, 0.12), 0 4px 12px rgba(17, 17, 19, 0.06);
  --shadow-glow: 0 0 0 1px rgba(99, 91, 255, 0.18), 0 12px 40px rgba(99, 91, 255, 0.18);

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Spacing (8pt) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* Typography */
  --font-sans: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-white);
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease-out);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--c-text);
  line-height: 1.1;
}

p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--c-dark);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 1000;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--c-primary-soft);
  margin-bottom: var(--s-5);
}
.eyebrow--light {
  color: #B5A8FF;
  background: rgba(99, 91, 255, 0.16);
}

.section-head {
  max-width: 720px;
  margin: 0 auto var(--s-16);
  text-align: center;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.section-title--left { text-align: left; }
.section-subtitle {
  margin-top: var(--s-5);
  font-size: 17px;
  color: var(--c-text-secondary);
  line-height: 1.6;
}
.section-subtitle--left { text-align: left; }

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

/* -------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  transition: transform .25s var(--ease-out), background-color .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 15px 28px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn--primary:hover {
  background: var(--c-primary-hover);
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--ghost {
  background: rgba(17, 17, 19, 0.04);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--ghost:hover {
  background: rgba(17, 17, 19, 0.06);
  border-color: var(--c-border-strong);
}

.btn .icon { display: inline-flex; }
.btn .btn__loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: inherit;
}
.btn .btn__loader::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.btn.is-loading .btn__label,
.btn.is-loading .icon { opacity: 0; }
.btn.is-loading .btn__loader { display: flex; }

@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------------------
   5. Brand Mark
   ------------------------------------------------------------- */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--grad-primary);
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
}
.brand-mark--sm { width: 22px; height: 22px; border-radius: 6px; }
.brand-mark__dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* -------------------------------------------------------------
   6. Navbar
   ------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background-color .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
}
.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--c-border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.navbar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-secondary);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: color .2s, background-color .2s;
}
.navbar__links a:hover {
  color: var(--c-text);
  background: rgba(17, 17, 19, 0.04);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text-secondary);
  padding: 8px 12px;
  border-radius: var(--r-pill);
  transition: color .2s;
}
.nav-link:hover { color: var(--c-text); }

.navbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: rgba(17, 17, 19, 0.04);
  color: var(--c-text);
  transition: background-color .2s;
}
.navbar__toggle:hover { background: rgba(17, 17, 19, 0.08); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
  background: rgba(10, 10, 11, 0.4);
  backdrop-filter: blur(8px);
}
.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu__panel {
  position: absolute;
  inset: 12px 12px auto 12px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform .35s var(--ease-out), opacity .25s;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-6);
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  background: rgba(17, 17, 19, 0.04);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--s-6);
}
.mobile-menu__nav a {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 16px;
  border-radius: var(--r-md);
  color: var(--c-text);
}
.mobile-menu__nav a:hover { background: var(--c-neutral-bg); }
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

/* -------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-20);
  overflow: hidden;
  background: linear-gradient(180deg, #FBFBFE 0%, #FFFFFF 60%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 91, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 91, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 80%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__glow--a {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.4) 0%, transparent 70%);
}
.hero__glow--b {
  width: 600px;
  height: 600px;
  top: 100px;
  right: -200px;
  background: radial-gradient(circle, rgba(181, 168, 255, 0.5) 0%, transparent 70%);
}
.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-secondary);
  margin-bottom: var(--s-6);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}
.hero__pill:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hero__pill-dot {
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--c-primary-soft);
}
.hero__pill .icon {
  background: var(--c-primary-soft);
  color: var(--c-primary);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-6);
}
.hero__title-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-text-secondary);
  margin-bottom: var(--s-8);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.avatars {
  display: inline-flex;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  box-shadow: var(--shadow-xs);
  display: inline-block;
}
.avatar:first-child { margin-left: 0; }
.avatar--1, .avatar--a { background: linear-gradient(135deg, #FFB199, #FF7676); }
.avatar--2, .avatar--b { background: linear-gradient(135deg, #A1C4FD, #C2E9FB); }
.avatar--3, .avatar--c { background: linear-gradient(135deg, #B5A8FF, #8B7FFF); }
.avatar--4, .avatar--d { background: linear-gradient(135deg, #FBC2EB, #A6C1EE); }

.hero__trust-text {
  font-size: 14px;
  color: var(--c-text-secondary);
}
.hero__trust-text strong { color: var(--c-text); font-weight: 600; }
.hero__stars {
  display: inline-flex;
  gap: 1px;
  color: #FBBF24;
  margin-bottom: 2px;
}
.hero__stars .icon svg { fill: currentColor; }

/* Hero Right — Mockup */
.hero__right { position: relative; }

.mockup {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .6s var(--ease-out);
}
.mockup:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-4px); }

.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  background: #FBFBFE;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot--r { background: #FF6058; }
.dot--y { background: #FFBD2E; }
.dot--g { background: #27CA3F; }
.mockup__url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--c-text-tertiary);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  flex: 1;
  max-width: 260px;
}

.mockup__body {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 380px;
}
.mockup__sidebar {
  background: #FBFBFE;
  border-right: 1px solid var(--c-border);
  padding: 16px 12px;
}
.mockup__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 8px;
  margin-bottom: 12px;
}
.mockup__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mockup__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--c-text-secondary);
  font-weight: 500;
}
.mockup__nav-item.is-active {
  background: var(--c-primary-soft);
  color: var(--c-primary);
}

.mockup__content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mockup__topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.mockup__hello { font-size: 11px; color: var(--c-text-tertiary); margin-bottom: 2px; }
.mockup__h { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.mockup__topbar-actions { display: inline-flex; gap: 8px; align-items: center; }
.mockup__chip {
  font-size: 11px;
  color: var(--c-text-secondary);
  background: #FBFBFE;
  border: 1px solid var(--c-border);
  padding: 4px 8px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mockup__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B5A8FF, #635BFF);
}

.mockup__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.kpi {
  padding: 12px;
  background: #FBFBFE;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi__label { font-size: 10.5px; color: var(--c-text-tertiary); font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; }
.kpi__value { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; }
.kpi__delta {
  font-size: 10.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.kpi__delta--up { color: #10B981; }
.kpi--ghost { background: linear-gradient(135deg, rgba(99, 91, 255, 0.06), rgba(99, 91, 255, 0.02)); border-color: rgba(99, 91, 255, 0.12); }

.mockup__chart {
  background: #FBFBFE;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 14px;
}
.mockup__chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.mockup__chart-title { font-size: 12px; font-weight: 600; }
.mockup__chart-legend {
  font-size: 10px;
  color: var(--c-text-tertiary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend {
  display: inline-block;
  width: 10px;
  height: 3px;
  border-radius: 2px;
}
.legend--a { background: var(--c-primary); }
.legend--b { background: #C9CDE0; }

.chart { width: 100%; height: 80px; }
.chart--lg { height: 200px; }
.chart__line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 2s var(--ease-out) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.mockup__orders {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #FBFBFE;
  border: 1px solid var(--c-border);
  border-radius: 10px;
}
.order__avatar {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FFB199, #FF7676);
}
.order__avatar--b { background: linear-gradient(135deg, #A1C4FD, #C2E9FB); }
.order__name { font-size: 12px; font-weight: 600; display: block; line-height: 1.2; }
.order__meta { font-size: 10.5px; color: var(--c-text-tertiary); }
.order__price { font-size: 12.5px; font-weight: 700; }
.order__status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.order__status--paid { background: rgba(16, 185, 129, 0.12); color: #059669; }
.order__status--processing { background: rgba(99, 91, 255, 0.12); color: var(--c-primary); }

/* Floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card--sales {
  top: 24px;
  left: -32px;
  animation-delay: -1s;
}
.float-card__icon {
  width: 32px;
  height: 32px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.float-card__label { font-size: 11px; color: var(--c-text-tertiary); margin-bottom: 2px; }
.float-card__value { font-size: 13px; font-weight: 700; }

.float-card--phone {
  bottom: -32px;
  right: -16px;
  padding: 8px;
  border-radius: var(--r-lg);
  animation-delay: -2.5s;
}

/* Phone mockup */
.phone {
  width: 180px;
  background: #0A0A0B;
  border-radius: 28px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone--lg { width: 280px; border-radius: 40px; padding: 8px; }
.phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 14px;
  background: #0A0A0B;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone--lg .phone__notch { width: 90px; height: 18px; }
.phone__screen {
  background: #FBFBFE;
  border-radius: 22px;
  padding: 18px 12px 12px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone--lg .phone__screen { border-radius: 34px; padding: 28px 16px 18px; min-height: 480px; gap: 14px; }
.phone__bar {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text);
  padding: 0 4px;
}
.phone__bar-right { display: inline-flex; gap: 4px; align-items: center; }
.phone__signal {
  width: 14px; height: 8px;
  background: var(--c-text);
  -webkit-mask: linear-gradient(90deg, #000 25%, transparent 25%, transparent 33%, #000 33%, #000 58%, transparent 58%, transparent 66%, #000 66%);
  mask: linear-gradient(90deg, #000 25%, transparent 25%, transparent 33%, #000 33%, #000 58%, transparent 58%, transparent 66%, #000 66%);
}
.phone__battery { width: 18px; height: 8px; border: 1px solid var(--c-text); border-radius: 2px; position: relative; }
.phone__battery::after { content: ''; position: absolute; inset: 1px; background: var(--c-text); width: 80%; border-radius: 1px; }

.phone__top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 12px;
}
.phone__name { font-size: 11px; font-weight: 600; flex: 1; }
.phone__avatar { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #B5A8FF, #635BFF); margin-left: auto; }
.phone--lg .phone__name { font-size: 13px; }

.phone__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.phone__tile {
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: linear-gradient(135deg, #B5A8FF, #635BFF);
}
.phone__tile--a { background: linear-gradient(135deg, #FFB199, #FF7676); }
.phone__tile--b { background: linear-gradient(135deg, #A1C4FD, #C2E9FB); }
.phone__tile--c { background: linear-gradient(135deg, #FBC2EB, #A6C1EE); }
.phone__tile--d { background: linear-gradient(135deg, #B5A8FF, #8B7FFF); }

.phone__cta {
  background: var(--c-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: auto;
}
.phone--lg .phone__cta { font-size: 14px; padding: 14px; border-radius: 14px; }

.phone__kpi {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 14px;
}
.phone__kpi-label { font-size: 11px; color: var(--c-text-tertiary); text-transform: uppercase; letter-spacing: 0.04em; }
.phone__kpi-value { display: block; font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin: 4px 0; }
.phone__kpi-delta { color: #10B981; font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }

.phone__list {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 12px;
}
.phone__list-title { font-size: 11px; font-weight: 600; color: var(--c-text-secondary); margin-bottom: 8px; }
.phone__row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid var(--c-border);
}
.phone__row:first-of-type { border-top: 0; }
.phone__thumb {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FFB199, #FF7676);
}
.phone__thumb--a { background: linear-gradient(135deg, #FFB199, #FF7676); }
.phone__thumb--b { background: linear-gradient(135deg, #A1C4FD, #C2E9FB); }
.phone__thumb--c { background: linear-gradient(135deg, #FBC2EB, #A6C1EE); }
.phone__row-name { font-size: 12px; font-weight: 600; display: block; }
.phone__row-meta { font-size: 10px; color: var(--c-text-tertiary); }
.phone__price { font-size: 12px; font-weight: 700; }

/* -------------------------------------------------------------
   8. Social Proof
   ------------------------------------------------------------- */
.proof {
  padding: var(--s-16) 0 var(--s-12);
  border-bottom: 1px solid var(--c-border);
}
.proof__label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-tertiary);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-8);
}
.proof__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-10);
  margin-bottom: var(--s-16);
}
.proof__logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text-tertiary);
  opacity: 0.7;
  transition: opacity .25s, color .25s;
}
.proof__logo:hover { opacity: 1; color: var(--c-text); }

.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  padding: var(--s-10) var(--s-8);
  background: var(--c-neutral-bg);
  border-radius: var(--r-lg);
}
.proof__stat {
  text-align: center;
}
.proof__stat-value {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof__stat-label {
  font-size: 13px;
  color: var(--c-text-secondary);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* -------------------------------------------------------------
   9. Features
   ------------------------------------------------------------- */
.features {
  padding: var(--s-24) 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.feature-card {
  position: relative;
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform .35s var(--ease-out), border-color .25s, box-shadow .35s;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.18);
  box-shadow: var(--shadow-md);
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-primary-soft);
  color: var(--c-primary);
  margin-bottom: var(--s-5);
  transition: transform .3s var(--ease-out);
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.06) rotate(-3deg);
  background: var(--c-primary);
  color: #fff;
}
.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.feature-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-text-secondary);
}
.feature-card__glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 100% 0%, rgba(99, 91, 255, 0.1) 0%, transparent 40%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.feature-card:hover .feature-card__glow { opacity: 1; }

/* -------------------------------------------------------------
   10. Dashboard Showcase
   ------------------------------------------------------------- */
.showcase {
  padding: var(--s-24) 0;
  background: var(--c-neutral-bg);
  position: relative;
  overflow: hidden;
}
.showcase::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99, 91, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.showcase__board {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.board__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-5) var(--s-6);
  border-bottom: 1px solid var(--c-border);
  background: #FBFBFE;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.board__head-left { display: flex; align-items: center; gap: 12px; }
.board__title { font-size: 15px; font-weight: 700; }
.board__sub { font-size: 12px; color: var(--c-text-tertiary); }
.board__head-right { display: flex; gap: 8px; flex-wrap: wrap; }
.board__chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-text-secondary);
  background: #fff;
  border: 1px solid var(--c-border);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.board__chip--live { color: #10B981; }
.live-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.board__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
}
.board__col { padding: var(--s-6); }
.board__col--main { padding-right: var(--s-6); }
.board__col--side { border-left: 1px solid var(--c-border); background: #FBFBFE; }

.board__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.kpi-lg {
  padding: var(--s-5);
  background: #FBFBFE;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kpi-lg__label { font-size: 12px; color: var(--c-text-tertiary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.kpi-lg__value { font-size: 24px; font-weight: 800; letter-spacing: -0.025em; }
.kpi-lg__delta { font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 3px; }
.kpi-lg__delta--up { color: #10B981; }

.board__chart {
  background: #FBFBFE;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-5);
}
.board__chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
  gap: var(--s-3);
  flex-wrap: wrap;
}
.board__chart-title { font-size: 14px; font-weight: 700; }
.board__chart-sub { font-size: 12px; color: var(--c-text-tertiary); margin-top: 2px; }
.board__tabs {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 3px;
}
.board__tab {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  color: var(--c-text-tertiary);
  cursor: pointer;
  transition: background-color .2s, color .2s;
}
.board__tab.is-active { background: var(--c-text); color: #fff; }
.board__chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10.5px;
  color: var(--c-text-tertiary);
}

.board__panel {
  margin-bottom: var(--s-6);
}
.board__panel:last-child { margin-bottom: 0; }
.board__panel-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-text-secondary);
  margin-bottom: var(--s-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--c-border);
}
.product:first-of-type { border-top: 0; }
.product__thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #FFB199, #FF7676);
}
.product__thumb--a { background: linear-gradient(135deg, #FFB199, #FF7676); }
.product__thumb--b { background: linear-gradient(135deg, #A1C4FD, #C2E9FB); }
.product__thumb--c { background: linear-gradient(135deg, #FBC2EB, #A6C1EE); }
.product__name { font-size: 13px; font-weight: 600; display: block; }
.product__meta { font-size: 11.5px; color: var(--c-text-tertiary); }
.product__price { font-size: 13px; font-weight: 700; }

.customer {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--c-border);
}
.customer:first-of-type { border-top: 0; }
.customer__info span { display: block; }
.customer__info span:first-child { font-size: 13px; font-weight: 600; }
.customer__meta { font-size: 11.5px; color: var(--c-text-tertiary); }

/* -------------------------------------------------------------
   11. Mobile Experience
   ------------------------------------------------------------- */
.mobile-exp { padding: var(--s-24) 0; }
.mobile-exp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.mobile-exp__copy .eyebrow { margin-bottom: var(--s-4); }

.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin: var(--s-6) 0 var(--s-8);
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--c-text);
}
.check-list__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-exp__visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: var(--s-8) 0;
}
.mobile-exp__bubble {
  position: absolute;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  animation: float 5s ease-in-out infinite;
}
.mobile-exp__bubble--a { top: 40px; left: 4%; animation-delay: -1s; }
.mobile-exp__bubble--b { bottom: 60px; right: 4%; animation-delay: -3s; }
.bubble__icon {
  width: 30px; height: 30px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bubble__icon--alt { background: var(--c-primary-soft); color: var(--c-primary); }
.mobile-exp__bubble p { font-weight: 600; font-size: 13px; }
.mobile-exp__bubble span { display: block; font-size: 11.5px; color: var(--c-text-tertiary); }

/* -------------------------------------------------------------
   12. How It Works
   ------------------------------------------------------------- */
.how {
  padding: var(--s-24) 0;
  background: var(--c-neutral-bg);
}
.how__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.how__line {
  position: absolute;
  top: 64px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-strong), transparent);
}
.how-step {
  text-align: center;
  padding: var(--s-6);
  position: relative;
}
.how-step__num {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-tertiary);
  letter-spacing: 0.06em;
}
.how-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  color: var(--c-primary);
  margin: var(--s-4) 0 var(--s-5);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.how-step__title { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.how-step__desc { font-size: 15px; line-height: 1.6; color: var(--c-text-secondary); max-width: 280px; margin: 0 auto; }

/* -------------------------------------------------------------
   13. Testimonials
   ------------------------------------------------------------- */
.testimonials { padding: var(--s-24) 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.t-card {
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .25s;
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 91, 255, 0.18);
  box-shadow: var(--shadow-md);
}
.t-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #FBBF24;
  margin-bottom: var(--s-4);
}
.t-card__stars .icon svg { fill: currentColor; }
.t-card__quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  margin-bottom: var(--s-6);
  letter-spacing: -0.005em;
  flex: 1;
}
.t-card__foot {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-border);
}
.t-card__foot .avatar { width: 40px; height: 40px; margin: 0; }
.t-card__name { font-size: 14px; font-weight: 700; }
.t-card__role { font-size: 12.5px; color: var(--c-text-tertiary); margin-top: 2px; }
.t-card__metric {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}

/* -------------------------------------------------------------
   14. Pricing
   ------------------------------------------------------------- */
.pricing { padding: var(--s-24) 0; background: var(--c-neutral-bg); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--highlight {
  border-color: rgba(99, 91, 255, 0.3);
  background: linear-gradient(180deg, #fff 0%, rgba(99, 91, 255, 0.02) 100%);
  box-shadow: var(--shadow-glow);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.price-card__name { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; }
.price-card__desc { font-size: 14px; color: var(--c-text-secondary); margin-top: 6px; margin-bottom: var(--s-5); }
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--c-border);
}
.price-card__currency { font-size: 18px; font-weight: 600; color: var(--c-text-secondary); }
.price-card__value { font-size: 48px; font-weight: 800; letter-spacing: -0.035em; }
.price-card__period { font-size: 14px; color: var(--c-text-tertiary); margin-left: 4px; }
.price-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
  flex: 1;
}
.price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-text);
}
.price-card__list .check-list__icon { width: 18px; height: 18px; }

/* -------------------------------------------------------------
   15. FAQ
   ------------------------------------------------------------- */
.faq { padding: var(--s-24) 0; }
.faq__inner { max-width: 800px; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color .25s, box-shadow .25s;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--c-border-strong); }
.faq-item[open] {
  border-color: rgba(99, 91, 255, 0.2);
  box-shadow: var(--shadow-sm);
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--c-neutral-bg);
  border-radius: 50%;
  color: var(--c-text-secondary);
  transition: transform .3s var(--ease-out), background-color .25s, color .25s;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
  background: var(--c-primary);
  color: #fff;
}
.faq-item__a {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--c-text-secondary);
  line-height: 1.6;
  animation: faqOpen .35s var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
   16. Final CTA
   ------------------------------------------------------------- */
.final-cta {
  position: relative;
  padding: var(--s-32) 0;
  background: var(--c-dark);
  color: #fff;
  overflow: hidden;
}
.final-cta__bg { position: absolute; inset: 0; pointer-events: none; }
.final-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 80%);
}
.final-cta__glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.final-cta__glow--a {
  width: 600px; height: 600px; top: -200px; left: 10%;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.4) 0%, transparent 70%);
}
.final-cta__glow--b {
  width: 500px; height: 500px; bottom: -200px; right: 10%;
  background: radial-gradient(circle, rgba(181, 168, 255, 0.3) 0%, transparent 70%);
}
.final-cta__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.final-cta__title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: var(--s-5);
}
.final-cta__title-grad {
  background: linear-gradient(135deg, #B5A8FF 0%, #635BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-cta__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text-light-2);
  margin-bottom: var(--s-10);
}
.final-cta__form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-pill);
  padding: 6px;
  max-width: 480px;
  margin: 0 auto var(--s-5);
  backdrop-filter: blur(20px);
}
.final-cta__input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 20px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.final-cta__input::placeholder { color: rgba(255, 255, 255, 0.4); }

.final-cta__fineprint {
  font-size: 13px;
  color: var(--c-text-light-2);
}

/* -------------------------------------------------------------
   17. Footer
   ------------------------------------------------------------- */
.footer {
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: var(--s-16) 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: var(--s-12);
  padding-bottom: var(--s-12);
}
.footer__brand .navbar__brand { margin-bottom: var(--s-4); display: inline-flex; }
.footer__desc {
  font-size: 14px;
  color: var(--c-text-secondary);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: var(--s-5);
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--c-neutral-bg);
  color: var(--c-text-secondary);
  transition: background-color .25s, color .25s, transform .25s;
}
.footer__social a:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.footer__col a {
  font-size: 14px;
  color: var(--c-text-secondary);
  transition: color .2s;
}
.footer__col a:hover { color: var(--c-text); }

.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: var(--s-5) 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--c-text-tertiary);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.footer__bottom-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* -------------------------------------------------------------
   18. Reveal animations
   ------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------
   19. Responsive (Mobile-first refinements)
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .navbar__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero__right { max-width: 540px; margin: 0 auto; width: 100%; }
  .mobile-exp__inner { grid-template-columns: 1fr; gap: var(--s-12); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .board__grid { grid-template-columns: 1fr; }
  .board__col--side { border-left: 0; border-top: 1px solid var(--c-border); }
  .footer__inner { grid-template-columns: 1fr; gap: var(--s-8); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .how__timeline { grid-template-columns: 1fr; gap: var(--s-4); }
  .how__line { display: none; }
  .proof__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
    --nav-h: 64px;
  }
  .navbar__toggle { display: inline-flex; }
  .nav-link, .navbar__actions .btn { display: none; }
  .navbar__toggle { display: inline-flex; }

  .hero { padding-top: calc(var(--nav-h) + var(--s-10)); padding-bottom: var(--s-16); }
  .hero__title { font-size: clamp(32px, 9vw, 44px); }
  .hero__subtitle { font-size: 16px; }
  .hero__ctas .btn { flex: 1; }

  .float-card--sales { left: -8px; top: 8px; padding: 8px 12px; }
  .float-card--phone { right: -8px; bottom: -16px; }
  .float-card--phone .phone { width: 130px; }

  .features { padding: var(--s-16) 0; }
  .features__grid { grid-template-columns: 1fr; }

  .showcase { padding: var(--s-16) 0; }
  .board__head { padding: var(--s-4); }
  .board__col { padding: var(--s-4); }
  .board__kpis { grid-template-columns: 1fr; }

  .mobile-exp { padding: var(--s-16) 0; }
  .mobile-exp__bubble--a { left: -8px; top: 20px; }
  .mobile-exp__bubble--b { right: -8px; bottom: 40px; }

  .how { padding: var(--s-16) 0; }
  .testimonials { padding: var(--s-16) 0; }
  .pricing { padding: var(--s-16) 0; }
  .faq { padding: var(--s-16) 0; }

  .final-cta { padding: var(--s-20) 0; }
  .final-cta__form {
    flex-direction: column;
    border-radius: var(--r-md);
    padding: 8px;
  }
  .final-cta__input { padding: 14px 16px; text-align: center; }

  .section-head { margin-bottom: var(--s-10); }
  .section-title { font-size: clamp(28px, 7vw, 38px); }
  .section-subtitle { font-size: 15px; }

  .proof { padding: var(--s-12) 0; }
  .proof__logos { gap: var(--s-5); }
  .proof__logo { font-size: 15px; }
  .proof__stats { padding: var(--s-6) var(--s-4); gap: var(--s-4); }

  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer { padding-top: var(--s-12); }
}

@media (max-width: 480px) {
  .hero__pill { font-size: 12px; padding: 4px 4px 4px 10px; }
  .hero__pill span:nth-of-type(2) { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .float-card--sales .float-card__label { font-size: 10px; }
  .float-card--sales .float-card__value { font-size: 12px; }
  .proof__stats { grid-template-columns: repeat(2, 1fr); }
}
