@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Theme: Nebula Violet — deep cosmic purple + amber/magenta */
  --violet: #A855F7;
  --violet-dark: #7C3AED;
  --violet-deep: #6D28D9;
  --violet-light: #C084FC;
  --violet-glow: rgba(168, 85, 247, 0.32);

  --magenta: #EC4899;
  --magenta-glow: rgba(236, 72, 153, 0.25);
  --amber: #F59E0B;
  --amber-light: #FBBF24;
  --amber-glow: rgba(245, 158, 11, 0.22);

  --noir: #0B0420;
  --surface: #110628;
  --surface-2: #170B33;
  --surface-3: #1F0F44;
  --surface-4: #291456;
  --border: rgba(255, 255, 255, 0.07);
  --border-violet: rgba(168, 85, 247, 0.32);
  --border-magenta: rgba(236, 72, 153, 0.28);

  --text-primary: #F0EBFF;
  --text-secondary: #A892D4;
  --text-muted: #6B548F;

  --green: #2ECC71;
  --rouge: #FF5C7A;

  --radius: 14px;
  --radius-lg: 22px;
  --rp: 999px;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--violet-dark); border-radius: 4px; }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ─── ICONS ─── */
.ico { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ico svg { display: block; }

/* ─── UTILITIES ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 7px 15px;
  border-radius: var(--rp);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-title span {
  background: linear-gradient(90deg, var(--violet-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-top: 14px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: var(--rp);
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 24px var(--violet-glow);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--violet-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--rp);
  background: rgba(168, 85, 247, 0.06);
  color: var(--text-primary);
  border: 1.5px solid var(--border-violet);
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--violet);
  background: rgba(168, 85, 247, 0.12);
  transform: translateY(-2px);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  padding: 10px 0;
  background: rgba(11, 4, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.nav-logo span {
  background: linear-gradient(90deg, var(--violet-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-violet);
  box-shadow: 0 4px 16px var(--violet-glow);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text-primary);
}

.nav-links a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-cta .btn-primary { font-size: 13px; padding: 11px 22px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.hamburger .ham-close { display: none; }
.hamburger.active .ham-open { display: none; }
.hamburger.active .ham-close { display: inline-flex; }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: 290px;
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 90px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--violet-light); }
.mobile-nav .btn-primary { margin-top: 16px; text-align: center; justify-content: center; }

body.nav-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 24px 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 10%, rgba(168, 85, 247, 0.16), transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(236, 72, 153, 0.08), transparent 70%),
    var(--noir);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-image.webp');
  background-size: cover;
  background-position: center 25%;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.14), transparent 70%);
  top: -120px; right: -60px;
  animation: b1 12s ease-in-out infinite alternate;
}
.blob-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1), transparent 70%);
  bottom: -100px; left: -80px;
  animation: b2 14s ease-in-out infinite alternate;
}

@keyframes b1 { to { transform: translate(-40px, 30px); } }
@keyframes b2 { to { transform: translate(50px, -20px); } }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border-violet);
  padding: 8px 16px;
  border-radius: var(--rp);
  margin-bottom: 28px;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 10px var(--violet);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 14ch;
}

.gt {
  background: linear-gradient(90deg, var(--violet-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item .ico { color: var(--violet-light); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 24px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  background: linear-gradient(90deg, var(--violet-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ─── DEVICES STRIP ─── */
.devices-strip {
  padding: 32px 24px;
  background: var(--noir);
  border-bottom: 1px solid var(--border);
}

.devices-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}

.device-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.device-item:hover { color: var(--text-secondary); }
.device-item .ico { color: var(--violet); }

/* ─── BENTO FEATURES ─── */
.features-section {
  padding: 110px 32px;
  position: relative;
  overflow: hidden;
}

.features-section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.features-section__glow--tl {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--violet-glow), transparent 70%);
  top: -100px; left: -100px;
}

.features-section__glow--br {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--magenta-glow), transparent 70%);
  bottom: -100px; right: -100px;
}

.bento-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

/* Bento layout: large card spans 2x2, medium spans 2x1, small spans 1x1 */
.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-violet);
}

.bento-card--lg {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}

.bento-card--wide {
  grid-column: span 2;
}

.bento-card__icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--border-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--violet-light);
}

.bento-card--lg .bento-card__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px var(--violet-glow);
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento-card--lg h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bento-card--lg p {
  font-size: 1rem;
  max-width: 38ch;
}

.bento-card__pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--rp);
  margin-top: 16px;
  align-self: flex-start;
}

.bento-card__pill--violet {
  color: var(--violet-light);
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--border-violet);
}

.bento-card__pill--amber {
  color: var(--amber-light);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.bento-card__pill--magenta {
  color: var(--magenta);
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid var(--border-magenta);
}

.bento-card__pill--green {
  color: var(--green);
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
}

/* Bento decorative pattern */
.bento-card--lg::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--violet-glow), transparent 70%);
  pointer-events: none;
}

/* ─── CATEGORIES MARQUEE ─── */
.categories-section {
  padding: 110px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cat-header {
  max-width: 1280px;
  margin: 0 auto 48px;
}

.cat-marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cat-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.cat-marquee:hover .cat-marquee-track { animation-play-state: paused; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cat-card {
  position: relative;
  width: 270px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 4, 32, 0.94) 8%, rgba(11, 4, 32, 0.45) 55%, rgba(11, 4, 32, 0.15));
  z-index: 1;
}

.cat-icon {
  position: absolute;
  top: 18px; left: 18px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(11, 4, 32, 0.6);
  backdrop-filter: blur(8px);
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.cat-icon .ico svg { width: 22px; height: 22px; }

.cat-content { position: relative; z-index: 2; }

.cat-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.cat-count {
  color: var(--violet-light);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ─── WHY US ─── */
.why-section {
  padding: 110px 32px;
}

.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-violet);
}

.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--violet-light);
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ─── */
.steps-section {
  padding: 110px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.step-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  text-align: left;
}

.step-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── PRICING ─── */
.pricing-section {
  padding: 110px 32px;
}

.pricing-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-violet);
}

.pricing-card.popular {
  border-color: var(--violet);
  background: linear-gradient(180deg, var(--surface-3), var(--surface));
  box-shadow: 0 0 40px var(--violet-glow);
}

.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  padding: 6px 16px;
  border-radius: var(--rp);
  white-space: nowrap;
}

.plan-icon-fa {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--violet-light);
}

.plan-icon-fa--popular {
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px var(--violet-glow);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.plan-price {
  font-family: var(--font-display);
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.price-num {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.price-num.bleu {
  background: linear-gradient(90deg, var(--violet-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-unit span { font-size: 0.8rem; }

.price-annual {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.price-annual strong { font-weight: 700; }

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.check {
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.12);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check .ico svg { width: 12px; height: 12px; }

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: var(--rp);
  border: 1.5px solid var(--border-violet);
  background: rgba(168, 85, 247, 0.04);
  color: var(--text-primary);
  transition: all 0.25s;
}

.plan-cta:hover {
  border-color: var(--violet);
  background: rgba(168, 85, 247, 0.1);
}

.plan-cta.cta-filled {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border: none;
  color: #fff;
  box-shadow: 0 6px 20px var(--violet-glow);
}

.plan-cta.cta-filled:hover {
  box-shadow: 0 8px 28px var(--violet-glow);
}

/* ─── PRICING TRUST ─── */
.pricing-trust {
  max-width: 1280px;
  margin: 36px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.pricing-trust__hero {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.pricing-trust__hero-icon {
  width: 54px; height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px var(--violet-glow);
}

.pricing-trust__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-trust__lede {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-trust__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.pricing-trust__features {
  display: flex;
  gap: 24px;
}

.pricing-trust__feat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-trust__feat-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
}

.pricing-trust__feat-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-trust__feat-desc {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ─── PAYMENT STRIP ─── */
.payment-strip {
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.payment-strip img {
  height: 30px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.25s;
}

.payment-strip img:hover {
  opacity: 1;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 110px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-violet);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.star { color: var(--amber); font-size: 1.1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.author-info {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--green);
  margin-top: 2px;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 110px 32px;
}

.faq-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.faq-contact {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.faq-contact h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-contact p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.25s;
}

.faq-item:hover { border-color: var(--border-violet); }
.faq-item.open { border-color: var(--violet); }

.faq-question {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-chevron {
  color: var(--violet-light);
  transition: transform 0.3s;
  font-size: 0.85rem;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 110px 32px;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, var(--violet-glow), transparent 70%),
    var(--surface);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cta-note .ico { color: var(--green); }

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.25s;
}

.social-btn:hover {
  color: var(--violet-light);
  border-color: var(--border-violet);
  background: rgba(168, 85, 247, 0.08);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--violet-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text-secondary); }

.footer-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--magenta), var(--amber));
  margin-top: 0;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ─── PAGE HEADER (tarifs, contact) ─── */
.page-header {
  padding: 160px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, var(--violet-glow), transparent 70%),
    var(--noir);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── CONTACT FORM ─── */
.contact-section {
  padding: 80px 24px;
}

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: border-color 0.25s;
}

.contact-channel:hover { border-color: var(--border-violet); }

.contact-channel__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
}

.contact-channel__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-channel__value {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px;
  border-radius: var(--rp);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 24px var(--violet-glow);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--violet-glow);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--lg {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-card--wide {
    grid-column: span 2;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .pricing-trust__divider { display: none; }
  .pricing-trust__features { flex-wrap: wrap; }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn-primary { display: none; }
  .hamburger { display: block; }

  .hero { padding: 110px 20px 70px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; justify-content: center; }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .devices-inner { gap: 18px; }
  .device-item { font-size: 0.78rem; }

  .why-grid,
  .steps-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card--lg,
  .bento-card--wide {
    grid-column: span 1;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .pricing-trust__features {
    flex-direction: column;
    gap: 16px;
  }

  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-num { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .features-section,
  .categories-section,
  .why-section,
  .steps-section,
  .pricing-section,
  .testimonials-section,
  .faq-section,
  .cta-section {
    padding: 60px 20px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    font-size: 14px;
    padding: 13px 24px;
  }
}
