*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #00ff88;
  --green-dim: rgba(0,255,136,0.12);
  --green-border: rgba(0,255,136,0.25);
  --bg: #010d05;
  --card: #001a0e;
  --text: #e8f5ee;
  --muted: #7a9e8a;
  --white: #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* TOPBAR */
.topbar { background: var(--green); color: #000; text-align: center; padding: 10px 16px; font-size: 14px; font-weight: 700; }
.topbar a { color: #000; text-decoration: underline; font-weight: 900; }

/* NAV */
.nav-wrap { border-bottom: 1px solid var(--green-border); }
nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1100px; margin: 0 auto; gap: 16px; }
.nav-logo { font-size: 20px; font-weight: 900; color: var(--green); letter-spacing: -0.5px; white-space: nowrap; }
.nav-logo span { color: var(--white); }
.nav-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.nav-links li a { color: var(--muted); font-size: 13px; transition: color 0.2s; white-space: nowrap; }
.nav-links li a:hover, .nav-links li a.active { color: var(--green); }
.nav-phone { display: flex; align-items: center; gap: 8px; background: var(--green); color: #000; font-weight: 800; padding: 10px 18px; border-radius: 8px; font-size: 14px; white-space: nowrap; transition: background 0.2s; }
.nav-phone:hover { background: #00cc6a; }

/* BREADCRUMB */
.breadcrumb { padding: 12px 24px; max-width: 1100px; margin: 0 auto; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* HERO */
.hero { padding: 48px 24px 44px; max-width: 1100px; margin: 0 auto; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-dim); border: 1px solid var(--green-border); color: var(--green); font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(26px, 5vw, 50px); font-weight: 900; line-height: 1.15; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: 17px; color: var(--muted); max-width: 680px; margin-bottom: 28px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #000; font-weight: 900; font-size: 17px; padding: 14px 26px; border-radius: 12px; transition: background 0.2s; }
.btn-primary:hover { background: #00cc6a; }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid var(--green-border); color: var(--green); font-size: 15px; padding: 12px 22px; border-radius: 12px; transition: all 0.2s; }
.btn-secondary:hover { background: var(--green-dim); border-color: var(--green); }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.info-card { background: var(--card); border: 1px solid var(--green-border); border-radius: 14px; padding: 16px; display: flex; align-items: flex-start; gap: 12px; }
.info-icon { font-size: 20px; }
.info-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 3px; }
.info-value { font-weight: 700; font-size: 14px; color: var(--white); }

/* TRUST BAR */
.trust-bar { border-top: 1px solid var(--green-border); border-bottom: 1px solid var(--green-border); padding: 18px 24px; }
.trust-bar .inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; max-width: 1100px; margin: 0 auto; }
.trust-stat { text-align: center; }
.trust-num { font-size: 24px; font-weight: 900; color: var(--green); }
.trust-label { font-size: 11px; color: var(--muted); }

/* SECTIONS */
section { padding: 56px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.alt-bg { background: var(--card); }
h2 { font-size: clamp(20px, 3.5vw, 32px); font-weight: 800; margin-bottom: 8px; }
.underline-bar { width: 44px; height: 4px; background: var(--green); border-radius: 2px; margin-bottom: 24px; }
.section-lead { color: var(--muted); font-size: 15px; max-width: 640px; margin-bottom: 28px; line-height: 1.7; }

/* SERVICE CARDS GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.service-card { background: var(--card); border: 1px solid var(--green-border); border-radius: 16px; padding: 20px; transition: border-color 0.2s; }
.service-card:hover { border-color: var(--green); }
.service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.service-icon { font-size: 26px; }
.service-price { font-size: 12px; background: var(--green-dim); color: var(--green); padding: 4px 10px; border-radius: 999px; font-weight: 700; }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }
.why-item { background: var(--card); border: 1px solid var(--green-border); border-radius: 12px; padding: 16px; display: flex; align-items: flex-start; gap: 10px; }
.why-check { color: var(--green); font-size: 16px; flex-shrink: 0; }
.why-text { font-size: 13px; color: var(--text); }

/* PROCESS STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step { text-align: center; }
.step-num { font-size: 44px; font-weight: 900; color: rgba(0,255,136,0.15); line-height: 1; margin-bottom: 10px; }
.step h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted); }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.review-card { background: var(--card); border: 1px solid var(--green-border); border-radius: 16px; padding: 20px; }
.stars { color: var(--green); font-size: 15px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: var(--text); line-height: 1.7; margin-bottom: 12px; font-style: italic; }
.reviewer { font-size: 12px; color: var(--muted); font-weight: 700; }

/* AREAS */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip { background: var(--card); border: 1px solid var(--green-border); color: var(--text); font-size: 14px; padding: 7px 14px; border-radius: 999px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--green-border); border-radius: 14px; padding: 18px; }
.faq-q { font-weight: 700; color: var(--white); font-size: 15px; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* RELATED SERVICES */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.related-card { background: var(--card); border: 1px solid var(--green-border); border-radius: 12px; padding: 16px 18px; transition: border-color 0.2s, background 0.2s; }
.related-card:hover { border-color: var(--green); background: var(--green-dim); }
.related-card .icon { font-size: 22px; margin-bottom: 6px; }
.related-card .label { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.related-card .price { font-size: 11px; color: var(--muted); }

/* CTA SECTION */
.cta-section { background: var(--card); border-top: 1px solid var(--green-border); border-bottom: 1px solid var(--green-border); }
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 56px 24px; }
.cta-inner h2 { font-size: clamp(22px, 4vw, 36px); margin-bottom: 14px; }
.cta-inner p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.phone-big { font-size: clamp(24px, 4vw, 34px); font-weight: 900; color: var(--green); display: block; margin-bottom: 6px; }

/* FOOTER */
footer { padding: 28px 24px; border-top: 1px solid var(--green-border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 20px; }
.footer-logo { font-size: 18px; font-weight: 900; color: var(--green); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-services { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.footer-services a { font-size: 12px; color: var(--muted); }
.footer-services a:hover { color: var(--green); }
.footer-copy { font-size: 11px; color: rgba(122,158,138,0.5); width: 100%; padding-top: 14px; border-top: 1px solid var(--green-border); margin-top: 6px; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { gap: 10px; }
  .hero { padding: 32px 16px 28px; }
  section { padding: 36px 16px; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
