/* DESIGN SYSTEM & CUSTOM PROPERTIES */
:root {
  --primary: #0E3A20;
  --primary-light: #165631;
  --primary-rgb: 14, 58, 32;
  --secondary: #10B981;
  --secondary-light: #ECFDF5;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --neutral-dark: #1E293B;
  --neutral-light: #F8FAF7;
  --neutral-bg: #F0F4F1;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-500: #64748B;
  --gray-700: #334155;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(14, 58, 32, 0.08), 0 8px 16px -8px rgba(14, 58, 32, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(14, 58, 32, 0.12), 0 10px 20px -10px rgba(14, 58, 32, 0.08);
  --shadow-premium: 0 30px 60px -15px rgba(14, 58, 32, 0.18);

  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Glassmorphism effects */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(14, 58, 32, 0.08);
  --glass-blur: blur(16px);
  --glass-blur-heavy: blur(24px);
}

/* BASE STYLES & RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background-color: var(--neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  font-size: 1rem;
  color: var(--gray-500);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

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

/* Custom Selection Color */
::selection {
  background-color: var(--secondary);
  color: var(--white);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--neutral-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
  border: 2px solid var(--neutral-light);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 7rem 0;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  .section-padding {
    padding: 4.5rem 0;
  }
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--secondary-light);
  color: var(--primary-light);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-light);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* NAVIGATION BAR */
header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1120px;
  z-index: 1000;
  transition: var(--transition);
  padding: 0.6rem 1.8rem;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(14, 58, 32, 0.08);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
}

header.scrolled {
  top: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-xl);
  padding: 0.45rem 1.8rem;
  border-color: rgba(14, 58, 32, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  box-shadow: var(--shadow-sm);
  object-fit: contain;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-700);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.phone-cta:hover {
  color: var(--primary-light);
  transform: scale(1.02);
}

.phone-cta svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.2;
}

.btn-nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

/* Menu Hamburger for mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-toggle.active span {
  background-color: var(--primary);
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
  header {
    width: calc(100% - 2rem);
    padding: 0.55rem 1.5rem;
  }

  header.scrolled {
    padding: 0.45rem 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    z-index: 1005;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--primary);
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem 0;
  background-image: linear-gradient(
      to right,
      rgba(14, 58, 32, 0.93) 0%,
      rgba(14, 58, 32, 0.8) 50%,
      rgba(14, 58, 32, 0.4) 100%
    ),
    url('https://images.unsplash.com/photo-1611764837904-aaab5f6ab8af?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

/* Diagonal separator effect */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--neutral-light);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--secondary);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero h1 {
  font-size: clamp(1.8rem, 7.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--accent);
  background: linear-gradient(to right, var(--accent), #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatars {
  display: flex;
  align-items: center;
  margin-right: 0.25rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  margin-left: -12px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
}

.review-avatar:first-child {
  margin-left: 0;
}

.review-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.review-text strong {
  color: var(--white);
}

.hero-ill {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card-float {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
  position: relative;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.float-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.float-item:last-child {
  margin-bottom: 0;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.float-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.float-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.float-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-ill {
    display: none;
  }
  .hero {
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: auto;
  }
  .hero-badge-container {
    justify-content: center;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-reviews {
    justify-content: center;
  }
}

/* SOCIAL PROOF & STATS */
.stats {
  background-color: var(--white);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 1100px;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  border-right: 1px solid var(--gray-200);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-number span {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .stat-card {
    border-right: none;
  }
  .stat-card:nth-child(1), .stat-card:nth-child(2) {
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 1.5rem;
  }
}

/* INTERACTIVE BEFORE / AFTER SLIDER */
.interactive-showcase {
  background-color: var(--neutral-light);
}

.showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.showcase-content p {
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 2.5;
}

/* Slider styling */
.slider-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  user-select: none;
}

.image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.before-image {
  width: 50%;
  border-right: 2px solid var(--white);
  z-index: 2;
}

.slider-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--white);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: var(--accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}

.slider-button svg {
  width: 22px;
  height: 22px;
}

.badge-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(14, 58, 32, 0.85);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  z-index: 6;
  pointer-events: none;
}

.badge-before {
  left: 1.5rem;
}

.badge-after {
  right: 1.5rem;
}

@media (max-width: 991px) {
  .showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .before-after-slider {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .before-after-slider {
    height: 220px;
  }
  .slider-card {
    padding: 0.75rem;
  }
  .badge-label {
    bottom: 0.8rem;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}

/* SERVICES SECTION */
.services {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--neutral-light);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-color, var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background-color: var(--white);
  border-color: var(--card-color, rgba(16, 185, 129, 0.15));
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-color, var(--primary));
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--card-color, var(--primary));
  color: var(--white);
  transform: scale(1.05);
  border-color: var(--card-color, var(--primary));
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--card-color, var(--primary-light));
}

.service-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  transition: var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* INTERACTIVE MULTI-STEP LEAD FORM WIZARD */
.offer-section {
  position: relative;
  background-image: linear-gradient(
      to bottom,
      rgba(14, 58, 32, 0.95),
      rgba(14, 58, 32, 0.98)
    ),
    url('https://images.unsplash.com/photo-1596086221164-c8a4cac55e27?q=80&w=1548&auto=format&fit=crop&ixlib=rb-4.1.0');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.offer-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.offer-wrapper .section-title {
  color: var(--white);
}

.offer-wrapper .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.lead-wizard-card {
  background: var(--white);
  color: var(--neutral-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

/* Progress bar */
.wizard-progress-bar-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--gray-100);
}

.wizard-progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(to right, var(--secondary), var(--accent));
  transition: var(--transition);
}

.wizard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1.25rem;
}

.wizard-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.wizard-steps-indicator {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
}

.wizard-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.wizard-step.active {
  display: block;
}

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

@keyframes ping {
  0% { transform: scale(0.95); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Skip-to-content link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* Cards services input step 1 */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-select-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-select-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-select-card:hover {
  border-color: var(--primary-light);
  background-color: var(--neutral-light);
}

.service-select-card.selected {
  border-color: var(--secondary);
  background-color: var(--secondary-light);
}

.service-select-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.service-select-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

/* Step 2 location and text */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--neutral-dark);
  background-color: var(--neutral-light);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Step 3 Personal data */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Navigation button layout */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.no-spam-wizard {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* Success State */
.wizard-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  animation: fadeIn 0.5s ease;
}

.wizard-success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-light);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 3rem;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.15);
}

.wizard-success h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .service-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .data-grid {
    grid-template-columns: 1fr;
  }
  .lead-wizard-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .service-select-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .service-select-card {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: left;
  }
  .service-select-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}

/* TESTIMONIALS SECTION */
.testimonials {
  background-color: var(--neutral-light);
}

.testimonials-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
}

.testimonial-bubble {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--gray-100);
}

.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 3rem;
  width: 30px;
  height: 30px;
  background: var(--white);
  transform: rotate(45deg);
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
}

.testi-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  stroke: none;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-left: 1rem;
}

.testimonial-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--white);
}

.testimonial-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}

.testimonial-author-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.slider-nav-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .testimonial-bubble {
    padding: 2rem 1.5rem;
  }
}

/* FAQ ACCORDION */
.faq {
  background-color: var(--white);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--neutral-light);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.accordion-header {
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  padding-right: 1.5rem;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.accordion-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.8rem;
}

.accordion-content p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* Active State Class */
.accordion-item.active {
  border-color: var(--primary-light);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: var(--white);
}

/* INTERVENTION ZONE MAP ILLUSTRATION */
.zone-section {
  background-color: var(--neutral-light);
  position: relative;
}

.zone-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.zone-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.zone-pill {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.zone-pill::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
}

.vector-map-container {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .zone-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* FOOTER */
footer {
  background-color: #05140D;
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-links h5, .footer-contact h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.legal-trigger {
  text-decoration: underline;
  cursor: pointer;
}

.legal-trigger:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* MODAL (MENTIONS LEGALES) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(5, 20, 13, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--white);
  color: var(--neutral-dark);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-height: 85vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: var(--primary);
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0.5rem;
}

.modal-content p {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

/* STICKY CONTACT WIDGETS */
.sticky-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 999;
}

.sticky-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.sticky-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.sticky-phone {
  background-color: var(--primary);
  border: 2px solid var(--white);
}

.sticky-phone svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.2;
}

.sticky-whatsapp {
  background-color: #25D366;
}

.sticky-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
  stroke: none;
}

@media (max-width: 640px) {
  .sticky-contact {
    display: none;
  }
}

/* SERVICE CARDS THEMATIC COLORS */
.service-card:nth-child(1) { --card-color: #10B981; }
.service-card:nth-child(2) { --card-color: #059669; }
.service-card:nth-child(3) { --card-color: #F59E0B; }
.service-card:nth-child(4) { --card-color: #D97706; }
.service-card:nth-child(5) { --card-color: #84CC16; }
.service-card:nth-child(6) { --card-color: #06B6D4; }
.service-card:nth-child(7) { --card-color: #6366F1; }

/* BENTO GRID FOR SERVICES (DESKTOP) */
@media (min-width: 769px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
  }

  .service-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .service-card:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
    justify-content: center;
  }

  .service-card:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card:nth-child(7) {
    grid-column: span 3;
    grid-row: span 1;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .service-card:nth-child(7) .service-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* MOBILE STICKY QUICK ACTIONS BAR */
.mobile-actions-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid rgba(14, 58, 32, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  display: none;
  padding: 0.75rem 1rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.mobile-actions-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 0.75rem;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.mobile-action-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-btn-phone {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--gray-200);
}

.mobile-btn-phone svg {
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.2;
}

.mobile-btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.mobile-btn-whatsapp svg {
  fill: var(--white);
}

.mobile-btn-devis {
  background-color: var(--accent);
  color: var(--white);
  flex-direction: row;
  gap: 0.5rem;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.mobile-btn-devis svg {
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}

.mobile-btn-devis:hover {
  background-color: var(--accent-hover);
}

@media (max-width: 768px) {
  .mobile-actions-bar {
    display: block;
  }
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px));
  }
}

/* Focus visible accessibility */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  header, .sticky-contact, .mobile-actions-bar, .modal, #cookieBanner {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  a {
    text-decoration: underline;
  }
}
