:root {
  --navy: #10405a;
  --navy-dark: #0b2e42;
  --navy-light: #1a5c7d;
  --accent: #2e9e6b;
  --accent-dark: #22794f;
  --bg: #f6f9fa;
  --bg-alt: #ffffff;
  --text: #1a2226;
  --muted: #55666d;
  --border: #e0e8eb;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(16, 64, 90, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  color: var(--navy-dark);
  margin: 0 0 0.5em 0;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 1.2em;
}

p { color: var(--muted); }

a { color: var(--navy-light); }

ul { padding-left: 1.1em; color: var(--muted); }
ul li { margin-bottom: 0.4em; }

/* Header */
.site-header {
  background: var(--navy-dark);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}
.header-phone {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 16px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}
.header-phone:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.header-icon-btn svg { width: 18px; height: 18px; }
.header-icon-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}
@media (max-width: 480px) {
  .header-phone { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-large {
  padding: 16px 32px;
  font-size: 1.08rem;
}
.btn-secondary {
  background: var(--navy);
  color: #fff;
}
.btn-secondary:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 80px 0 70px;
}
.hero-inner {
  display: flex;
  justify-content: center;
}
.hero-text { max-width: 720px; text-align: center; }
.hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.hero-sub {
  color: rgba(255,255,255,0.86);
  font-size: 1.1rem;
  margin: 18px 0 30px;
}
.hero-trust {
  margin-top: 22px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.hero-trust .dot { margin: 0 10px; opacity: 0.5; }

/* Sections */
.section { padding: 64px 0; }
.section.pains { background: var(--bg-alt); }
.section.compare { background: var(--bg-alt); }
.section.offer { background: var(--bg); }
.section.services { background: var(--bg-alt); }
.section.trust-band { background: var(--navy-dark); }
.section.trust-band h2 { color: #fff; }
.section.trust-band .trust-note { color: rgba(255,255,255,0.75); }
.section.testimonials { background: var(--bg-alt); }
.section.faq { background: var(--bg); }
.section.lead { background: var(--bg); }

.grid {
  display: grid;
  gap: 24px;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* Risk reversal callout */
.risk-reversal {
  max-width: 700px;
  margin: 24px auto 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.risk-reversal strong { color: #fff; }

/* Testimonials */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}
.testimonial-author {
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 0.9rem;
}
.testimonials-note {
  text-align: center;
  font-size: 0.82rem;
  margin-top: 20px;
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: var(--navy-dark);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.2rem;
  color: var(--accent);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Compare table */
.compare-table {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr;
}
.compare-row > div {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.9rem;
}
.compare-row > div:last-child { border-right: none; }
.compare-row:last-child > div { border-bottom: none; }
.compare-row:not(.compare-head) > div:first-child {
  font-weight: 600;
  color: var(--navy-dark);
  background: var(--bg);
}
.compare-row:not(.compare-head) > div:nth-child(2) { color: var(--muted); }
.compare-row:not(.compare-head) > div:nth-child(3) {
  color: var(--text);
  background: rgba(46, 158, 107, 0.06);
  font-weight: 500;
}
.compare-head {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.compare-head > div { border-right-color: rgba(255,255,255,0.2); }
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div { border-right: none; }
  .compare-row:not(.compare-head) > div:first-child { border-bottom: none; padding-bottom: 4px; }
}

/* Pain cards */
.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: center;
}
.pain-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  color: var(--navy);
}
.pain-icon svg { width: 100%; height: 100%; }
.pain-card p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* Offer */
.offer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) {
  .offer-inner { grid-template-columns: 1fr; }
}
.eyebrow {
  display: inline-block;
  color: var(--accent-dark);
  background: rgba(46, 158, 107, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.offer-card {
  background: var(--navy-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.offer-card-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.offer-steps {
  padding-left: 20px;
  margin: 0;
}
.offer-steps li {
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
}
.offer-report-link {
  display: block;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  text-align: center;
}
.offer-report-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.offer-report-link:hover .offer-report-img {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.38);
}
.offer-report-link span {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* Services */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.service-card ul { margin: 0; padding-left: 1.1em; font-size: 0.92rem; }

/* Stats */
.stats { margin-top: 8px; margin-bottom: 24px; }
.stat { text-align: center; }
.stat-num {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 6px;
}
.trust-note {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* Lead form */
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 800px) {
  .lead-inner { grid-template-columns: 1fr; }
}
.contact-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.lead-form-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form-box label {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-dark);
  gap: 6px;
}
.lead-form-box input {
  font-size: 1rem;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
}
.lead-form-box input:focus {
  outline: none;
  border-color: var(--navy-light);
}
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 26px 0;
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}
.site-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }
