/* ============================================
   GREENCAP ENERGY - VERSION 2
   "Solar Luxe Futurism" - Light, Premium, Organic-Tech
   Apple meets sustainable luxury from 2035
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@300;400;500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #FAFAF8;
  --bg-secondary: #F0F0EC;
  --bg-tertiary: #E8E8E2;
  --emerald: #1A5C38;
  --emerald-light: #238C55;
  --emerald-dark: #0F3D24;
  --teal: #1A8C5A;
  --gold: #C4925A;
  --gold-light: #D4A574;
  --gold-dark: #A87844;
  --sapphire: #2563EB;
  --sapphire-light: #3B82F6;
  --rose-gold: #D4A574;
  --text-dark: #1A1A2E;
  --text-body: #3A3A4E;
  --text-subtle: #94A3B8;
  --text-light: #64748B;
  --white: #FFFFFF;
  --border-light: rgba(26, 92, 56, 0.08);
  --border-medium: rgba(26, 92, 56, 0.12);

  --gradient-emerald: linear-gradient(135deg, #1A5C38, #1A8C5A, #2563EB);
  --gradient-gold: linear-gradient(135deg, #C4925A, #D4A574, #E8C49A);
  --gradient-hero: linear-gradient(135deg, #1A5C38 0%, #1A8C5A 50%, #2563EB 100%);
  --gradient-border: linear-gradient(135deg, #1A5C38, #C4925A, #1A5C38);

  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1280px;
  --container-padding: clamp(1.5rem, 4vw, 3rem);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.04);
  --shadow-md: 0 4px 24px rgba(26, 26, 46, 0.06);
  --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.08);
  --shadow-xl: 0 16px 64px rgba(26, 26, 46, 0.1);
  --shadow-glow: 0 4px 30px rgba(26, 92, 56, 0.12);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-medium: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--emerald); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--emerald-light); }

/* Grain Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-emerald);
  z-index: 10001;
  width: 0;
  transition: width 0.1s linear;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }
.container--narrow { max-width: 900px; }
.container--wide { max-width: 1440px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
p { margin-bottom: 1rem; font-size: clamp(0.95rem, 1.1vw, 1.1rem); }

.gradient-text {
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title { margin-bottom: 1.5rem; }

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}

/* ---------- Links ---------- */
a { color: var(--emerald); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--emerald-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn i { font-size: 0.85em; transition: transform var(--transition-fast); }
.btn:hover i { transform: translateX(3px); }

.btn--primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 92, 56, 0.25);
}
.btn--primary:hover {
  background: var(--emerald-light);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(26, 92, 56, 0.35);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn--secondary:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 146, 90, 0.25);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--emerald);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn--white:hover {
  background: var(--bg-secondary);
  color: var(--emerald);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-medium);
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 0.7rem 0;
}

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

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--emerald);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}
.nav__logo i { color: var(--gold); font-size: 1.3rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}
.nav__link:hover { color: var(--emerald); background: rgba(26,92,56,0.05); }
.nav__link.active { color: var(--emerald); background: rgba(26,92,56,0.08); font-weight: 600; }

.nav__cta { margin-left: 1rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-medium);
}
.nav__mobile.open { display: flex; opacity: 1; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.nav__mobile a:hover, .nav__mobile a.active { color: var(--emerald); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}
.hero--subpage { min-height: 55vh; }

.hero__blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; }

.hero__blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  opacity: 0.15;
  will-change: transform, border-radius;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: var(--emerald);
  top: 10%; right: 10%;
  animation: blobMorph1 12s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: 10%; left: 5%;
  animation: blobMorph2 15s ease-in-out infinite;
}
.hero__blob--3 {
  width: 350px; height: 350px;
  background: var(--teal);
  top: 50%; left: 40%;
  animation: blobMorph3 18s ease-in-out infinite;
}
.hero__blob--4 {
  width: 250px; height: 250px;
  background: var(--sapphire);
  top: 20%; left: 15%;
  opacity: 0.08;
  animation: blobMorph1 20s ease-in-out infinite reverse;
}

@keyframes blobMorph1 {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0,0) scale(1); }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(30px,-20px) scale(1.05); }
  50% { border-radius: 50% 60% 40% 60% / 30% 40% 70% 50%; transform: translate(-20px,20px) scale(0.95); }
  75% { border-radius: 40% 50% 60% 50% / 60% 50% 40% 60%; transform: translate(10px,-10px) scale(1.02); }
}
@keyframes blobMorph2 {
  0%, 100% { border-radius: 40% 60% 60% 40% / 70% 30% 50% 50%; transform: translate(0,0) scale(1); }
  25% { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; transform: translate(-25px,15px) scale(1.03); }
  50% { border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%; transform: translate(20px,-15px) scale(0.97); }
  75% { border-radius: 45% 55% 55% 45% / 55% 45% 60% 40%; transform: translate(-10px,25px) scale(1.01); }
}
@keyframes blobMorph3 {
  0%, 100% { border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%; transform: translate(0,0) scale(1); }
  33% { border-radius: 60% 40% 60% 40% / 60% 40% 50% 50%; transform: translate(15px,20px) scale(1.04); }
  66% { border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%; transform: translate(-15px,-10px) scale(0.96); }
}

.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__content--center { text-align: center; max-width: 800px; margin: 0 auto; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--emerald);
  background: rgba(26,92,56,0.06);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(26,92,56,0.1);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeInUp 0.6s var(--ease-out) 0.2s forwards;
}
.hero__badge i { color: var(--gold); }

.hero__title {
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.7s var(--ease-out) 0.4s forwards;
}

.hero__description {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 580px;
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.7s var(--ease-out) 0.6s forwards;
}
.hero__content--center .hero__description { margin-left: auto; margin-right: auto; }

.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(30px);
  animation: fadeInUp 0.7s var(--ease-out) 0.8s forwards;
}
.hero__content--center .hero__actions { justify-content: center; }

.hero__trust {
  display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeInUp 0.7s var(--ease-out) 1s forwards;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-light);
  animation: floatGentle 4s ease-in-out infinite;
}
.hero__trust-item:nth-child(2) { animation-delay: -1.3s; }
.hero__trust-item:nth-child(3) { animation-delay: -2.6s; }
.hero__trust-item i { color: var(--gold); font-size: 1rem; }

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

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

/* ---------- Wave Divider ---------- */
.wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: auto; }
.wave-divider--flip { transform: scaleY(-1); }

/* ---------- Sections ---------- */
.section { padding: var(--section-padding) 0; position: relative; }
.section--alt { background: var(--bg-secondary); }
.section--emerald { background: var(--emerald); color: var(--white); }
.section--emerald h2, .section--emerald h3, .section--emerald h4 { color: var(--white); }
.section--emerald p { color: rgba(255,255,255,0.85); }

.section__header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition-medium);
  border: 1px solid var(--border-light);
  overflow: hidden;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient-border);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-medium);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(26,92,56,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--emerald);
  transition: all var(--transition-medium);
}
.service-card:hover .service-card__icon {
  background: var(--emerald);
  color: var(--white);
  transform: scale(1.08);
}

.service-card__title { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card__text { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.service-card__link {
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--emerald);
}
.service-card__link i { transition: transform var(--transition-fast); font-size: 0.8em; }
.service-card__link:hover i { transform: translateX(4px); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }

.stat { text-align: center; padding: 2rem 1.5rem; position: relative; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%; width: 1px;
  background: var(--border-medium);
}
.section--emerald .stat:not(:last-child)::after { background: rgba(255,255,255,0.15); }

.stat__number {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.section--emerald .stat__number { color: var(--white); }

.stat__label { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.section--emerald .stat__label { color: rgba(255,255,255,0.7); }

/* ---------- Testimonials ---------- */
.testimonials-slider { position: relative; max-width: 800px; margin: 0 auto; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: none;
}
.testimonial-card.active { display: block; animation: fadeIn 0.5s var(--ease-out); }

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

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card__text {
  font-size: 1.1rem; color: var(--text-body); line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-card__author { font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.testimonial-card__source { font-size: 0.85rem; color: var(--text-subtle); margin-bottom: 0.5rem; }
.testimonial-card__rating {
  color: var(--gold); font-size: 0.9rem;
  display: flex; justify-content: center; gap: 0.2rem;
}

.testimonial-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.testimonial-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-medium);
  border: none; cursor: pointer;
  transition: all var(--transition-fast); padding: 0;
}
.testimonial-dot.active { background: var(--emerald); transform: scale(1.2); }

/* ---------- Accreditations ---------- */
.accreditations { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; align-items: center; }

.accreditation-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  transition: all var(--transition-medium); opacity: 0.6;
}
.accreditation-item:hover { opacity: 1; transform: translateY(-3px); }

.accreditation-item__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--emerald);
  box-shadow: var(--shadow-sm);
}
.accreditation-item__label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); text-align: center; }

/* ---------- CTA Section ---------- */
.cta-section { padding: var(--section-padding) 0; position: relative; overflow: hidden; }

.cta-section__inner {
  background: var(--emerald);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section__inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(196,146,90,0.2), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(37,99,235,0.15), transparent 50%);
  pointer-events: none;
}
.cta-section__inner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section__inner p {
  color: rgba(255,255,255,0.85); font-size: 1.15rem;
  max-width: 560px; margin: 0 auto 2rem; position: relative;
}
.cta-section__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-category { margin-bottom: 2.5rem; }
.faq-category__title {
  font-family: var(--font-mono);
  font-size: 0.85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--emerald);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition-fast);
}
.faq-item.active { border-color: var(--emerald); box-shadow: var(--shadow-sm); }

.faq-item__header {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); text-align: left;
  transition: color var(--transition-fast);
}
.faq-item.active .faq-item__header { color: var(--emerald); }

.faq-item__icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(26,92,56,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--emerald);
  flex-shrink: 0;
  transition: all var(--transition-medium);
}
.faq-item.active .faq-item__icon { background: var(--emerald); color: var(--white); transform: rotate(45deg); }

.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}
.faq-item.active .faq-item__body { max-height: 500px; }

.faq-item__content { padding: 0 1.5rem 1.25rem; color: var(--text-light); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-group { position: relative; margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-primary);
  transition: all var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(26,92,56,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
}

.contact-info-item { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border-light); }
.contact-info-item:last-child { border-bottom: none; }

.contact-info-item__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(26,92,56,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald); flex-shrink: 0;
}
.contact-info-item__content h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-info-item__content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }
.contact-info-item__content a { color: var(--emerald); font-weight: 500; }

/* ---------- Footer ---------- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand { max-width: 280px; }
.footer__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  color: var(--white);
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem; text-decoration: none;
}
.footer__logo i { color: var(--gold); }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

.footer__heading { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 1.25rem; }

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition-fast); }
.footer__links a:hover { color: var(--gold); }

.footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: all var(--transition-fast); font-size: 0.9rem;
}
.footer__social a:hover { background: var(--emerald); color: var(--white); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.footer__bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Content Layout ---------- */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }

.content-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.content-visual__icon { font-size: 4rem; color: var(--emerald); opacity: 0.2; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; }
.feature-list li i { color: var(--emerald); margin-top: 0.2rem; flex-shrink: 0; }

/* Service Detail */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-detail-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: all var(--transition-fast);
}
.service-detail-item:hover { border-color: var(--emerald); box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.service-detail-item__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(26,92,56,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald); flex-shrink: 0;
}
.service-detail-item__title { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
.service-detail-item__text { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }

/* Savings Card */
.savings-card {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative; overflow: hidden;
}
.savings-card::before {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: rgba(196,146,90,0.15);
  border-radius: 50%; filter: blur(40px);
}
.savings-card h3 { color: var(--white); margin-bottom: 1rem; position: relative; }
.savings-card p { color: rgba(255,255,255,0.9); position: relative; }
.savings-card__amount {
  font-family: var(--font-mono);
  font-size: 2.5rem; font-weight: 500;
  color: var(--white);
  margin: 1rem 0;
  position: relative;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step { position: relative; text-align: center; padding: 2rem 1.5rem; counter-increment: step; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-mono); font-size: 2.5rem; font-weight: 500;
  background: var(--gradient-emerald);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem; line-height: 1;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: var(--text-light); }

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all var(--transition-medium);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.benefit-card__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(26,92,56,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--emerald);
  margin: 0 auto 1.25rem;
}
.benefit-card h4 { margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* Highlight Cards */
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.highlight-card--bordered { border-left: 4px solid var(--emerald); }

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

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute; top: -100%; left: 50%;
  transform: translateX(-50%);
  background: var(--emerald); color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  z-index: 10000;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ---------- Focus States ---------- */
*:focus-visible { outline: 2px solid var(--emerald); outline-offset: 2px; }
.btn:focus-visible { outline: 2px solid var(--emerald); outline-offset: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero { min-height: 85vh; }
  .hero--subpage { min-height: 50vh; }
  .hero__blob { filter: blur(80px); opacity: 0.1; }
  .hero__blob--1 { width: 300px; height: 300px; }
  .hero__blob--2 { width: 250px; height: 250px; }
  .hero__blob--3 { width: 200px; height: 200px; }
  .hero__trust { flex-direction: column; gap: 1rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:not(:last-child)::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn--large { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 1.5rem 1rem; border-bottom: 1px solid var(--border-light); }
  .section--emerald .stat { border-bottom-color: rgba(255,255,255,0.1); }
  .stat:not(:last-child)::after { display: none; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__blob { animation: none; }
  .hero__trust-item { animation: none; }
  .hero__badge, .hero__title, .hero__description, .hero__actions, .hero__trust {
    opacity: 1; transform: none; animation: none;
  }
  .reveal { opacity: 1; transform: none; }
}
