/* =========================================
   EVO TÉLÉCOM — Design System v2
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

/* ── Variables ─────────────────────────── */
:root {
  /* Brand Colors */
  --navy:        #0b1120;
  --navy-2:      #111827;
  --navy-3:      #1a2538;
  --blue:        #2aa9e1;
  --blue-mid:    #1d8ec3;
  --blue-glow:   rgba(42,169,225,.25);
  --gold:        #f5c518;
  --gold-2:      #e0b012;
  --gold-glow:   rgba(245,197,24,.22);
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --surface:     #f1f5f9;
  --surface-2:   #e2e8f4;
  --text:        #1e293b;
  --text-2:      #475569;
  --text-3:      #94a3b8;
  --border:      rgba(0,0,0,.08);
  --border-dark: rgba(255,255,255,.1);

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

  /* Shadows */
  --sh-xs:   0 1px 3px rgba(0,0,0,.07);
  --sh-sm:   0 2px 12px rgba(0,0,0,.08);
  --sh-md:   0 8px 32px rgba(0,0,0,.1);
  --sh-lg:   0 20px 60px rgba(0,0,0,.14);
  --sh-xl:   0 32px 80px rgba(0,0,0,.18);
  --sh-blue: 0 8px 32px rgba(42,169,225,.28);
  --sh-gold: 0 8px 32px rgba(245,197,24,.28);

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-2xl: 48px;
  --r-full: 9999px;

  /* Transitions */
  --ease:  cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --trans: .25s var(--ease);
  --trans-md: .4s var(--ease);

  /* Layout */
  --max-w: 1180px;
  --header-h: 76px;
  --section-py: 100px;
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ── Container ──────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ─────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1rem; }
p  { color: var(--text-2); line-height: 1.7; }

strong { font-weight: 700; }

/* Eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(42,169,225,.1);
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 20px;
}
.eyebrow-gold {
  background: rgba(245,197,24,.12);
  color: #b08600;
}
.eyebrow-white {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* Section header */
.sec-head { margin-bottom: 60px; }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow { display: inline-flex; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { font-size: 1.05rem; max-width: 560px; }
.sec-head.center p { margin: 0 auto; }

/* ── Sections ───────────────────────────── */
section { padding: var(--section-py) 0; }
.bg-surface { background: var(--off-white); }
.bg-dark { background: var(--navy-2); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,.6); }

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: #1a1200;
  box-shadow: var(--sh-gold);
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(245,197,24,.38);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--sh-blue);
}
.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(42,169,225,.38);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

/* ── Badge ──────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-blue { background: rgba(42,169,225,.12); color: var(--blue-mid); }
.badge-gold { background: rgba(245,197,24,.15); color: #926e00; }
.badge-dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background var(--trans-md), box-shadow var(--trans-md), backdrop-filter var(--trans-md);
}

/* Transparent state (hero pages) */
#header.transparent {
  background: transparent;
}
/* Scrolled / filled state */
#header.filled {
  background: rgba(11,17,32,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 4px 24px rgba(0,0,0,.35);
}
/* Light header (inner pages without dark hero) */
#header.header-light {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06);
}
#header.header-light .nav-link { color: var(--text-2); }
#header.header-light .nav-link:hover,
#header.header-light .nav-link.active { color: var(--blue); background: rgba(42,169,225,.08); }
#header.header-light .logo-light { display: none; }
#header.header-light .logo-dark  { display: block; }
#header.header-light .hamburger span { background: var(--text); }

.nav-wrap {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 0;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img { height: 44px; width: auto; }
.logo-dark { display: none; }
.logo-light { display: block; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 15px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  transition: var(--trans);
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-link.active {
  color: var(--white);
  background: rgba(42,169,225,.2);
}

/* CTA */
.nav-cta {
  margin-left: 20px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(11,17,32,.97);
  backdrop-filter: blur(20px);
  padding: 20px 24px 32px;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  display: block;
  padding: 12px 18px;
  font-size: .95rem;
  border-radius: var(--r-md);
}
.mobile-menu .btn { margin-top: 16px; }

/* ═══════════════════════════════════════
   HERO — HOME
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(42,169,225,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 70%, rgba(245,197,24,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(42,169,225,.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 80px 0 60px;
}

/* Left */
.hero-left { display: flex; flex-direction: column; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-full);
  width: fit-content;
  margin-bottom: 28px;
}
.hero-tag-dot {
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-tag-dot svg { width: 13px; height: 13px; color: #1a1200; }
.hero-tag-text {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}

.hero-left h1 {
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.hero-left h1 em {
  font-style: normal;
  color: var(--blue);
  background: linear-gradient(135deg, var(--blue), #5dd4f8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stats strip */
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 40px;
}
.hero-stat {
  padding: 0 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}
.hero-stat-num .hl { color: var(--blue); }
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  line-height: 1.4;
}

/* Hero Right — Floating card */
.hero-right { display: flex; justify-content: flex-end; align-items: center; }

.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 400px;
  animation: floatCard 7s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-card-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-blue);
}
.hero-card-avatar svg { width: 22px; height: 22px; color: var(--white); }
.hero-card-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-card-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 24px;
}

.hero-features { display: flex; flex-direction: column; gap: 10px; }
.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--trans);
}
.hero-feature:hover { background: rgba(255,255,255,.08); border-color: rgba(42,169,225,.3); }
.hero-feature-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-feature-icon svg { width: 16px; height: 16px; }
.hero-feature-text { font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 500; }

.hero-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-pill {
  padding: 5px 12px;
  background: rgba(42,169,225,.15);
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 700;
  color: #7dd3f7;
  letter-spacing: .05em;
}
.hero-card-meta {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  font-weight: 500;
}

/* ── Page Hero (inner pages) ────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 60px) 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 60% 0%, rgba(42,169,225,.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 100%, rgba(245,197,24,.08) 0%, transparent 55%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }

/* ═══════════════════════════════════════
   SECTION — PRÉSENTATION
═══════════════════════════════════════ */
.pres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pres-text {}
.pres-text h2 { margin-bottom: 18px; }
.pres-text p { font-size: 1rem; margin-bottom: 16px; }

.pres-highlight {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 32px;
}
.pres-kpi { text-align: center; flex: 1; }
.pres-kpi-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
}
.pres-kpi-label {
  font-size: .72rem;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.35;
}
.pres-divider { width: 1px; background: var(--border); }

.pres-img-wrap { position: relative; }
.pres-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
}
.pres-badge-float {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--sh-lg);
  text-align: center;
  min-width: 120px;
}
.pres-badge-float .num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.03em;
}
.pres-badge-float .label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   SECTION — ATOUTS (Why Us)
═══════════════════════════════════════ */
.atouts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.atout {
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--trans-md);
  position: relative;
  overflow: hidden;
}
.atout::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-md);
}
.atout:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }
.atout:hover::after { transform: scaleX(1); }
.atout:nth-child(4)::after { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }

.atout-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: rgba(42,169,225,.1);
  transition: var(--trans);
}
.atout-icon svg { width: 24px; height: 24px; color: var(--blue); transition: var(--trans); }
.atout:hover .atout-icon { background: var(--blue); }
.atout:hover .atout-icon svg { color: var(--white); }
.atout:nth-child(4) .atout-icon { background: rgba(245,197,24,.12); }
.atout:nth-child(4) .atout-icon svg { color: var(--gold-2); }
.atout:nth-child(4):hover .atout-icon { background: var(--gold); }
.atout:nth-child(4):hover .atout-icon svg { color: #1a1200; }

.atout h3 { font-size: 1.05rem; margin-bottom: 10px; }
.atout p  { font-size: .88rem; }

/* ═══════════════════════════════════════
   SECTION — SOLUTIONS APERÇU
═══════════════════════════════════════ */
.solutions-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: var(--trans-md);
  display: flex;
  flex-direction: column;
}
.sol-card:hover { box-shadow: var(--sh-md); transform: translateY(-5px); }

.sol-card-accent {
  width: 100%;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.sol-card-accent.blue { background: linear-gradient(90deg, var(--blue), #7dd3f7); }
.sol-card-accent.gold { background: linear-gradient(90deg, var(--gold), #fde882); }
.sol-card-accent.purple { background: linear-gradient(90deg, #8b5cf6, #c4b5fd); }

.sol-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sol-icon.blue { background: rgba(42,169,225,.1); }
.sol-icon.blue svg { color: var(--blue); }
.sol-icon.gold { background: rgba(245,197,24,.1); }
.sol-icon.gold svg { color: var(--gold-2); }
.sol-icon.purple { background: rgba(139,92,246,.1); }
.sol-icon.purple svg { color: #8b5cf6; }
.sol-icon svg { width: 24px; height: 24px; }

.sol-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.sol-card p  { font-size: .88rem; margin-bottom: 24px; flex: 1; }
.sol-card .btn { margin-top: auto; }

/* ═══════════════════════════════════════
   SECTION — STATS (dark)
═══════════════════════════════════════ */
.stats-dark {
  background: var(--navy);
  padding: 80px 0;
}
.stats-dark-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stats-dark-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  pointer-events: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.stat-num .pre { font-size: 1.6rem; color: var(--blue); font-weight: 700; }
.stat-num .suf { font-size: 1.8rem; color: var(--blue); font-weight: 700; }
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  max-width: 130px;
  line-height: 1.45;
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border-radius: var(--r-xl);
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(42,169,225,.18) 0%, transparent 65%);
  top: -180px; right: -100px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,.12) 0%, transparent 65%);
  bottom: -120px; left: 30%;
  pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p  { color: rgba(255,255,255,.6); max-width: 460px; }
.cta-actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   CARDS (generic)
═══════════════════════════════════════ */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Product Cards ──────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--trans-md);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--sh-lg); transform: translateY(-7px); }

.product-card-img {
  background: var(--off-white);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  border-bottom: 1px solid var(--border);
}
.product-card-img img {
  max-height: 150px;
  object-fit: contain;
  transition: transform var(--trans-md);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body { padding: 26px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.product-card-body .badge { margin-bottom: 12px; }
.product-card-body h3 { margin-bottom: 10px; }
.product-card-body > p { font-size: .88rem; margin-bottom: 18px; }

.product-features {
  display: flex; flex-direction: column;
  gap: 6px; margin-bottom: 22px;
}
.product-feature {
  display: flex; gap: 10px; align-items: center;
  font-size: .82rem; color: var(--text-2); font-weight: 500;
}
.product-feature::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── Comparison Table ───────────────────── */
.compare-wrap { overflow-x: auto; border-radius: var(--r-lg); box-shadow: var(--sh-md); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.compare-table th {
  padding: 20px 26px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .01em;
}
.compare-table th.col-feature {
  background: var(--off-white);
  color: var(--text-3);
  width: 240px;
}
.compare-table th.col-centrex {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}
.compare-table th.col-ipbx {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.compare-table td {
  padding: 16px 26px;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  transition: background var(--trans);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--off-white); }
.compare-table td.col-feature { font-weight: 600; color: var(--text); width: 240px; }
.compare-table td.col-centrex,
.compare-table td.col-ipbx { text-align: center; }
.compare-yes { color: #16a34a; font-weight: 600; }
.compare-no  { color: #dc2626; font-weight: 600; }
.compare-mid { color: #d97706; font-weight: 600; }
.compare-icon { font-size: 1rem; }

/* ═══════════════════════════════════════
   ABOUT PAGE — SPECIFICS
═══════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }
.value-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  align-items: flex-start;
  transition: var(--trans);
  background: var(--white);
}
.value-item:hover { box-shadow: var(--sh-sm); border-color: rgba(42,169,225,.3); }
.value-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: rgba(42,169,225,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; color: var(--blue); }
.value-text h4 { font-size: .92rem; margin-bottom: 4px; }
.value-text p  { font-size: .82rem; }

/* ═══════════════════════════════════════
   SOLUTIONS PAGE — SPECIFICS
═══════════════════════════════════════ */
.sol-section-hd {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}
.sol-section-hd .icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-blue);
}
.sol-section-hd .icon-wrap svg { width: 24px; height: 24px; color: var(--white); }
.sol-section-hd h2 { margin: 0; font-size: 1.8rem; }
.sol-section-hd p  { margin: 4px 0 0; font-size: .9rem; }

.connectivity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.connectivity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: center;
  transition: var(--trans-md);
}
.connectivity-card:hover { border-color: var(--blue); box-shadow: var(--sh-blue); transform: translateY(-5px); }

.connectivity-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: var(--sh-blue);
}
.connectivity-icon svg { width: 30px; height: 30px; color: var(--white); }
.connectivity-card h3 { margin-bottom: 10px; }
.connectivity-card p  { font-size: .86rem; }
.speed-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--r-full);
  background: rgba(42,169,225,.1);
  color: var(--blue-mid);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-top: 16px;
}

.compare-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}
.compare-intro-card { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
.compare-intro-card-header {
  padding: 20px 26px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.compare-intro-card-body {
  padding: 20px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.compare-intro-card-body p { font-size: .88rem; }

/* Audio Studio */
.audio-studio {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border-radius: var(--r-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}
.audio-studio::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,169,225,.18) 0%, transparent 68%);
  right: -80px; bottom: -120px;
  pointer-events: none;
}
.audio-studio h2, .audio-studio h3 { color: var(--white); }
.audio-studio p { color: rgba(255,255,255,.6); }

.audio-waves { display: flex; align-items: flex-end; gap: 5px; margin-bottom: 24px; height: 56px; }
.audio-wave {
  width: 6px;
  background: var(--blue);
  border-radius: 3px;
  animation: audioWave 1.5s ease-in-out infinite;
}
.audio-wave:nth-child(1) { height: 22px; animation-delay: 0s; }
.audio-wave:nth-child(2) { height: 38px; animation-delay: .12s; }
.audio-wave:nth-child(3) { height: 56px; animation-delay: .24s; }
.audio-wave:nth-child(4) { height: 42px; animation-delay: .36s; }
.audio-wave:nth-child(5) { height: 30px; animation-delay: .48s; }
.audio-wave:nth-child(6) { height: 50px; animation-delay: .6s; }
.audio-wave:nth-child(7) { height: 34px; animation-delay: .72s; }
.audio-wave:nth-child(8) { height: 20px; animation-delay: .84s; }
@keyframes audioWave {
  0%, 100% { transform: scaleY(1); opacity: .65; }
  50%       { transform: scaleY(.35); opacity: 1; }
}

.audio-features { display: flex; flex-direction: column; gap: 12px; }
.audio-feature {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  font-size: .86rem; color: rgba(255,255,255,.75); font-weight: 500;
  transition: var(--trans);
}
.audio-feature:hover { background: rgba(255,255,255,.09); border-color: rgba(42,169,225,.3); }
.audio-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(42,169,225,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-body h4 { font-size: .9rem; margin-bottom: 4px; }
.contact-item-body p, .contact-item-body a { font-size: .86rem; color: var(--text-2); }
.contact-item-body a:hover { color: var(--blue); }

#map {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 260px;
  margin-top: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: var(--sh-md);
}
.form-title { font-size: 1.25rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .8rem; font-weight: 600; color: var(--text); letter-spacing: .02em; }
.form-input, .form-textarea, .form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--trans);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,169,225,.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-honey { display: none; }
.form-submit { margin-top: 12px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-msg {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 500;
  display: none;
  margin-top: 16px;
}
.form-msg.success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; display: block; }
.form-msg.error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; display: block; }

/* ═══════════════════════════════════════
   MENTIONS LÉGALES
═══════════════════════════════════════ */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--blue-mid);
  margin-top: 44px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: .95rem; margin-bottom: 12px; }
.legal-content ul { margin-left: 20px; list-style: disc; color: var(--text-2); }
.legal-content ul li { font-size: .95rem; margin-bottom: 6px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: var(--navy);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 270px; }
.footer-brand-socials { display: flex; gap: 10px; margin-top: 20px; }

.footer-col h4 {
  color: rgba(255,255,255,.85);
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: .86rem;
  color: rgba(255,255,255,.4);
  transition: var(--trans);
}
.footer-links a:hover { color: rgba(255,255,255,.85); padding-left: 5px; }

.footer-address {
  font-size: .86rem;
  color: rgba(255,255,255,.4);
  line-height: 1.9;
  font-style: normal;
}
.footer-address strong { color: rgba(255,255,255,.65); display: block; margin-bottom: 6px; }
.footer-address a { color: var(--blue); }
.footer-address a:hover { color: #7dd3f7; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.28); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.animate-fade   { opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.animate-up     { opacity: 0; transform: translateY(36px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.animate-left   { opacity: 0; transform: translateX(-36px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.animate-right  { opacity: 0; transform: translateX(36px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.animate-scale  { opacity: 0; transform: scale(.94); transition: opacity .65s var(--ease), transform .65s var(--ease); }

.animate-delay-1 { transition-delay: .1s; }
.animate-delay-2 { transition-delay: .2s; }
.animate-delay-3 { transition-delay: .3s; }
.animate-delay-4 { transition-delay: .4s; }
.animate-delay-5 { transition-delay: .5s; }

.animated { opacity: 1 !important; transform: none !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .hero-stat { border-right: none; padding: 0; }
  .pres-grid { grid-template-columns: 1fr; gap: 48px; }
  .pres-img-wrap img { height: 360px; }
  .atouts-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-dark-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 900px) {
  :root { --section-py: 72px; }
  .solutions-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 36px; }
  .cta-actions { justify-content: center; }
  .audio-studio { grid-template-columns: 1fr; padding: 40px 36px; }
  .compare-intro { grid-template-columns: 1fr; }
  .connectivity-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; --header-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .solutions-preview-grid { grid-template-columns: 1fr; }
  .atouts-grid { grid-template-columns: 1fr; }
  .connectivity-grid { grid-template-columns: 1fr; }
  .stats-dark-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child { border-bottom: none; }
  .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .pres-highlight { flex-direction: column; gap: 20px; }
  .pres-divider { width: 100%; height: 1px; }
  .pres-badge-float { right: -8px; bottom: -10px; }
}

@media (max-width: 540px) {
  :root { --section-py: 48px; }
  .hero-stats { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: .86rem; }
  .contact-form-wrap { padding: 30px 22px; }
  .cta-banner { padding: 36px 24px; }
  .compare-table th.col-feature,
  .compare-table td.col-feature { width: 120px; font-size: .8rem; }
  .compare-table th, .compare-table td { padding: 13px 14px; }
}
