/* ═══════════════════════════════════════════════════════════
   LCV Squared Lawn Care — Shared Styles
   lawn.lcvsquared.ca
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink:      #080d09;
  --ink2:     #0e1610;
  --border:   rgba(255,255,255,0.07);
  --muted:    rgba(255,255,255,0.42);
  --light:    rgba(255,255,255,0.78);
  --white:    #f1f7f2;
  --lawn:     #4ade80;
  --lawn2:    #22c55e;
  --lawn3:    #16a34a;
  --ld:       rgba(74,222,128,0.10);
  --ll:       rgba(74,222,128,0.28);
  --lg:       rgba(74,222,128,0.20);
  --snow:     #00c2e0;
  --blue:     #4f8cff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--ink); color: var(--white); overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
}
a { color: inherit; }

/* ── NAV ── */
.topnav {
  position: sticky; top: 0; z-index: 200; height: 62px;
  background: rgba(8,13,9,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 5%;
  justify-content: space-between; gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--white); flex-shrink: 0;
  font-family: 'Barlow Semi Condensed', sans-serif; font-weight: 700; font-size: 1rem;
}
.nav-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center;
  color: var(--lawn); font-size: 1rem;
}
.nav-sub { font-size: 0.67rem; color: var(--muted); display: block; letter-spacing: 0.05em; margin-top: 1px; }
.nav-links { display: flex; gap: 2px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.87rem;
  font-weight: 600; letter-spacing: 0.02em;
  padding: 6px 13px; border-radius: 6px; transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--lawn); }
.nav-ctas { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; flex-shrink: 0;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none; position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
  z-index: 199; background: rgba(8,13,9,0.97); backdrop-filter: blur(20px);
  flex-direction: column; padding: 30px 5%;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 600;
  color: var(--light); text-decoration: none;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--lawn); }
.mobile-nav .mob-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 8px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.18s; white-space: nowrap; line-height: 1;
}
.btn-g  { background: var(--lawn3); color: #fff; box-shadow: 0 8px 28px var(--lg); }
.btn-g:hover  { background: var(--lawn2); transform: translateY(-1px); color: #fff; }
.btn-ol { background: transparent; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); }
.btn-ol:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
.btn-gh { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); color: var(--light); }
.btn-gh:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-lg  { padding: 14px 32px; font-size: 1.06rem; }
.btn-fw  { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  min-height: 90vh; display: flex; align-items: center;
  padding: 100px 5% 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 8% 50%,  rgba(34,197,94,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 20%,  rgba(74,222,128,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 55% 90%,  rgba(22,163,74,0.08) 0%, transparent 50%),
    linear-gradient(158deg, #080d09 0%, #0b1309 55%, #07100a 100%);
  animation: hue 22s ease-in-out infinite alternate;
}
@keyframes hue { to { filter: hue-rotate(10deg) brightness(1.04); } }
.hero-slash {
  position: absolute; right: -80px; top: -60px; z-index: -1; width: 54vw; height: 130%;
  border-left: 1px solid rgba(74,222,128,0.05);
  background: linear-gradient(162deg, rgba(74,222,128,0.025) 0%, transparent 50%);
  transform: skewX(-7deg);
}
.hero-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 80px; align-items: center;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  position: relative; z-index: 1;
  padding: 60px 5% 50px; overflow: hidden;
}
.page-hero .hero-bg { animation: hue 22s ease-in-out infinite alternate; }
.page-hero-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
}

/* ── BREADCRUMBS ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  list-style: none; margin-bottom: 22px; flex-wrap: wrap;
}
.breadcrumb li { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.breadcrumb li a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb li a:hover { color: var(--lawn); }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: rgba(255,255,255,0.2); }
.breadcrumb li:last-child { color: var(--light); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lawn2); padding: 5px 14px;
  border: 1px solid var(--ll); border-radius: 100px;
  background: var(--ld); margin-bottom: 26px;
}
.e-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--lawn);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

.h-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; line-height: 0.88; letter-spacing: -0.01em;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem); color: var(--white); margin-bottom: 12px;
}
.h-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; line-height: 1; font-size: clamp(1.6rem, 3.2vw, 3rem);
  color: var(--muted); margin-bottom: 30px;
}
.h-desc {
  font-size: 1.08rem; font-weight: 300; line-height: 1.72;
  color: rgba(255,255,255,0.56); max-width: 510px; margin-bottom: 36px;
}
.h-desc strong { color: rgba(255,255,255,0.86); font-weight: 600; }
.h-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 46px; }

/* page hero sizing */
.page-hero .h-title { font-size: clamp(2.6rem, 5vw, 4.5rem); margin-bottom: 16px; }
.page-hero .h-sub { font-size: clamp(1.2rem, 2.5vw, 2rem); margin-bottom: 20px; }
.page-hero .h-desc { margin-bottom: 28px; }
.page-hero .h-ctas { margin-bottom: 0; }

.trust-stack { display: flex; flex-direction: column; gap: 16px; }
.t-row { display: flex; align-items: flex-start; gap: 13px; }
.t-ico {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center;
  color: var(--lawn); font-size: 0.88rem;
}
.t-title { font-size: 0.91rem; font-weight: 600; margin-bottom: 3px; }
.t-desc  { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.45; }

/* hero card */
.h-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(74,222,128,0.15);
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
}
.h-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lawn2), var(--lawn), transparent);
}
.c-kicker {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--lawn2); margin-bottom: 14px;
}
.c-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem; font-weight: 900; line-height: 1.02; margin-bottom: 5px;
}
.c-sub {
  font-size: 0.83rem; color: var(--muted); font-weight: 300; margin-bottom: 24px;
  padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mini-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px;
}
.mini-cell {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 13px 15px; transition: border-color 0.2s;
}
.mini-cell:hover { border-color: var(--ll); }
.mn { font-size: 0.87rem; font-weight: 600; margin-bottom: 3px; }
.ms { font-size: 0.77rem; color: var(--muted); font-weight: 300; }
.no-chem {
  background: rgba(74,222,128,0.05); border: 1px solid rgba(74,222,128,0.18);
  border-radius: 10px; padding: 14px 16px;
  font-size: 0.83rem; color: rgba(255,255,255,0.58); line-height: 1.55;
  font-weight: 300; margin-bottom: 22px;
}
.no-chem strong { color: var(--white); font-weight: 600; }
.c-btns { display: flex; flex-direction: column; gap: 9px; }

/* ── SECTION SHELL ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 88px 5%; }
.stag {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.stitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 900;
  line-height: 0.94; letter-spacing: -0.01em; color: var(--white); margin-bottom: 16px;
}
.sdesc {
  font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.7;
  max-width: 600px; margin-bottom: 54px;
}

/* ── TRUST BAR ── */
.tbar {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 5%;
}
.tbar-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 36px;
}
.tbi { display: flex; align-items: flex-start; gap: 14px; }
.tbi-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center;
  color: var(--lawn); font-size: 0.95rem;
}
.tbi-title { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.tbi-desc  { font-size: 0.81rem; color: var(--muted); font-weight: 300; line-height: 1.5; }

/* ── SERVICES GRID ── */
.svc-strip {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 18px; overflow: hidden;
}
.sc {
  padding: 38px 34px; background: rgba(255,255,255,0.025);
  position: relative; overflow: hidden; transition: background 0.25s;
}
.sc::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--lawn2); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.sc:hover { background: rgba(74,222,128,0.04); }
.sc:hover::after { transform: scaleX(1); }
.sc:nth-child(3n+2),.sc:nth-child(3n+3) { border-left: 1px solid rgba(255,255,255,0.07); }
.sc:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.07); }

.sc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem; font-weight: 900; color: rgba(74,222,128,0.10); margin-bottom: 14px;
}
.sc-ico {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 16px;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center; color: var(--lawn); font-size: 1rem;
}
.sc-name { font-family: 'Barlow Semi Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.sc-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.6; font-weight: 300; margin-bottom: 16px; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.sc-list li {
  font-size: 0.82rem; color: rgba(255,255,255,0.48); font-weight: 300;
  display: flex; align-items: center; gap: 8px;
}
.sc-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--lawn2); flex-shrink: 0; }

/* service card link variant */
.sc a.sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 0.82rem; font-weight: 600;
  color: var(--lawn2); text-decoration: none; transition: color 0.2s;
}
.sc a.sc-link:hover { color: var(--lawn); }

/* ── SWITCH ── */
.sw-layout {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 72px; align-items: start;
}
.steps { display: flex; flex-direction: column; margin-bottom: 36px; }
.step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.step:last-child { border-bottom: none; }
.step-n {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.05rem; color: var(--lawn);
}
.step-t { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.step-d { font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.5; }
.sw-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.stat-stack { display: flex; flex-direction: column; gap: 3px; }
.stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 28px 30px; transition: border-color 0.25s;
}
.stat-card:hover { border-color: var(--ll); }
.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900; color: var(--lawn2); margin-bottom: 5px;
}
.stat-l { font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.5; }

/* ── FORM ── */
.form-panel {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
}
.form-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lawn2), transparent);
}

.wl-layout { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 60px; align-items: start; }

.fg      { display: flex; flex-direction: column; gap: 5px; }
.fgrid   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg.full { grid-column: 1 / -1; }
.fg > label, .fg > span, fieldset legend {
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em; text-transform: uppercase;
}
fieldset { border: none; padding: 0; }
fieldset legend { display: block; margin-bottom: 10px; }

.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px; color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: 0.93rem; font-weight: 400;
  padding: 11px 14px; outline: none; transition: border-color 0.2s;
  width: 100%; -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.22); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--lawn2); background: rgba(74,222,128,0.04);
}
.fg select option { background: #1a2b1c; color: var(--white); }
.fg textarea { resize: vertical; min-height: 88px; }
.hp { display: none !important; }

.chk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chk {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 10px 13px; font-size: 0.87rem; color: var(--light); font-weight: 400;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; transition: all 0.2s; user-select: none;
}
.chk:hover { border-color: var(--ll); background: rgba(74,222,128,0.04); }
.chk input[type="checkbox"] { display: none; }
.chk-box {
  width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: transparent; transition: all 0.15s;
}
.chk input:checked + .chk-box { background: var(--lawn3); border-color: var(--lawn2); color: #fff; }
.form-note { font-size: 0.77rem; color: var(--muted); margin-top: 14px; font-weight: 300; }
.form-note a { color: rgba(74,222,128,0.75); text-decoration: none; }
.form-note a:hover { color: var(--lawn); }

/* sidebar */
.wl-side { display: flex; flex-direction: column; gap: 14px; }
.sp {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px;
}
.sp.accent { background: rgba(74,222,128,0.04); border-color: rgba(74,222,128,0.18); }
.sp-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 900; margin-bottom: 6px; }
.sp-sub { font-size: 0.84rem; color: var(--muted); font-weight: 300; margin-bottom: 18px; line-height: 1.5; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 100px;
  background: var(--ld); border: 1px solid var(--ll); color: var(--lawn2);
  font-family: 'Barlow Semi Condensed', sans-serif;
}
.sp-rule { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 16px 0; }
.sp-body { font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.65; margin-bottom: 16px; }
.sp-links { display: flex; flex-direction: column; gap: 8px; }
.ld { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 900; margin-bottom: 6px; }
.ln { font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.6; margin-bottom: 18px; }

/* ── CONTENT SECTIONS (subpages) ── */
.content-section {
  position: relative; z-index: 1;
}
.content-section.alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.content-grid {
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 60px; align-items: start;
}
.content-main h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900;
  line-height: 0.96; color: var(--white); margin-bottom: 18px;
}
.content-main h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 800; color: var(--white); margin: 32px 0 12px;
}
.content-main p {
  font-size: 1rem; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 18px;
}
.content-main p strong { color: var(--light); font-weight: 600; }
.content-main ul, .content-main ol {
  margin: 0 0 22px 0; padding-left: 0; list-style: none;
}
.content-main ul li, .content-main ol li {
  font-size: 0.94rem; color: var(--muted); font-weight: 300; line-height: 1.65;
  padding: 6px 0; display: flex; align-items: flex-start; gap: 10px;
}
.content-main ul li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lawn2);
  flex-shrink: 0; margin-top: 8px;
}

/* ── FEATURE CARDS ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0;
}
.feature-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 24px; transition: border-color 0.25s;
}
.feature-card:hover { border-color: var(--ll); }
.feature-card .fc-ico {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 14px;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center; color: var(--lawn); font-size: 1rem;
}
.feature-card .fc-title {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 6px;
}
.feature-card .fc-desc {
  font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.55;
}

/* ── PRICING TABLE ── */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 32px 0;
}
.price-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px; padding: 32px; text-align: center; transition: all 0.25s;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lawn2); transform: scaleX(0); transition: transform 0.3s;
}
.price-card:hover { border-color: var(--ll); }
.price-card:hover::before { transform: scaleX(1); }
.price-card.featured {
  border-color: rgba(74,222,128,0.25);
  background: rgba(74,222,128,0.04);
}
.price-card.featured::before { transform: scaleX(1); }
.price-label {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--lawn2); margin-bottom: 8px;
}
.price-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 900; margin-bottom: 6px;
}
.price-size {
  font-size: 0.84rem; color: var(--muted); font-weight: 300; margin-bottom: 22px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.price-features { list-style: none; text-align: left; margin-bottom: 22px; }
.price-features li {
  font-size: 0.86rem; color: var(--light); font-weight: 300; padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-features li i { color: var(--lawn2); font-size: 0.78rem; width: 16px; flex-shrink: 0; }

/* ── SERVICE AREA ── */
.area-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0;
}
.area-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 28px; transition: border-color 0.25s;
  text-align: center;
}
.area-card:hover { border-color: var(--ll); }
.area-card .area-ico {
  width: 44px; height: 44px; border-radius: 11px; margin: 0 auto 14px;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center; color: var(--lawn); font-size: 1.1rem;
}
.area-card .area-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 900; margin-bottom: 6px;
}
.area-card .area-desc {
  font-size: 0.84rem; color: var(--muted); font-weight: 300; line-height: 1.55;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative; z-index: 1;
  background: rgba(74,222,128,0.04);
  border-top: 1px solid rgba(74,222,128,0.15);
  border-bottom: 1px solid rgba(74,222,128,0.15);
}
.cta-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 5%;
  text-align: center;
}
.cta-inner .stitle { margin-bottom: 14px; }
.cta-inner .sdesc { max-width: 520px; margin: 0 auto 32px; }
.cta-inner .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── RELATED SERVICES ── */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px;
}
.related-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 24px; text-decoration: none;
  transition: all 0.25s; display: block;
}
.related-card:hover { border-color: var(--ll); background: rgba(74,222,128,0.03); }
.related-card .rc-tag {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lawn2); margin-bottom: 8px;
}
.related-card .rc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; color: var(--white);
}
.related-card .rc-desc {
  font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.5;
}

/* ── FAQ ── */
.faq-list { margin: 32px 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06); padding: 20px 0;
}
.faq-q {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-q i { color: var(--lawn2); font-size: 0.8rem; transition: transform 0.25s; }
.faq-a {
  font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.65;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-q i { transform: rotate(45deg); }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1; background: #050905;
  border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 5%;
}
.fg-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.fb { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; color: var(--white); }
.fb-ico {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--ld); border: 1px solid var(--ll);
  display: flex; align-items: center; justify-content: center; color: var(--lawn); font-size: 0.85rem; opacity: 0.85;
}
.fb span { font-family: 'Barlow Semi Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; }
.ft { font-size: 0.83rem; color: var(--muted); font-weight: 300; line-height: 1.65; margin-bottom: 18px; max-width: 260px; }
.fc a {
  display: flex; align-items: center; gap: 8px; font-size: 0.83rem;
  color: rgba(255,255,255,0.42); text-decoration: none; margin-bottom: 7px; transition: color 0.2s;
}
.fc a:hover { color: var(--white); }
.fc a i { color: var(--lawn2); font-size: 0.78rem; width: 14px; }
.fcol-t {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.26); margin-bottom: 14px;
}
.fl { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fl a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.fl a:hover { color: var(--white); }
.fl a.gl:hover { color: var(--lawn2); }
.fl a.sl:hover { color: var(--snow); }
.fl a.bl:hover { color: var(--blue); }
.foot-bot {
  max-width: 1200px; margin: 36px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.foot-bot p { font-size: 0.76rem; color: rgba(255,255,255,0.22); }

/* ── MOBILE CTA ── */
.mob {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  padding: 12px 16px; gap: 10px;
  background: rgba(5,9,5,0.96); backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mob .btn { flex: 1; justify-content: center; }

/* ── ANIMATIONS ── */
.fu { opacity:0; transform:translateY(26px); transition:opacity .65s ease, transform .65s ease; }
.fu.on { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ── RESPONSIVE ── */
@media(max-width:1060px){
  .hero-inner  { grid-template-columns:1fr; gap:52px; }
  .sw-layout   { grid-template-columns:1fr; gap:52px; }
  .wl-layout   { grid-template-columns:1fr; }
  .content-grid { grid-template-columns:1fr; }
  .tbar-grid   { grid-template-columns:1fr 1fr; gap:28px; }
  .fg-grid     { grid-template-columns:1fr 1fr; gap:32px; }
  .stat-stack  { flex-direction:row; flex-wrap:wrap; }
  .stat-card   { flex:1; min-width:140px; }
  .feature-grid { grid-template-columns:1fr 1fr; }
  .price-grid  { grid-template-columns:1fr 1fr; }
  .area-grid   { grid-template-columns:1fr 1fr; }
  .related-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px){
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero      { padding:70px 5% 60px; min-height:auto; }
  .page-hero { padding:40px 5% 36px; }
  .svc-grid  { grid-template-columns:1fr; }
  .sc        { border-left:none!important; }
  .sc:nth-child(n+2){ border-top:1px solid rgba(255,255,255,.07)!important; }
  .tbar-grid { grid-template-columns:1fr; gap:22px; }
  .fgrid     { grid-template-columns:1fr; }
  .chk-grid  { grid-template-columns:1fr; }
  .fg-grid   { grid-template-columns:1fr; gap:28px; }
  .feature-grid { grid-template-columns:1fr; }
  .price-grid  { grid-template-columns:1fr; }
  .area-grid   { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:1fr; }
  .mob       { display:flex; }
  footer, .wrap { padding-bottom:88px; }
}
@media(max-width:500px){
  .mini-grid  { grid-template-columns:1fr; }
  .h-title    { font-size:2.8rem; }
}
