/*
Theme Name: TGS Inspection
Theme URI:
Author: Expert WP Developer
Description: Premium WordPress theme for TGS Inspection Bâtiment.
Version: 2.6.7
Text Domain: tgs-inspection
*/

/* =============================================
   1. DESIGN TOKENS
   ============================================= */
:root {
  /* Brand */
  --primary:         #1B3A6B;
  --primary-dark:    #0f2347;
  --primary-mid:     #1e4a8a;
  --secondary:       #E31E24;
  --secondary-hover: #c8181d;
  --accent:          #29ABE2;
  --accent-light:    rgba(41, 171, 226, 0.12);

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --bg-light:   #F4F7F9;
  --bg-subtle:  #EEF2F7;
  --text-dark:  #0f172a;
  --text-body:  #374151;
  --text-muted: #6b7280;
  --border:     rgba(27, 58, 107, 0.08);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Header heights */
  --topbar-h:  54px;
  --navbar-h:  62px;
  --header-h:  116px; /* topbar + navbar */

  /* Layout */
  --container:  1240px;
  --section-py: 110px;

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm: 0 4px 16px rgba(27,58,107,0.08);
  --shadow-md: 0 10px 36px rgba(27,58,107,0.12);
  --shadow-lg: 0 24px 64px rgba(27,58,107,0.16);
  --shadow-xl: 0 48px 100px rgba(27,58,107,0.20);

  /* Transitions */
  --ease:       cubic-bezier(0.165, 0.84, 0.44, 1);
  --duration:   0.35s;
  --transition: all var(--duration) var(--ease);
}

/* =============================================
   2. RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* =============================================
   3. LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section-padding { padding: var(--section-py) 0; }
.text-center { text-align: center; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 72px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  color: var(--primary);
}

.section-divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  margin: 18px auto 22px;
}

.section-header p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.dark-header .eyebrow { color: var(--accent); }
.dark-header h2 { color: var(--white); }
.dark-header p { color: rgba(255,255,255,0.65); }

/* =============================================
   4. ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity 0.85s var(--ease); }
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }
.delay-6 { transition-delay: 0.60s; }

/* =============================================
   5. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg { flex-shrink: 0; transition: transform 0.28s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--secondary);
  color: var(--white) !important;
  border-color: var(--secondary);
  box-shadow: 0 4px 18px rgba(227,30,36,0.32);
}
.btn-primary:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(227,30,36,0.42);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Phone link in hero */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  transition: var(--transition);
  opacity: 0.88;
}
.phone-link:hover { color: var(--white); opacity: 1; transform: translateX(3px); }
.phone-link .ph-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* =============================================
   5.5 – ULTRA PREMIUM HEADER (Glassmorphism)
   ============================================= */
.site-header.premium-glass-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 48px);
  max-width: 1200px;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(15, 35, 71, 0.08);
  border-radius: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.site-header.premium-glass-header.scrolled {
  top: 16px;
  box-shadow: 0 15px 50px rgba(15, 35, 71, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px 0 16px;
}

/* Brand */
.header-brand { position: relative; z-index: 1005; }
.header-brand a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header-logo {
  height: 44px;
  width: auto;
}
.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}
.brand-highlight {
  color: var(--secondary);
}

/* Nav Menu */
.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-navigation .nav-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.main-navigation .nav-menu a:hover {
  color: var(--primary);
  background: rgba(41, 171, 226, 0.08);
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1005;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header-phone:hover {
  color: var(--accent);
}
.header-divider {
  width: 1px;
  height: 24px;
  background: rgba(0,0,0,0.1);
}
.btn-premium-nav {
  background: var(--primary-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 35, 71, 0.2);
}
.btn-premium-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 35, 71, 0.3);
  background: var(--primary);
  color: #fff;
}
.btn-accent {
  background: var(--secondary) !important;
}
.btn-accent:hover {
  background: var(--secondary-hover) !important;
  box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary-dark);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .main-navigation .nav-menu, .header-phone, .header-divider, .btn-premium-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.premium-glass-header {
    width: calc(100% - 32px);
    top: 16px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .main-navigation {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--white);
    padding: 100px 28px 48px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
  }
  .main-navigation.open { transform: translateX(0); }
  .main-navigation ul { flex-direction: column; gap: 0; }
  .main-navigation.open .nav-menu { display: flex; }
  .main-navigation .nav-menu { align-items: stretch; margin: 0; padding: 0; width: 100%; }
  .main-navigation .nav-menu a {
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    display: block;
    width: 100%;
    text-align: left;
  }
  .main-navigation .nav-menu a:hover { background: transparent; color: var(--primary); padding-left: 8px; }

  /* Mobile nav: show phone + CTA at bottom of drawer */
  .main-navigation::after {
    content: '📞 418-208-9368';
    display: block;
    margin-top: auto;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
    padding-top: 28px;
  }
}

/* =============================================
   7. HERO SECTION
   ============================================= */
/* =============================================
   7. HERO SECTION (ULTRA PREMIUM)
   ============================================= */
.premium-hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 180px 0 100px;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
  background-color: var(--primary-dark);
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-parallax {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 58, 107, 0.85) 0%, rgba(27, 58, 107, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* Open Content Panel */
.hero-content-open {
  max-width: 650px;
  padding: 40px 0;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-title-premium {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-text-gradient {
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-premium {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 500px;
}

.hero-actions-premium {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary-glow {
  background: var(--secondary);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}
.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(227, 30, 36, 0.6);
  background: var(--secondary-hover);
  color: #fff;
}

.btn-outline-glass {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-outline-glass:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-3px);
}


.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: #fff;
  animation: scroll-drop 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scroll-drop {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(200%); }
  100% { transform: translateY(200%); }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-stats-panel {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    gap: 24px;
  }
  .stat-item-premium .stat-value { font-size: 2.5rem; }
  .hero-content-glass { padding: 40px 24px; }
}
.stat-value .suffix { font-size: 1rem; color: rgba(255,255,255,0.65); margin-left: 1px; }

.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* =============================================
   8. WHY CHOOSE US — Section Premium
   ============================================= */
.why-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse 900px 700px at 5% 40%, rgba(41,171,226,0.05) 0%, transparent 68%),
    radial-gradient(ellipse 700px 600px at 95% 15%, rgba(27,58,107,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 50%, #eef3f8 100%);
  overflow: hidden;
}

/* Halos lumineux */
.why-halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.why-halo-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(41,171,226,0.07) 0%, transparent 65%);
  top: -300px; left: -250px;
}
.why-halo-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,58,107,0.06) 0%, transparent 65%);
  bottom: -150px; right: -200px;
}
.why-section > .container { position: relative; z-index: 1; }

/* ── En-tête ── */
.why-header { text-align: center; margin-bottom: 72px; }

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,171,226,0.09);
  border: 1px solid rgba(41,171,226,0.24);
  color: #1a8ab9;
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.why-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0 auto 20px;
}
.why-tgs { color: var(--primary); }

/* Ligne décorative bleu + rouge */
.why-deco-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 28px;
}
.wdl-blue {
  display: block;
  width: 52px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.wdl-red {
  display: block;
  width: 18px; height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.why-intro {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.82;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Grille de cartes ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Liseré gradient haut — apparaît au hover */
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
  border-radius: 20px 20px 0 0;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(27,58,107,0.14);
  border-color: rgba(27,58,107,0.06);
}
.why-card:hover::after { transform: scaleX(1); }

.why-card:focus-within {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ── Icône ── */
.why-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(27,58,107,0.06);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-bottom: 28px;
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}
.why-card:hover .why-icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.06);
}

/* ── Corps de la carte ── */
.why-card-body { flex: 1; }

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.32;
  margin: 0;
}

/* Soulignement rouge — apparaît au hover */
.why-card-title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  margin-top: 10px;
  transition: width 300ms ease;
}
.why-card:hover .why-card-title::after { width: 30px; }

.why-card-text {
  font-size: 0.95rem;
  line-height: 1.80;
  color: var(--text-muted);
  margin-top: 18px;
}

/* ── Bande de confiance ── */
.why-trust {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 36px 48px;
  margin-bottom: 36px;
}
.why-trust-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}
.why-stars {
  font-size: 1.1rem;
  color: #F59E0B;
  letter-spacing: 4px;
  margin-bottom: 14px;
  line-height: 1;
}
.why-trust-quote {
  font-size: 0.98rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.74;
  border-left: 3px solid var(--secondary);
  padding-left: 18px;
  margin: 0;
}
.why-trust-vsep {
  width: 1px; height: 90px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  flex-shrink: 0;
}
.why-trust-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-trust-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
}
.wts-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(27,58,107,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Bannière CTA ── */
.why-cta-banner {
  background: var(--primary-dark);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.why-cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 350px at 0% 50%, rgba(41,171,226,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 100% 100%, rgba(27,58,107,0.50) 0%, transparent 60%);
  pointer-events: none;
}
.why-cta-banner > * { position: relative; z-index: 1; }

.why-cta-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.why-cta-text p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.60;
}
.why-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.why-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 13px 22px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.why-cta-ghost:hover {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border-color: rgba(255,255,255,0.40);
  transform: translateY(-2px);
}

/* ── Responsive why-section ── */
@media (max-width: 1024px) {
  .why-section { padding: 80px 0; }
  .why-trust-inner { grid-template-columns: 1fr; gap: 28px; }
  .why-trust-vsep { display: none; }
  .why-cta-banner { flex-direction: column; text-align: center; padding: 40px 36px; }
  .why-cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .why-section { padding: 60px 0; }
  .why-header { margin-bottom: 48px; }
  .why-card { padding: 28px 24px; }
  .why-trust { padding: 28px 24px; }
  .why-cta-banner { padding: 32px 24px; }
  .why-cta-actions { flex-direction: column; width: 100%; }
  .why-cta-ghost { justify-content: center; }
  .why-halo-1 { width: 350px; height: 350px; }
  .why-halo-2 { display: none; }
}

/* =============================================
   9. PROCESS SECTION
   ============================================= */
/* =============================================
   9. PROCESS SECTION (PREMIUM & EPURÉ)
   ============================================= */
.process-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 60px;
}

/* Elegant Track */
.process-track {
  position: absolute;
  top: 35px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(41,171,226,0) 0%, rgba(41,171,226,0.3) 20%, rgba(41,171,226,0.3) 80%, rgba(41,171,226,0) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

/* Step Number Styling */
.step-number-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(27, 58, 107, 0.08);
  border: 1px solid rgba(41, 171, 226, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
}

.step-number-wrapper::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(41, 171, 226, 0);
  transition: all 0.4s ease;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.process-step:hover .step-number-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(41, 171, 226, 0.15);
  border-color: var(--accent);
}

.process-step:hover .step-number-wrapper::before {
  border-color: rgba(41, 171, 226, 0.3);
  transform: scale(1.15);
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.process-step p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-track {
    display: none;
  }
  .process-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 24px;
  }
  .step-number-wrapper {
    margin: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
  }
  .step-number {
    font-size: 1.25rem;
  }
  .process-step h3 {
    margin-bottom: 8px;
  }
}



/* =============================================
   10. ABOUT SECTION (ULTRA PREMIUM)
   ============================================= */
.premium-about-section {
  background: var(--off-white);
  position: relative;
  border-top: 1px solid rgba(27, 58, 107, 0.05);
  box-shadow: inset 0 20px 40px -20px rgba(0,0,0,0.02);
  overflow: hidden;
  padding: 120px 0;
}

.premium-about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* Sticky Left Content */
.about-sticky-content {
  position: sticky;
  top: 140px; /* Below header */
  padding-right: 40px;
}

.about-sticky-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--primary-dark);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-text-secondary {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-stats-inline {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 32px;
}
.stat-block {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Scrolling Right Visuals */
.about-scrolling-visuals {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.visual-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 35, 71, 0.1);
}
.visual-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
.visual-card-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.visual-card-caption h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.visual-card-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.premium-certifications {
  background: var(--off-white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.04);
}
.premium-certifications h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 24px;
}
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--text-body);
  font-weight: 500;
}
.cert-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
  .premium-about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-sticky-content {
    position: relative;
    top: 0;
    padding-right: 0;
  }
}

/* =============================================
   11. SERVICES SECTION (ULTRA PREMIUM)
   ============================================= */
.premium-services-section {
  background: var(--white);
  position: relative;
  border-top: 1px solid rgba(27, 58, 107, 0.05);
}

.services-header-premium {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.eyebrow-glass {
  display: inline-block;
  background: rgba(41, 171, 226, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.services-header-premium h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.services-header-premium p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 60px;
}

/* Symmetrical Grid */
.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .premium-services-grid { grid-template-columns: 1fr; }
}

.premium-service-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 107, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 8px 24px rgba(27, 58, 107, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.premium-service-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,1), 0 20px 40px rgba(27, 58, 107, 0.08);
  border-color: rgba(41, 171, 226, 0.2);
}

.service-img-glass {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-img-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.premium-service-card:hover .service-img-glass img {
  transform: scale(1.04);
}

.service-img-overlay-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent 60%, #FFFFFF 100%);
  pointer-events: none;
}

.service-content-glass {
  position: relative;
  z-index: 2;
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.service-icon-float {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-top: -54px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.8);
}

.service-content-glass h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.service-content-glass p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 24px;
}

.premium-service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
  flex-grow: 1;
  list-style: none;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,0.04);
  padding-top: 20px;
  margin-top: auto;
}
.premium-service-features li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 500;
}
.check-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  flex-shrink: 0;
}

/* =============================================
   12. TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--primary);
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(41,171,226,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.google-rating-wrap {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 52px;
}
.google-rating {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 18px 32px;
  border-radius: var(--radius-full);
}
.rating-num {
  font-family: var(--font-heading);
  font-size: 2.6rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.rating-detail .stars { color: #FBBC04; font-size: 1.1rem; letter-spacing: 3px; }
.rating-detail .lbl { font-size: 0.80rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-5px); }
.review-card .stars { color: #FBBC04; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem; line-height: 1.78;
  margin-bottom: 22px; font-style: italic;
}
.review-footer {
  display: flex; align-items: center; gap: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem; color: var(--white); flex-shrink: 0;
}
.avatar-1 { background: linear-gradient(135deg, var(--accent), #1d8ab8); }
.avatar-2 { background: linear-gradient(135deg, #e84393, #9b59b6); }
.avatar-3 { background: linear-gradient(135deg, #f39c12, #e74c3c); }
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.reviewer-date { font-size: 0.76rem; color: rgba(255,255,255,0.45); }

.trustindex-note {
  text-align: center; margin-top: 48px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.42); font-size: 0.82rem;
}

/* =============================================
   13. BLOG SECTION
   ============================================= */
.blog-section { background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 52px;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }

.blog-img-wrap { height: 210px; overflow: hidden; position: relative; }
.blog-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.70s var(--ease);
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.08); }

.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
}

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.66rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em; z-index: 1;
}

.blog-body {
  padding: 26px;
  display: flex; flex-direction: column; flex-grow: 1;
}
.blog-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.76rem; color: var(--text-muted); margin-bottom: 12px;
}
.blog-body h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 10px; line-height: 1.45; }
.blog-body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.68; flex-grow: 1; margin-bottom: 18px; }

.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 700;
  color: var(--primary);
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: var(--transition);
}
.blog-read-more svg { transition: transform 0.3s var(--ease); }
.blog-card:hover .blog-read-more { color: var(--secondary); }
.blog-card:hover .blog-read-more svg { transform: translateX(5px); }

/* =============================================
   14. FAQ SECTION
   ============================================= */
.faq-section { background: var(--off-white); }
.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.faq-item.active { border-color: rgba(41,171,226,0.35); box-shadow: var(--shadow-md); }

.faq-question {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 26px;
  cursor: pointer; user-select: none;
}
.faq-q-text {
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.98rem;
  color: var(--primary); line-height: 1.42;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
  font-size: 1.3rem; font-weight: 300; line-height: 1;
  transition: var(--transition);
}
.faq-item.active .faq-toggle { background: var(--secondary); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.42s var(--ease), padding 0.42s var(--ease);
  color: var(--text-muted); font-size: 0.93rem; line-height: 1.78;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 26px 22px; }

/* =============================================
   15. CTA BANNER
   ============================================= */
.cta-section {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-mid) 100%);
  position: relative; overflow: hidden;
  text-align: center; padding: 88px 0;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.70); font-size: 1.08rem; margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* =============================================
   16. CALENDLY SECTION
   ============================================= */
.calendly-section { 
  background: var(--white); 
  border-top: 1px solid rgba(27, 58, 107, 0.05);
}

.calendly-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 660px;
  display: flex; align-items: center; justify-content: center;
}
.calendly-placeholder {
  text-align: center; padding: 60px 40px; color: var(--text-muted);
}
.cal-icon {
  width: 72px; height: 72px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--primary);
}
.calendly-placeholder h3 { color: var(--primary); font-size: 1.45rem; margin-bottom: 12px; }
.calendly-placeholder p { max-width: 380px; margin: 0 auto 28px; font-size: 0.96rem; }

/* =============================================
   17. CONTACT SECTION
   ============================================= */
.contact-section { background: var(--primary-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px; align-items: start;
}
.contact-info-col { color: rgba(255,255,255,0.78); }
.contact-info-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(41,171,226,0.14);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.ci-label { display: block; font-weight: 700; font-size: 0.82rem; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.ci-value { font-size: 0.93rem; color: rgba(255,255,255,0.65); }
.ci-value a { color: rgba(255,255,255,0.65); }
.ci-value a:hover { color: var(--accent); }

.map-embed {
  height: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38); font-size: 0.88rem;
}

.contact-form-wrap {
  background: var(--white);
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.contact-form-wrap h3 { color: var(--primary); font-size: 1.45rem; margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.79rem; font-weight: 700;
  color: var(--primary); margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--bg-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.94rem; color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(41,171,226,0.11);
}
.form-group textarea { resize: vertical; min-height: 116px; }

/* =============================================
   18. FOOTER (ULTRA PREMIUM AWWWARDS STYLE)
   ============================================= */
.premium-site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

/* Pre-footer CTA */
.footer-cta-wrapper {
  padding: 80px 24px;
  background: var(--white);
  border-radius: 0 0 48px 48px;
  position: relative;
  z-index: 2;
}

.premium-cta-box {
  background: var(--primary-dark);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 35, 71, 0.15);
}
.cta-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(41, 171, 226, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.premium-cta-box .eyebrow-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cta-box-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}
.cta-box-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}
.cta-box-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Main Footer */
.footer-main-container {
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 24px;
}
.footer-logo-link .logo-wordmark {
  color: #fff;
}

.footer-brand-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-list a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-nav-list a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.footer-nav-list a.text-accent {
  color: var(--accent);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fci {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fci-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}
.fci-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s ease;
}
a.fci-value:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  font-size: 0.9rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #fff;
}

/* =============================================
   19. RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  :root { --section-py: 88px; }
  .about-grid { gap: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .why-grid,
  .services-grid,
  .reviews-grid,
  .blog-grid,
  .archive-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 420px; }
  .about-badge { bottom: -14px; right: 14px; }
  .about-text { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --topbar-h: 0px;   /* topbar hidden on mobile */
    --navbar-h: 62px;
    --header-h: 62px;
  }

  .container { padding: 0 18px; }

  /* Hide topbar on mobile */
  .site-topbar { display: none; }

  /* Nav always at top on mobile */
  .site-header { top: 0; background: var(--white); border-bottom: 1px solid var(--border); }
  .site-header.nav-up { top: 0; }

  /* Mobile nav drawer */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }



  /* Hero */
  .hero-content-wrap { padding-top: calc(var(--header-h) + 48px); padding-bottom: 160px; }
  .hero-title { font-size: 2.1rem; }
  .hero-actions, .hero-actions-premium { flex-direction: column; align-items: stretch; gap: 16px; width: 100%; max-width: 320px; }
  .hero-actions-premium a { justify-content: center; width: 100%; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-value { font-size: 1.65rem; }
  .hero-bg { background-attachment: scroll; }
  .hero-bg-parallax { background-position: 65% center; }
  .hero-overlay-gradient { background: linear-gradient(to bottom, rgba(27, 58, 107, 0.85) 0%, rgba(27, 58, 107, 0.4) 100%); }

  /* Grids */
  .why-grid,
  .services-grid,
  .reviews-grid,
  .blog-grid,
  .process-steps { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 48px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .cta-actions { flex-direction: column; }

  /* Topbar right: hide on mobile (already hidden via display:none on .site-topbar) */
  .topbar-right { display: none; }
}

@media (max-width: 480px) {
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-badge { bottom: -10px; right: 10px; padding: 16px 20px; }
  .about-badge .big-num { font-size: 1.7rem; }
}

/* =============================================
   PAGE TITLE HERO — mini banner for archive / single
   ============================================= */
.page-title-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 52px;
  background: var(--primary);
  overflow: hidden;
  text-align: center;
}

.page-title-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.page-title-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,58,107,0.85) 0%, rgba(27,58,107,0.60) 100%);
  z-index: 0;
}

.page-title-hero .container { position: relative; z-index: 1; }

.page-title-hero .pth-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.page-title-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0 auto 14px;
  max-width: 720px;
}

.page-title-hero .pth-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.70);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.page-title-hero .pth-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
}
.page-title-hero .pth-breadcrumb a {
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s;
}
.page-title-hero .pth-breadcrumb a:hover { color: var(--white); }
.page-title-hero .pth-breadcrumb .sep { color: rgba(255,255,255,0.30); }

/* =============================================
   ARCHIVE BLOG — full listing page
   ============================================= */
.archive-main {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.archive-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 52px;
}

.archive-blog-grid .blog-card {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.archive-blog-grid .blog-card .blog-img-wrap {
  height: 220px;
}

.archive-no-posts {
  text-align: center;
  padding: 72px 0;
  color: var(--text-muted);
}

.archive-no-posts svg {
  color: var(--border);
  margin-bottom: 18px;
}

.archive-no-posts h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Posts navigation */
.posts-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 14px;
}

.posts-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border: 2px solid var(--primary);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.posts-nav a:hover {
  background: var(--primary);
  color: var(--white);
}

/* =============================================
   SINGLE POST PAGE
   ============================================= */
.single-post-wrap {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.single-post-content .post-featured-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 36px;
}

.post-featured-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d5aa0 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.4);
}

.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--primary);
  margin: 38px 0 14px;
  padding-top: 12px;
  border-top: 2px solid var(--border);
}

.entry-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin: 28px 0 10px;
}

.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin: 0 0 18px 22px; }
.entry-content li { margin-bottom: 8px; }

/* Sidebar */
.single-post-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.toc-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.toc-box h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--secondary);
}

.toc-box ul {
  list-style: none;
  padding: 0; margin: 0;
}

.toc-box li { margin-bottom: 10px; }

.toc-box a {
  font-size: 0.87rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding-left: 12px;
  border-left: 2px solid transparent;
  transition: var(--transition);
}

.toc-box a:hover {
  color: var(--primary);
  border-left-color: var(--secondary);
  padding-left: 16px;
}

/* CTA Banner at bottom of post */
.conversion-banner {
  margin-top: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, #2d5aa0 100%);
  border-radius: var(--radius-md);
  padding: 42px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.conversion-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.08;
}

.conversion-banner > * { position: relative; z-index: 1; }

.conversion-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

.conversion-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

/* Responsive: single */
@media (max-width: 1024px) {
  .single-post-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .archive-blog-grid { grid-template-columns: 1fr; }
  .page-title-hero { padding: calc(var(--header-h) + 32px) 0 40px; }
  .single-post-content .post-featured-img { height: 240px; }
}

/* Trust Banner Floating Card */
.hero-trust-banner {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 60px -15px rgba(15, 35, 71, 0.2);
  padding: 40px 32px;
  position: relative;
  z-index: 20;
  max-width: 1080px;
  width: calc(100% - 48px);
  margin: -100px auto 60px auto;
}

.hero-scroll-indicator {
  display: none !important;
}

.trust-banner-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-stat-item .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.trust-stat-item .accent-color {
  color: var(--accent);
  font-size: clamp(24px, 3vw, 32px);
}

.trust-stat-item .stat-label {
  font-size: 14px;
  color: #64748b;
  margin-top: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hero-trust-banner {
    margin: -60px auto 40px auto;
    padding: 32px 20px;
  }
  .trust-banner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }
}

/* ====================================================
   PREMIUM "POURQUOI CHOISIR TGS" SECTION (V2 - ULTRA UX)
   ==================================================== */
.why-choose-us-premium {
  position: relative;
  background-color: #fafbfc;
  overflow: hidden;
  font-family: var(--font-body);
  padding: 120px 0 0 0;
}

.section-padding-premium {
  position: relative;
  z-index: 1;
}

.why-header-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}

.premium-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.premium-title {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 24px;
  max-width: 1000px;
  letter-spacing: -0.02em;
  font-family: var(--font-title, var(--font-heading));
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.premium-intro {
  font-size: 20px;
  color: #475569;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Symmetrical Grid */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
  padding-bottom: 100px;
}

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

.engagement-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 30px rgba(27, 58, 107, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}

.engagement-card:nth-child(1) { border-top-color: var(--accent); }
.engagement-card:nth-child(2) { border-top-color: var(--primary); }
.engagement-card:nth-child(3) { border-top-color: var(--secondary); }

.engagement-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -10px rgba(27, 58, 107, 0.12);
}

.engagement-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.engagement-card:nth-child(1) .engagement-icon { background: rgba(41, 171, 226, 0.1); color: var(--accent); }
.engagement-card:nth-child(2) .engagement-icon { background: rgba(27, 58, 107, 0.08); color: var(--primary); }
.engagement-card:nth-child(3) .engagement-icon { background: rgba(227, 30, 36, 0.08); color: var(--secondary); }

.engagement-card:hover .engagement-icon {
  transform: scale(1.1) rotate(-5deg);
}

.engagement-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.engagement-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #5a6b82;
  margin: 0;
}

/* Full Width CTA Banner */
.conversion-banner-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: var(--primary-dark);
  padding: 60px 0;
}

.conversion-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.conversion-text {
  flex: 1;
  min-width: 300px;
}

.conversion-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.conversion-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  max-width: 500px;
}

.conversion-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;











/* =============================================
   13. PAGINATION PREMIUM
   ============================================= */
.posts-pagination-premium {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}
.posts-pagination-premium .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--off-white);
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(27, 58, 107, 0.05);
}
.posts-pagination-premium .page-numbers:hover {
  background: var(--white);
  color: var(--accent);
  border-color: rgba(41, 171, 226, 0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.posts-pagination-premium .page-numbers.current {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(41, 171, 226, 0.3);
}
.posts-pagination-premium .page-numbers.next,
.posts-pagination-premium .page-numbers.prev {
  width: auto;
  padding: 0 20px;
}




