/* ===== SKYMARK SOLUTIONS INC. — STYLES GLOBAL ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ===== VARIABLES ===== */
:root {
  --primary: #0077B6;
  --primary-light: #0096D6;
  --primary-dark: #005F8E;
  --secondary: #90E0EF;
  --accent: #00B4D8;
  --bg-dark: #0A0E1A;
  --bg-card: #111827;
  --bg-card2: #1a2235;
  --bg-nav: rgba(10,14,26,0.95);
  --text-primary: #F0F4F8;
  --text-secondary: #9AA5B4;
  --text-muted: #637080;
  --border: rgba(144,224,239,0.12);
  --border-glow: rgba(0,119,182,0.4);
  --gradient-hero: linear-gradient(135deg, #0A0E1A 0%, #0d1b2e 50%, #0A0E1A 100%);
  --gradient-primary: linear-gradient(135deg, #0077B6, #00B4D8);
  --gradient-card: linear-gradient(145deg, #111827, #1a2235);
  --shadow-glow: 0 0 40px rgba(0,119,182,0.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Syne', sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--text-secondary); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo span { color: var(--secondary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: var(--space-md);
  gap: var(--space-md);
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--primary-light); }
.nav-mobile .nav-cta-mobile {
  background: var(--gradient-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-top: var(--space-sm);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,119,182,0.4); }
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-outline:hover { background: rgba(144,224,239,0.1); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== CARDS ===== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,119,182,0.15);
  color: var(--secondary);
  border: 1px solid rgba(0,119,182,0.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-header .badge { margin-bottom: var(--space-md); }
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,119,182,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,180,216,0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(5deg) scale(1.05); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { }
.hero-badge { margin-bottom: var(--space-lg); }
.hero-title { margin-bottom: var(--space-lg); }
.hero-title .gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.1rem; margin-bottom: var(--space-xl); color: var(--text-secondary); max-width: 520px; }
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}
.stat-item { }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.hero-image-float {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

/* ===== SERVICES CARDS ===== */
.service-icon {
  width: 56px; height: 56px;
  background: rgba(0,119,182,0.15);
  border: 1px solid rgba(0,119,182,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition);
}
.card:hover .service-icon {
  background: rgba(0,119,182,0.3);
  box-shadow: 0 0 20px rgba(0,119,182,0.3);
}
.service-icon svg { color: var(--secondary); }
.service-card h3 { margin-bottom: var(--space-sm); }
.service-card p { font-size: 0.9rem; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: var(--space-md);
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 10px; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.pricing-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.pricing-card.featured::before {
  content: 'POPULAIRE';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: var(--space-md) 0;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-features { margin: var(--space-lg) 0; }
.price-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.price-features li:last-child { border-bottom: none; }
.price-features li .check { color: var(--secondary); flex-shrink: 0; }

/* ===== SIMULATOR ===== */
.simulator {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}
.simulator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
.form-group { margin-bottom: var(--space-lg); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group select,
.form-group input {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group select option { background: var(--bg-card); }
.simulator-result {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-xl);
  text-align: center;
}
.result-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--space-md) 0;
}
.result-breakdown {
  text-align: left;
  margin-top: var(--space-lg);
}
.result-breakdown .line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.result-breakdown .line strong { color: var(--text-primary); }
.result-breakdown .line.total {
  font-weight: 700;
  font-size: 1rem;
  border-bottom: none;
  padding-top: var(--space-md);
  color: var(--text-primary);
}

/* ===== TALLY FORM ===== */
.tally-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  overflow: hidden;
}

/* ===== CONTACT PAGE LAYOUT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

/* ===== REALIZATIONS ===== */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.realisation-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.realisation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-glow);
}
.realisation-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.realisation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.realisation-card:hover .realisation-img img { transform: scale(1.05); }
.realisation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,119,182,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.realisation-card:hover .realisation-overlay { opacity: 1; }
.realisation-body { padding: var(--space-lg); }
.realisation-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

/* ===== VILLES HUB ===== */
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.state-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: all var(--transition);
}
.state-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.state-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.state-card .cities-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.state-cities { display: flex; flex-direction: column; gap: 4px; }
.state-cities a {
  font-size: 0.8rem;
  color: var(--secondary);
  transition: color var(--transition);
}
.state-cities a:hover { color: var(--primary-light); }

/* ===== VILLE PAGE ===== */
.ville-hero {
  background: var(--gradient-hero);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.ville-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,119,182,0.2) 0%, transparent 70%);
}
.ville-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.ville-sidebar {
  position: sticky;
  top: 100px;
}
.nearby-cities { }
.nearby-cities h3 {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}
.nearby-cities ul { display: flex; flex-direction: column; gap: 8px; }
.nearby-cities a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--secondary);
  transition: color var(--transition);
}
.nearby-cities a:hover { color: var(--text-primary); }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--secondary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-bottom: var(--space-lg);
  font-size: 0.95rem;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-icon { transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
}
.process-step { text-align: center; }
.step-number {
  width: 56px; height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.stars { color: #FFB800; margin-bottom: var(--space-md); letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; margin-bottom: var(--space-md); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-sm); }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-city { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, rgba(0,119,182,0.15), rgba(0,180,216,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: var(--space-md); }
.cta-section p { margin-bottom: var(--space-xl); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #060912;
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
}
.footer-desc { font-size: 0.9rem; max-width: 300px; }
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== STICKY FOOTER CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--gradient-primary);
  padding: 14px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  box-shadow: 0 -4px 24px rgba(0,119,182,0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { color: #fff; font-size: 0.9rem; margin: 0; }
.sticky-cta .btn-white {
  background: #fff;
  color: var(--primary-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.sticky-close {
  position: absolute;
  right: var(--space-md);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: var(--secondary); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb span { color: var(--text-muted); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,119,182,0.2) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }

/* ===== FEATURE LIST ===== */
.feature-list { display: flex; flex-direction: column; gap: var(--space-md); }
.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(0,119,182,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { color: var(--secondary); }
.feature-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.85rem; }

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.split-section.reverse { }
.split-section img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: rgba(0,119,182,0.1);
  border: 1px solid rgba(0,119,182,0.3);
  border-radius: var(--radius);
  padding: var(--space-lg);
  margin: var(--space-md) 0;
}
.highlight-box p { color: var(--text-primary); font-size: 0.95rem; }

/* ===== TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}
.price-table th {
  background: rgba(0,119,182,0.15);
  color: var(--secondary);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(0,119,182,0.05); color: var(--text-primary); }
.price-table .price-col {
  font-weight: 700;
  color: var(--secondary);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 60px; --space-2xl: 40px; }

  /* Nav mobile */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-lg); }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Ville */
  .ville-content-grid { grid-template-columns: 1fr; }
  .ville-sidebar { position: static; }

  /* Simulator */
  .simulator-grid { grid-template-columns: 1fr; }

  /* Split */
  .split-section { grid-template-columns: 1fr; }

  /* Sticky CTA */
  .sticky-cta p { font-size: 0.8rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}

@media (max-width: 480px) {
  .states-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 16px 28px; }
}