/* ========== DESIGN SYSTEM — Artisan&co ========== */
:root {
  /* Colors */
  --primary: #1a3a5c;
  --primary-light: #2a5a8c;
  --primary-dark: #0f2440;
  --accent: #d4a843;
  --accent-light: #e8c56e;
  --accent-dark: #b8922e;
  --bg: #f7f5f2;
  --bg-alt: #edeae4;
  --surface: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --text-inverse: #ffffff;
  --border: #ddd8d0;
  --shadow: rgba(26, 58, 92, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.3);
  --gradient-hero: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-dark), var(--accent-light));

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.35s;

  /* Border radius */
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; color: var(--primary-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 30px var(--shadow);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--primary-dark);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: width var(--duration) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }

.nav-cta {
  background: var(--gradient-accent); color: var(--primary-dark) !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,0.4); color: var(--primary-dark); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block; width: 26px; height: 2px; background: var(--primary-dark);
  margin: 6px 0; transition: var(--duration) var(--ease);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========== HERO V2 ========== */
.hero-v2 {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-hero);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero-v2-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-v2-shape {
  position: absolute; border-radius: 50%; opacity: 0.07;
  background: var(--accent);
  animation: heroFloat 8s ease-in-out infinite;
}
.hero-v2-shape--1 { width: 500px; height: 500px; top: -150px; right: -100px; animation-delay: 0s; }
.hero-v2-shape--2 { width: 300px; height: 300px; bottom: -50px; left: -80px; animation-delay: -3s; }
.hero-v2-shape--3 { width: 200px; height: 200px; top: 40%; left: 30%; animation-delay: -5s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-v2-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding-top: 40px; padding-bottom: 60px;
}
.hero-v2-text { text-align: left; }
.hero-v2-text h1 { color: var(--text-inverse); margin-bottom: 24px; line-height: 1.15; }
.hero-v2-highlight {
  position: relative; display: inline-block;
  background: var(--gradient-accent); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-v2-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9); padding: 8px 20px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500; margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-v2-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-v2-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: rgba(255,255,255,0.75);
  margin-bottom: 36px; line-height: 1.8;
}
.hero-v2-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.hero-v2-trust {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
}
.hero-v2-trust-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }

/* Hero Visual */
.hero-v2-visual { position: relative; min-height: 400px; }
.hero-v2-illustration {
  width: 100%; max-width: 400px; margin: 0 auto;
  opacity: 0.6;
}
.hero-v2-illustration svg { width: 100%; height: auto; }

.hero-v2-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px; padding: 16px 22px;
  color: var(--text-inverse);
  animation: cardFloat 6s ease-in-out infinite;
  z-index: 3;
}
.hero-v2-card-icon { font-size: 1.8rem; }
.hero-v2-card-text strong { display: block; font-size: 1.15rem; font-weight: 700; }
.hero-v2-card-text span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hero-v2-card--main { top: 10%; left: 0; animation-delay: 0s; }
.hero-v2-card--secondary { top: 45%; right: 0; animation-delay: -2s; }
.hero-v2-card--tertiary { bottom: 5%; left: 10%; animation-delay: -4s; }

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

.hero-v2-wave {
  position: absolute; bottom: -2px; left: 0; width: 100%; z-index: 2;
  line-height: 0;
}
.hero-v2-wave svg { width: 100%; height: 80px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 1rem;
  font-weight: 600; cursor: pointer; border: none;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-accent); color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(212,168,67,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,168,67,0.4);
  color: var(--primary-dark);
}
.btn-secondary {
  background: transparent; color: var(--text-inverse);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7);
  color: var(--text-inverse); transform: translateY(-3px);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: var(--text-inverse);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--primary); color: var(--text-inverse);
}
.btn-dark:hover {
  background: var(--primary-light); transform: translateY(-3px);
  color: var(--text-inverse);
  box-shadow: 0 8px 30px var(--shadow);
}

/* ========== SECTIONS ========== */
section { padding: var(--section-pad); }

.section-header {
  text-align: center; max-width: 680px; margin: 0 auto 60px;
}
.section-header .label {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  color: var(--accent-dark); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.1rem; }

/* ========== CARDS ========== */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26,58,92,0.18);
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform var(--duration) var(--ease);
}
.glass-card:hover { transform: translateY(-5px); }

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card { text-align: center; }
.feature-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,58,92,0.08), rgba(212,168,67,0.12));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem;
}
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

/* ========== STATS ========== */
.stats-section { background: var(--primary-dark); color: var(--text-inverse); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item h3 { font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); margin-bottom: 8px; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ========== SERVICES ========== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px;
}
.service-card {
  position: relative; overflow: hidden;
  border-left: 4px solid var(--accent);
}
.service-card .service-num {
  font-family: var(--font-heading); font-size: 3rem;
  color: rgba(26,58,92,0.08); font-weight: 700;
  position: absolute; top: 16px; right: 24px;
}
.service-card h3 { margin-bottom: 12px; color: var(--primary); }
.service-card p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.service-card .btn { font-size: 0.9rem; padding: 10px 24px; }

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px;
}
.testimonial-card { position: relative; padding-top: 50px; }
.testimonial-card .quote-mark {
  position: absolute; top: 20px; left: 40px;
  font-size: 4rem; line-height: 1; color: var(--accent); opacity: 0.3;
  font-family: var(--font-heading);
}
.testimonial-card p { font-style: italic; margin-bottom: 20px; color: var(--text-light); }
.testimonial-card .author { font-weight: 600; color: var(--primary-dark); }
.testimonial-card .role { font-size: 0.85rem; color: var(--text-light); }

/* ========== REVIEWS / AVIS CLIENTS ========== */
.reviews-section { background: var(--bg-alt); }

.reviews-summary {
  display: grid; grid-template-columns: auto 1fr; gap: 48px;
  align-items: center; max-width: 600px; margin: 0 auto 50px;
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 32px 40px; box-shadow: 0 4px 20px var(--shadow);
}
.reviews-score { text-align: center; }
.reviews-score-number {
  font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700;
  color: var(--primary-dark); line-height: 1;
}
.reviews-score-stars { color: var(--accent); font-size: 1.3rem; letter-spacing: 2px; margin: 6px 0; }
.reviews-score-count { font-size: 0.85rem; color: var(--text-light); }

.reviews-bars { flex: 1; }
.reviews-bar-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px; font-size: 0.82rem; color: var(--text-light);
}
.reviews-bar-row span:first-child { width: 30px; text-align: right; white-space: nowrap; }
.reviews-bar-row span:last-child { width: 34px; text-align: right; }
.reviews-bar {
  flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden;
}
.reviews-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; transition: width 1s var(--ease); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px;
}
.review-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: 0 2px 16px var(--shadow);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  border-left: 4px solid transparent;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(26,58,92,0.15);
  border-left-color: var(--accent);
}
.review-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-hero); color: var(--text-inverse);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.review-author { font-weight: 600; color: var(--primary-dark); font-size: 1rem; }
.review-location { font-size: 0.82rem; color: var(--text-light); }
.review-stars { color: var(--accent); font-size: 1.05rem; letter-spacing: 1px; margin-bottom: 12px; }
.review-stars .star-half { opacity: 0.4; }
.review-text { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.review-date { font-size: 0.8rem; color: var(--border); }

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--gradient-hero); color: var(--text-inverse);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--text-inverse); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo { color: var(--text-inverse); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer h4 { color: var(--text-inverse); font-size: 1.1rem; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center; font-size: 0.85rem;
}

/* ========== ABOUT PAGE ========== */
.page-hero {
  padding: 160px 0 100px;
  background: var(--gradient-hero); color: var(--text-inverse);
  text-align: center; position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 80px;
  background: var(--bg); border-radius: 50% 50% 0 0;
}
.page-hero h1 { color: var(--text-inverse); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

.about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p { color: var(--text-light); margin-bottom: 16px; }
.about-image {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 4rem;
}

.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px;
}
.value-card { text-align: center; }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

.timeline {
  max-width: 700px; margin: 0 auto; position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item {
  position: relative; margin-bottom: 40px; padding-left: 30px;
}
.timeline-item::before {
  content: ''; position: absolute; left: -32px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item .year { color: var(--accent-dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.timeline-item p { color: var(--text-light); font-size: 0.95rem; }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,58,92,0.08), rgba(212,168,67,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-light); font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 500; margin-bottom: 6px;
  font-size: 0.95rem; color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 18px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem;
  background: var(--surface); color: var(--text);
  transition: border-color var(--duration) var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========== QUOTE FLOW ========== */
.quote-steps { display: flex; justify-content: center; gap: 60px; margin-bottom: 50px; }
.quote-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.4; transition: opacity var(--duration) var(--ease);
}
.quote-step.active { opacity: 1; }
.step-number {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--border); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  transition: all var(--duration) var(--ease);
}
.quote-step.active .step-number { background: var(--accent); color: var(--primary-dark); }
.quote-step span:last-child { font-size: 0.85rem; font-weight: 500; }

.quote-form-panel { max-width: 700px; margin: 0 auto; }
.quote-panel { display: none; }
.quote-panel.active { display: block; animation: fadeSlideUp 0.4s var(--ease); }

.quote-options-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
  margin-bottom: 24px;
}
.quote-option {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 20px; text-align: center; cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.quote-option:hover { border-color: var(--accent); }
.quote-option.selected {
  border-color: var(--accent); background: rgba(212,168,67,0.08);
}
.quote-option .opt-icon { font-size: 2rem; margin-bottom: 8px; }
.quote-option h4 { font-size: 0.95rem; }

.quote-nav { display: flex; justify-content: space-between; margin-top: 32px; }

/* ========== SERVICE DETAIL ========== */
.service-detail-hero { text-align: left; }
.service-detail-hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.service-detail-hero h1 { color: var(--text-inverse); }
.service-detail-hero p { color: rgba(255,255,255,0.85); }
.service-hero-visual {
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; opacity: 0.3;
}

.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px;
  counter-reset: step;
}
.process-step { counter-increment: step; position: relative; padding-top: 48px; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700;
  color: rgba(212,168,67,0.2);
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--text-light); font-size: 0.95rem; }

.benefit-list { list-style: none; }
.benefit-list li {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1.05rem;
}
.benefit-list li::before {
  content: '✓'; color: var(--accent); font-weight: 700;
  font-size: 1.2rem; flex-shrink: 0; margin-top: 1px;
}

/* ========== LEAD FUNNEL ========== */
.funnel-hero {
  min-height: 90vh; display: flex; align-items: center;
  background: var(--gradient-hero); text-align: center;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Stagger */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-v2-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-v2-text { text-align: center; }
  .hero-v2-buttons { justify-content: center; }
  .hero-v2-trust { justify-content: center; }
  .hero-v2-visual { min-height: 300px; }
  .hero-v2-card--main { left: 5%; }
  .hero-v2-card--secondary { right: 5%; }
  .hero-v2-card--tertiary { left: 15%; }
  .reviews-summary { grid-template-columns: 1fr; max-width: 400px; text-align: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-hero .container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .nav-links {
    position: fixed; top: 80px; left: 0; width: 100%;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; gap: 0; padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    box-shadow: 0 8px 30px var(--shadow);
  }
  .nav-links.open { max-height: 400px; padding: 20px 0; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 14px 24px; }
  .menu-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-v2-buttons { flex-direction: column; align-items: center; }
  .hero-v2-visual { min-height: 250px; }
  .hero-v2-card { padding: 12px 16px; }
  .hero-v2-card-icon { font-size: 1.4rem; }
  .hero-v2-card-text strong { font-size: 1rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-steps { gap: 24px; }
  .quote-step span:last-child { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .card, .glass-card { padding: 28px; }
  .quote-options-grid { grid-template-columns: 1fr; }
}
