:root {
  --navy: #0f2542;
  --navy-dark: #081a30;
  --green: #1fa96b;
  --green-dark: #158354;
  --bg: #f7f9fb;
  --card: #ffffff;
  --text: #1c2733;
  --muted: #5b6b7a;
  --border: #e3e8ee;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

header.site-header {
  background: var(--navy);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}

.brand img { height: 34px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #dce6f0;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover { color: #fff; }

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 20px 80px;
  text-align: center;
}

.hero h1 {
  font-size: 34px;
  margin: 0 0 14px;
}

.hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #cddbe7;
  font-size: 16px;
}

.hero .tagline {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(31, 169, 107, 0.18);
  border: 1px solid var(--green);
  color: #a7f0cd;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

section {
  padding: 56px 20px;
}

section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 8px;
}

section .section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}

.step-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h3 { margin: 0 0 8px; font-size: 17px; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.popular {
  border: 2px solid var(--green);
  box-shadow: 0 8px 24px rgba(31, 169, 107, 0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.plan-card h3 { margin: 6px 0 2px; font-size: 19px; }
.plan-card .subtitle { color: var(--muted); font-size: 13px; margin-bottom: 18px; }

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.plan-original {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: 16px;
}

.plan-offer {
  display: inline-block;
  background: rgba(31, 169, 107, 0.12);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}

.plan-features li:last-child { border-bottom: none; }

.plan-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: auto;
}

.trust-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: 10px;
}

.trust-item .icon { font-size: 30px; margin-bottom: 10px; }
.trust-item h4 { margin: 0 0 6px; font-size: 15px; }
.trust-item p { margin: 0; color: var(--muted); font-size: 13px; }

.cta {
  text-align: center;
  padding: 60px 20px;
}

.cta h2 { margin-bottom: 10px; }
.cta p { color: var(--muted); margin-bottom: 24px; }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
}

.btn:hover { background: var(--green-dark); text-decoration: none; }

footer.site-footer {
  background: var(--navy-dark);
  color: #b7c5d3;
  padding: 40px 20px 26px;
  font-size: 13px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 24px;
}

.footer-col h5 {
  color: #fff;
  font-size: 13px;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: #b7c5d3;
  margin-bottom: 8px;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  color: #7e8ea0;
  max-width: 1080px;
  margin: 0 auto;
}

.legal-page main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 70px;
}

.legal-page h1 {
  font-size: 28px;
  margin-bottom: 6px;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 18px;
  margin: 32px 0 10px;
  text-align: left;
}

.legal-page p {
  color: var(--text);
  font-size: 15px;
  margin: 0 0 14px;
}

.legal-page ul {
  color: var(--text);
  font-size: 15px;
  padding-left: 20px;
}

.legal-page li { margin-bottom: 8px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 26px; }
  .footer-grid { flex-direction: column; }
}
