/* ═══════════════════════════════════════════════════════════════════════════════
   PREMIUM DARK THEME CSS - CREDIT COUNSELING WEBSITE
   Inspired by: Lusion.co, Synchronized.studio, Awwwards-winning studios
   Production-Quality: $50,000+ website aesthetic
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════════
   1. CSS VARIABLES - Design Tokens
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
  /* Colors - Soft Light Theme */
  --color-bg-primary: #f5f3f0;
  --color-bg-secondary: #eae7e3;
  --color-bg-tertiary: #e0ddd8;
  --color-bg-card: rgba(0, 0, 0, 0.03);
  --color-bg-card-hover: rgba(0, 0, 0, 0.06);

  /* Accent Colors - matches 755CreditScore logo (green arrow + blue shield) */
  --color-accent-green: #388E3C;
  --color-accent-gold: #1565C0;
  --color-accent-purple: #0D47A1;
  --color-text-primary: #1a1a2e;
  --color-text-secondary: #4a4a5a;
  --color-text-tertiary: #7a7a8a;

  /* Gradients */
  --gradient-green-gold: linear-gradient(135deg, #388E3C, #1565C0);
  --gradient-green-purple: linear-gradient(135deg, #388E3C, #0D47A1);
  --gradient-gold-purple: linear-gradient(135deg, #1565C0, #0D47A1);
  --gradient-dark: linear-gradient(180deg, #f5f3f0 0%, #eae7e3 100%);

  /* Shadows & Glows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --glow-green: 0 0 30px rgba(56, 142, 60, 0.2);
  --glow-gold: 0 0 30px rgba(21, 101, 192, 0.2);
  --glow-purple: 0 0 30px rgba(13, 71, 161, 0.2);

  /* Typography */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-geometric: "Space Grotesk", sans-serif;

  --fs-xs: clamp(0.75rem, 2vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 2.5vw, 1rem);
  --fs-base: clamp(1rem, 3vw, 1.125rem);
  --fs-lg: clamp(1.25rem, 4vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 5vw, 2rem);
  --fs-2xl: clamp(2rem, 6vw, 2.5rem);
  --fs-3xl: clamp(2.5rem, 7vw, 3.5rem);
  --fs-4xl: clamp(3rem, 8vw, 4.5rem);
  --fs-5xl: clamp(4rem, 10vw, 6rem);
  --fs-hero: clamp(4rem, 12vw, 8rem);

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-cinematic: 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;

  /* Z-Index Scale */
  --z-hide: -1;
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 1000;
  --z-modal: 1001;
  --z-tooltip: 1100;
  --z-cursor: 10000;
}

/* Light theme is default */
:root {
  color-scheme: light;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent-green);
  border-radius: 4px;
  transition: background var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-gold);
  box-shadow: var(--glow-green);
}

/* Firefox Scrollbar */
* {
  scrollbar-color: var(--color-accent-green) var(--color-bg-secondary);
  scrollbar-width: thin;
}

/* Custom Cursor */
html {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="%234CAF50"/><circle cx="12" cy="12" r="8" fill="none" stroke="%234CAF50" stroke-width="1" opacity="0.3"/></svg>') 12 12, auto;
}

a {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="%231976D2"/><circle cx="12" cy="12" r="8" fill="none" stroke="%231976D2" stroke-width="1" opacity="0.3"/></svg>') 12 12, pointer;
}

button {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3" fill="%234CAF50"/><circle cx="12" cy="12" r="8" fill="none" stroke="%234CAF50" stroke-width="1" opacity="0.3"/></svg>') 12 12, pointer;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-text-primary);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--fs-5xl);
}

h2 {
  font-size: var(--fs-4xl);
}

h3 {
  font-size: var(--fs-3xl);
}

h4 {
  font-size: var(--fs-2xl);
}

h5 {
  font-size: var(--fs-xl);
}

h6 {
  font-size: var(--fs-lg);
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-accent-green);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--color-accent-gold);
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-gold);
  transition: width var(--transition-fast);
}

a:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. LOADING SCREEN
   ═══════════════════════════════════════════════════════════════════════════════ */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 1;
  transition: opacity var(--transition-cinematic), visibility var(--transition-cinematic);
}

.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen__logo {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-accent-green);
  margin-bottom: var(--space-2xl);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(56, 142, 60, 0.25);
}

.loading-screen__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient-green-gold);
  animation: loadingBar 2.5s ease-in-out forwards;
  box-shadow: var(--glow-green);
}

@keyframes loadingBar {
  0% {
    width: 0;
  }
  40% {
    width: 60%;
  }
  80% {
    width: 85%;
  }
  100% {
    width: 100%;
  }
}

.loading-screen__text {
  position: absolute;
  bottom: 20%;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  z-index: var(--z-fixed);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all var(--transition-base);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(245, 243, 240, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header__logo {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  text-shadow: 0 0 10px rgba(56, 142, 60, 0.15);
}

.header__logo:hover {
  text-shadow: 0 0 20px rgba(56, 142, 60, 0.35);
  transform: scale(1.05);
}

nav {
  display: none;
  gap: var(--space-xl);
  align-items: center;
  list-style: none;
}

@media (min-width: 1024px) {
  nav {
    display: flex;
  }
}

nav a {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-secondary);
  position: relative;
  padding-bottom: 4px;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-green);
  transition: width var(--transition-base);
  box-shadow: 0 0 10px var(--color-accent-green);
}

nav a:hover,
nav a.active {
  color: var(--color-accent-green);
}

nav a:hover::before,
nav a.active::before {
  width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  align-items: flex-end;
  background: none;
  border: none;
  padding: 0;
  z-index: var(--z-fixed);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-accent-green);
  border-radius: 2px;
  transition: all var(--transition-fast);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  width: 24px;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 243, 240, 0.97);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  z-index: calc(var(--z-fixed) - 1);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--color-text-primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mobile-nav a:hover {
  color: var(--color-accent-green);
}

/* Scroll Progress Indicator */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-green-gold);
  width: 0;
  z-index: calc(var(--z-fixed) + 1);
  box-shadow: 0 0 10px var(--color-accent-green);
  transition: width 100ms linear;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  background: var(--gradient-dark);
  overflow: hidden;
  margin-top: 60px;
}

/* Dark hero (homepage only) */
.hero-dark {
  background: linear-gradient(180deg, #0a0a0f 0%, #0d1117 100%);
}
.hero-dark .hero-headline {
  color: #ffffff;
}
.hero-dark .hero-overline {
  color: #388E3C;
}
.hero-dark .hero-description {
  color: rgba(255, 255, 255, 0.8);
}
.hero-dark .marquee-content span {
  color: rgba(255, 255, 255, 0.4);
}
.hero-dark .hero-video-overlay {
  background: rgba(10, 10, 15, 0.75);
}
.hero-dark::before {
  background: radial-gradient(circle, rgba(56, 142, 60, 0.2) 0%, transparent 70%);
}
.hero-dark .cta-button.secondary {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}
.hero-dark .cta-button.secondary:hover {
  color: #388E3C;
  border-color: #388E3C;
}
.hero-dark .hero-marquee {
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Hero Video Background */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  height: 120vh;
  min-width: 120%;
  min-height: 120%;
  z-index: 0;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150vw;
  height: 150vh;
  min-width: 150%;
  min-height: 150%;
  border: none;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 243, 240, 0.8);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-marquee {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(56, 142, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-30px);
  }
}

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

.hero__tagline {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  animation: fadeUp 1s ease-out 200ms backwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
  letter-spacing: -2px;
}

.hero__title span {
  display: inline-block;
  animation: splitTextReveal 1s cubic-bezier(0.77, 0, 0.175, 1) backwards;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes splitTextReveal {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(0);
    opacity: 1;
  }
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s ease-out 400ms backwards;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s ease-out 600ms backwards;
}

@media (min-width: 768px) {
  .hero__cta {
    flex-direction: row;
  }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.hero__scroll-hint::after {
  content: '';
  width: 20px;
  height: 30px;
  border: 2px solid var(--color-accent-green);
  border-radius: 10px;
  position: relative;
  display: block;
  box-shadow: inset 0 2px 0 var(--color-accent-green);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   6. SMOOTH SCROLL CONTAINER (Locomotive Scroll)
   ═══════════════════════════════════════════════════════════════════════════════ */

html.has-scroll-smooth {
  scroll-behavior: auto;
}

.c-scrollbar {
  position: fixed;
  right: 0;
  top: 0;
  width: 8px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.02);
  z-index: var(--z-sticky);
}

.c-scrollbar__thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  background: var(--color-accent-green);
  border-radius: 4px;
  box-shadow: var(--glow-green);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. SECTION TRANSITIONS & REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */

section {
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  section {
    padding: var(--space-3xl) var(--space-3xl);
  }
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Reveal Animations */
.reveal-text {
  overflow: hidden;
}

.reveal-text span {
  display: inline-block;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  animation: revealText 1.2s cubic-bezier(0.77, 0, 0.175, 1) backwards;
}

@keyframes revealText {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* fade-up: hidden by default, animated by GSAP ScrollTrigger.
   Fallback: auto-reveal after 2s if GSAP doesn't fire */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUpFallback 0.8s ease-out 2s forwards;
}

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

.fade-in {
  opacity: 0;
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
}

/* InView Animations */
.is-inview.fade-up,
.is-inview .fade-up {
  animation: fadeUpAnimation var(--transition-cinematic) ease-out forwards;
}

.is-inview.fade-in,
.is-inview .fade-in {
  animation: fadeInAnimation var(--transition-cinematic) ease-out forwards;
}

.is-inview.scale-in,
.is-inview .scale-in {
  animation: scaleInAnimation var(--transition-cinematic) ease-out forwards;
}

.is-inview.slide-in-left,
.is-inview .slide-in-left {
  animation: slideInLeftAnimation var(--transition-cinematic) ease-out forwards;
}

.is-inview.slide-in-right,
.is-inview .slide-in-right {
  animation: slideInRightAnimation var(--transition-cinematic) ease-out forwards;
}

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

@keyframes fadeInAnimation {
  to {
    opacity: 1;
  }
}

@keyframes scaleInAnimation {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeftAnimation {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRightAnimation {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stagger Children */
.stagger-children > * {
  animation-delay: calc(var(--stagger-index, 0) * 100ms);
}

/* Split Text for Character/Word Animation */
.split-text {
  display: inline-block;
}

.split-text span {
  display: inline-block;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   8. GLASS-MORPHISM CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */

.card {
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(56, 142, 60, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(56, 142, 60, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 142, 60, 0.08);
  border: 1px solid rgba(56, 142, 60, 0.25);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 28px;
  transition: all var(--transition-base);
}

.card:hover .card-icon {
  background: rgba(56, 142, 60, 0.15);
  border-color: rgba(0, 255, 136, 0.6);
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--glow-green);
}

.card h3 {
  margin-bottom: var(--space-md);
  font-size: var(--fs-2xl);
}

.card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   9. SERVICES SECTION - HORIZONTAL SCROLL
   ═══════════════════════════════════════════════════════════════════════════════ */

.services {
  background: var(--color-bg-secondary);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.services__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services__carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--space-md) 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .services__carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    gap: var(--space-xl);
    overflow-x: visible;
  }
}

.services__carousel::-webkit-scrollbar {
  height: 4px;
}

.services__carousel::-webkit-scrollbar-thumb {
  background: var(--color-accent-green);
  border-radius: 2px;
}

.service-card {
  scroll-snap-align: start;
  min-width: 320px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .service-card {
    min-width: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   10. PROCESS/TIMELINE SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.process {
  background: var(--color-bg-primary);
}

.process__title {
  text-align: center;
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-3xl);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(56, 142, 60, 0.35) 0%, rgba(21, 101, 192, 0.2) 50%, rgba(167, 139, 250, 0.2) 100%);
}

@media (max-width: 767px) {
  .timeline::before {
    left: 30px;
  }
}

.timeline-item {
  margin-bottom: var(--space-2xl);
  position: relative;
  padding-left: 120px;
}

@media (max-width: 767px) {
  .timeline-item {
    padding-left: 80px;
  }
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-left: 0;
  padding-right: 120px;
}

@media (max-width: 767px) {
  .timeline-item:nth-child(odd) {
    text-align: left;
    padding-left: 80px;
    padding-right: 0;
  }
}

.timeline-item__dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--color-accent-green);
  border: 4px solid var(--color-bg-primary);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  z-index: 2;
  box-shadow: var(--glow-green);
  animation: pulse 2s ease-in-out infinite;
}

.timeline-item:nth-child(odd) .timeline-item__dot {
  left: 50%;
}

@media (max-width: 767px) {
  .timeline-item__dot {
    left: 30px;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
  }
}

.timeline-item__number {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: rgba(56, 142, 60, 0.15);
  margin-bottom: var(--space-sm);
}

.timeline-item__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.timeline-item__description {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   11. STATS/NUMBERS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.stats {
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
  border-top: 1px solid rgba(56, 142, 60, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  max-width: 1400px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  background: var(--gradient-green-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: counterAnimation 2s ease-out forwards;
}

.stat-item__label {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-item__description {
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
  margin-top: var(--space-md);
  line-height: var(--lh-relaxed);
}

@keyframes counterAnimation {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   12. TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.testimonials {
  background: var(--color-bg-secondary);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(56, 142, 60, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(56, 142, 60, 0.08);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(56, 142, 60, 0.25);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.testimonial__text {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
  color: var(--color-text-secondary);
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-lg);
}

.testimonial__author-name {
  font-weight: 700;
  color: var(--color-text-primary);
}

.testimonial__author-title {
  font-size: var(--fs-sm);
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial__rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.testimonial__rating span {
  color: var(--color-accent-gold);
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   13. VIDEO SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.video-section {
  background: var(--color-bg-primary);
}

.video-section__title {
  text-align: center;
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-3xl);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  group: "video";
}

.video-item__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.video-item:hover .video-item__wrapper {
  border-color: rgba(56, 142, 60, 0.25);
  box-shadow: 0 0 40px rgba(56, 142, 60, 0.15);
}

.video-item__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(56, 142, 60, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-item__play {
  width: 80px;
  height: 80px;
  background: rgba(56, 142, 60, 0.15);
  border: 2px solid rgba(0, 255, 136, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
}

.video-item:hover .video-item__play {
  background: rgba(0, 255, 136, 0.4);
  border-color: var(--color-accent-green);
  box-shadow: var(--glow-green);
  transform: scale(1.2);
}

.video-item__play::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid var(--color-accent-green);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px;
}

.video-item__title {
  margin-top: var(--space-lg);
  font-size: var(--fs-lg);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   14. PRICING SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.pricing {
  background: var(--color-bg-secondary);
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.pricing__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.pricing__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.price-card.featured {
  border: 2px solid rgba(56, 142, 60, 0.35);
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
}

@media (max-width: 1023px) {
  .price-card.featured {
    transform: scale(1);
  }
}

.price-card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(56, 142, 60, 0.25);
  transform: translateY(-8px);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 0 60px rgba(56, 142, 60, 0.25);
}

@media (max-width: 1023px) {
  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

.price-card__badge {
  display: inline-block;
  background: rgba(56, 142, 60, 0.15);
  border: 1px solid rgba(56, 142, 60, 0.35);
  color: var(--color-accent-green);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.price-card__name {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.price-card__amount {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent-green);
  margin-bottom: var(--space-sm);
}

.price-card__period {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.price-card__description {
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-card__features {
  list-style: none;
  margin-bottom: var(--space-xl);
  text-align: left;
}

.price-card__feature {
  padding: var(--space-sm) 0;
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.price-card__feature::before {
  content: '✓';
  color: var(--color-accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card__cta {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   15. FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.faq {
  background: var(--color-bg-primary);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.faq__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-xl) 0;
  cursor: pointer;
  transition: all var(--transition-base);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background: rgba(255, 255, 255, 0.02);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-bottom: 1px solid rgba(56, 142, 60, 0.15);
  margin: var(--space-lg) 0;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text-primary);
}

.faq-item:hover .faq-item__question {
  color: var(--color-accent-green);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 142, 60, 0.08);
  border: 1px solid rgba(56, 142, 60, 0.25);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent-green);
  transition: all var(--transition-fast);
}

.faq-item.open .faq-item__icon {
  background: rgba(56, 142, 60, 0.15);
  border-color: rgba(0, 255, 136, 0.6);
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  margin-top: var(--space-lg);
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  animation: fadeUp 300ms ease-out;
}

.faq-item.open .faq-item__answer {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   16. CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta {
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-top: 1px solid rgba(56, 142, 60, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}

.cta__content {
  max-width: 1000px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(2rem, 8vw, 4rem);
  margin-bottom: var(--space-lg);
  animation: fadeUp 800ms ease-out backwards;
  line-height: var(--lh-tight);
}

.cta__title span {
  background: var(--gradient-green-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  animation: fadeUp 800ms ease-out 200ms backwards;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  animation: fadeUp 800ms ease-out 400ms backwards;
}

@media (min-width: 768px) {
  .cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */

footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-3xl) var(--space-lg);
}

.footer__content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__section h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__links a {
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.footer__links a:hover {
  color: var(--color-accent-green);
  padding-left: 8px;
}

.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
  }
}

.footer__copyright {
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
}

.footer__socials {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: rgba(56, 142, 60, 0.15);
  border-color: rgba(56, 142, 60, 0.35);
  color: var(--color-accent-green);
  box-shadow: var(--glow-green);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   18. BLOG CARDS
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog {
  background: var(--color-bg-primary);
}

.blog__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.blog__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card:hover {
  border-color: rgba(56, 142, 60, 0.25);
  box-shadow: 0 16px 48px rgba(56, 142, 60, 0.08);
}

.blog-card__image {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
  overflow: hidden;
}

.blog-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}

.blog-card__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card__date {
  font-size: var(--fs-xs);
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
  line-height: var(--lh-relaxed);
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card__author {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
}

.blog-card__read-time {
  font-size: var(--fs-xs);
  color: var(--color-text-tertiary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   19. BLOG POST PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

.blog-post {
  padding-top: 140px;
}

.blog-post__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__date {
  font-size: var(--fs-sm);
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.blog-post__title {
  font-size: var(--fs-hero);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.blog-post__meta {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.blog-post__image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3xl);
  object-fit: cover;
  border: 1px solid rgba(56, 142, 60, 0.15);
}

.blog-post__content {
  max-width: 900px;
  margin: 0 auto;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
}

.blog-post__content h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

.blog-post__content h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.blog-post__content p {
  margin-bottom: var(--space-lg);
}

.blog-post__content ul,
.blog-post__content ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.blog-post__content li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.blog-post__content blockquote {
  border-left: 4px solid var(--color-accent-green);
  padding-left: var(--space-lg);
  margin: var(--space-2xl) 0;
  color: var(--color-text-secondary);
  font-style: italic;
}

.blog-post__content code {
  background: rgba(56, 142, 60, 0.08);
  border: 1px solid rgba(56, 142, 60, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--color-accent-green);
}

.blog-post__content pre {
  background: var(--color-bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: var(--space-2xl) 0;
}

.blog-post__footer {
  max-width: 900px;
  margin: var(--space-3xl) auto 0;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   20. CONTACT FORM
   ═══════════════════════════════════════════════════════════════════════════════ */

.contact {
  background: var(--color-bg-secondary);
}

.contact__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.contact__title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.contact__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  padding: var(--space-md) 0;
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  transition: all var(--transition-base);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-tertiary);
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-accent-green);
  box-shadow: inset 0 -2px 0 var(--color-accent-green), 0 0 20px rgba(56, 142, 60, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group textarea::-webkit-scrollbar {
  width: 6px;
}

.form-group textarea::-webkit-scrollbar-thumb {
  background: var(--color-accent-green);
}

.form-group input:valid,
.form-group textarea:valid {
  border-bottom-color: var(--color-accent-green);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-bottom-color: #ff6b6b;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   21. ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
  background: var(--gradient-dark);
  overflow: hidden;
  margin-top: 60px;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 142, 60, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite;
}

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

.about-hero__title {
  font-size: var(--fs-5xl);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.about-hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  background: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-lg);
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: var(--space-3xl);
}

.about-section__title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-lg);
}

.about-section__text {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 900px;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
  .about-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   21.1 ABOUT PAGE CARD STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Stat Card */
.about-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 142, 60, 0.08), transparent);
  transition: left var(--transition-smooth);
  pointer-events: none;
}

.about-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent-green);
  box-shadow: 0 20px 40px rgba(56, 142, 60, 0.15);
}

.about-stat-card:hover::before {
  left: 100%;
}

.about-stat-card__number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient-green-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.about-stat-card__label {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.about-stat-card__description {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* Value Card */
.about-value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
}

.about-value-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent-green);
  box-shadow: 0 20px 40px rgba(56, 142, 60, 0.15);
}

.about-value-card__icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  transition: transform var(--transition-smooth);
}

.about-value-card:hover .about-value-card__icon {
  transform: scale(1.15);
}

.about-value-card__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.about-value-card__description {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* Language Card */
.about-language-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
  min-height: 140px;
  position: relative;
}

.about-language-card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: var(--color-accent-green);
  box-shadow: 0 20px 40px rgba(56, 142, 60, 0.15);
}

.about-language-card__flag {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.about-language-card__name {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Approach Card */
.about-approach-card {
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
  border-left: 4px solid var(--color-accent-green);
  position: relative;
}

.about-approach-card:hover {
  transform: translateX(8px) translateY(-8px);
  border-color: var(--color-accent-green);
  border-left: 4px solid var(--color-accent-gold);
  box-shadow: 0 20px 40px rgba(56, 142, 60, 0.15);
}

.about-approach-card__number {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-green-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.about-approach-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.about-approach-card__description {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   22. BUTTON STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.btn:hover::before {
  animation: magneticRipple 600ms ease-out;
}

@keyframes magneticRipple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Primary Button */
.btn-primary {
  background: var(--color-accent-green);
  color: var(--color-bg-primary);
  border-color: var(--color-accent-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--color-accent-green);
  border-color: var(--color-accent-green);
}

.btn-secondary:hover {
  background: rgba(56, 142, 60, 0.08);
  box-shadow: 0 0 20px rgba(56, 142, 60, 0.25);
}

/* Tertiary Button */
.btn-tertiary {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-accent-gold);
  border-color: rgba(21, 101, 192, 0.2);
}

.btn-tertiary:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 20px rgba(21, 101, 192, 0.2);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--color-text-primary);
  border-color: rgba(0, 0, 0, 0.1);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Full Width Button */
.btn-block {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   23. UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

.gradient-text {
  background: var(--gradient-green-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  background-size: 200% 200%;
}

.glow-effect {
  box-shadow: 0 0 40px rgba(56, 142, 60, 0.25);
}

.glow-effect-gold {
  box-shadow: 0 0 40px rgba(21, 101, 192, 0.2);
}

.glow-effect-purple {
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.3);
}

/* Noise Overlay */
.noise-overlay {
  position: relative;
}

.noise-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise" /></filter><rect width="100%" height="100%" fill="rgba(255,255,255,0.02)" filter="url(%23noise)" /></svg>');
  background-size: 300px 300px;
  pointer-events: none;
  opacity: 0.5;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-text-primary);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-accent {
  color: var(--color-accent-green);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

/* Display Utilities */
.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   24. RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Mobile: 480px */
@media (min-width: 480px) {
  .btn {
    padding: 16px 40px;
  }
}

/* Tablet: 768px */
@media (min-width: 768px) {
  body {
    font-size: var(--fs-base);
  }

  section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

/* Desktop: 1024px */
@media (min-width: 1024px) {
  section {
    padding: var(--space-3xl) var(--space-3xl);
  }
}

/* Large Desktop: 1440px */
@media (min-width: 1440px) {
  .container {
    max-width: 1600px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   25. ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  --color-bg-card: rgba(255, 255, 255, 0.08);
  --color-bg-card-hover: rgba(255, 255, 255, 0.12);
}

/* Focus States for Keyboard Navigation */
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent-green);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   26. PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

@media print {
  html {
    scroll-behavior: auto;
  }

  body {
    background: white;
    color: black;
  }

  header,
  footer,
  .mobile-nav,
  .loading-screen,
  .btn {
    display: none !important;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HOMEPAGE-SPECIFIC STYLES
   Styles for the flat class names used in index.html
   ═══════════════════════════════════════════════════════════════════════════════ */

/* --- Loading Screen --- */
.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.loading-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 5vw, 2.8rem);
  color: var(--color-accent-green);
  margin-bottom: var(--space-2xl);
  letter-spacing: 2px;
  text-transform: none;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(56, 142, 60, 0.25), 0 0 40px rgba(56, 142, 60, 0.12);
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(56, 142, 60, 0.25), 0 0 40px rgba(56, 142, 60, 0.12); }
  50% { text-shadow: 0 0 30px rgba(56, 142, 60, 0.35), 0 0 60px rgba(56, 142, 60, 0.2), 0 0 80px rgba(25, 118, 210, 0.15); }
}

/* --- Flying Eagle --- */
.flying-eagle {
  position: absolute;
  width: 120px;
  height: 60px;
  animation: eagleFly 3s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 15px rgba(56, 142, 60, 0.2));
  z-index: 10;
}

.eagle-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wing-left {
  transform-origin: 75px 38px;
  animation: flapLeft 0.4s ease-in-out infinite;
}

.wing-right {
  transform-origin: 75px 38px;
  animation: flapRight 0.4s ease-in-out infinite;
}

@keyframes flapLeft {
  0%, 100% { transform: rotate(0deg) scaleY(1); }
  50% { transform: rotate(-12deg) scaleY(0.85); }
}

@keyframes flapRight {
  0%, 100% { transform: rotate(0deg) scaleY(1); }
  50% { transform: rotate(12deg) scaleY(0.85); }
}

@keyframes eagleFly {
  0% {
    transform: translate(-200px, 40px) scale(0.6) rotate(-5deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translate(-60px, -30px) scale(0.85) rotate(3deg);
  }
  50% {
    transform: translate(0px, -50px) scale(1) rotate(-2deg);
  }
  75% {
    transform: translate(60px, -20px) scale(0.85) rotate(5deg);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(200px, 50px) scale(0.6) rotate(-5deg);
    opacity: 0;
  }
}

/* Sparkle trail behind the eagle */
.eagle-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #4CAF50, transparent);
  border-radius: 50%;
  animation: sparkleTrail 0.6s ease-out infinite;
  pointer-events: none;
}

.eagle-trail::before,
.eagle-trail::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: sparkleTrail 0.6s ease-out infinite;
}

.eagle-trail::before {
  background: radial-gradient(circle, #1976D2, transparent);
  left: -15px;
  top: 5px;
  animation-delay: 0.15s;
}

.eagle-trail::after {
  background: radial-gradient(circle, #FFD700, transparent);
  left: -30px;
  top: -3px;
  animation-delay: 0.3s;
}

@keyframes sparkleTrail {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.2); }
}

/* Mobile: smaller eagle */
@media (max-width: 768px) {
  .flying-eagle {
    width: 90px;
    height: 45px;
  }
  @keyframes eagleFly {
    0% { transform: translate(-120px, 30px) scale(0.5) rotate(-5deg); opacity: 0; }
    10% { opacity: 1; }
    25% { transform: translate(-40px, -20px) scale(0.7) rotate(3deg); }
    50% { transform: translate(0px, -35px) scale(0.8) rotate(-2deg); }
    75% { transform: translate(40px, -15px) scale(0.7) rotate(5deg); }
    90% { opacity: 1; }
    100% { transform: translate(120px, 35px) scale(0.5) rotate(-5deg); opacity: 0; }
  }
}

.progress-bar {
  width: 200px;
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--gradient-green-gold);
  animation: loadingBar 2.5s ease-in-out forwards;
  box-shadow: var(--glow-green);
}

/* --- Header Container --- */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- Desktop Nav Links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }
  .logo-img {
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Legacy text logo fallback */
.logo-main {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-accent-green);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-geometric);
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.client-login {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-accent-green) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.client-login:hover {
  color: var(--color-accent-gold) !important;
  text-shadow: 0 0 10px rgba(21, 101, 192, 0.2);
}

/* --- CTA Buttons --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button::after {
  display: none;
}

.cta-button.primary,
.cta-button.glow-button {
  background: var(--color-accent-green);
  color: var(--color-bg-primary);
  box-shadow: 0 0 20px rgba(56, 142, 60, 0.25);
}

.cta-button.primary:hover,
.cta-button.glow-button:hover {
  background: var(--color-accent-gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
  color: var(--color-bg-primary);
}

.cta-button.secondary {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  box-shadow: 0 0 15px rgba(56, 142, 60, 0.12);
  transform: translateY(-2px);
}

.cta-button.full-width {
  width: 100%;
}

.cta-button.large {
  padding: 18px 48px;
  font-size: var(--fs-base);
}

/* --- Hero Section (flat names) --- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.hero-overline {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  color: var(--color-text-primary);
}

.hero-headline .line {
  display: block;
}

.hero-headline .word {
  display: inline-block;
  margin-right: 0.2em;
}

.hero-headline .gradient-text {
  background: var(--gradient-green-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  line-height: var(--lh-relaxed);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* --- Hero Marquee --- */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-right: 2rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Header & Overline --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  font-size: var(--fs-4xl);
}

.overline {
  font-family: var(--font-geometric);
  font-size: var(--fs-xs);
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
}

/* --- Stats Section --- */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: var(--fs-5xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(56, 142, 60, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 142, 60, 0.05);
}

.service-card .card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.service-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.card-link {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-accent-green) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.card-link:hover {
  color: var(--color-accent-gold) !important;
}

/* --- How It Works / Timeline --- */
.how-it-works {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-bg-secondary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent-green), var(--color-accent-gold));
}

.timeline-step {
  position: relative;
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.timeline-dot {
  position: absolute;
  left: -60px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-primary);
  border: 2px solid var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-geometric);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-accent-green);
  box-shadow: 0 0 15px rgba(56, 142, 60, 0.15);
  z-index: 1;
}

.timeline-content h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.timeline-content p {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- Video Section --- */
.videos {
  padding: var(--space-3xl) var(--space-lg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.video-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.video-card:hover {
  border-color: rgba(56, 142, 60, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card h3 {
  padding: var(--space-md);
  font-size: var(--fs-base);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-weight: 600;
}

/* --- Testimonials --- */
.testimonials {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-bg-secondary);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(56, 142, 60, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-accent-green);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -1rem;
}

.stars {
  color: var(--color-accent-gold);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: var(--fs-base);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: var(--space-md);
}

.author-name {
  font-family: var(--font-geometric);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.author-location {
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
}

/* --- Pricing Section --- */
.pricing {
  padding: var(--space-3xl) var(--space-lg);
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid rgba(56, 142, 60, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(56, 142, 60, 0.05);
}

.pricing-header h3 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-xs);
  background: var(--gradient-green-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.pricing-tiers {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-tier {
  text-align: center;
}

.tier-label {
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-xs);
}

.tier-price {
  font-family: var(--font-serif);
  font-size: var(--fs-5xl);
  font-weight: 700;
  color: var(--color-accent-green);
  text-shadow: 0 0 20px rgba(56, 142, 60, 0.15);
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  text-align: left;
  margin-bottom: var(--space-xl);
}

@media (max-width: 480px) {
  .pricing-features {
    grid-template-columns: 1fr;
  }
}

.feature {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0;
}

.feature::first-letter {
  color: var(--color-accent-green);
}

.pricing-note {
  font-size: var(--fs-xs);
  color: var(--color-text-tertiary);
  margin-top: var(--space-md);
}

/* --- FAQ Section --- */
.faq {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-accent-green);
}

.faq-icon {
  font-size: var(--fs-xl);
  color: var(--color-accent-green);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* --- Final CTA Section --- */
.final-cta {
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(56, 142, 60, 0.05) 0%, transparent 70%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
}

.cta-content > p {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.cta-phone {
  margin-bottom: var(--space-xl);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  color: var(--color-accent-green) !important;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(56, 142, 60, 0.15);
  transition: all var(--transition-fast);
}

.phone-link:hover {
  color: var(--color-accent-gold) !important;
  text-shadow: 0 0 30px rgba(21, 101, 192, 0.2);
}

.phone-link::after {
  display: none;
}

.phone-icon {
  font-size: var(--fs-2xl);
}

/* --- Languages Section --- */
.languages {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.languages-content h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-lg);
}

.language-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.language-badge {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-geometric);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.language-badge:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  box-shadow: 0 0 15px rgba(56, 142, 60, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   DIRECTIONS MAP SECTION
   Professional map with directions for city/location pages
   ═══════════════════════════════════════════════════════════════════════════════ */

.directions-map-section {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-bg-secondary);
}

.directions-map-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-lg);
}

.directions-map-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.directions-map-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #388E3C, #1565C0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.directions-map-title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 4px;
}

.directions-map-subtitle {
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
  margin: 0;
}

.directions-map-embed {
  position: relative;
  width: 100%;
  line-height: 0;
}

.directions-map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.directions-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.directions-map-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.directions-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.directions-info-item strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-tertiary);
  font-weight: 600;
}

.directions-info-item span {
  font-size: var(--fs-sm);
  color: var(--color-text-primary);
}

.directions-info-item a {
  color: var(--color-accent-green);
  text-decoration: none;
  font-weight: 600;
}

.directions-info-item a:hover {
  text-decoration: underline;
}

.directions-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #388E3C, #2E7D32);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-sm);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(56, 142, 60, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.directions-map-btn:hover {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.35);
  transform: translateY(-2px);
}

.directions-map-btn svg {
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .directions-map-header {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .directions-map-title {
    font-size: var(--fs-lg);
  }

  .directions-map-embed iframe {
    height: 280px;
  }

  .directions-map-footer {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .directions-map-info {
    justify-content: center;
  }

  .directions-map-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .directions-map-section {
    padding: var(--space-xl) var(--space-sm);
  }

  .directions-map-embed iframe {
    height: 220px;
  }

  .directions-map-info {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* --- Footer --- */
.footer {
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: var(--space-2xl);
}

.footer-col h4 {
  font-family: var(--font-geometric);
  font-size: 1rem;
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.footer-col p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

.footer-col ul li a {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--color-accent-green);
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  clear: both;
}

.footer-bottom a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--color-accent-green);
}

.footer-column h4 {
  font-family: var(--font-geometric);
  font-size: var(--fs-base);
  color: var(--color-accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.footer-column p {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: var(--space-xs);
}

.footer-column ul li a {
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--color-accent-green);
}

.footer-column ul li a::after {
  display: none;
}

/* duplicate .footer-bottom removed — using the one above */

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--color-text-tertiary);
  margin: 0;
}

.footer-bottom a {
  font-size: var(--fs-xs);
  color: var(--color-text-tertiary);
}

.footer-bottom a:hover {
  color: var(--color-accent-green);
}

.footer-bottom a::after {
  display: none;
}

/* --- Sections Padding --- */
.services,
.stats {
  padding: var(--space-3xl) var(--space-lg);
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-green-gold);
  width: 0;
  z-index: calc(var(--z-fixed) + 1);
  box-shadow: 0 0 10px var(--color-accent-green);
  transition: width 100ms linear;
}

/* --- Mobile Responsive Header --- */
@media (max-width: 1023px) {
  .header-right .client-login,
  .header-right .cta-button.glow-button {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .pricing-tiers {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INNER PAGE CONTENT SECTIONS - Contact, Pricing, etc.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.contact-main-section {
  padding: var(--space-3xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-form-column {
  display: flex;
  flex-direction: column;
}

.contact-info-card,
.contact-form-card,
.business-hours-card,
.languages-available-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.contact-info-card:hover,
.contact-form-card:hover,
.business-hours-card:hover,
.languages-available-card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(56, 142, 60, 0.15);
}

.contact-info-card h3,
.contact-form-card h3,
.business-hours-card h3,
.languages-available-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

/* --- Contact Info Items --- */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.75rem;
  min-width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-content h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.info-content p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.info-content a {
  color: var(--color-accent-green);
  transition: color var(--transition-fast);
}

.info-content a:hover {
  color: var(--color-accent-gold);
}

/* --- Business Hours --- */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-item .day {
  color: var(--color-text-primary);
  font-weight: 600;
}

.hours-item .time {
  color: var(--color-accent-green);
  font-weight: 600;
}

.hours-note {
  font-size: var(--fs-sm);
  color: var(--color-text-tertiary);
  margin-bottom: 0;
}

/* --- Languages Available --- */
.languages-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.language-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: rgba(56, 142, 60, 0.08);
  border: 1px solid rgba(56, 142, 60, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  color: var(--color-accent-green);
  transition: all var(--transition-fast);
}

.language-badge:hover {
  background: rgba(56, 142, 60, 0.15);
  border-color: var(--color-accent-green);
}

/* --- Contact Form --- */
.form-intro {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

/* --- Glass Card --- */
.glass-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(56, 142, 60, 0.15);
}

/* --- Map Section --- */
.map-section {
  padding: var(--space-3xl) 0;
}

.map-container {
  margin: var(--space-2xl) 0;
}

.map-placeholder {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-tertiary);
  border: 2px dashed rgba(56, 142, 60, 0.25);
  border-radius: var(--radius-lg);
}

.map-placeholder-content {
  text-align: center;
  color: var(--color-text-secondary);
}

.map-placeholder-content p {
  margin-bottom: var(--space-sm);
}

.map-note {
  color: var(--color-text-tertiary);
  font-size: var(--fs-sm);
  text-align: center;
  margin-top: var(--space-md);
  margin-bottom: 0;
}

/* --- Quick Contact Section --- */
.quick-contact-section {
  padding: var(--space-3xl) 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.quick-contact-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all var(--transition-base);
}

.quick-contact-card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(56, 142, 60, 0.15);
}

.quick-contact-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.quick-contact-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.phone-cta,
.scroll-cta {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-green-gold);
  color: #000;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.phone-cta:hover,
.scroll-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56, 142, 60, 0.25);
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.05), rgba(255, 215, 0, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 142, 60, 0.08);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl);
}

.cta-content h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.cta-content p {
  font-size: var(--fs-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.cta-button-large {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: var(--gradient-green-gold);
  color: #000;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-base);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(56, 142, 60, 0.25);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PRICING PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.pricing-section {
  padding: var(--space-3xl) 0;
}

.pricing-card-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all var(--transition-base);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.08), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(56, 142, 60, 0.25);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 142, 60, 0.35);
}

.pricing-header h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.pricing-subtitle {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.pricing-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--space-2xl) 0;
}

.price-first {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-green);
  line-height: 1;
}

.price-label {
  color: var(--color-text-secondary);
  font-size: var(--fs-base);
  margin-top: var(--space-sm);
}

.pricing-then {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background: rgba(56, 142, 60, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.price-recurring {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-gold);
}

.pricing-description {
  margin: var(--space-lg) 0;
}

.pricing-description p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.features-list {
  list-style: none;
  margin: var(--space-2xl) 0;
  text-align: left;
}

.features-list li {
  padding: var(--space-sm) 0;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.check-mark {
  color: var(--color-accent-green);
  font-weight: 700;
  font-size: 1.25rem;
}

.cta-button-card {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background: var(--gradient-green-gold);
  color: #000;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.cta-button-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56, 142, 60, 0.25);
}

/* --- How It Works Section --- */
.how-it-works-section {
  padding: var(--space-3xl) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.process-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  position: relative;
  transition: all var(--transition-base);
}

.process-card:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(56, 142, 60, 0.15);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--gradient-green-gold);
  color: #000;
  border-radius: 50%;
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.process-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.process-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* --- Services Note Section --- */
.services-note-section {
  padding: var(--space-3xl) 0;
}

.note-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
}

.note-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.note-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--space-3xl) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.faq-item {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.faq-item:hover {
  background: var(--color-bg-card-hover);
  border-color: rgba(56, 142, 60, 0.15);
}

.faq-item h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.faq-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* --- Essential Steps Section --- */
.essential-steps-section {
  padding: var(--space-3xl) 0;
}

.steps-intro {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(76, 175, 80, 0.15);
  backdrop-filter: blur(10px);
  margin-bottom: var(--space-2xl);
}

.steps-intro p {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-base);
}

.trust-statements {
  margin-top: var(--space-xl);
}

.trust-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(25, 118, 210, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
}

.trust-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--color-accent-green);
  margin-bottom: var(--space-sm);
}

.trust-card p {
  color: var(--color-text-secondary);
  font-size: var(--fs-base);
}

/* --- Pricing Help Text --- */
.pricing-help {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: var(--fs-sm);
  margin: var(--space-md) 0;
}

.pricing-help a {
  color: var(--color-accent-green);
  font-weight: 600;
}

/* --- Disclaimers Section --- */
.disclaimers-section {
  padding: var(--space-3xl) 0;
}

.disclaimer-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid rgba(25, 118, 210, 0.2);
  backdrop-filter: blur(10px);
}

.disclaimer-card h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-accent-gold);
}

.disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.disclaimer-text p {
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-sm);
  padding: var(--space-md);
  background: rgba(25, 118, 210, 0.05);
  border-left: 3px solid var(--color-accent-gold);
  border-radius: var(--radius-sm);
}

.disclaimer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.disclaimer-list li {
  padding: var(--space-md);
  background: rgba(25, 118, 210, 0.05);
  border-left: 3px solid var(--color-accent-gold);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER CONTENT STYLES
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-section h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.footer-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  line-height: var(--lh-relaxed);
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-section a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--color-accent-green);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE CONTACT & PRICING
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: var(--fs-2xl);
  }

  .cta-section {
    padding: var(--space-2xl);
  }

  .cta-content {
    padding: var(--space-2xl);
  }

  .pricing-card {
    padding: var(--space-2xl);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIX
   ═══════════════════════════════════════════════════════════════════════════════ */

/* --- Mobile Header & Navigation (max-width: 1023px) --- */
@media (max-width: 1023px) {
  /* Force header to be a proper mobile layout */
  header,
  .header {
    padding: var(--space-sm) var(--space-md);
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Hide the desktop nav links */
  .nav-links {
    display: none !important;
  }

  /* Hide the old bare nav too */
  header > nav:not(.mobile-nav) {
    display: none !important;
  }

  /* Hide Client Login and Get Started on mobile */
  .header-right .client-login,
  .header-right .cta-button,
  .header-right .glow-button {
    display: none !important;
  }

  /* Show the hamburger */
  .hamburger {
    display: flex !important;
  }

  /* Logo sizing */
  .logo-img {
    height: 40px;
    width: auto;
  }

  /* Mobile Nav Full-Screen Overlay */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(245, 243, 240, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-nav.active {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav a {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: var(--color-accent-green);
  }
}

/* --- Mobile Hero (max-width: 768px) --- */
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: var(--space-2xl) var(--space-md) var(--space-xl);
    margin-top: 56px;
  }

  .hero__title,
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
    letter-spacing: -1px;
    line-height: 1.15;
  }

  .hero__subtitle,
  .hero-subtitle {
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    padding: 0 var(--space-sm);
  }

  .hero__tagline {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
  }

  /* Hero Video Background on Mobile */
  .hero-video-bg {
    display: none;
  }

  .hero-video-overlay {
    background: rgba(245, 243, 240, 0.95);
  }

  .hero::before {
    width: 300px;
    height: 300px;
  }

  .hero__scroll-hint {
    bottom: 15px;
  }

  .reveal-text {
    font-size: clamp(2rem, 8vw, 3.5rem) !important;
  }
}

/* --- Mobile Service Cards (max-width: 768px) --- */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: 0 var(--space-md);
  }

  .service-card {
    padding: var(--space-lg);
  }

  .service-card .card-icon {
    font-size: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }
}

/* 2-column at tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile How It Works / Steps --- */
@media (max-width: 768px) {
  .how-it-works,
  .how-it-works-section {
    padding: var(--space-2xl) var(--space-md);
  }

  .step,
  .process-card {
    padding: var(--space-lg);
  }

  .step__number,
  .process-number {
    font-size: 2rem;
  }
}

/* --- Mobile Stats Section --- */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .stat-number {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Mobile Testimonials --- */
@media (max-width: 768px) {
  .testimonials {
    padding: var(--space-2xl) var(--space-md);
  }

  .testimonial-card {
    padding: var(--space-lg);
    min-width: 280px;
  }
}

/* --- Mobile CTA Section --- */
@media (max-width: 768px) {
  .cta-section {
    padding: var(--space-xl) var(--space-md);
  }

  .cta-content {
    padding: var(--space-xl);
  }

  .cta-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cta-button-large {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
}

/* --- Mobile Footer --- */
@media (max-width: 768px) {
  .footer {
    padding: var(--space-2xl) var(--space-md) var(--space-lg);
  }

  .footer-grid,
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl);
    text-align: center;
  }

  .footer-col,
  .footer-column {
    text-align: center;
  }

  .footer-col ul,
  .footer-column ul {
    padding: 0;
    list-style: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
  }
}

/* 2-column footer at tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .footer-grid,
  .footer-container {
    grid-template-columns: repeat(2, 1fr) !important;
    text-align: left;
  }

  .footer-col,
  .footer-column {
    text-align: left;
  }
}

/* 4-col to 2-col footer transition */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* --- Mobile Pricing Page --- */
@media (max-width: 768px) {
  .pricing-card-wrapper {
    padding: 0;
  }

  .pricing-card {
    padding: var(--space-xl);
    margin: 0 var(--space-sm);
  }

  .pricing-amount .price-first {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .features-list li {
    font-size: 0.95rem;
    padding: var(--space-xs) 0;
  }

  .essential-steps-section,
  .services-note-section,
  .disclaimers-section {
    padding: var(--space-xl) var(--space-md);
  }

  .steps-intro,
  .note-card,
  .disclaimer-card {
    padding: var(--space-lg);
  }

  .trust-card {
    padding: var(--space-lg);
  }
}

/* --- Mobile Contact Page --- */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-info-card,
  .business-hours-card,
  .languages-available-card,
  .contact-form-card {
    padding: var(--space-lg);
  }

  .languages-badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .map-container {
    height: 250px;
  }
}

/* --- Mobile Locations Page --- */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile Blog Pages --- */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .blog-card {
    padding: var(--space-lg);
  }

  article,
  .article-content {
    padding: var(--space-md);
  }

  .article-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

/* --- Mobile Glass Card padding --- */
@media (max-width: 768px) {
  .glass-card {
    padding: var(--space-lg);
  }
}

/* --- Small phones (max-width: 380px) --- */
@media (max-width: 380px) {
  .hero {
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
  }

  .hero__title,
  .hero-title,
  .reveal-text {
    font-size: clamp(1.8rem, 9vw, 2.5rem) !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 var(--space-sm);
  }
}

/* --- Prevent horizontal scroll on all mobile --- */
@media (max-width: 1023px) {
  html, body {
    overflow-x: hidden;
  }

  * {
    max-width: 100vw;
  }

  .container {
    overflow-x: hidden;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   END OF STYLESHEET
   ═══════════════════════════════════════════════════════════════════════════════ */
