/* ============================================
   LEMON HOME DELIVERY — Design System
   Palette: Chlorophyll + Terracotta accents
   Fonts: Bricolage Grotesque + DM Serif Display
   ============================================ */

:root {
  /* Brand Colors */
  --lemon-yellow:   #E8F542;
  --lemon-green:    #B8F369;
  --lemon-dark:     #0A1F02;
  --lemon-mid:      #2D6A1E;
  --lemon-light:    #F0FFF0;
  --lemon-accent:   #B5563E;
  --lemon-warm:     #F2E6D9;

  /* Neutrals */
  --white:          #FFFFFF;
  --off-white:      #FAFAF7;
  --gray-100:       #F4F4F0;
  --gray-200:       #E8E8E2;
  --gray-400:       #9A9A8E;
  --gray-600:       #5A5A50;
  --gray-800:       #2A2A22;
  --black:          #0D0D08;

  /* Typography */
  --font-display:   'DM Serif Display', Georgia, serif;
  --font-body:      'Bricolage Grotesque', system-ui, sans-serif;

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

  /* Radius */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(10,31,2,0.08);
  --shadow-md:      0 8px 32px rgba(10,31,2,0.12);
  --shadow-lg:      0 20px 60px rgba(10,31,2,0.16);
  --shadow-glow:    0 0 40px rgba(184,243,105,0.25);

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; }

em { font-family: var(--font-display); font-style: italic; color: var(--lemon-mid); }
.text-accent { color: var(--lemon-mid); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--lemon-dark);
  color: var(--lemon-green);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--lemon-dark);
}
.btn-primary:hover {
  background: var(--lemon-mid);
  border-color: var(--lemon-mid);
  color: var(--lemon-yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--lemon-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--lemon-dark);
  transition: all 0.25s var(--ease);
}
.btn-secondary:hover {
  background: var(--lemon-dark);
  color: var(--lemon-green);
  transform: translateY(-2px);
}

.btn-track {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  transition: all 0.25s var(--ease);
}
.btn-track:hover {
  border-color: var(--lemon-mid);
  color: var(--lemon-mid);
}

.btn-quote {
  background: var(--lemon-green);
  color: var(--lemon-dark);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--lemon-green);
}
.btn-quote:hover {
  background: var(--lemon-yellow);
  border-color: var(--lemon-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(184,243,105,0.4);
}

.btn-submit {
  width: 100%;
  background: var(--lemon-dark);
  color: var(--lemon-green);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: all 0.25s var(--ease);
  margin-top: var(--space-sm);
}
.btn-submit:hover {
  background: var(--lemon-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  background: var(--lemon-green);
  color: var(--lemon-dark);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}
.section-header h2 { margin-bottom: var(--space-sm); }
.section-desc { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,2,0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-lg);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-spring);
  scrollbar-width: thin;
  scrollbar-color: var(--lemon-green) var(--gray-100);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all 0.2s var(--ease);
}
.modal-close:hover { background: var(--lemon-dark); color: var(--white); }

.modal-header { margin-bottom: var(--space-md); }
.modal-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--lemon-dark);
  margin-bottom: var(--space-xs);
}
.modal-header h2 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.modal-header p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: var(--space-sm); }

.modal-contact-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.modal-contact-row a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lemon-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.modal-contact-row a:hover { color: var(--lemon-dark); }

.modal-tabs {
  display: flex;
  gap: 0.4rem;
  background: var(--gray-100);
  padding: 0.3rem;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.modal-tab {
  flex: 1;
  min-width: 100px;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.2s var(--ease);
  text-align: center;
}
.modal-tab.active {
  background: var(--lemon-dark);
  color: var(--lemon-green);
}
.modal-tab:hover:not(.active) { background: var(--gray-200); color: var(--gray-800); }

.modal-form { display: none; }
.modal-form.active { display: block; }
.modal-form h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.form-note { color: var(--gray-600); font-size: 0.85rem; margin-bottom: var(--space-md); }

.quote-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s var(--ease);
  outline: none;
}
.quote-form input:focus,
.quote-form select:focus { border-color: var(--lemon-mid); }
.quote-form input::placeholder { color: var(--gray-400); }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-600); }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.4rem;
}
.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  transition: all 0.15s;
}
.checkbox-grid label:hover { border-color: var(--lemon-mid); background: var(--lemon-light); }
.checkbox-grid input[type="checkbox"] { accent-color: var(--lemon-mid); }

.privacy-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  cursor: pointer;
}
.privacy-check a { color: var(--lemon-mid); text-decoration: underline; }
.privacy-check input { accent-color: var(--lemon-mid); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.form-success.active { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--lemon-green);
  color: var(--lemon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto var(--space-sm);
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-600); }

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; line-height: 1; }
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lemon-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lemon-mid);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--lemon-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--lemon-mid); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lemon-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  padding: 8rem var(--space-md) var(--space-3xl);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--lemon-green);
  top: -200px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--lemon-yellow);
  bottom: 100px;
  left: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,31,2,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,2,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,243,105,0.2);
  border: 1.5px solid var(--lemon-green);
  color: var(--lemon-mid);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  width: fit-content;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lemon-mid);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--lemon-dark);
  font-weight: 400;
}
.hero-title em {
  font-style: italic;
  color: var(--lemon-mid);
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lemon-dark);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--gray-200); }

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  min-width: 180px;
}
.hero-card div { display: flex; flex-direction: column; }
.hero-card strong { font-size: 0.85rem; font-weight: 700; color: var(--lemon-dark); }
.hero-card span { font-size: 0.75rem; color: var(--gray-400); }
.hero-card-1 { bottom: 2rem; left: -2rem; }
.hero-card-2 { top: 2rem; right: -1.5rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== SERVICES ===== */
.services {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lemon-green), var(--lemon-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--lemon-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: var(--lemon-dark);
  border-color: var(--lemon-dark);
  color: var(--white);
}
.service-card--featured::before {
  background: linear-gradient(90deg, var(--lemon-green), var(--lemon-yellow));
  transform: scaleX(1);
}
.service-card--featured h3 { color: var(--lemon-green); }
.service-card--featured p { color: rgba(255,255,255,0.75); }
.service-card--featured .service-features li { color: rgba(255,255,255,0.85); }
.service-card--featured .service-features svg { stroke: var(--lemon-green); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--lemon-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lemon-dark);
  flex-shrink: 0;
}
.service-card--featured .service-icon {
  background: rgba(184,243,105,0.15);
  color: var(--lemon-green);
}

.service-tag {
  display: inline-block;
  background: var(--lemon-yellow);
  color: var(--lemon-dark);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.service-card h3 { font-size: 1.3rem; }
.service-card p { font-size: 0.92rem; line-height: 1.65; color: var(--gray-600); flex: 1; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}
.service-features svg { stroke: var(--lemon-mid); flex-shrink: 0; }

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s var(--ease);
  background: var(--lemon-green);
  color: var(--lemon-dark);
  border: 2px solid var(--lemon-green);
  margin-top: auto;
  width: fit-content;
}
.service-cta:hover {
  background: var(--lemon-yellow);
  border-color: var(--lemon-yellow);
  transform: translateY(-2px);
}
.service-cta--outline {
  background: transparent;
  color: var(--lemon-mid);
  border-color: var(--lemon-mid);
}
.service-cta--outline:hover {
  background: var(--lemon-mid);
  color: var(--white);
  border-color: var(--lemon-mid);
}

/* ===== HIGHLIGHT ===== */
.highlight-section {
  background: var(--lemon-light);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.highlight-text { display: flex; flex-direction: column; gap: var(--space-md); }
.highlight-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.highlight-text p { color: var(--gray-600); line-height: 1.75; }

.highlight-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.highlight-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lemon-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.highlight-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.highlight-col li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-left: 1rem;
  position: relative;
}
.highlight-col li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lemon-mid);
  font-size: 0.8rem;
}

.highlight-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.highlight-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.highlight-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  background: var(--lemon-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lemon-yellow);
  line-height: 1;
}
.highlight-badge span:last-child { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ===== ABOUT ===== */
.about {
  padding: var(--space-3xl) 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-quote-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--lemon-dark);
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  max-width: 300px;
  box-shadow: var(--shadow-lg);
}
.about-quote-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0.75rem 0;
  font-style: italic;
}
.about-quote-card strong { font-size: 0.8rem; color: var(--lemon-green); }

.about-text { display: flex; flex-direction: column; gap: var(--space-md); }
.about-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.about-text p { color: var(--gray-600); line-height: 1.8; font-size: 0.97rem; }

/* ===== DIFFERENT ===== */
.different {
  padding: var(--space-3xl) 0;
  background: var(--lemon-dark);
  color: var(--white);
}
.different-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}
.different-text { display: flex; flex-direction: column; gap: var(--space-md); }
.different-text .section-tag { background: rgba(184,243,105,0.2); color: var(--lemon-green); }
.different-text h2 { color: var(--white); }
.different-text p { color: rgba(255,255,255,0.7); line-height: 1.75; }

.different-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.diff-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,243,105,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all 0.3s var(--ease);
}
.diff-card:hover {
  background: rgba(184,243,105,0.08);
  border-color: rgba(184,243,105,0.4);
  transform: translateY(-3px);
}
.diff-icon {
  width: 48px;
  height: 48px;
  background: rgba(184,243,105,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lemon-green);
  margin-bottom: var(--space-sm);
}
.diff-card h4 { color: var(--lemon-green); margin-bottom: 0.4rem; }
.diff-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ===== PARTNERS ===== */
.partners {
  padding: var(--space-3xl) 0;
  background: var(--off-white);
  overflow: hidden;
}

.marquee-wrap {
  overflow: hidden;
  margin-top: var(--space-lg);
  padding: var(--space-sm) 0;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }

.marquee-track {
  display: flex;
  gap: var(--space-md);
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-logo {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
  transition: all 0.2s var(--ease);
  flex-shrink: 0;
}
.partner-logo:hover {
  border-color: var(--lemon-green);
  color: var(--lemon-mid);
  background: var(--lemon-light);
}

/* ===== VALUES ===== */
.values {
  padding: var(--space-3xl) 0;
  background: var(--white);
}
.values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.values-text { display: flex; flex-direction: column; gap: var(--space-md); }
.values-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.values-text p { color: var(--gray-600); line-height: 1.8; }

.values-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.pillar {
  padding: var(--space-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
}
.pillar:hover {
  border-color: var(--lemon-green);
  background: var(--lemon-light);
  transform: translateY(-3px);
}
.pillar-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--lemon-mid);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.pillar h4 { margin-bottom: 0.4rem; color: var(--lemon-dark); }
.pillar p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews {
  padding: var(--space-3xl) 0;
  background: var(--lemon-dark);
  color: var(--white);
}
.reviews .section-tag { background: rgba(184,243,105,0.2); color: var(--lemon-green); }
.reviews .section-header h2 { color: var(--white); }

.trustpilot-summary {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,243,105,0.2);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tp-stars { font-size: 1.3rem; color: var(--lemon-yellow); letter-spacing: 2px; }
.tp-info { display: flex; flex-direction: column; }
.tp-info strong { font-size: 0.9rem; color: var(--white); }
.tp-info span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,243,105,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all 0.3s var(--ease);
}
.review-card:hover {
  background: rgba(184,243,105,0.08);
  border-color: rgba(184,243,105,0.35);
  transform: translateY(-4px);
}
.review-stars { color: var(--lemon-yellow); font-size: 1rem; letter-spacing: 2px; }
.review-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.reviewer-avatar {
  width: 36px;
  height: 36px;
  background: var(--lemon-green);
  color: var(--lemon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: 0.85rem; color: var(--white); }
.reviewer span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--space-xl) 0;
  background: var(--lemon-light);
  border-top: 1px solid var(--gray-200);
}
.contact-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.contact-card { flex: 1; min-width: 200px; }
.contact-card .section-tag { margin-bottom: 0.5rem; }
.contact-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lemon-dark);
  margin-bottom: 0.25rem;
}
.contact-card p { color: var(--gray-600); font-size: 0.9rem; }
.contact-card--cta { text-align: center; }
.contact-card--cta h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.contact-card--cta p { margin-bottom: var(--space-sm); }
.contact-divider { width: 1px; height: 80px; background: var(--gray-200); flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-3xl) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer-email {
  color: var(--lemon-green);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--lemon-yellow); }
.footer-socials { display: flex; gap: var(--space-sm); margin-top: 0.25rem; }
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s var(--ease);
}
.footer-socials a:hover { background: var(--lemon-green); color: var(--lemon-dark); }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lemon-green);
  margin-bottom: var(--space-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: var(--space-md) 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-image-wrap { display: none; }
  .hero-scroll { display: none; }
  .highlight-inner,
  .about-inner,
  .different-inner,
  .values-inner { grid-template-columns: 1fr; }
  .highlight-image,
  .about-image-wrap { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
  }
  .nav-links.open a { font-size: 1.5rem; font-weight: 700; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .different-cards { grid-template-columns: 1fr; }
  .values-pillars { grid-template-columns: 1fr; }
  .highlight-cols { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; text-align: center; }
  .contact-divider { width: 80px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .modal-tabs { flex-direction: column; }
  .hero-stats { gap: var(--space-sm); }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  :root { --space-xl: 3rem; --space-2xl: 4rem; --space-3xl: 5rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary, .btn-track { width: 100%; justify-content: center; }
}