/* ============================================
   WIFI CLOUD — main.css
   Modern dark UI · gradients · glass · motion
   ============================================ */

:root {
  --bg: #06080f;
  --bg-2: #0b0f1c;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f7fb;
  --text-muted: #aab1c2;
  --text-dim: #7a8298;

  --brand: #00e0ff;
  --brand-2: #7c5cff;
  --accent: #b8ff5c;

  --grad-brand: linear-gradient(135deg, #00e0ff 0%, #7c5cff 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(0, 224, 255, 0.16), rgba(124, 92, 255, 0.16));
  --grad-accent: linear-gradient(135deg, #b8ff5c 0%, #00e0ff 100%);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;

  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --shadow-glow: 0 0 60px rgba(0, 224, 255, 0.25);

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }

/* ============================================
   Background ambient orbs
   ============================================ */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}
.orb-1 { width: 600px; height: 600px; background: #00e0ff; top: -200px; left: -150px; opacity: 0.18; animation: drift 18s ease-in-out infinite alternate; }
.orb-2 { width: 700px; height: 700px; background: #7c5cff; top: 30%; right: -250px; opacity: 0.20; animation: drift 22s ease-in-out infinite alternate-reverse; }
.orb-3 { width: 500px; height: 500px; background: #b8ff5c; bottom: -200px; left: 30%; opacity: 0.10; animation: drift 26s ease-in-out infinite alternate; }
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(80px,60px,0) scale(1.1); }
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding 0.3s var(--ease), background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(6, 8, 15, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand-mark { width: 36px; height: 36px; display: inline-flex; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: inline-flex; gap: 0.25em; }
.brand-text span { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.94rem;
  color: var(--text-muted);
}
.nav-links a { transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-burger {
  display: none;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-burger span { width: 16px; height: 1.5px; background: var(--text); border-radius: 2px; transition: 0.25s; }

@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px; right: 16px;
    background: rgba(11, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.25s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-burger { display: flex; }
  .nav .btn-sm { display: none; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
  text-decoration: none;
}
.btn i { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover i { transform: translateX(2px); }
.btn-sm { padding: 9px 16px; font-size: 0.88rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--grad-brand);
  color: #03101a;
  box-shadow: 0 14px 30px -10px rgba(0, 224, 255, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-primary:hover {
  box-shadow: 0 24px 50px -10px rgba(0, 224, 255, 0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-strong);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(1.1);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 70% 30%, rgba(124, 92, 255, 0.35) 0%, transparent 60%),
    radial-gradient(50% 50% at 20% 80%, rgba(0, 224, 255, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6, 8, 15, 0.55) 0%, rgba(6, 8, 15, 0.85) 70%, var(--bg) 100%);
}

.hero-content {
  z-index: 2;
  text-align: left;
  max-width: 1080px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line em {
  font-style: normal;
  background: linear-gradient(120deg, #fff 0%, #b8c8ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-title .accent {
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  margin-top: 12px;
  display: block;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.stat { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; }
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-suffix { font-size: 1.1rem; color: var(--text-muted); margin-right: 12px; }
.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  width: 100%;
  margin-top: 4px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 768px) {
  .hero-stats { gap: 24px; }
  .stat-sep { display: none; }
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--brand));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}
.hero-scroll i { width: 16px; height: 16px; }

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
  position: relative;
}
.trust-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.marquee {
  width: 100%;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 70px;
  align-items: center;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track img {
  height: 38px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.6);
  transition: opacity 0.3s, filter 0.3s;
}
.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   Section heads
   ============================================ */
.section-head {
  max-width: 760px;
  margin-bottom: 70px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0, 224, 255, 0.08);
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow.accent {
  color: var(--accent);
  background: rgba(184, 255, 92, 0.08);
  border-color: rgba(184, 255, 92, 0.25);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-title em {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
}
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ============================================
   SOLUTION
   ============================================ */
.solution-grid {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .solution-grid { grid-template-columns: 1fr; gap: 60px; }
}

.solution-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 320px;
  height: 660px;
  background: linear-gradient(135deg, #1a1f2e, #0c0f18);
  border-radius: 48px;
  padding: 14px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 50px 80px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.04);
  transform: rotate(-3deg);
  will-change: transform;
}
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.4), transparent 60%);
  filter: blur(50px);
  z-index: -1;
  opacity: 0.6;
}

.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: #0a0d16;
  border-radius: 36px;
  overflow: hidden;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-bar { display: flex; gap: 4px; margin-bottom: 6px; }
.phone-bar span { width: 32px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.15); }
.phone-bar span:first-child { background: var(--brand); }

.phone-logo { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; }
.phone-hero {
  height: 180px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.phone-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 13, 22, 0.7));
  border-radius: 16px;
}
.phone-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.phone-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.phone-btn {
  background: var(--grad-brand);
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  color: #03101a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  cursor: pointer;
  margin-top: auto;
  box-shadow: 0 10px 30px -10px rgba(0, 224, 255, 0.6);
}
.phone-btn span { font-size: 0.72rem; opacity: 0.7; font-weight: 500; }
.phone-btn strong { font-size: 0.92rem; font-weight: 700; }
.phone-legal {
  font-size: 0.66rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.phone-shine {
  position: absolute;
  top: -100%;
  left: 0; right: 0; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06));
  pointer-events: none;
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine { 60%, 100% { top: 100%; } }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(20, 24, 38, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  will-change: transform;
}
.floating-card i {
  width: 22px; height: 22px;
  color: var(--brand);
}
.fc-title { font-weight: 600; font-size: 0.92rem; }
.fc-sub { font-size: 0.78rem; color: var(--text-muted); }
.card-1 { top: 60px; left: -60px; animation: floatA 6s ease-in-out infinite; }
.card-2 { bottom: 100px; right: -60px; animation: floatB 7s ease-in-out infinite; }
.card-2 i { color: var(--accent); }

@keyframes floatA { 50% { transform: translateY(-12px); } }
@keyframes floatB { 50% { transform: translateY(12px); } }

@media (max-width: 1100px) {
  .card-1 { left: -20px; }
  .card-2 { right: -20px; }
}
@media (max-width: 500px) {
  .phone-frame { transform: rotate(-2deg) scale(0.9); }
  .card-1 { left: 0; top: 30px; }
  .card-2 { right: 0; bottom: 60px; }
}

.check-list { display: flex; flex-direction: column; gap: 28px; }
.check-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(0, 224, 255, 0.2);
}
.check-icon i { width: 20px; height: 20px; color: var(--brand); }
.check-list h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.check-list p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }

/* ============================================
   Features grid
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  padding: 36px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 224, 255, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.feature-card:hover::before { opacity: 1; }

.fc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(0, 224, 255, 0.2);
  margin-bottom: 24px;
}
.fc-icon i { width: 24px; height: 24px; color: var(--brand); }

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }

/* ============================================
   RGPD section
   ============================================ */
.rgpd { position: relative; }
.rgpd::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 100% 20%, rgba(184, 255, 92, 0.06), transparent 50%),
    radial-gradient(60% 60% at 0% 80%, rgba(124, 92, 255, 0.06), transparent 50%);
  pointer-events: none;
}

.rgpd-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .rgpd-inner { grid-template-columns: 1fr; gap: 60px; }
}

.rgpd-points {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}
.rgpd-point {
  display: flex; gap: 16px;
  padding-left: 0;
}
.rgpd-point i {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.rgpd-point strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text);
}
.rgpd-point p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.compliance-card {
  background: linear-gradient(180deg, rgba(20, 24, 38, 0.6), rgba(11, 15, 28, 0.85));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}
.cc-header {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.cc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}
.cc-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cc-row:last-of-type { border-bottom: none; }
.cc-row-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.cc-row-icon.ok {
  background: rgba(184, 255, 92, 0.15);
}
.cc-row-icon i { width: 12px; height: 12px; color: var(--accent); stroke-width: 3; }
.cc-row-label { font-size: 0.94rem; }
.cc-row-status {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}
.cc-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.cc-footer i { width: 18px; height: 18px; color: var(--accent); }
.cc-footer strong { color: var(--accent); }

/* ============================================
   Secteurs
   ============================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sector-grid { grid-template-columns: 1fr; } }

.sector-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.5s var(--ease);
}
.sector-card:hover { transform: translateY(-8px); }

.sector-bg {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.sector-card:hover .sector-bg { transform: scale(1.08); }
.sector-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,8,15,0.1) 0%, rgba(6,8,15,0.6) 50%, rgba(6,8,15,0.95) 100%);
  pointer-events: none;
}

.sector-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sector-inner i {
  width: 36px; height: 36px;
  color: #fff;
  margin-bottom: 16px;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
}
.sector-inner h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.sector-inner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 18px;
}
.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brand);
  transition: gap 0.3s;
}
.sector-link i { width: 14px; height: 14px; }
.sector-card:hover .sector-link { gap: 10px; }

/* ============================================
   Process
   ============================================ */
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-line::before {
  content: '';
  position: absolute;
  top: 30px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
  z-index: 0;
}
@media (max-width: 900px) {
  .process-line { grid-template-columns: 1fr; gap: 20px; }
  .process-line::before { display: none; }
}

.process-step { position: relative; z-index: 1; }
.ps-num {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ============================================
   Partners grid
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-tile {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.partner-tile:hover {
  background: var(--surface-strong);
  border-color: var(--border-strong);
  transform: translateY(-4px);
}
.partner-tile img {
  max-height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.4);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}
.partner-tile:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================
   CTA
   ============================================ */
.cta-card {
  position: relative;
  padding: 80px 60px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 24, 38, 0.6), rgba(11, 15, 28, 0.9));
  backdrop-filter: blur(20px);
}
@media (max-width: 768px) {
  .cta-card { padding: 50px 28px; border-radius: 28px; }
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 80% 20%, rgba(0, 224, 255, 0.18), transparent 70%),
    radial-gradient(50% 50% at 20% 80%, rgba(124, 92, 255, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.cta-title em {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cta-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 40px;
}

.cta-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.cta-form label {
  display: flex; flex-direction: column; gap: 8px;
}
.cta-form label span {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.cta-form input,
.cta-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.96rem;
  transition: border-color 0.25s, background 0.25s;
  font-family: inherit;
  resize: vertical;
}
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: rgba(0, 224, 255, 0.5);
  background: rgba(0, 224, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 224, 255, 0.1);
}

.form-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.form-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-dim);
}
.form-note i { width: 14px; height: 14px; }

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, #04060c 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.94rem;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-dim);
}

/* ============================================
   Animations: reveal states
   ============================================ */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-anim="reveal-left"] { transform: translate(-40px, 0); }
[data-anim="reveal-right"] { transform: translate(40px, 0); }
[data-anim="card"] { transform: translateY(50px); transition-duration: 0.9s; }

[data-anim].is-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hero title special animation handled in JS via GSAP. Fallback: */
.hero-title .line { opacity: 0; transform: translateY(80%); }
.hero-title.is-in .line {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.hero-title.is-in .line:nth-child(1) { transition-delay: 0.05s; }
.hero-title.is-in .line:nth-child(2) { transition-delay: 0.18s; }
.hero-title.is-in .line:nth-child(3) { transition-delay: 0.32s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim] { opacity: 1; transform: none; }
  .hero-title .line { opacity: 1; transform: none; }
}
