/* ==========================================================================
   ADDY GROUP - LIGHT THEME WITH DARK BLUE-CYAN & NAVY LOGO PALETTE
   ========================================================================== */

:root {
  /* Colors - Light Theme & Dark Blue-Cyan / Navy from Logo Palette */
  --bg-primary: #f8fafc;
  --bg-secondary: #f0f4f8;
  --bg-surface: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --border-glass: rgba(203, 213, 225, 0.85);
  --border-active: #0284c7;

  /* Logo Palette Accents */
  --brand-navy: #161b55;          /* Deep navy from ADDY text & emblem */
  --brand-navy-dark: #0f1338;
  --brand-cyan-dark: #0369a1;     /* Darker blue-cyan / ocean steel */
  --brand-cyan: #0284c7;          /* Classic brand blue-cyan */
  --brand-cyan-light: #38bdf8;    /* Lighter cyan for subtle highlights */
  --brand-slate-cyan: #334e68;    /* Slate cyan from GROUP text */

  --accent-cyan-soft: rgba(2, 132, 199, 0.10);
  --accent-cyan-glow: rgba(2, 132, 199, 0.35);

  --text-main: #0f172a;
  --text-heading: #161b55;
  --text-muted: #475569;
  --text-dim: #64748b;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0284c7 0%, #0369a1 40%, #161b55 100%);
  --grad-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  --grad-glow: radial-gradient(circle, rgba(2, 132, 199, 0.2) 0%, rgba(22, 27, 85, 0.08) 50%, transparent 70%);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(22, 27, 85, 0.05);
  --shadow-card: 0 10px 30px -8px rgba(22, 27, 85, 0.08);
  --shadow-card-hover: 0 20px 40px -10px rgba(2, 132, 199, 0.18);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.4);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.65;
  background: radial-gradient(circle at 50% 0%, #f0f7fd 0%, #f8fafc 40%, #f0f4f8 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

.hidden-video {
  display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #f0f4f8;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-cyan-dark);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-navy);
}

/* ==========================================================================
   AMBIENT LIGHT BACKGROUND GLOWS
   ========================================================================== */

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  transition: transform 0.5s ease;
}

.glow-1 {
  width: 550px;
  height: 550px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(22, 27, 85, 0.1) 70%, transparent 100%);
}

.glow-2 {
  width: 650px;
  height: 650px;
  top: 40%;
  right: -150px;
  background: radial-gradient(circle, rgba(3, 105, 161, 0.2) 0%, rgba(2, 132, 199, 0.08) 70%, transparent 100%);
}

.glow-3 {
  width: 700px;
  height: 700px;
  bottom: -200px;
  left: 20%;
  background: radial-gradient(circle, rgba(22, 27, 85, 0.15) 0%, rgba(2, 132, 199, 0.08) 70%, transparent 100%);
}

/* ==========================================================================
   TYPOGRAPHY & ACCENTS
   ========================================================================== */

.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 45%, #161b55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.accent-text {
  color: var(--brand-cyan-dark);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(2, 132, 199, 0.10);
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: var(--brand-cyan-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag i {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  background: var(--grad-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.55);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f8fafc;
  border-color: var(--brand-cyan);
  color: var(--brand-cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 27, 85, 0.08);
}

.btn-large {
  padding: 15px 30px;
  font-size: 1rem;
}

.w-full {
  width: 100%;
}

.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-primary);
  filter: blur(8px);
  opacity: 0.45;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
  opacity: 0.85;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: all 0.3s ease;
}

.header-nav.scrolled {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 6px 25px rgba(22, 27, 85, 0.06);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  background: transparent;
  padding: 8px 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  cursor: pointer;
  text-align: center;
  line-height: 1.15;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-navy);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-cyan-dark);
  border-radius: 2px;
}

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

.nav-actions .btn-primary {
  padding: 7px 16px;
  font-size: 0.82rem;
  gap: 6px;
}

.nav-actions .btn-primary i {
  width: 14px;
  height: 14px;
}

.mobile-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--brand-cyan-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.mobile-toggle:hover,
.mobile-toggle.active {
  background: var(--brand-cyan-light);
  border-color: var(--brand-cyan);
  color: var(--brand-cyan-dark);
  transform: scale(1.05);
}

.mobile-toggle i,
.mobile-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-menu-drawer {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--border-glass);
  padding: 24px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 30px rgba(22, 27, 85, 0.1);
}

.mobile-menu-drawer.open {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mobile-link:hover {
  color: var(--brand-cyan-dark);
}

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-glass);
}

/* ==========================================================================
   STREAMLINED HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 24px 70px;
  z-index: 1;
}

.hero-container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: rgba(2, 132, 199, 0.10);
  border: 1px solid rgba(2, 132, 199, 0.3);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  margin-bottom: 20px;
}

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

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(2, 132, 199, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--brand-navy);
  line-height: 1.15;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.trust-pill i {
  width: 16px;
  height: 16px;
  color: var(--brand-cyan-dark);
}

.hero-phone-direct {
  margin-top: 14px;
}

.hero-direct-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(2, 132, 199, 0.05);
  border: 1px dashed rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.hero-direct-call strong {
  color: var(--brand-cyan-dark);
  font-weight: 800;
}

.hero-direct-call i {
  width: 15px;
  height: 15px;
  color: var(--brand-cyan-dark);
}

.hero-direct-call:hover {
  background: rgba(2, 132, 199, 0.12);
  border-color: var(--brand-cyan);
  transform: translateX(3px);
}

.hero-trust-mobile-trigger {
  display: none;
}

.trust-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.28);
  color: var(--brand-navy);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.08);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.trust-modal-btn:hover,
.trust-modal-btn:active {
  background: rgba(2, 132, 199, 0.08);
  border-color: var(--brand-cyan);
  color: var(--brand-cyan-dark);
  transform: translateY(-1px);
}

.trust-modal-btn i {
  width: 16px;
  height: 16px;
  color: var(--brand-cyan-dark);
}

.trust-modal-btn .trust-badge-pill {
  background: var(--grad-primary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-modal-btn .chevron-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.trust-modal-btn:hover .chevron-icon {
  transform: translateX(2px);
  color: var(--brand-cyan-dark);
}

/* Hero Right Image Visual Card */
.hero-right-col {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(22, 27, 85, 0.18), 0 0 0 1px rgba(203, 213, 225, 0.7);
  background: #ffffff;
}

.hero-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-card:hover .hero-main-img {
  transform: scale(1.03);
}

.hero-card-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grad-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon i {
  width: 20px;
  height: 20px;
}

.badge-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.badge-content span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Prominent Hero Scroll Down Indicator */
.hero-scroll-indicator {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px 0;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(2, 132, 199, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  z-index: 10;
}

.hero-scroll-indicator:hover {
  background: #ffffff;
  border-color: var(--brand-cyan);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.25), var(--shadow-glow);
  transform: translateY(-2px);
}

/* Scroll cue replacing the former satisfaction badge on the hero image */
.hero-scroll-indicator.hero-scroll-card {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  width: auto;
  margin: 0;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.hero-scroll-indicator.hero-scroll-card:hover {
  border-color: rgba(2, 132, 199, 0.55);
  transform: translateY(-2px);
}

.scroll-mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid var(--brand-cyan-dark);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
  box-shadow: inset 0 0 4px rgba(2, 132, 199, 0.15);
  flex-shrink: 0;
}

.scroll-wheel {
  width: 3.5px;
  height: 7px;
  background: var(--brand-cyan);
  border-radius: 2px;
  animation: scrollWheelAnim 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollWheelAnim {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.scroll-text-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.scroll-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.scroll-chevron-bounce {
  width: 18px;
  height: 18px;
  color: var(--brand-cyan-dark);
  animation: chevronBounceAnim 1.8s ease-in-out infinite;
}

@keyframes chevronBounceAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ==========================================================================
   SCROLL-DRIVEN THREE.JS / FRAME ANIMATION SECTION
   ========================================================================== */

.scroll-experience-section {
  position: relative;
  width: 100%;
  background: #0d1326;
}

.scroll-track {
  height: 280vh;
  position: relative;
  pointer-events: none;
}

.sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.three-canvas-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.scrub-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: filter 0.3s ease;
}

.video-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(13, 19, 38, 0.6) 80%, rgba(13, 19, 38, 0.94) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Floating Interactive Story Cards */
.story-overlay-container {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 620px;
  z-index: 5;
  pointer-events: none;
}

.story-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 24, 53, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(2, 132, 199, 0.35);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.story-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-cyan-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.story-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.story-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #f8fafc;
}

.meta-pill i {
  width: 14px;
  height: 14px;
  color: var(--brand-cyan-light);
}

/* Video Timeline Bar */
.video-timeline-control {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 720px;
  z-index: 5;
  background: rgba(16, 24, 53, 0.8);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-bar-bg {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}

.timeline-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-primary);
  border-radius: 3px;
  box-shadow: 0 0 10px var(--brand-cyan);
  transition: width 0.1s linear;
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */

.section {
  padding: 90px 24px;
  position: relative;
  z-index: 1;
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 50px;
}

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

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--brand-navy);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
}

.service-card {
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(2, 132, 199, 0.10);
  border: 1px solid rgba(2, 132, 199, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan-dark);
  margin-bottom: 24px;
}

.service-icon-box i {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--brand-navy);
}

.service-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-main);
}

.service-checklist i {
  width: 16px;
  height: 16px;
  color: var(--brand-cyan-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.service-cta:hover {
  background: rgba(2, 132, 199, 0.10);
  border-color: var(--brand-cyan);
  color: var(--brand-cyan-dark);
  padding-right: 14px;
}

.service-cta i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-cta:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   SECTEURS SECTION
   ========================================================================== */

.secteurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.secteur-card {
  padding: 32px 24px;
}

.secteur-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-cyan-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.secteur-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.secteur-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   ESTIMATOR / SIMULATEUR
   ========================================================================== */

.estimator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  padding: 56px 48px;
}

.estimator-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--brand-navy);
}

.estimator-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.estimator-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.highlight-point i {
  width: 18px;
  height: 18px;
  color: var(--brand-cyan-dark);
  flex-shrink: 0;
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.control-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.type-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.type-btn, .freq-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.type-btn i {
  width: 20px;
  height: 20px;
}

.type-btn:hover, .freq-btn:hover {
  background: #f8fafc;
  border-color: var(--brand-cyan);
  color: var(--brand-navy);
}

.type-btn.active, .freq-btn.active {
  background: rgba(2, 132, 199, 0.12);
  border-color: var(--brand-cyan-dark);
  color: var(--brand-cyan-dark);
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.25);
}

.frequency-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.freq-btn {
  padding: 12px 14px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-value-badge {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-cyan-dark);
  background: rgba(2, 132, 199, 0.12);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-cyan-dark);
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.6);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.estimator-result-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(22, 27, 85, 0.05) 100%);
  border: 1px solid rgba(2, 132, 199, 0.35);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-top: 10px;
}

.result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}

.result-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.price-from {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-amount {
  font-size: 2.3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--brand-navy);
}

.price-period {
  font-size: 0.85rem;
  color: var(--brand-cyan-dark);
  font-weight: 700;
}

/* ==========================================================================
   STATS & PILLARS (POURQUOI NOUS)
   ========================================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--brand-cyan-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.pillar-card {
  padding: 28px 24px;
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.10);
  color: var(--brand-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--brand-navy);
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #f59e0b;
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testi-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand-navy);
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--brand-navy);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-cyan-dark);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active {
  border-color: var(--brand-cyan);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
}

.contact-info-card h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--brand-navy);
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

.info-blocks-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.10);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--brand-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  width: 20px;
  height: 20px;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 2px;
}

.info-link, .info-text, .info-address {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  font-style: normal;
}

.info-link:hover {
  color: var(--brand-cyan-dark);
}

.contact-card-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
}

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-cyan-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.emergency-badge i {
  width: 18px;
  height: 18px;
}

/* Contact Form */
.contact-form-card {
  padding: 44px 38px;
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--brand-navy);
}

.form-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.required {
  color: #ef4444;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-cyan-dark);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.form-select {
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
}

.form-status-alert {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
}

.form-status-alert.success {
  display: block;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.4);
  color: var(--brand-navy);
}

.form-status-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #991b1b;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-glass);
  padding: 80px 24px 30px;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-col .footer-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 20px 0;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.social-btn:hover {
  color: var(--brand-cyan-dark);
  background: rgba(2, 132, 199, 0.10);
  border-color: var(--brand-cyan);
}

.social-btn i {
  width: 18px;
  height: 18px;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--brand-navy);
}

.footer-nav, .footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--brand-cyan-dark);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-list i {
  width: 16px;
  height: 16px;
  color: var(--brand-cyan-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom .credits a {
  color: var(--brand-cyan-dark);
  font-weight: 600;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--brand-cyan-dark);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(22, 27, 85, 0.12), var(--shadow-glow);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   TRUST & ENGAGEMENT POPUP MODAL (BOTTOM SHEET / DIALOG)
   ========================================================================== */

.trust-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.trust-modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 24px 24px 0 0;
  padding: 24px 20px 28px;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 88vh;
  overflow-y: auto;
}

.trust-modal-backdrop.open .trust-modal-dialog {
  transform: translateY(0);
}

@media (min-width: 769px) {
  .trust-modal-backdrop {
    align-items: center;
    padding: 20px;
  }
  .trust-modal-dialog {
    border-radius: var(--radius-lg);
    padding: 30px;
    transform: scale(0.95) translateY(20px);
  }
  .trust-modal-backdrop.open .trust-modal-dialog {
    transform: scale(1) translateY(0);
  }
}

.trust-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.trust-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.12);
  color: var(--brand-cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-badge-icon i {
  width: 22px;
  height: 22px;
}

.trust-modal-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 2px;
}

.trust-modal-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modal-close-btn {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--brand-navy);
}

.modal-close-btn i {
  width: 18px;
  height: 18px;
}

.trust-modal-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.trust-modal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.trust-modal-item:hover {
  background: #ffffff;
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.06);
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon i {
  width: 18px;
  height: 18px;
}

.icon-clock {
  background: rgba(2, 132, 199, 0.12);
  color: var(--brand-cyan-dark);
}

.icon-shield {
  background: rgba(30, 58, 138, 0.12);
  color: var(--brand-navy);
}

.icon-leaf {
  background: rgba(16, 185, 129, 0.12);
  color: var(--brand-emerald);
}

.trust-item-content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 3px;
}

.trust-item-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.trust-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-phone-btn {
  padding: 12px;
  font-size: 0.9rem;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE BREAKPOINTS
   ========================================================================== */

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .hero-container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-left-col { align-items: center; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-scroll-indicator { margin: 0 auto 24px auto; }
  .hero-trust-compact { justify-content: center; }
  .hero-phone-direct { display: flex; justify-content: center; }
  .hero-main-img { height: 300px; }
  .estimator-wrapper { grid-template-columns: 1fr; gap: 32px; padding: 36px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Minimal & Organized Hero Section */
  .hero-section {
    padding: 95px 0 28px;
  }
  .hero-container {
    gap: 24px;
  }
  .hero-tag {
    font-size: 0.74rem;
    padding: 6px 12px;
    letter-spacing: 0.01em;
  }
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }
  .hero-cta-group {
    margin-bottom: 16px;
    width: 100%;
  }
  .hero-cta-group .btn-secondary {
    display: none; /* Delete 'Voir la vidéo 3D' on mobile */
  }
  .hero-cta-group .btn-primary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
  }
  .hero-scroll-indicator {
    margin: 0 auto 16px auto;
    padding: 8px 16px;
    gap: 8px;
  }
  .scroll-mouse-icon {
    width: 18px;
    height: 28px;
    padding-top: 3px;
  }
  .scroll-wheel {
    width: 3px;
    height: 5px;
  }
  .scroll-label {
    font-size: 0.75rem;
  }
  .scroll-chevron-bounce {
    width: 15px;
    height: 15px;
  }
  .hero-trust-compact {
    display: none;
  }
  .hero-phone-direct {
    display: none;
  }
  .hero-trust-mobile-trigger {
    display: flex;
    justify-content: center;
    margin-top: 4px;
  }
  .hero-main-img {
    height: 220px;
  }
  .hero-card-badge {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 10px 14px;
    gap: 10px;
  }

  .hero-scroll-indicator.hero-scroll-card {
    bottom: 12px;
    left: 12px;
    right: 12px;
    margin: 0;
    padding: 9px 14px;
  }
  .badge-content strong {
    font-size: 0.84rem;
  }
  .badge-content span {
    font-size: 0.72rem;
  }

  .hero-scroll-indicator {
    margin-top: 22px;
    padding: 8px 18px;
    gap: 8px;
  }
  .scroll-mouse-icon {
    width: 20px;
    height: 32px;
    padding-top: 4px;
  }
  .scroll-wheel {
    width: 3px;
    height: 6px;
  }
  .scroll-label {
    font-size: 0.75rem;
  }
  .scroll-chevron-bounce {
    width: 15px;
    height: 15px;
  }

  .story-card { padding: 20px 24px; }
  .story-card h3 { font-size: 1.2rem; }
  .type-buttons-grid { grid-template-columns: repeat(2, 1fr); }
  .frequency-buttons-grid { grid-template-columns: 1fr; }
  .estimator-result-card { flex-direction: column; gap: 16px; align-items: stretch; text-align: center; }
  .result-price-wrap { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
