/* Fonts loaded via <link> in HTML */

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

:root {
  --bg:           #F6F5F1;
  --bg-card:      #FFFFFF;
  --bg-card2:     #EDECE8;
  --bg-dark:      #182213;
  --green:        #4D6B2C;
  --green-light:  #6A8E40;
  --green-hero:   #A3C47A;
  --dark:         #1A1E16;
  --muted:        #6B7566;
  --border-dim:   rgba(0,0,0,0.09);
  --border-green: rgba(77,107,44,0.2);
  --white:        #FFFFFF;
  --bg-section-alt: #EEF3E8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(246,245,241,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ── LOGO ── */
.logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.3px;
}

.logo-mark {
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 7px 11px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--dark); }

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 7px;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-light) !important; }

/* ── MOBILE HAMBURGER ── */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 100px 0; }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}

/* Section label on dark bg */
.section-label-light {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-hero);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label-light::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green-hero);
  opacity: 0.5;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

h2 em {
  font-style: normal;
  color: var(--green);
}

.subheading {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── PILL BADGE ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(77,107,44,0.12);
  border: 1px solid rgba(77,107,44,0.25);
  color: var(--green-hero);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
}

.pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-hero);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* Outline on dark bg */
.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

/* Outline on light bg */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-dim);
  color: var(--dark);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--border-green);
  background: rgba(77,107,44,0.04);
}

/* ── HERO ── */
.hero {
  background: var(--bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77,107,44,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.12;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-hero);
}

.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── LSA MOCKUP ── */
.lsa-mockup {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  max-width: 420px;
  margin-left: auto;
}

.lsa-search-bar {
  background: #F1F3F4;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #E0E0E0;
}

.lsa-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.lsa-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lsa-dots span:nth-child(1) { background: #FF5F57; }
.lsa-dots span:nth-child(2) { background: #FFBD2E; }
.lsa-dots span:nth-child(3) { background: #28CA41; }

.lsa-search-input {
  flex: 1;
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #202124;
  font-family: 'DM Sans', sans-serif;
}

.lsa-body { padding: 14px; }

.lsa-sponsored {
  font-size: 0.68rem;
  color: #70757A;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.lsa-card {
  border: 1px solid #DADCE0;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}

.lsa-card.featured {
  border-color: #4D6B2C;
  background: #F6FBF0;
}

.lsa-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}

.lsa-icon.grey { background: #BDC1C6; }

.lsa-card-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1A73E8;
  font-family: 'DM Sans', sans-serif;
}

.lsa-card-rating {
  font-size: 0.68rem;
  color: #202124;
  font-family: 'DM Sans', sans-serif;
}

.lsa-stars { color: #FBBC04; }

.lsa-guaranteed {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  margin-top: 3px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

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

.stat-item {
  padding: 44px 32px;
  border-right: 1px solid var(--border-dim);
}

.stat-item:last-child { border-right: none; }

.stat-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── LSA EXPLAIN ── */
.lsa-explain { background: var(--bg-section-alt); }

.lsa-explain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.lsa-metrics { display: flex; flex-direction: column; gap: 28px; }

.lsa-metric-row { }

.lsa-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.lsa-metric-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.lsa-metric-pct {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
}

.lsa-metric-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 6px;
}

.lsa-track {
  height: 6px;
  background: rgba(0,0,0,0.08);
  border-radius: 100px;
  overflow: hidden;
}

.lsa-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-hero));
  border-radius: 100px;
}

/* ── LSA DASHBOARD ── */
/* ── GOOGLE SEARCH MOCK-UP ── */
.google-mockup {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}

.gm-browser-bar {
  background: #F1F3F4;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #E0E0E0;
}

.gm-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.gm-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.gm-url-bar {
  flex: 1;
  background: #fff;
  border: 1px solid #DADCE0;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: #5F6368;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gm-body {
  padding: 14px 16px;
  background: #fff;
}

.gm-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.gm-searchbox {
  flex: 1;
  border: 1px solid #DADCE0;
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: #202124;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 6px rgba(32,33,36,0.1);
}

.gm-sponsored {
  font-size: 0.65rem;
  color: #70757A;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 6px;
  padding-left: 2px;
}

.gm-lsa-block {
  border: 1px solid #DADCE0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}

.gm-lsa-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #F1F3F4;
  background: #fff;
}

.gm-lsa-card:last-child { border-bottom: none; }

.gm-lsa-top { background: #F6FBF0; }

.gm-lsa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}

.gm-lsa-info { flex: 1; }

.gm-lsa-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1A73E8;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1px;
}

.gm-lsa-stars {
  font-size: 0.65rem;
  color: #FBBC04;
  font-family: 'DM Sans', sans-serif;
}

.gm-lsa-stars span {
  color: #202124;
}

.gm-lsa-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  margin-top: 3px;
  font-family: 'DM Sans', sans-serif;
}

.gm-lsa-call {
  background: #1A73E8;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}

/* Blurred organic results */
.gm-organic {
  padding: 10px 4px;
  border-bottom: 1px solid #F1F3F4;
}

.gm-organic:last-child { border-bottom: none; }

.gm-organic-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.gm-organic-favicon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E0E0E0;
  flex-shrink: 0;
}

.gm-organic-meta { flex: 1; }

.gm-organic-site {
  height: 8px;
  width: 80px;
  background: #E0E0E0;
  border-radius: 4px;
  margin-bottom: 4px;
}

.gm-organic-url {
  height: 7px;
  width: 120px;
  background: #E8F0FE;
  border-radius: 4px;
}

.gm-organic-title {
  height: 12px;
  width: 100%;
  background: #C5CAE9;
  border-radius: 4px;
  margin-bottom: 6px;
}

.gm-organic-desc {
  height: 8px;
  width: 100%;
  background: #EEEEEE;
  border-radius: 4px;
  margin-bottom: 4px;
}

/* ── SERVICES ── */
.services-section { background: var(--bg-card); }

.services-header { margin-bottom: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 40px 36px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(77,107,44,0.08);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

.services-cta {
  margin-top: 40px;
}

/* ── CASE STUDIES ── */
.case-studies { background: var(--bg); }

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-green);
}

.case-card-top {
  background: var(--bg-dark);
  padding: 24px 24px 20px;
}

.case-trade-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(163,196,122,0.12);
  border: 1px solid rgba(163,196,122,0.2);
  color: #A3C47A;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}

.case-card-top h3 {
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 3px;
}

.case-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-dim);
}

.case-metric {
  padding: 18px 20px;
  border-right: 1px solid var(--border-dim);
}

.case-metric:last-child { border-right: none; }

.case-metric-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.case-metric-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

.case-body { padding: 20px 24px; }

.case-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 10px;
}

.case-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── WHY US ── */
.why-section { background: var(--bg-dark); }

.why-section h2 { color: #ffffff; }
.why-section h2 em { color: var(--green-hero); }
.why-section .subheading { color: rgba(255,255,255,0.6); }
.why-section .section-label { color: var(--green-hero); }
.why-section .section-label::after { background: var(--green-hero); }
.why-section .why-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.why-section .why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(163,196,122,0.3);
}
.why-section .why-card h3 { color: #ffffff; }
.why-section .why-card p { color: rgba(255,255,255,0.6); }
.why-section .why-icon-box {
  background: rgba(163,196,122,0.1);
  border-color: rgba(163,196,122,0.25);
  color: var(--green-hero);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 36px 30px;
  transition: border-color 0.2s, transform 0.2s;
}

.why-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}

.why-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(77,107,44,0.08);
  border: 1px solid var(--border-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg-card); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(77,107,44,0.1));
}

.step { padding: 0 20px; text-align: center; }

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--bg-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77,107,44,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner h2 em {
  color: var(--green-hero);
  font-style: normal;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dim);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.3px;
}

.footer-logo .logo-mark {
  font-size: 0.7rem;
  padding: 5px 9px;
}

footer p {
  font-size: 0.82rem;
  color: var(--muted);
}

footer nav {
  position: static;
  background: transparent;
  border: none;
  height: auto;
  backdrop-filter: none;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--muted);
  transition: color 0.2s;
}

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

/* ── PAGE HERO ── */
.page-hero {
  background: var(--bg-dark);
  padding: 160px 0 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77,107,44,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  max-width: 700px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--green-hero);
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  line-height: 1.8;
}

/* ── SERVICES FULL PAGE ── */
.services-full { background: var(--bg-card); }

.service-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.service-full-card {
  background: var(--bg);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 44px 40px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-full-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}

.service-num-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-num-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}

.service-full-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.service-full-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  background: rgba(77,107,44,0.07);
  border: 1px solid rgba(77,107,44,0.18);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif;
}

/* ── CONTACT ── */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(77,107,44,0.07);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 3px;
}

.contact-detail-text span {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── CALENDLY ── */
.calendly-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  overflow: hidden;
  min-height: 700px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-mobile-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-dim);
    padding: 24px 32px;
    flex-direction: column;
    gap: 20px;
    z-index: 200;
  }

  .nav-links.open { display: flex; }

  section { padding: 72px 0; }

  .hero-inner { grid-template-columns: 1fr; }
  .lsa-mockup { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border-dim); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-dim); border-right: none; }

  .lsa-explain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .service-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero h1 { font-size: 2.2rem; }
  .steps { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
}
