
/* ═══════════════════════════════════════════
   ROOT TOKENS
═══════════════════════════════════════════ */
:root {
  --green:      #68a037;
  --green-dark: #527d2b;
  --green-mid:  #70a840;
  --green-lt:   #d9e8cc;
  --green-xlt:  #f0f5eb;
  --black:      #111111;
  --text:       #1A1A1A;
  --body:       #444444;
  --muted:      #6E6E6E;
  --border:     #E2E2E2;
  --white:      #FFFFFF;
  --off:        #F7F7F5;
  --gold:       #C4954A;

  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'Outfit', sans-serif;

  --r: 0px; /* no border radius – sharp/professional */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 64px rgba(0,0,0,0.12);
  --transition: 0.22s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   ENHANCED ANIMATIONS & KEYFRAMES
═══════════════════════════════════════════ */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes subtlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ═══════════════════════════════════════════
   NEW PREMIUM ANIMATIONS
═══════════════════════════════════════════ */
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(104, 160, 55, 0.15); }
  50% { box-shadow: 0 0 30px rgba(104, 160, 55, 0.25); }
}

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

@keyframes shimmerText {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotateZ(0deg); opacity: 0.8; }
  50% { transform: translateY(-6px) rotateZ(2deg); opacity: 1; }
}

@keyframes buttonShimmer {
  0% { background-position: -1000px center; }
  100% { background-position: 1000px center; }
}

@keyframes rippleAnimation {
  0% { transform: scale(0); opacity: 0.8; }
  100% { transform: scale(4); opacity: 0; }
}

@keyframes shadowShift {
  0%, 100% { box-shadow: 0 10px 30px rgba(104, 160, 55, 0.1); }
  50% { box-shadow: 0 15px 40px rgba(104, 160, 55, 0.2); }
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════
   CUSTOM SCROLLBAR
═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--off);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 5px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

/* Firefox */
* {
  scrollbar-color: var(--green) var(--off);
  scrollbar-width: thin;
}

/* ═══════════════════════════════════════════
   PAGE SYSTEM
═══════════════════════════════════════════ */
.page { display: none; animation: fadeIn 0.3s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 72px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform var(--transition-smooth);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.nav-logo:hover .logo-img {
  filter: brightness(1.05);
}

.nav-links li {
  padding: 0 18px;
  height: 72px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--body);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-smooth);
  position: relative;
  top: 1px;
}

.nav-links li::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links li:hover {
  color: var(--green);
}

.nav-links li:hover::after {
  transform: scaleX(1);
}

.nav-links li.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-tel { font-size: 13px; color: var(--muted); font-weight: 400; margin-right: 4px; }

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.logo-mark:hover {
  box-shadow: 0 4px 12px rgba(104, 160, 55, 0.3);
}

.logo-mark svg {
  width: 18px;
  height: 18px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-top {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--green);
  text-transform: uppercase;
}

.logo-bot {
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links li a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
}
.btn {
  font-family: var(--f-sans);
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  font-weight: 500;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 11px 24px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(104, 160, 55, 0.2);
  position: relative;
  border: 2px solid var(--green);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  z-index: 0;
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 8px 28px rgba(104, 160, 55, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(104, 160, 55, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 10px 22px;
  font-size: 13px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--green);
  z-index: -1;
  transition: left 0.35s ease;
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(104, 160, 55, 0.3);
  transform: translateY(-2px);
}

.btn-secondary:hover::after {
  left: 0;
}

.btn-white {
  background: var(--white);
  color: var(--green);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

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

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-smooth);
}

.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  backdrop-filter: blur(10px);
}

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

.btn-lg { padding: 15px 36px; font-size: 15px; }
.btn-arrow::after { content: '→'; font-size: 14px; transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1); }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(6px); }

/* ═══════════════════════════════════════════
   GLASSMORPHISM & PREMIUM EFFECTS
═══════════════════════════════════════════ */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-dark {
  background: rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.glass:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.glass-dark:hover {
  background: rgba(17, 17, 17, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ═══════════════════════════════════════════
   GRADIENT OVERLAYS & DEPTH
═══════════════════════════════════════════ */
.gradient-overlay {
  position: relative;
  overflow: hidden;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(104, 160, 55, 0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.gradient-overlay-radial::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(104, 160, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: fadeInScale 0.8s ease-out;
}

.depth-1 { box-shadow: var(--shadow-sm); }
.depth-2 { box-shadow: var(--shadow-md); }
.depth-3 { box-shadow: var(--shadow-lg); }
.depth-4 { box-shadow: var(--shadow-xl); }

.depth-1:hover { box-shadow: var(--shadow-md); transition: box-shadow 0.3s ease; }
.depth-2:hover { box-shadow: var(--shadow-lg); transition: box-shadow 0.3s ease; }
.depth-3:hover { box-shadow: var(--shadow-xl); transition: box-shadow 0.3s ease; }
.depth-4:hover { box-shadow: 0 28px 80px rgba(0,0,0,0.15); transition: box-shadow 0.3s ease; }

/* Icon animations */
.icon-float {
  animation: iconFloat 3s ease-in-out infinite;
}

.icon-glow {
  animation: glow 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   SHARED COMPONENTS
═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  animation: slideInLeft 0.6s ease-out;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  flex-shrink: 0;
  transform-origin: left;
  animation: scaleX 0.6s ease-out 0.1s backwards;
}

@keyframes scaleX {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.eyebrow.light {
  color: rgba(255,255,255,0.55);
}

.eyebrow.light::before {
  background: rgba(255,255,255,0.4);
}

h1.display {
  font-family: var(--f-serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  animation: slideInUp 0.7s ease-out;
}

h2.display {
  font-family: var(--f-serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  animation: slideInUp 0.7s ease-out 0.1s backwards;
}

h3.display {
  font-family: var(--f-serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}

em.accent {
  color: var(--green);
  font-style: italic;
}

em.light {
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

.section { padding: 96px 64px; }
.section-sm { padding: 64px 64px; }
.section-lg { padding: 120px 64px; }
.section-green, .page-hero, .home-hero-left, .contact-left, .section-xlt, #site-footer {
  background: var(--green);
  color: var(--black) !important;
}
.section-green { background: var(--green); }
.page-hero { background: var(--green); }
.home-hero-left { background: var(--green); }
.contact-left { background: var(--green); }
.section-xlt { background: var(--green-xlt); }
#site-footer { background: var(--green); }

.section-off { background: var(--off); }
.section-dark { background: var(--black); color: var(--white); }

/* Force text color inside these green blocks to black */
.section-green *, .page-hero *, .home-hero-left *, .contact-left *, .section-xlt *, #site-footer * {
  color: var(--black) !important;
}

.max-w { max-width: 1200px; margin: 0 auto; }
.max-w-sm { max-width: 860px; margin: 0 auto; }

.max-w { max-width: 1200px; margin: 0 auto; }
.max-w-sm { max-width: 860px; margin: 0 auto; }

.body-lg { font-size: 17px; line-height: 1.8; color: var(--body); }
.body-md { font-size: 15px; line-height: 1.8; color: var(--body); }
.body-sm { font-size: 13px; line-height: 1.75; color: var(--muted); }
.body-green { color: rgba(255,255,255,0.7); }
.body-dark { color: rgba(255,255,255,0.6); }

.divider { height: 1px; background: var(--border); }
.divider-light { height: 1px; background: rgba(255,255,255,0.12); }

/* Checklist bullets */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--body); line-height: 1.55; }
.check-list li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--green-lt); flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-5' stroke='%231C4A35' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.check-list.light li { color: rgba(255,255,255,0.75); }
.check-list.light li::before { background-color: rgba(255,255,255,0.1); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-5' stroke='rgba(255,255,255,0.8)' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* Stat block */
.stat-block { display: flex; flex-direction: column; }
.stat-num { font-family: var(--f-serif); font-size: 48px; font-weight: 700; line-height: 1; color: var(--green); margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }
.stat-num.light { color: var(--white); }
.stat-label.light { color: rgba(255,255,255,0.55); }

/* INLINE LEAD CAPTURE */
.inline-cta {
  background: var(--green-lt);
  border-left: 3px solid var(--green);
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.inline-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(104, 160, 55, 0.1) 0%, transparent 100%);
  transition: left 0.5s ease;
}

.inline-cta:hover {
  box-shadow: 0 8px 32px rgba(104, 160, 55, 0.15);
  transform: translateX(4px);
}

.inline-cta:hover::before {
  left: 100%;
}

.inline-cta p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  max-width: 520px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.inline-cta p span {
  color: var(--green);
  font-weight: 600;
}

/* FOOTER */
#site-footer {
  background: var(--green);
  color: var(--white);
  padding: 72px 64px 0;
  position: relative;
  overflow: hidden;
}

#site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 150% 50%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}

.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  transition: transform var(--transition-smooth);
}

.footer-brand .f-logo:hover {
  transform: translateY(-2px);
}

.footer-brand .f-logo-text .top {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--white);
  display: block;
}

.footer-brand .f-logo-text .bot {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 2px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all var(--transition-smooth);
  letter-spacing: 0.05em;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

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

.footer-col ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 2.4;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.footer-col ul li:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-col .contact-row {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 2.3;
  transition: color var(--transition-smooth);
}

.footer-col .contact-row:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-left: 20px;
  transition: all var(--transition-smooth);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.75);
}

/* STICKY CTA BAR (mobile-style bottom bar) */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--black); color: var(--white);
  padding: 14px 64px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; border-top: 2px solid var(--green);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { font-size: 14px; font-weight: 500; }
.sticky-cta p span { color: #7EC8A0; }
.sticky-cta-actions { display: flex; gap: 12px; align-items: center; }
.sticky-close { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 20px; cursor: pointer; padding: 4px 8px; transition: color var(--transition); margin-left: 8px; }
.sticky-close:hover { color: var(--white); }

/* PAGE HERO BANNER */
.page-hero {
  background: var(--green);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 64px 64px 72px;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(104, 160, 55, 0.75) 0%, rgba(82, 125, 43, 0.85) 100%);
  z-index: 1;
  animation: fadeInScale 0.8s ease-out;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: 2;
  animation: floatUp 4s ease-in-out infinite;
}

.page-hero > * {
  position: relative;
  z-index: 3;
  animation: slideInUp 0.8s ease-out forwards;
}

.page-hero h1 {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.75;
}

/* FORM */
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition-smooth);
}

.form-group input, .form-group select, .form-group textarea {
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 11px 14px;
  background: var(--white);
  transition: all var(--transition-smooth);
  outline: none;
  width: 100%;
  position: relative;
}

.form-group input::before, .form-group select::before, .form-group textarea::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-mid) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  background: rgba(104, 160, 55, 0.02);
  box-shadow: 0 0 0 3px rgba(104, 160, 55, 0.08);
}

.form-group input:focus ~ label, .form-group select:focus ~ label, .form-group textarea:focus ~ label {
  color: var(--green);
}

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

.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  transition: color var(--transition-smooth);
}

.form-note a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.form-note a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   PAGE: HOME
═══════════════════════════════════════════ */

/* Hero */
.home-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 72px);
}
.home-hero-left {
  background: var(--green);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.home-hero-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(104, 160, 55, 0.75) 0%, rgba(82, 125, 43, 0.85) 100%);
  z-index: 1;
  animation: fadeInScale 0.8s ease-out;
}

.home-hero-left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: 2;
  animation: floatUp 4s ease-in-out infinite;
}

.home-hero-left > * {
  position: relative;
  z-index: 3;
  animation: slideInUp 0.8s ease-out forwards;
}
.hero-tagline { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.hero-tagline::before { content: ''; width: 20px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-h1 { font-family: var(--f-serif); font-size: clamp(46px, 4.5vw, 66px); font-weight: 700; line-height: 1.07; color: var(--white); margin-bottom: 28px; letter-spacing: -0.01em; }
.hero-h1 em { color: rgba(255,255,255,0.55); font-style: italic; font-weight: 400; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 440px; margin-bottom: 40px; }
.hero-bullets { list-style: none; margin-bottom: 48px; display: flex; flex-direction: column; gap: 11px; }
.hero-bullets li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: rgba(255,255,255,0.75); }
.hero-bullets li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.45); flex-shrink: 0; }
.hero-ctas { display: flex; gap: 12px; align-items: center; }

.home-hero-right {
  background: var(--off); padding: 64px;
  display: flex; flex-direction: column; justify-content: center; gap: 36px;
}
.hero-proof { background: var(--white); border: 1px solid var(--border); padding: 36px; }
.hero-proof blockquote { font-family: var(--f-serif); font-size: 19px; font-style: italic; font-weight: 400; color: var(--text); line-height: 1.55; margin-bottom: 16px; border-left: 3px solid var(--green); padding-left: 20px; }
.hero-proof .quote-attr { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); }
.hero-stat { padding: 24px 20px; border-right: 1px solid var(--border); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: var(--f-serif); font-size: 36px; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 6px; }
.hero-stat .lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }
.hero-who { display: flex; flex-direction: column; gap: 8px; }
.hero-who-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-lt);
  padding: 6px 14px;
  letter-spacing: 0.03em;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(104, 160, 55, 0.2);
}

.pill:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(104, 160, 55, 0.25);
}

/* Service cards on home */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 56px;
}

.home-svc-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.home-svc-card:last-child { border-right: none; }

.home-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(104, 160, 55, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 1;
}

.home-svc-card:hover {
  background: var(--green-xlt);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.home-svc-card:hover::before {
  opacity: 1;
}

.home-svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.home-svc-card:hover::after {
  transform: scaleX(1);
}
.svc-step { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.svc-step::before { content: ''; width: 20px; height: 1px; background: var(--green); }
.svc-card-title { font-family: var(--f-serif); font-size: 24px; font-weight: 600; color: var(--black); margin-bottom: 6px; line-height: 1.2; }
.svc-tagline { font-size: 13px; color: var(--green); font-style: italic; font-family: var(--f-serif); margin-bottom: 20px; }
.svc-desc { font-size: 14px; color: var(--body); line-height: 1.75; margin-bottom: 24px; flex: 1; }
.svc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-smooth);
  border-bottom: 1px solid var(--green-lt);
  padding-bottom: 2px;
  position: relative;
}

.svc-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-link:hover {
  gap: 10px;
  color: var(--green-dark);
}

.svc-link:hover::after {
  transform: scaleX(1);
}

/* Why strip */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.why-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(104, 160, 55, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.why-cell:last-child {
  border-right: none;
}

.why-cell:hover {
  background: var(--green-xlt);
}

.why-cell:hover::before {
  opacity: 1;
}

.why-cell > * {
  position: relative;
  z-index: 1;
}

.why-cell-n {
  font-family: var(--f-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--green-lt);
  line-height: 1;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.why-cell:hover .why-cell-n {
  transform: scale(1.1);
}

.why-cell h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  transition: color var(--transition-smooth);
}

.why-cell:hover h4 {
  color: var(--green);
}

.why-cell p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* Lifecycle banner */
.lifecycle {
  background: var(--black);
  padding: 72px 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lifecycle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(104, 160, 55, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.lifecycle-inner {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.lifecycle-step {
  flex: 1;
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: all var(--transition-smooth);
  cursor: default;
}

.lifecycle-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(104, 160, 55, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lifecycle-step:last-child {
  border-right: none;
}

.lifecycle-step:hover {
  background: rgba(255,255,255,0.05);
}

.lifecycle-step:hover::before {
  opacity: 1;
}

.lc-num {
  font-family: var(--f-serif);
  font-size: 52px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.lifecycle-step:hover .lc-num {
  color: rgba(104, 160, 55, 0.2);
}

.lc-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
  transition: color var(--transition-smooth);
}

.lifecycle-step:hover .lc-title {
  color: #7EC8A0;
}

.lc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  transition: color var(--transition-smooth);
}

.lifecycle-step:hover .lc-desc {
  color: rgba(255,255,255,0.65);
}

.lc-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 30px;
  height: 30px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  z-index: 2;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border-radius: 50%;
}

.lifecycle-step:hover + .lifecycle-step .lc-arrow {
  transform: translateY(-50%) scale(1.1);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(104, 160, 55, 0.05) 0%, transparent 100%);
  transition: top 0.4s ease;
  z-index: 0;
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: var(--green);
}

.testi-card:hover::before {
  top: 0;
}

.testi-card > * {
  position: relative;
  z-index: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  animation: slideInDown 0.5s ease-out;
}

.testi-text {
  font-family: var(--f-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}

.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* CTA Section */
.home-cta { background: var(--green); padding: 96px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.home-cta-left h2 { font-family: var(--f-serif); font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.home-cta-left h2 em { color: rgba(255,255,255,0.5); font-style: italic; font-weight: 400; }
.home-cta-left p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px; }
.home-cta-left .cta-btns { display: flex; gap: 12px; }
.home-cta-right { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 40px; }
.home-cta-right h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.quick-form { display: flex; flex-direction: column; gap: 12px; }
.quick-form .qf-input {
  font-family: var(--f-sans); font-size: 14px; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.15); padding: 12px 16px;
  background: rgba(255,255,255,0.95); outline: none; width: 100%;
  transition: border-color var(--transition);
}
.quick-form .qf-input:focus { border-color: rgba(255,255,255,0.6); }
.quick-form .qf-select {
  font-family: var(--f-sans); font-size: 14px; color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.15); padding: 12px 16px;
  background: rgba(255,255,255,0.95); outline: none; width: 100%;
  appearance: none;
}
.quick-form .btn-white { width: 100%; justify-content: center; margin-top: 4px; }
.qf-note { font-size: 11px; color: rgba(255,255,255,0.4); text-align: center; }

/* Insights preview on home */
.insights-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: transparent;
  margin-top: 56px;
}

.insight-card {
  background: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.insight-card::before {
  content: '';
  position: absolute;
  bottom: -100%;
  right: -100%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(104, 160, 55, 0.08) 0%, transparent 70%);
  transition: all 0.6s ease;
}

.insight-card:hover {
  background: var(--green-xlt);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.insight-card:hover::before {
  bottom: -20%;
  right: -20%;
}

.insight-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.insight-title {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 14px;
  transition: color var(--transition-smooth);
}

.insight-card:hover .insight-title {
  color: var(--green);
}

.insight-excerpt {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.insight-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.insight-read {
  color: var(--green);
  font-weight: 600;
}


/* ═══════════════════════════════════════════
   PAGE: SERVICES
═══════════════════════════════════════════ */
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 96px 64px; }
.services-detail { display: flex; flex-direction: column; gap: 0; }

.svc-accordion { border-top: 1px solid var(--border); }
.svc-acc-item {
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

.svc-acc-item.open {
  background: var(--green-xlt);
}

.svc-acc-header {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0;
  padding: 40px 0;
  cursor: pointer;
  align-items: start;
  transition: all var(--transition-smooth);
}

.svc-acc-header:hover .svc-acc-title {
  color: var(--green);
}

.svc-acc-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 5px;
  transition: all var(--transition-smooth);
}

.svc-acc-title {
  font-family: var(--f-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.15;
  transition: all var(--transition-smooth);
}

.svc-acc-title small {
  display: block;
  font-family: var(--f-sans);
  font-size: 13px;
  font-style: italic;
  color: var(--green);
  margin-top: 4px;
  font-weight: 400;
}

.svc-acc-toggle {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green);
  font-weight: 300;
  transition: all var(--transition-smooth);
  flex-shrink: 0;
  margin-top: 4px;
}

.svc-acc-item.open .svc-acc-toggle {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: rotate(180deg);
}

.svc-acc-item.open .svc-acc-num {
  color: var(--green);
}

.svc-acc-body {
  display: none;
  padding: 0 0 44px 80px;
  animation: slideDown 0.3s ease-out;
}

.svc-acc-item.open .svc-acc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.svc-acc-desc p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 14px;
}

.svc-acc-desc .cta-wrap {
  margin-top: 28px;
  display: flex;
  gap: 12px;
}

.svc-acc-features h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* Value props */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 56px;
}

.vp-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.vp-card::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(104, 160, 55, 0.05) 0%, transparent 100%);
  transition: bottom 0.4s ease;
  z-index: 0;
}

.vp-card:last-child {
  border-right: none;
}

.vp-card:hover {
  background: var(--green-xlt);
}

.vp-card:hover::before {
  bottom: 0;
}

.vp-card > * {
  position: relative;
  z-index: 1;
}

.vp-icon {
  width: 40px;
  height: 40px;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all var(--transition-smooth);
}

.vp-card:hover .vp-icon {
  background: var(--green);
  transform: scale(1.15);
}

.vp-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.vp-card:hover .vp-icon svg {
  stroke: var(--white);
}

.vp-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  transition: color var(--transition-smooth);
}

.vp-card:hover h4 {
  color: var(--green);
}

.vp-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* Billing philosophy */
.billing-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.billing-options { display: flex; flex-direction: column; gap: 16px; }
.billing-card { border: 1.5px solid var(--border); padding: 28px; transition: border-color var(--transition); }
.billing-card:hover { border-color: var(--green); }
.billing-card .bc-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.billing-card h4 { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.billing-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.billing-card.featured { border-color: var(--green); background: var(--green-xlt); }

/* ═══════════════════════════════════════════
   PAGE: ABOUT
═══════════════════════════════════════════ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { background: var(--green); padding: 56px; display: flex; flex-direction: column; gap: 24px; }
.about-visual-quote { font-family: var(--f-serif); font-size: 22px; font-style: italic; color: var(--white); line-height: 1.5; border-left: 3px solid rgba(255,255,255,0.4); padding-left: 20px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; }
.about-stat .n { font-family: var(--f-serif); font-size: 40px; font-weight: 700; color: var(--white); line-height: 1; }
.about-stat .l { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; line-height: 1.4; }

.team-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-top: 56px; }
.team-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.team-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: var(--green);
}

.team-card-header {
  background: var(--green-lt);
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 16px;
  transition: background var(--transition-smooth);
}

.team-card:hover .team-card-header {
  background: linear-gradient(135deg, var(--green-lt) 0%, rgba(104, 160, 55, 0.1) 100%);
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(104, 160, 55, 0.3);
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(104, 160, 55, 0.4);
}

.team-card-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
}

.team-card-header .role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.team-card-body {
  padding: 28px 32px;
}

.team-card-body p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 14px;
}

.expertise-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-lt);
  padding: 5px 12px;
  transition: all var(--transition-smooth);
  cursor: default;
}

.chip:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--border); margin-top: 56px; }
.val-card { padding: 32px 24px; border-right: 1px solid var(--border); text-align: center; }
.val-card:last-child { border-right: none; }
.val-initial { font-family: var(--f-serif); font-size: 48px; font-weight: 700; color: var(--green-lt); line-height: 1; margin-bottom: 10px; }
.val-card h4 { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.val-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   PAGE: INSIGHTS
═══════════════════════════════════════════ */
.insights-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; padding: 72px 64px; }
.insights-main .ins-filters { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.ins-filter-btn { font-family: var(--f-sans); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; padding: 8px 18px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; transition: all var(--transition); }
.ins-filter-btn.active, .ins-filter-btn:hover { border-color: var(--green); color: var(--green); background: var(--green-lt); }
.ins-list { display: flex; flex-direction: column; gap: 0; }
.ins-item { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: all var(--transition); align-items: start; }
.ins-item:first-child { border-top: 1px solid var(--border); }
.ins-item:hover { padding-left: 8px; }
.ins-item:hover .ins-item-title { color: var(--green); }
.ins-item-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.ins-item-title { font-family: var(--f-serif); font-size: 21px; font-weight: 600; color: var(--black); line-height: 1.25; margin-bottom: 10px; transition: color var(--transition); }
.ins-item-excerpt { font-size: 14px; color: var(--muted); line-height: 1.7; }
.ins-item-meta { font-size: 12px; color: var(--muted); margin-top: 14px; }
.ins-item-arrow { color: var(--green); font-size: 24px; padding-top: 4px; opacity: 0; transition: opacity var(--transition); }
.ins-item:hover .ins-item-arrow { opacity: 1; }

/* Sidebar */
.insights-sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget { border: 1px solid var(--border); overflow: hidden; }
.sw-header { background: var(--green); padding: 16px 20px; }
.sw-header h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.sw-body { padding: 20px; }
.sw-body p { font-size: 13px; color: var(--body); line-height: 1.7; margin-bottom: 16px; }
.sw-body .btn-primary { width: 100%; justify-content: center; font-size: 13px; padding: 12px; }

/* ═══════════════════════════════════════════
   PAGE: CONTACT
═══════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: calc(100vh - 72px - 88px); }
.contact-left {
  background: var(--green);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.contact-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(104, 160, 55, 0.75) 0%, rgba(82, 125, 43, 0.85) 100%);
  z-index: 1;
  animation: fadeInScale 0.8s ease-out;
}

.contact-left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  z-index: 2;
  animation: floatUp 4s ease-in-out infinite;
}

.contact-left > * {
  position: relative;
  z-index: 3;
}

.contact-left h2 { font-family: var(--f-serif); font-size: clamp(32px, 3.5vw, 46px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.contact-left > p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 48px; max-width: 420px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.8); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cd-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.cd-value { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.55; }
.contact-what-to-expect { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px; }
.contact-what-to-expect h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.expect-steps { display: flex; flex-direction: column; gap: 12px; }
.expect-step { display: flex; gap: 12px; align-items: flex-start; }
.exp-n { font-family: var(--f-serif); font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.2); line-height: 1; flex-shrink: 0; width: 24px; }
.exp-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.exp-text strong { color: rgba(255,255,255,0.85); display: block; font-size: 13px; margin-bottom: 2px; }

.contact-right { background: var(--off); padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.contact-right h3 { font-family: var(--f-serif); font-size: 28px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.contact-right .form-sub { font-size: 14px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.form-submit { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.form-submit .btn-primary { font-size: 14px; padding: 14px 32px; }
.form-submit .form-note { flex: 1; }

/* Intake qualifier */
.intake-qualifier { border: 1.5px solid var(--green); padding: 28px; margin-bottom: 32px; }
.iq-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.iq-options { display: flex; flex-direction: column; gap: 8px; }
.iq-option {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 14px; border: 1.5px solid var(--border);
  cursor: pointer; transition: all var(--transition); font-size: 13px; color: var(--body);
}
.iq-option input[type=radio] { accent-color: var(--green); width: 14px; height: 14px; flex-shrink: 0; }
.iq-option:has(input:checked), .iq-option:hover { border-color: var(--green); background: var(--green-xlt); color: var(--text); }

/* ═══════════════════════════════════════════
   MOBILE HAMBURGER MENU
═══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
  z-index: 998;
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 16px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-smooth);
  display: block;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--green-xlt);
  color: var(--green);
  padding-left: 24px;
}

.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.mobile-menu-button {
  padding: 16px 20px;
  width: 100%;
}

.mobile-menu-button .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESIGN - MOBILE OPTIMIZATIONS
═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  /* Navigation */
  #site-nav {
    padding: 0 32px;
  }
  
  .nav-links li {
    padding: 0 12px;
  }
  
  .nav-tel {
    display: none;
  }
  
  .nav-actions .btn {
    font-size: 12px;
    padding: 9px 16px;
  }
}

@media (max-width: 768px) {
  /* ─── ROOT ADJUSTMENTS ─── */
  :root {
    --shadow-sm: 0 1px 6px rgba(0,0,0,0.08);
    --shadow-md: 0 3px 16px rgba(0,0,0,0.12);
  }
  
  /* ─── BODY ADJUSTMENT FOR FIXED NAV ─── */
  body {
    padding-top: 64px;
  }
  
  /* ─── HAMBURGER MENU ─── */
  .hamburger {
    display: flex;
  }
  
  /* ─── NAVIGATION ─── */
  #site-nav {
    padding: 0 16px;
    height: 64px;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
  }
  
  .logo-img {
    height: 48px;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-actions {
    gap: 8px;
  }
  
  .nav-actions .btn-secondary {
    font-size: 12px;
    padding: 8px 14px;
  }
  
  /* ─── STICKY CTA BAR ─── */
  .sticky-cta {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  
  .sticky-cta p {
    font-size: 13px;
  }
  
  .sticky-cta-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .sticky-cta-actions .btn-primary {
    width: 100%;
    font-size: 13px;
    padding: 12px 16px;
  }
  
  /* ─── HERO SECTION ─── */
  .home-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  
  .home-hero-left {
    padding: 32px 20px;
    background-attachment: scroll;
    min-height: auto;
    justify-content: center;
  }
  
  .home-hero-left > div {
    font-size: 11px;
  }
  
  .hero-tagline {
    margin-bottom: 12px;
  }
  
  .hero-h1 {
    font-size: clamp(28px, 6.5vw, 36px) !important;
    margin-bottom: 12px;
  }
  
  .hero-sub {
    font-size: 14px;
    margin-bottom: 16px;
    max-width: 100%;
  }
  
  .hero-bullets {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .hero-bullets li {
    margin-bottom: 6px;
    font-size: 12px;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 8px;
  }
  
  .hero-ctas .btn-lg {
    width: 100%;
    padding: 11px 18px;
    font-size: 12px;
    justify-content: center;
  }
  
  .home-hero-right {
    padding: 28px 20px;
    background: var(--off);
  }
  
  .hero-proof {
    margin-bottom: 20px;
    padding: 24px;
  }
  
  .hero-proof blockquote {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .quote-attr {
    font-size: 11px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .hero-stat {
    padding: 16px 12px;
  }
  
  .hero-stat .num {
    font-size: 28px;
  }
  
  .hero-stat .lbl {
    font-size: 11px;
  }
  
  .audience-pills {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .pill {
    font-size: 12px;
    padding: 8px 12px;
  }
  
  /* ─── SECTION BASICS ─── */
  .section {
    padding: 40px 20px;
  }
  
  .section-off {
    padding: 40px 20px;
  }
  
  .section-dark {
    padding: 40px 20px;
  }
  
  .max-w {
    max-width: 100%;
    padding: 0;
  }
  
  /* ─── TYPOGRAPHY ─── */
  h1.display {
    font-size: clamp(28px, 6vw, 44px);
  }
  
  h2.display {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 24px;
  }
  
  h3.display {
    font-size: 24px;
  }
  
  .body-lg {
    font-size: 15px;
  }
  
  .body-md {
    font-size: 14px;
  }
  
  .eyebrow {
    font-size: 10px;
    margin-bottom: 12px;
  }
  
  /* ─── BUTTONS ─── */
  .btn-primary,
  .btn-secondary,
  .btn-white,
  .btn-ghost-white {
    padding: 10px 18px;
    font-size: 12px;
  }
  
  .btn-lg {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  /* ─── LIFECYCLE SECTION ─── */
  .lifecycle {
    padding: 40px 20px;
  }
  
  .lifecycle-inner {
    flex-direction: column;
    gap: 0;
  }
  
  .lifecycle-step {
    padding: 24px 20px;
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.1);
  }
  
  .lifecycle-step:last-child {
    border-bottom: none;
  }
  
  .lc-title {
    font-size: 18px;
  }
  
  .lc-desc {
    font-size: 13px;
  }
  
  .lc-arrow {
    display: none;
  }

  /* ─── HOME SERVICES GRID ─── */
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border);
    margin-top: 40px;
  }
  
  .home-svc-card {
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .home-svc-card:last-child {
    border-bottom: none;
  }
  
  .svc-step {
    font-size: 10px;
    margin-bottom: 12px;
  }
  
  .svc-card-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .svc-tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .svc-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .check-list {
    font-size: 12px;
  }
  
  .check-list li {
    margin-bottom: 8px;
  }
  
  .svc-link {
    font-size: 12px;
  }
  
  /* ─── WHY TAKUVA SECTION ─── */
  .why-strip {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  
  .why-cell {
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .why-cell:last-child {
    border-bottom: none;
  }
  
  .why-cell-n {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .why-cell h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .why-cell p {
    font-size: 12px;
  }
  
  /* ─── TESTIMONIALS GRID ─── */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .testi-card {
    padding: 24px;
  }
  
  .testi-stars {
    font-size: 13px;
    margin-bottom: 12px;
  }
  
  .testi-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .testi-author {
    flex-direction: column;
    gap: 2px;
  }
  
  .testi-name {
    font-size: 12px;
    font-weight: 600;
  }
  
  .testi-role {
    font-size: 11px;
    color: var(--muted);
  }
  
  /* ─── HOME CTA SECTION ─── */
  .home-cta {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    gap: 28px;
    align-items: stretch;
  }
  
  .home-cta-left h2 {
    font-size: clamp(22px, 5vw, 32px);
    margin-bottom: 12px;
  }
  
  .home-cta-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .cta-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-btns .btn-lg {
    width: 100%;
  }
  
  .home-cta-right {
    background: rgba(255,255,255,0.07);
    padding: 24px;
  }
  
  .home-cta-right h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .quick-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .qf-input,
  .qf-select {
    font-size: 16px;
    padding: 12px;
    width: 100%;
    min-height: 44px;
  }
  
  .qf-note {
    font-size: 11px;
  }
  
  /* ─── SERVICES INTRO ─── */
  .services-intro {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
  }
  
  .services-intro > div:first-child {
    order: 2;
  }
  
  .about-visual {
    order: 1;
    padding: 32px 20px;
  }
  
  .about-visual-quote {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .about-stat .n {
    font-size: 32px;
  }
  
  .about-stat .l {
    font-size: 11px;
  }
  
  /* ─── ACCORDION ─── */
  .svc-acc-item {
    margin-bottom: 12px;
  }
  
  .svc-acc-header {
    padding: 16px;
    flex-wrap: wrap;
  }
  
  .svc-acc-num {
    font-size: 24px;
  }
  
  .svc-acc-title {
    font-size: 14px;
  }
  
  .svc-acc-title small {
    font-size: 11px;
  }
  
  .svc-acc-body {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
  }
  
  .svc-acc-desc p {
    font-size: 13px;
  }
  
  .svc-acc-features h4 {
    font-size: 12px;
  }
  
  .check-list li {
    font-size: 12px;
  }
  
  /* ─── VALUE PROPS ─── */
  .value-props {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .vp-card {
    padding: 24px;
  }
  
  .vp-card h4 {
    font-size: 16px;
  }
  
  .vp-card p {
    font-size: 13px;
  }
  
  /* ─── BILLING ─── */
  .billing-section {
    flex-direction: column;
    gap: 32px;
  }
  
  .billing-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .billing-card {
    padding: 20px;
  }
  
  /* ─── FOOTER ─── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-col {
    text-align: left;
  }
  
  .footer-col h5 {
    font-size: 13px;
  }
  
  .footer-col ul li {
    font-size: 12px;
  }
  
  /* ─── CONTACT LAYOUT ─── */
  .contact-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .contact-left {
    padding: 40px 20px;
    background-attachment: scroll;
    min-height: 300px;
  }
  
  .contact-left h2 {
    font-size: 28px;
  }
  
  .contact-left > p {
    font-size: 14px;
  }
  
  .contact-detail {
    gap: 12px;
  }
  
  .cd-icon {
    width: 32px;
    height: 32px;
  }
  
  .cd-value {
    font-size: 13px;
  }
  
  .contact-right {
    padding: 32px 20px;
  }
  
  .contact-right h3 {
    font-size: 22px;
  }
  
  .intake-qualifier {
    padding: 20px;
  }
  
  .iq-option {
    padding: 10px 12px;
    font-size: 12px;
  }
  
  /* ─── FORM STYLING MOBILE ─── */
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .form-group {
    gap: 8px;
  }
  
  .form-group label {
    font-size: 11px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 12px;
    min-height: 48px;
  }
  
  .form-group textarea {
    min-height: 120px;
    font-size: 16px;
  }
  
  .lead-form {
    gap: 14px;
  }
  
  .quick-form .qf-input,
  .quick-form .qf-select {
    font-size: 16px;
    padding: 14px 12px;
    min-height: 48px;
  }
  
  /* ─── TEAM GRID ─── */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .team-card-image {
    height: 240px;
  }
  
  .team-card h4 {
    font-size: 14px;
  }
  
  .team-card p {
    font-size: 12px;
  }
  
  /* ─── INSIGHTS/CARDS ─── */
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .insight-card {
    flex-direction: column;
  }
  
  .insight-card-image {
    height: 200px;
    width: 100%;
  }
  
  .insight-card-content {
    padding: 20px;
  }
  
  .insight-card h3 {
    font-size: 14px;
  }
  
  .insight-card p {
    font-size: 12px;
  }
  
  /* ─── INSIGHTS PREVIEW (HOME) ─── */
  .insights-preview {
    grid-template-columns: 1fr;
    gap: 16px;
    background: transparent;
    margin-top: 32px;
  }
  
  .insight-card {
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  
  .insight-tag {
    font-size: 10px;
    margin-bottom: 12px;
  }
  
  .insight-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
  
  .insight-excerpt {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  
  .insight-meta {
    font-size: 12px;
    padding-top: 12px;
  }
  
  .insight-read {
    font-size: 12px;
  }
  
  /* ─── HERO PAGE SECTIONS ─── */
  .page-hero {
    padding: 40px 20px;
    background-attachment: scroll;
  }
  
  .page-hero h1 {
    font-size: clamp(24px, 5vw, 36px);
  }
  
  .page-hero p {
    font-size: 14px;
  }
  
  /* ─── ABOUT PAGE OVERFLOWS ─── */
  /* Fix values-grid overflow */
  [style*="display:grid;grid-template-columns:auto auto auto auto auto"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  
  .values-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    background: transparent !important;
  }
  
  .values-grid > div {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    padding-bottom: 20px !important;
  }
  
  .values-grid > div:last-child {
    border-bottom: none !important;
  }
  
  .val-card {
    padding: 20px 0 !important;
  }
  
  .val-initial {
    width: auto !important;
    margin-bottom: 12px !important;
  }
  
  /* Fix about-intro layout */
  .about-intro {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  
  .about-intro > div:first-child {
    order: 2;
  }
  
  .about-intro > div.about-visual {
    order: 1;
  }
  
  .about-visual {
    padding: 0 !important;
  }
  
  .about-stats {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  /* Fix any multi-column layouts with inline grid-template-columns */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:repeat"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  /* ─── INSIGHTS PAGE ─── */
  .insights-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    padding: 40px 20px !important;
  }
  
  .insights-main {
    order: 1;
  }
  
  .insights-sidebar {
    order: 2;
  }
  
  .sidebar-widget {
    gap: 16px;
  }
  
  .sw-body {
    padding: 16px;
  }
  
  .ins-item {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 24px 0 !important;
  }
  
  .ins-item-arrow {
    opacity: 1 !important;
  }
  
  /* ─── FOUNDER DESK ─── */
  .fd-hero-content {
    padding: 32px;
  }
  
  .fd-hero-content h1 {
    font-size: clamp(24px, 5vw, 36px);
  }
  
  .fd-main {
    flex-direction: column;
  }
  
  .fd-sidebar {
    order: 2;
  }
  
  .fd-content {
    order: 1;
  }
  
  /* ─── INSIGHTS DETAIL ─── */
  .id-content-wrapper {
    flex-direction: column;
  }
  
  .id-main {
    order: 1;
  }
  
  .id-sidebar {
    order: 2;
  }
  
  .id-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* ─── EXTRA SMALL DEVICES ─── */
  
  /* Navigation */
  #site-nav {
    padding: 0 16px;
    height: 56px;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .nav-actions {
    gap: 4px;
  }
  
  .nav-actions .btn-secondary {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  /* Sticky CTA */
  .sticky-cta {
    padding: 12px;
  }
  
  .sticky-cta p {
    font-size: 12px;
  }
  
  .sticky-cta-actions .btn-primary {
    font-size: 12px;
    padding: 10px 12px;
  }
  
  .sticky-close {
    font-size: 24px;
    width: 32px;
    height: 32px;
  }
  
  /* Hero */
  .home-hero-left {
    padding: 32px 16px;
  }
  
  .hero-h1 {
    font-size: clamp(24px, 6vw, 32px) !important;
    margin-bottom: 12px;
  }
  
  .hero-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }
  
  .hero-bullets {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .hero-ctas {
    gap: 8px;
  }
  
  .home-hero-right {
    padding: 24px 16px;
  }
  
  .home-hero-left {
    padding: 24px 16px;
    min-height: auto;
  }
  
  .hero-tagline {
    margin-bottom: 10px;
  }
  
  .hero-h1 {
    font-size: clamp(24px, 6vw, 32px) !important;
    margin-bottom: 10px;
  }
  
  .hero-sub {
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .hero-bullets {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .hero-bullets li {
    font-size: 11px;
    margin-bottom: 5px;
  }
  
  .hero-ctas .btn-lg {
    padding: 10px 16px;
    font-size: 11px;
  }
  
  .hero-proof {
    padding: 20px;
    margin-bottom: 16px;
  }
  
  .hero-proof blockquote {
    font-size: 14px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .hero-stat {
    padding: 14px 10px;
  }
  
  .hero-stat .num {
    font-size: 26px;
  }
  
  .hero-stat .lbl {
    font-size: 10px;
  }
  
  .pill {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  /* Sections */
  .section,
  .section-off,
  .section-dark {
    padding: 32px 16px;
  }
  
  h1.display {
    font-size: clamp(22px, 5vw, 32px);
  }
  
  h2.display {
    font-size: clamp(18px, 4vw, 28px);
    margin-bottom: 16px;
  }
  
  .body-lg {
    font-size: 14px;
  }
  
  /* ─── LIFECYCLE ─── */
  .lifecycle-inner {
    gap: 0;
  }
  
  .lifecycle-step {
    padding: 20px 16px;
  }
  
  .lc-title {
    font-size: 16px;
  }
  
  .lc-desc {
    font-size: 12px;
  }
  
  /* ─── BUTTONS ─── */
  .btn-primary,
  .btn-secondary {
    padding: 9px 16px;
    font-size: 11px;
  }
  
  .btn-lg {
    padding: 11px 16px;
    font-size: 12px;
  }
  
  /* ─── SERVICES ─── */
  .services-intro {
    padding: 32px 16px;
    gap: 24px;
  }
  
  .about-visual {
    padding: 24px 16px;
  }
  
  .about-visual-quote {
    font-size: 14px;
    margin-bottom: 16px;
    padding-left: 16px;
  }
  
  .about-stat .n {
    font-size: 28px;
  }
  
  .about-stat .l {
    font-size: 10px;
  }
  
  /* ─── ACCORDION ─── */
  .svc-acc-header {
    padding: 14px;
  }
  
  .svc-acc-num {
    font-size: 20px;
  }
  
  .svc-acc-title {
    font-size: 13px;
  }
  
  .svc-acc-title small {
    font-size: 10px;
  }
  
  .svc-acc-body {
    padding: 20px 14px;
  }
  
  .svc-acc-desc p {
    font-size: 12px;
  }
  
  /* ─── VALUE PROPS ─── */
  .vp-card {
    padding: 20px;
  }
  
  .vp-card h4 {
    font-size: 14px;
  }
  
  .vp-card p {
    font-size: 12px;
  }
  
  .vp-icon svg {
    width: 28px;
    height: 28px;
  }
  
  /* ─── CONTACT ─── */
  .contact-left {
    padding: 32px 16px;
  }
  
  .contact-left h2 {
    font-size: 24px;
  }
  
  .contact-left > p {
    font-size: 13px;
  }
  
  .contact-right {
    padding: 24px 16px;
  }
  
  .contact-right h3 {
    font-size: 20px;
  }
  
  .intake-qualifier {
    padding: 16px;
  }
  
  .iq-option {
    padding: 9px 10px;
    font-size: 11px;
  }
  
  /* ─── FORM STYLING EXTRA SMALL ─── */
  .form-row {
    gap: 12px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 13px 11px;
    min-height: 46px;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .quick-form .qf-input,
  .quick-form .qf-select {
    font-size: 16px;
    padding: 13px 11px;
    min-height: 46px;
  }
  
  /* ─── FOOTER ─── */
  .footer-top {
    gap: 24px;
  }
  
  .footer-col h5 {
    font-size: 12px;
  }
  
  .footer-col ul li,
  .footer-col p {
    font-size: 11px;
  }
  
  /* ─── PAGE HERO ─── */
  .page-hero {
    padding: 32px 16px;
  }
  
  .page-hero h1 {
    font-size: clamp(20px, 4vw, 28px);
  }
  
  .page-hero p {
    font-size: 13px;
  }
}
