/* =============================================
   Supreme Solar Systems – Global Stylesheet
   Color Palette:
     --navy:  #0D1B2A  (trust / authority)
     --charcoal: #1E2D3D
     --gold:  #F5A623  (solar energy accent)
     --gold-dark: #D4891A
     --white: #FFFFFF
     --off-white: #F7F8FA
     --text-dark: #0D1B2A
     --text-muted: #5A6A7A
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300&family=Barlow:wght@300;400;500;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: #0D1B2A;
  background: #F7F8FA;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS Variables ── */
:root {
  --navy: #0D1B2A;
  --charcoal: #1E2D3D;
  --charcoal-mid: #243447;
  --gold: #F5A623;
  --gold-dark: #D4891A;
  --gold-light: #FBBF47;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --text-muted: #5A6A7A;
  --border: rgba(255,255,255,0.1);
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(13,27,42,0.12);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.2);
  --transition: 0.25s ease;
}

/* =============================================
   NAVIGATION
============================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: box-shadow var(--transition);
}
.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.nav-logo .logo-text span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}
.nav-links .nav-cta > a {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 0.5rem 1.1rem;
}
.nav-links .nav-cta > a:hover {
  background: var(--gold-dark);
  color: var(--navy);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--navy);
  padding: 1rem 2rem 2rem;
  z-index: 999;
  border-bottom: 1px solid rgba(245,166,35,0.15);
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a.mobile-cta {
  margin-top: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  padding: 0.85rem;
  border-radius: var(--radius);
  border: none;
}

/* =============================================
   PAGE HEADER (inner pages)
============================================= */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal-mid) 60%, #1A2E20 100%);
  padding: 140px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.12) 0%, transparent 65%);
}
.page-header-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.page-header h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* =============================================
   SECTIONS
============================================= */
section { padding: 80px 2rem; }
.container { max-width: 1180px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.65;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }
.text-gold { color: var(--gold); }
.divider {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.25rem 0;
}
.text-center { text-align: center; }
.text-center .section-subtitle,
.text-center .divider { margin-left: auto; margin-right: auto; }

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-dark {
  background: var(--charcoal);
  color: var(--white);
}
.card-icon {
  width: 54px; height: 54px;
  background: rgba(245,166,35,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245,166,35,0.25);
}
.card-dark .card-icon {
  background: rgba(245,166,35,0.15);
}
.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.card-dark h3 { color: var(--white); }
.card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.card-dark p { color: rgba(255,255,255,0.65); }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* =============================================
   HERO  (index.html)
============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--charcoal-mid) 55%, #152A1C 100%);
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(245,166,35,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.06) 0%, transparent 45%);
}
.hero-sunburst {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: conic-gradient(from 0deg, transparent 0deg 20deg, rgba(245,166,35,0.04) 20deg 40deg, transparent 40deg 60deg, rgba(245,166,35,0.03) 60deg 80deg, transparent 80deg 100deg, rgba(245,166,35,0.04) 100deg 120deg, transparent 120deg 140deg, rgba(245,166,35,0.03) 140deg 160deg, transparent 160deg 180deg, rgba(245,166,35,0.04) 180deg 200deg, transparent 200deg 220deg, rgba(245,166,35,0.03) 220deg 240deg, transparent 240deg 260deg, rgba(245,166,35,0.04) 260deg 280deg, transparent 280deg 300deg, rgba(245,166,35,0.03) 300deg 320deg, transparent 320deg 340deg, rgba(245,166,35,0.04) 340deg 360deg);
  border-radius: 50%;
  animation: rotateSun 60s linear infinite;
}
@keyframes rotateSun { to { transform: rotate(360deg); } }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-tag .dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
  line-height: 1.3;
}

/* Hero Visual Panel */
.hero-visual {
  position: relative;
}
.hero-scene {
  background: linear-gradient(180deg, #1a2a3a 0%, #0D1B2A 40%, #162513 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245,166,35,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.scene-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, #0a0f1a 0%, #1a2635 40%, #2d4a1e 70%, #3d5c22 100%);
}
.scene-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, #1a2818 0%, #0d1a0c 100%);
}
.scene-stars {
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
}
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: 0.8; } 50% { opacity: 0.2; }
}
.scene-building {
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 120px;
  background: #1a2030;
  border-radius: 4px 4px 0 0;
}
.building-windows {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  padding: 12px;
}
.window {
  height: 18px;
  background: rgba(245,166,35,0.6);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(245,166,35,0.4);
}
.window.dark { background: #0d1520; }
.scene-poles {
  position: absolute;
  bottom: 43%;
  left: 0; right: 0;
}
.solar-pole {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pole-shaft {
  width: 4px;
  background: linear-gradient(180deg, #4a5568, #2d3748);
  border-radius: 2px;
}
.pole-panel {
  background: linear-gradient(135deg, #1a3a6b, #2563eb);
  border: 1px solid rgba(100,160,255,0.4);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(37,99,235,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pole-light {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(245,166,35,0.9), 0 0 40px rgba(245,166,35,0.4);
}
.light-cone {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}
.scene-overlay-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(13,27,42,0.8);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.overlay-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.overlay-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.85;
}

/* =============================================
   PROBLEM SECTION
============================================= */
.problem-section {
  background: var(--off-white);
  padding: 90px 2rem;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.problem-card:hover { transform: translateY(-3px); }
.problem-card .icon { font-size: 1.75rem; margin-bottom: 1rem; }
.problem-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.problem-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   SOLUTION SECTION
============================================= */
.solution-section {
  background: var(--navy);
  color: var(--white);
  padding: 90px 2rem;
  position: relative;
  overflow: hidden;
}
.solution-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(245,166,35,0.1) 0%, transparent 60%);
}
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color var(--transition), background var(--transition);
}
.feature-item:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.05);
}
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(245,166,35,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(245,166,35,0.2);
}
.feature-item h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.feature-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.solution-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sol-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.sol-card:hover { border-color: rgba(245,166,35,0.4); }
.sol-card:first-child { grid-column: span 2; }
.sol-card .sol-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.sol-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.sol-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* =============================================
   HOW IT WORKS STEPS
============================================= */
.steps-section { background: var(--off-white); }
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.steps-horizontal::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(245,166,35,0.2) 100%);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(245,166,35,0.2);
  transition: all var(--transition);
}
.step:hover .step-num {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.05);
}
.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* =============================================
   MARKETS
============================================= */
.markets-section { background: var(--white); }
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.market-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.market-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.market-card:nth-child(1) .market-visual { background: linear-gradient(160deg, #1a2d4a, #0d1e30); }
.market-card:nth-child(2) .market-visual { background: linear-gradient(160deg, #2a1a10, #1a0d08); }
.market-card:nth-child(3) .market-visual { background: linear-gradient(160deg, #1a2a1a, #0d1a0d); }
.market-card:nth-child(4) .market-visual { background: linear-gradient(160deg, #1a1a2d, #0d0d1e); }
.market-card:nth-child(5) .market-visual { background: linear-gradient(160deg, #2d1a1a, #1e0d0d); }
.market-icon {
  font-size: 2.5rem;
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  opacity: 0.9;
}
.market-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(245,166,35,0.12));
}
.market-body {
  background: var(--white);
  padding: 1.5rem;
}
.market-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.market-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.market-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.03em;
}
.market-link::after { content: '→'; }

/* =============================================
   WHY SOLAR
============================================= */
.why-section {
  background: var(--charcoal);
  color: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), background var(--transition);
}
.why-card:hover {
  border-color: rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.04);
}
.why-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #E89010 100%);
  padding: 80px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(13,27,42,0.75);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.cta-banner .btn-navy:hover {
  background: transparent;
  color: var(--navy);
}
.cta-banner .btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(13,27,42,0.4);
}
.cta-banner .btn-ghost:hover { border-color: var(--navy); }

/* =============================================
   DISCLAIMER STRIP
============================================= */
.disclaimer-strip {
  background: var(--navy);
  border-top: 1px solid rgba(245,166,35,0.15);
  padding: 3rem 2rem;
}
.disclaimer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.disclaimer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.disclaimer-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.disclaimer-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #060E17;
  color: rgba(255,255,255,0.7);
  padding: 60px 2rem 30px;
  border-top: 1px solid rgba(245,166,35,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand .logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-contact-info a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--gold); }

/* =============================================
   HOW IT WORKS PAGE
============================================= */
.hiw-steps-section { background: var(--white); }
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  width: 80px; height: 80px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(245,166,35,0.3);
}
.hiw-step-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.hiw-step-content p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 680px; }
.hiw-step-content ul {
  margin-top: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hiw-step-content ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.hiw-step-content ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(245,166,35,0.1);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hiw-sidebar {
  position: sticky;
  top: 100px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
}
.hiw-sidebar h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* =============================================
   MARKETS PAGE
============================================= */
.market-detail {
  padding: 80px 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.market-detail:nth-child(even) { background: var(--off-white); }
.market-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.market-detail-layout.reverse { direction: rtl; }
.market-detail-layout.reverse > * { direction: ltr; }
.market-detail-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.market-detail h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.market-detail p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.market-detail ul { list-style: none; margin-top: 1rem; }
.market-detail ul li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  align-items: flex-start;
}
.market-detail ul li::before {
  content: '●';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.market-visual-box {
  background: linear-gradient(160deg, var(--navy), var(--charcoal-mid));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.market-visual-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.12), transparent 70%);
}

/* =============================================
   SOLUTIONS PAGE
============================================= */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.solution-card-header {
  background: linear-gradient(135deg, var(--navy), var(--charcoal-mid));
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.solution-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.15), transparent 60%);
}
.solution-card-header .icon { font-size: 2.5rem; position: relative; z-index: 1; }
.solution-card-body { padding: 1.75rem; }
.solution-card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.solution-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.solution-card-body ul {
  list-style: none;
  margin-top: 1rem;
}
.solution-card-body ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.solution-card-body ul li::before { content: '→'; color: var(--gold); font-weight: 700; }

/* =============================================
   MANAGED SERVICE PAGE
============================================= */
.service-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.compare-col.traditional {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.08);
}
.compare-col.managed {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.compare-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.compare-col.traditional h3 { color: var(--text-muted); }
.compare-col.managed h3 { color: var(--gold); }
.compare-list { list-style: none; }
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid;
  font-size: 0.92rem;
}
.compare-col.traditional .compare-list li { border-color: rgba(0,0,0,0.06); color: var(--text-muted); }
.compare-col.managed .compare-list li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); }
.compare-list li:last-child { border-bottom: none; }
.li-icon { flex-shrink: 0; margin-top: 0.1rem; }
.pricing-block {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--white);
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.pricing-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(245,166,35,0.15), transparent 60%);
}
.pricing-block .container { position: relative; z-index: 1; }
.pricing-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pricing-block p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.pricing-note {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 1.5rem auto 0;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.include-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.include-item .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.include-item h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.include-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* =============================================
   CONTACT / ABOUT PAGE
============================================= */
.about-mission {
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(160deg, var(--navy), var(--charcoal-mid) 60%, #162513 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(245,166,35,0.15), transparent 60%);
}
.about-visual-content { position: relative; z-index: 1; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.value-item .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.value-item p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.contact-section { background: var(--off-white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-detail .icon {
  width: 40px; height: 40px;
  background: rgba(245,166,35,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text .label { font-size: 0.75rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-text .value { font-size: 0.92rem; color: var(--navy); font-weight: 500; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-form .form-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }

/* =============================================
   CASE EXAMPLE
============================================= */
.case-section { background: var(--off-white); }
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.case-header {
  background: linear-gradient(135deg, var(--navy), var(--charcoal-mid));
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.case-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.15), transparent 60%);
}
.case-header-content { position: relative; z-index: 1; }
.case-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.case-header p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.case-icon { font-size: 4rem; position: relative; z-index: 1; opacity: 0.9; }
.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.case-body-left { padding: 2.5rem; border-right: 1px solid rgba(0,0,0,0.06); }
.case-body-right { padding: 2.5rem; background: rgba(245,166,35,0.03); }
.case-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.case-body ul { list-style: none; }
.case-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.case-body ul li:last-child { border-bottom: none; }
.case-body ul li .li-dot { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.case-outcome {
  background: var(--gold);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.case-outcome .icon { font-size: 2rem; }
.case-outcome p {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.case-outcome strong { font-weight: 700; }

/* =============================================
   ROI SECTION
============================================= */
.roi-section { background: var(--white); }
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.roi-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  background: var(--off-white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.roi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.roi-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.roi-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.roi-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 1.25rem; }
  .page-header { padding: 120px 1.25rem 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4,
  .problems-grid, .markets-grid, .why-grid, .solutions-grid, .includes-grid,
  .service-compare, .contact-layout, .about-layout, .hiw-layout,
  .market-detail-layout, .roi-grid, .case-body { grid-template-columns: 1fr; }
  .steps-horizontal { grid-template-columns: 1fr; gap: 2rem; }
  .steps-horizontal::before { display: none; }
  .solution-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .market-detail-layout.reverse { direction: ltr; }
  .case-body-left { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .solution-visual { grid-template-columns: 1fr; }
  .sol-card:first-child { grid-column: span 1; }
  .about-values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

/* =============================================
   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);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
