/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #B87A5A;
  --blue-dark: #8D5A38;
  --blue-light: #F5EDE8;
  --blue-mid: #E8D5C8;
  --navy: #1D3461;
  --text: #1A2332;
  --text-muted: #5A6A82;
  --border: #E8E0D8;
  --white: #ffffff;
  --off-white: #F9F7F5;
  --orange: #B87A5A;
  --green: #10B981;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(184,122,90,0.08);
  --shadow-lg: 0 16px 48px rgba(184,122,90,0.14);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,122,90,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,122,90,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, #D4956A, #9A5C3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 12px 0 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.section-tag--light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ===== NAVIGATION ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 0;
}

.nav-wrapper.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  transition: var(--transition);
}
.nav-wrapper.scrolled .logo { color: var(--navy); }
.logo-media { color: var(--blue); }
.logo--footer { color: var(--navy); }
.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-wrapper.scrolled .nav-links a { color: var(--text-muted); }
.nav-wrapper.scrolled .nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(184,122,90,0.3);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-wrapper.scrolled .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-link {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-cta {
  margin-top: 12px;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  border-bottom: none;
}
.mobile-sub {
  padding-left: 24px !important;
  font-size: 13px !important;
  opacity: 0.85;
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { transition: transform 0.2s ease; flex-shrink: 0; margin-top: 1px; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  min-width: 272px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  z-index: 200;
  border: 1px solid var(--border);
  pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted) !important;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--blue) !important; background: var(--blue-light); }
.nav-dropdown-menu a.nav-active { color: var(--blue) !important; background: var(--blue-light); font-weight: 600; }

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail { padding: 96px 0; background: var(--white); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-detail-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.service-detail-inner h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}
.service-detail-inner p {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.78;
  margin-bottom: 14px;
}
.service-checklist {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.service-checklist li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5L4 7.5L8 2.5' stroke='%23B87A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
.service-detail-side {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1.5px solid var(--border);
  position: sticky;
  top: 100px;
}
.service-stat-block { display: flex; flex-direction: column; gap: 28px; }
.service-stat { border-bottom: 1px solid var(--border); padding-bottom: 28px; }
.service-stat:last-child { border-bottom: none; padding-bottom: 0; }
.service-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.service-stat-label { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.service-stat-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.service-outcomes { padding: 80px 0; background: var(--off-white); }
.service-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-outcome-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.service-outcome-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-outcome-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.service-outcome-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-outcome-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(145deg, rgba(12,24,50,0.88) 0%, rgba(19,32,64,0.82) 40%, rgba(29,52,97,0.78) 70%, rgba(36,61,117,0.72) 100%),
    url('Images/hvac-1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Images/NexturoPresentation.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 24, 50, 0.92) 0%,
    rgba(19, 32, 64, 0.82) 50%,
    rgba(27, 45, 95, 0.65) 100%
  );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184,122,90,0.2);
  border: 1px solid rgba(184,122,90,0.4);
  color: #93C5FD;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.05); }
}

.hero-headline {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-headline .gradient-text {
  background: linear-gradient(135deg, #60A5FA, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 6px;
  margin-bottom: 36px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.industry-sep {
  color: rgba(255,255,255,0.25);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.hero-services {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.hero-services-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  background: rgba(184,122,90,0.15);
  border: 1px solid rgba(184,122,90,0.35);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  animation: chipSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-chip:hover {
  background: rgba(184,122,90,0.3);
  border-color: rgba(184,122,90,0.6);
  color: #fff;
}

.hero-chip:nth-child(1) { animation-delay: 0.5s; }
.hero-chip:nth-child(2) { animation-delay: 0.65s; }
.hero-chip:nth-child(3) { animation-delay: 0.8s; }
.hero-chip:nth-child(4) { animation-delay: 0.95s; }
.hero-chip:nth-child(5) { animation-delay: 1.1s; }
.hero-chip:nth-child(6) { animation-delay: 1.25s; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  max-width: fit-content;
}

.stat { text-align: center; padding: 0 24px; }
.stat-num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-graphic {
  position: absolute;
  right: max(40px, calc(50% - 560px));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.graphic-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 220px;
  animation: floatCard 6s ease-in-out infinite;
}
.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 2s; }
.card-3 { animation-delay: 4s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.card-text { display: flex; flex-direction: column; }
.card-text strong { font-size: 18px; font-weight: 700; color: var(--white); }
.card-text span { font-size: 12px; color: rgba(255,255,255,0.6); }


/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.service-card-link:hover { gap: 10px; }
.service-card--featured {
  background: linear-gradient(145deg, var(--blue-light), var(--white));
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.service-card--featured:hover {
  box-shadow: 0 20px 60px rgba(184,122,90,0.18);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.service-card--featured .service-icon {
  background: rgba(184,122,90,0.12);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.service-link:hover { gap: 6px; opacity: 0.8; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-content .section-tag { margin-bottom: 12px; }
.why-us-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.why-us-intro {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon-svg {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.coverage-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.coverage-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 20px;
}
.coverage-header svg { color: var(--blue); flex-shrink: 0; }
.map-placeholder {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.skyline-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
}
.coverage-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== RESULTS ===== */
.results {
  padding: 100px 0;
  background: linear-gradient(145deg, #0C1832 0%, #132040 50%, #1D3461 100%);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.result-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.result-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.result-badge {
  display: inline-block;
  background: rgba(184,122,90,0.3);
  color: #93C5FD;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.result-company {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.result-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.result-num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.result-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.result-quote {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 14px;
}
.result-author {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.process-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  margin-top: 28px;
  flex-shrink: 0;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--blue-mid);
}

.step-number {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 12px;
}

.step-content h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-content .section-tag { margin-bottom: 12px; }
.contact-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-content > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.perk {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-phone, .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.contact-phone:hover, .contact-email:hover { opacity: 0.8; }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input, .form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(184,122,90,0.12);
}
.form-group input::placeholder { color: #B0BCCC; }

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.fs-field-error, .fs-form-error {
  display: block;
  font-size: 12px;
  color: #EF4444;
  margin-top: 4px;
}
.fs-form-error:not(:empty) { margin-bottom: 10px; }
[data-fs-field][aria-invalid="true"] {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
}
.form-success h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
}

.footer-brand .logo--footer {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--blue);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--off-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card--featured {
  background: linear-gradient(145deg, var(--blue-light), var(--white));
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured:hover {
  box-shadow: 0 20px 60px rgba(184,122,90,0.18);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.pricing-features .feature-includes {
  color: var(--blue);
  font-weight: 600;
}
.pricing-features .feature-includes::before {
  content: '↳';
  color: var(--blue);
}
.feature-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2px;
}

/* ===== ADD-ONS / À LA CARTE ===== */
.addons-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.addons-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}
.addon-card:hover {
  border-color: rgba(184,122,90,0.35);
  box-shadow: 0 4px 16px rgba(184,122,90,0.07);
}

.addon-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.addon-price {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.addon-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.addons-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

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

/* ===== SERVICES PAGE BANNER ===== */
.services-banner {
  width: 100%;
  overflow: hidden;
  max-height: 440px;
}
.services-banner-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SIMPLE CTA ===== */
.simple-cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}
.simple-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.simple-cta h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.simple-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-perks {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.simple-cta .perk {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 500;
}

/* ===== OUR WORK ===== */
.our-work-section {
  padding: 100px 0;
  background: var(--white);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.work-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.work-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.work-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.work-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.work-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.work-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 100px;
  padding: 4px 12px;
}
.work-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.work-intro p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .services { padding: 72px 0; }
  .why-us  { padding: 72px 0; }
  .results { padding: 72px 0; }
  .process { padding: 72px 0; }
  .pricing { padding: 72px 0; }
  .contact { padding: 72px 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }

  .hero-graphic { display: none; }

  .why-us-inner   { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner  { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .service-detail-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-side { position: static; }
  .service-outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  /* Section padding */
  .services { padding: 60px 0; }
  .why-us   { padding: 60px 0; }
  .results  { padding: 60px 0; }
  .process  { padding: 60px 0; }
  .pricing  { padding: 60px 0; }
  .contact  { padding: 60px 0; }
  .footer   { padding-top: 52px; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-header p { font-size: 15px; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 16px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }

  .hero-stats {
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
    max-width: 100%;
  }
  .stat { padding: 12px 0; }
  .stat-divider { width: 100%; height: 1px; }
  .stat-num { font-size: 1.5rem; }

/* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card  { padding: 24px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 24px 24px; }

  /* Add-ons */
  .addons-grid { grid-template-columns: repeat(2, 1fr); }

  /* Our Work */
  .work-grid { grid-template-columns: 1fr; }
  .our-work-section { padding: 60px 0; }

  /* Service detail pages */
  .service-detail { padding: 60px 0; }
  .service-outcomes { padding: 56px 0; }
  .service-outcomes-grid { grid-template-columns: 1fr; }
  .service-detail-side { padding: 28px 24px; }

  /* Simple CTA */
  .simple-cta { padding: 60px 0; }
  .cta-perks { flex-direction: column; align-items: center; gap: 10px; }

  /* Results */
  .results-grid { grid-template-columns: 1fr; }
  .result-card  { padding: 24px; }
  .result-metrics { flex-direction: row; gap: 24px; }

  /* Process */
  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .process-connector { display: none; }
  .process-step { text-align: left; padding: 0; display: flex; gap: 16px; align-items: flex-start; }
  .step-number { font-size: 1.75rem; flex-shrink: 0; margin-bottom: 0; }

  /* Contact */
  .contact-inner { gap: 36px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal { justify-content: center; }

  /* Prevent iOS tap highlight on buttons */
  .btn { -webkit-tap-highlight-color: transparent; }
}

/* --- Small mobile (≤480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 88px 0 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Prevent iOS from zooming into inputs (requires 16px font) */
  .form-group input,
  .form-group select { font-size: 16px; }

  /* Nav CTA full-width on very small screens */
  .mobile-cta { font-size: 15px; }

  /* Services & results single column already — reduce padding */
  .service-card { padding: 20px; }
  .result-card  { padding: 20px; }
  .result-metrics { flex-direction: column; gap: 12px; }

  /* Coverage cities */
  .coverage-cities { gap: 6px; }
  .coverage-cities span { font-size: 11px; padding: 4px 10px; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 20px 16px; }

  /* Touch targets: ensure interactive elements ≥ 44px tall */
  .nav-cta,
  .btn,
  .mobile-link,
  .contact-phone,
  .contact-email { min-height: 44px; }

  /* Process step compact */
  .step-number { font-size: 1.5rem; }

  /* Add-ons */
  .addons-grid { grid-template-columns: 1fr; }
}

/* Footer logo image */
.footer-logo-img {
  height: 320px;
  width: auto;
  display: block;
}

/* ===== FORM VALIDATION ===== */
.has-error input,
.has-error select {
  border-color: #dc2626 !important;
  background-color: #fff8f8;
}
.field-error-msg {
  display: none;
  color: #dc2626;
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
}
.has-error .field-error-msg {
  display: block;
}
