@charset "utf-8";
/* CSS Document */
:root {
  /* ── Dark palette matching main site ── */
  --bg:        #0d0e10;
  --bg2:       #13151a;
  --bg3:       #1a1d24;
  --bg4:       #22252e;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.13);
  --border3:   rgba(255,255,255,0.20);

  /* Text */
  --text:      #F1F5F9;
  --text2:     #94A3B8;
  --text3:     #64748B;
	--text-primary:#F1F5F9;
  --text-secondary:#94A3B8;
  --text-muted:#64748B;

  /* Accent — teal/green matching main site */
  --teal:      #3ad99a;
  --teal-dim:  rgba(58,217,154,0.10);
  --teal-border: rgba(58,217,154,0.28);
  --teal-dark: #1a5c3a;

  /* Danger / warning */
  --red:       #e05a44;
  --red-dim:   rgba(224,90,68,0.12);
  --amber:     #e5a000;
  --amber-dim: rgba(229,160,0,0.12);
  --amber-border: rgba(229,160,0,0.28);

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0;}
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}



/* ── HERO ── */
.hero {
  max-width: 1100px; margin: 0 auto;
  padding: 8rem 2rem 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  color: var(--amber); font-size: 0.8rem; font-weight: 500;
  padding: 0.3rem 0.85rem; border-radius: 2px;
  margin-bottom: 1.25rem; letter-spacing: 0.03em;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1; color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-size: 1.0625rem; color: var(--text2);
  line-height: 1.75; margin-bottom: 2rem; font-weight: 300;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--teal); color: #0d0e10;
  padding: 0.75rem 1.75rem; border-radius: 2px;
  text-decoration: none; font-weight: 600; font-size: 0.9375rem;
  transition: opacity 0.15s, transform 0.1s; display: inline-block;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  color: var(--text2); border: 1px solid var(--border2);
  padding: 0.75rem 1.5rem; border-radius: 2px;
  text-decoration: none; font-weight: 400; font-size: 0.9375rem;
  transition: border-color 0.15s, color 0.15s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--border3); color: var(--text); }

.hero-trust {
  margin-top: 2rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.trust-item { font-size: 0.8125rem; color: var(--text3); display: flex; align-items: center; gap: 5px; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text3); }

/* ── COMPARE CARD ── */
.hero-right { padding-top: 0.5rem; }
.compare-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 4px; overflow: hidden;
}
.compare-header {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-header div { padding: 0.75rem 1rem; font-size: 0.8125rem; font-weight: 500; }
.compare-header .col-label { color: var(--text3); font-weight: 400; border-right: 1px solid var(--border); }
.compare-header .col-us { background: var(--teal-dim); color: var(--teal); border-left: 2px solid var(--teal); }
.compare-header .col-them { color: var(--text2); }

.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--border); }
.compare-row:last-child { border-bottom: none; }
.compare-row div { padding: 0.6rem 1rem; font-size: 0.875rem; }
.compare-row .col-label { color: var(--text3); font-size: 0.8rem; font-weight: 500; border-right: 1px solid var(--border); }
.compare-row .col-us { background: rgba(58,217,154,0.04); color: var(--teal); font-weight: 500; border-left: 2px solid var(--teal); }
.compare-row .col-them { color: var(--text2); }

/* ── SHARED SECTION ── */
.section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.section-rule { border-top: 1px solid var(--border); }

.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2; color: var(--text); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-body { font-size: 1rem; color: var(--text2); font-weight: 300; line-height: 1.75; max-width: 560px; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 3rem 2rem;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-num { font-family: var(--serif); font-size: 2.5rem; color: var(--teal); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.8125rem; color: var(--text3); }

/* ── WHY SWITCH ── */
.reasons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.reason-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.reason-card:hover { border-color: var(--teal-border); transform: translateY(-2px); }
.reason-icon {
  width: 36px; height: 36px; border-radius: 2px;
  background: var(--teal-dim); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.1rem;
}
.reason-title { font-weight: 500; font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; }
.reason-body { font-size: 0.875rem; color: var(--text2); line-height: 1.65; font-weight: 300; }

/* ── PRICING ── */
.pricing-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }

.price-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 4px; padding: 2rem;
}
.price-card.featured {
  border-color: var(--teal); border-width: 1.5px; position: relative;
  background: linear-gradient(160deg, rgba(58,217,154,0.05) 0%, var(--bg3) 50%);
}
.featured-tag {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--teal); color: #0d0e10;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.22rem 0.75rem;
  border-radius: 0 0 3px 3px;
}
.price-brand { font-size: 0.8125rem; font-weight: 500; color: var(--text3); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.price-headline { font-family: var(--serif); font-size: 1.5rem; color: var(--text); margin-bottom: 0.75rem; }
.price-num { font-family: var(--serif); font-size: 2.75rem; color: var(--text); }
.price-num span { font-family: var(--sans); font-size: 0.9rem; color: var(--text3); font-weight: 300; }
.price-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.price-list li { font-size: 0.875rem; color: var(--text2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.price-list li svg { flex-shrink: 0; margin-top: 3px; }
.price-note { font-size: 0.8rem; color: var(--text3); margin-top: 1.25rem; font-weight: 300; }

/* ── SERVICES TABLE ── */
.services-table-wrap { margin-top: 2.5rem; overflow-x: auto; }
.services-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.services-table thead tr { border-bottom: 1px solid var(--border2); }
.services-table th {
  padding: 0.75rem 1rem; text-align: left;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text3);
}
.services-table th.highlight { color: var(--teal); }
.services-table td {
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--border);
  color: var(--text2); vertical-align: middle;
}
.services-table td.service-name { font-weight: 500; color: var(--text); }
.services-table td.us { color: var(--teal); font-weight: 500; }
.services-table tbody tr:last-child td { border-bottom: none; }
.services-table tbody tr:hover td { background: var(--teal-dim); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.testi-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.5rem;
}
.testi-stars { color: var(--amber); font-size: 0.875rem; margin-bottom: 0.75rem; }
.testi-quote { font-size: 0.9rem; color: var(--text2); line-height: 1.7; font-weight: 300; margin-bottom: 1rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg4); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; color: var(--text3); flex-shrink: 0;
}
.testi-name { font-size: 0.8125rem; font-weight: 500; color: var(--text); }
.testi-loc { font-size: 0.75rem; color: var(--text3); }

/* ── CTA SECTION ── */
.cta-section { background: var(--bg2); border-top: 1px solid var(--border); text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; padding: 5rem 2rem; }
.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text); line-height: 1.2; margin-bottom: 1rem;
}
.cta-inner h2 em { font-style: italic; color: var(--teal); }
.cta-inner p { color: var(--text2); font-size: 1rem; margin-bottom: 2rem; font-weight: 300; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-light {
  background: var(--teal); color: #0d0e10;
  padding: 0.8rem 2rem; border-radius: 2px;
  text-decoration: none; font-weight: 600; font-size: 0.9375rem;
  transition: opacity 0.15s, transform 0.1s; display: inline-block;
}
.btn-light:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  color: var(--text2); border: 1px solid var(--border2);
  padding: 0.8rem 1.75rem; border-radius: 2px;
  text-decoration: none; font-size: 0.9375rem; font-weight: 400;
  transition: border-color 0.15s, color 0.15s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--border3); color: var(--text); }
.cta-guarantee { color: var(--text3); font-size: 0.8rem; margin-top: 1.25rem; }

/* ── FAQ ── */
details { border-bottom: 1px solid var(--border); padding: 1.25rem 0; cursor: pointer; }
details summary {
  font-weight: 500; font-size: 0.9375rem; color: var(--text);
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary .faq-plus { color: var(--text3); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
details[open] summary .faq-plus { transform: rotate(45deg); color: var(--teal); }
details p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--text2); line-height: 1.75; font-weight: 300; }





/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sticky-bar { padding: 0.75rem 1rem; }
  .sticky-bar-text { display: none; }
}
