/* ═══════════════════════════════════════════
   HI-TECH SERVICES MONTPELLIER – Styles
   Palette : #0d1f3c | #1a5fad | #4db8ff
   ═══════════════════════════════════════════ */

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

:root {
  --blue-dark:  #1a5fad;
  --blue-mid:   #2b7dd4;
  --blue-light: #4db8ff;
  --navy:       #0d1f3c;
  --white:      #ffffff;
  --gray-bg:    #f4f7fb;
  --gray-light: #e8eef7;
  --text:       #1a2740;
  --muted:      #5e738a;
  --border:     #d4e2f0;
  --grad:       linear-gradient(135deg, #1a5fad, #4db8ff);
  --grad-h:     linear-gradient(135deg, #4db8ff, #1a5fad);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ══ NAV ══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 76px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,95,173,0.04);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(26,95,173,0.12); }

.logo-link { display: flex; align-items: center; }
.logo-img   { height: 52px; width: auto; display: block; }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-dark); }

.nav-cta {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 0.65rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(26,95,173,0.3);
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,95,173,0.38); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══ HERO ══════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 6% 5rem;
  gap: 4rem;
  background: linear-gradient(160deg, #f4f7fb 0%, #e8eef7 50%, #ddeaf8 100%);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(77,184,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,95,173,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26,95,173,0.08);
  border: 1px solid rgba(26,95,173,0.2);
  color: var(--blue-dark);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: blink 1.8s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy);
  animation: fadeUp 0.7s 0.1s ease both;
}
h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 500px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(26,95,173,0.3);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,95,173,0.38); opacity: 0.92; }

.btn-outline {
  border: 2px solid var(--blue-dark);
  color: var(--blue-dark);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.7s 0.4s ease both;
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.77rem;
  color: var(--muted);
  margin-top: 0.3rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-logo-wrap {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(26,95,173,0.15), 0 4px 20px rgba(26,95,173,0.08);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 380px;
  width: 100%;
}
.hero-logo-wrap img { width: 220px; object-fit: contain; }
.hero-logo-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  width: 100%;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.chip {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══ COMMUN ════════════════════════════════ */
.section { padding: 6rem 6%; }
.section-alt { background: var(--gray-bg); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.8rem;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-intro {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

/* ══ SERVICES ══════════════════════════════
   Les 2 cartes principales (fibre + IP) sont
   visuellement mises en avant
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(26,95,173,0.12);
  transform: translateY(-4px);
  border-color: rgba(26,95,173,0.25);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 14px 14px 0 0;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(26,95,173,0.1), rgba(77,184,255,0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.service-card > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.service-list li {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.4;
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

/* Cartes mises en avant (fibre + téléphonie IP) */
.service-card--primary {
  border-color: rgba(26,95,173,0.35);
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 60%);
  box-shadow: 0 4px 20px rgba(26,95,173,0.08);
}
.service-card--primary::after {
  content: '★ Service phare';
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad);
  color: #fff;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
}
.service-card--primary:hover {
  box-shadow: 0 16px 48px rgba(26,95,173,0.16);
  border-color: rgba(26,95,173,0.4);
}
.service-card--primary .service-icon-wrap {
  background: linear-gradient(135deg, rgba(26,95,173,0.18), rgba(77,184,255,0.25));
}

/* ══ POURQUOI NOUS ══════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-features { list-style: none; display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; }
.why-feat { display: flex; gap: 1.2rem; align-items: flex-start; }
.feat-ico {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(26,95,173,0.1), rgba(77,184,255,0.15));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feat h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.why-feat p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26,95,173,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,95,173,0.12); }
.stat-card .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-card p { font-size: 0.8rem; color: var(--muted); font-weight: 600; margin-top: 0.4rem; line-height: 1.4; }

/* ══ CLIENTS CIBLES ═══════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26,95,173,0.13);
}
.client-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
}
.client-card--freelance::before    { background: linear-gradient(90deg, #7c4dff, #b47cff); }
.client-card--pme::before          { background: var(--grad); }
.client-card--collectivite::before { background: linear-gradient(90deg, #00b894, #00cec9); }

.client-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
}
.client-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.client-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.client-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
}
.client-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--blue-dark);
}
.client-card--freelance .client-list li::before    { color: #7c4dff; }
.client-card--collectivite .client-list li::before { color: #00b894; }

@media (max-width: 960px) {
  .clients-grid { grid-template-columns: 1fr; }
}

/* ══ CERTIFICATION 3CX ════════════════════ */
.certif-section {
  background: linear-gradient(145deg, #0a1628 0%, #0d1f3c 50%, #112952 100%);
  position: relative;
  overflow: hidden;
}
.certif-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 196, 138, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.certif-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,95,173,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.certif-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.certif-text .section-tag { color: #00c48a; }
.certif-section h2 { color: #fff; -webkit-text-fill-color: #fff; }

.certif-em {
  font-style: normal;
  background: linear-gradient(135deg, #00c48a, #00e5a8) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.certif-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 1.2rem 0 2rem;
  max-width: 500px;
}
.certif-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.certif-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.certif-ico {
  width: 26px; height: 26px;
  background: rgba(0, 196, 138, 0.15);
  border: 1px solid rgba(0, 196, 138, 0.35);
  border-radius: 50%;
  color: #00c48a;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.certif-list strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
.certif-list span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.btn-certif {
  display: inline-block;
  background: rgba(0, 196, 138, 0.12);
  border: 1px solid rgba(0, 196, 138, 0.4);
  color: #00c48a;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}
.btn-certif:hover {
  background: rgba(0, 196, 138, 0.22);
  border-color: #00c48a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 196, 138, 0.15);
}
.certif-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-certif-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}
.btn-certif-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* Sceau certification */
.certif-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.certif-seal {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 196, 138, 0.3);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.certif-seal-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(160deg, #0c1e3a, #152d52);
  border: 2px solid rgba(0, 196, 138, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  animation: spin-slow 30s linear infinite reverse;
}
.certif-seal-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 35%, rgba(0,196,138,0.08), transparent 55%);
}
.certif-logo-img {
  width: 130px;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  display: block;
}
.certif-type {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  position: relative;
  z-index: 1;
}
.certif-check {
  width: 32px; height: 32px;
  background: #00c48a;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
}

/* Badges sous le sceau */
.certif-badges {
  display: flex;
  gap: 1rem;
}
.certif-badge-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 90px;
  transition: border-color 0.2s, background 0.2s;
}
.certif-badge-item:hover {
  background: rgba(0, 196, 138, 0.06);
  border-color: rgba(0, 196, 138, 0.25);
}
.certif-badge-icon { font-size: 1.4rem; }
.certif-badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .certif-inner { grid-template-columns: 1fr; gap: 3rem; }
  .certif-visual { order: -1; }
  .certif-seal { width: 200px; height: 200px; }
  .certif-brand { font-size: 2.5rem; }
}

/* ══ PRODUITS ══════════════════════════════ */
.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.produit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
}
.produit-card:hover {
  box-shadow: 0 8px 28px rgba(26,95,173,0.1);
  transform: translateY(-3px);
  border-color: rgba(26,95,173,0.3);
}
.produit-card .prod-icon { font-size: 1.9rem; margin-bottom: 1rem; }
.produit-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.produit-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.prod-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(26,95,173,0.1), rgba(77,184,255,0.15));
  color: var(--blue-dark);
  border: 1px solid rgba(26,95,173,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 700;
}

/* ══ CTA BAND ══════════════════════════════ */
#cta {
  background: linear-gradient(135deg, #0d1f3c, #1a5fad);
  padding: 6rem 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(77,184,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
#cta > * { position: relative; }
#cta h2 { color: #fff; }
#cta p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 1.2rem auto 2.5rem; line-height: 1.75; }
.btn-white {
  background: #fff;
  color: var(--blue-dark);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ══ CONTACT ══════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.c-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(26,95,173,0.1), rgba(77,184,255,0.15));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(26,95,173,0.15);
}
.contact-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.contact-item p { font-size: 0.95rem; color: var(--text); }
.contact-item a { color: var(--blue-dark); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: var(--blue-light); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26,95,173,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  width: 100%;
}
.form-group select option { background: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(43,125,212,0.12);
  background: #fff;
}
.form-submit {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 0.95rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,95,173,0.28);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  width: 100%;
  margin-top: 0.3rem;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,95,173,0.35); }

/* ══ FOOTER ════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 2rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-logo-text span { color: var(--blue-light); }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue-light); }

/* ══ SCROLL REVEAL ═════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ════════════════════════════ */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding: 6rem 5% 4rem; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { display: flex; max-height: 300px; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 6%; font-size: 1rem; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 5%; }
  h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .contact-form { padding: 1.5rem; }
}

/* ══ COOKIE CONSENT ════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  padding: 1rem 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.87rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.cookie-inner a {
  color: var(--blue-light);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--grad);
  color: #fff;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.87rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-accept:hover { opacity: 0.88; }
.cookie-refuse {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.87rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-refuse:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-refuse { flex: 1; text-align: center; }
}
