:root {
  --green: #2D9F3E;
  --green-dark: #1E7A2D;
  --green-light: #E8F5E9;
  --dark: #1A1A1A;
  --dark-800: #2C2C2C;
  --dark-700: #3A3A3A;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-400: #9E9E9E;
  --gray-600: #666666;
  --white: #FFFFFF;
  --orange: #FF6B00;
  --yellow: #FFB800;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── STICKY TOP BAR ── */
.top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--dark);
  color: var(--white);
  padding: 0 20px;
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.top-bar a { color: var(--white); text-decoration: none; }
.top-bar-left { display: flex; align-items: center; gap: 18px; }
.top-bar-left .phone-link {
  font-weight: 700; font-size: 16px; letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
}
.top-bar-left .rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--yellow);
}
.top-bar-left .rating span { color: var(--gray-400); font-size: 12px; }
.top-bar-right .cta-btn {
  background: var(--green);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.top-bar-right .cta-btn:hover { background: var(--green-dark); }

body { padding-top: 52px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0D2818 0%, #1A3A25 40%, #0D2818 100%);
  color: var(--white);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(45,159,62,0.2);
  border: 1px solid rgba(45,159,62,0.4);
  color: #7CEB8D;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.5;
}
.hero-checks {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.hero-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.hero-checks li .check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: white; margin-top: 1px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-primary {
  background: var(--green);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(45,159,62,0.4);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.hero-payment {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.payment-badges { display: flex; gap: 8px; }
.payment-badges span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* Hero right - visual card */
.hero-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.hero-visual-stat {
  text-align: center;
  padding: 20px 0;
}
.hero-visual-stat .big-price {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero-visual-stat .big-price sup {
  font-size: 28px;
  vertical-align: super;
  color: rgba(255,255,255,0.6);
}
.hero-visual-stat .price-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.hero-visual-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 24px;
}
.hero-feat {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.hero-feat .icon { font-size: 24px; margin-bottom: 6px; }
.hero-feat .label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-feat .value { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--dark-700);
}
.trust-item .icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ── SECTIONS COMMON ── */
.section {
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-alt { background: var(--gray-100); }
.section-alt .section { padding: 80px 24px; }
.section-dark { background: var(--dark); color: var(--white); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 8px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-header p {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 16px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 16.5%; right: 16.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green));
  opacity: 0.2;
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative; z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: white;
  box-shadow: 0 8px 24px rgba(45,159,62,0.3);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.5;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ── PRICING TABLE ── */
.pricing-wrapper {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.pricing-header-row {
  background: var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 20px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 28px;
  border-bottom: 1px solid var(--gray-200);
  align-items: center;
  transition: background 0.15s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--green-light); }
.pricing-row .service-name {
  font-weight: 600; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
}
.pricing-row .service-name .emoji { font-size: 20px; }
.pricing-row .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--green-dark);
  white-space: nowrap;
}
.pricing-notes {
  padding: 20px 28px;
  background: var(--green-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pricing-notes .note {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 13px; color: var(--dark-700);
}
.pricing-notes .note .ck { color: var(--green); font-weight: 700; }

/* ── COMPARISON ── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.compare-card.us {
  background: linear-gradient(135deg, #0D2818, #1A3A25);
  color: white;
  border: 2px solid var(--green);
}
.compare-card.them {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--dark);
}
.compare-card .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.compare-card.us .badge { background: var(--green); color: white; }
.compare-card.them .badge { background: var(--gray-400); color: white; }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.4;
}
.compare-list li .icon { font-size: 16px; min-width: 20px; text-align: center; margin-top: 1px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.review-card .stars {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card blockquote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-700);
  margin-bottom: 16px;
  font-style: italic;
}
.review-card .author {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.review-card .source {
  font-size: 12px;
  color: var(--gray-400);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: var(--green-light);
  line-height: 1;
}

/* ── AREA ── */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-700);
  transition: all 0.15s;
}
.area-tag:hover { border-color: var(--green); background: var(--green-light); }
.area-tag.highlight { background: var(--green); color: white; border-color: var(--green); font-weight: 600; }

/* ── CONTACT FORM ── */
.form-section {
  background: linear-gradient(135deg, #0D2818 0%, #1A3A25 100%);
  color: white;
  padding: 80px 24px;
}
.form-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.form-left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.form-left p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.form-contact-options {
  display: flex; flex-direction: column; gap: 16px;
}
.form-contact-option {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
}
.form-contact-option .icon-circle {
  width: 44px; height: 44px;
  background: rgba(45,159,62,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.form-contact-option a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.form-contact-option .sub { font-size: 13px; color: rgba(255,255,255,0.5); }

.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,159,62,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  background: var(--green);
  color: white;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--green-dark); }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--green); }
.faq-question .arrow {
  font-size: 20px;
  color: var(--gray-400);
  transition: transform 0.3s;
  min-width: 24px;
  text-align: center;
}
.faq-item.active .faq-question .arrow { transform: rotate(180deg); color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer p, .footer li { font-size: 14px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.15s; }
.footer a:hover { color: var(--green); }
.footer-brand { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; margin-bottom: 12px; }
.footer-brand .green { color: var(--green); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
}

/* ── MOBILE STICKY CTA ── */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  gap: 8px;
}
.mobile-cta a {
  flex: 1;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-cta .call-btn { background: var(--green); color: white; }
.mobile-cta .msg-btn { background: var(--dark); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 60px 20px 40px; }
  .hero h1 { font-size: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-left { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .pricing-notes { grid-template-columns: 1fr; }
  .top-bar-left .rating { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}