:root {
  --blue: #024570;
  --blue-dark: #01304f;
  --blue-light: #e0edf5;
  --green: #73b743;
  --green-dk: #5c9534;
  --teal: #28a745;
  --text: #333333;
  --muted: #6c757d;
  --border: #dee2e6;
  --white: #ffffff;
  --bg-light: #f8f9fa;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #01304f 0%, #024570 55%, #035a8f 100%);
  color: #fff;
  padding: 64px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: #a8d97a;
}
.hero h1 {
  font-family: "Lato", sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.18;
  max-width: 760px;
  margin: 0 auto 18px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  font-weight: 900;
  color: #a8d97a;
}
.hero-sub {
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 22px;
  margin-bottom: 32px;
  font-size: 14px;
}
.hero-value strong {
  color: #a8d97a;
  font-size: 18px;
}
.hero-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 10px;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary-custom {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s,
    box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(115, 183, 67, 0.4);
}
.btn-primary-custom:hover {
  background: var(--green-dk);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(115, 183, 67, 0.5);
}
.btn-primary-sm {
  font-size: 14px;
  padding: 11px 0;
  display: block;
  text-align: center;
}
.btn-secondary-custom {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.btn-secondary-custom:hover {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
}

/* ── SECTION TITLES ──────────────────────────────── */
.section-title {
  font-family: "Lato", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.section-title:not(.no-border):not(.section-title-bb):after {
  content: none;
}
.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ── STRATEGY ────────────────────────────────────── */
.section-strategy {
  padding: 64px 0 48px;
}
.strategy-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
}
.strategy-intro strong {
  color: var(--blue-dark);
}
.strategy-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
  height: 100%;
}
.strategy-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strategy-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--blue);
}
.strategy-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--blue-dark);
}
.strategy-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ── WHAT IS ─────────────────────────────────────── */
.section-what {
  background: var(--blue-light);
  padding: 56px 0;
}
.what-text p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: #444;
}
.what-text strong {
  color: var(--blue-dark);
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 8px;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  font-size: 14px;
  margin-bottom: 14px;
}
.benefit-list li:last-child {
  margin-bottom: 0;
}
.benefit-list li .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: #eaf6de;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-list li .icon svg {
  width: 14px;
  height: 14px;
  fill: var(--green-dk);
}
.benefit-list li strong {
  color: var(--blue-dark);
  display: block;
  margin-bottom: 2px;
  font-size: 13.5px;
}
.benefit-list li span {
  color: var(--muted);
  font-size: 13px;
}
.what-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.what-card-header {
  background: var(--blue);
  color: #fff;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.3px;
}
.what-card-header span {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  font-weight: 400;
  margin-top: 2px;
}
.what-card-body {
  padding: 20px 22px;
}
.what-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.what-card-row:last-child {
  border-bottom: none;
}
.what-card-row .label {
  color: var(--muted);
}
.what-card-row .val {
  font-weight: 700;
  color: var(--teal);
}
.what-card-row .val.blue {
  color: var(--blue);
}
.what-card-cta {
  padding: 0 22px 22px;
}

/* ── COMPARE ─────────────────────────────────────── */
.section-compare {
  padding: 56px 0;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-size: 14px;
}
.compare-table thead tr {
  background: var(--blue);
  color: #fff;
}
.compare-table th {
  padding: 16px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.compare-table tbody tr {
  background: var(--white);
}
.compare-table tbody tr:nth-child(even) {
  background: #f3f8fb;
}
.compare-table td {
  padding: 15px 22px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 5px;
}
.tag-bad {
  background: #fde8e8;
  color: #c0392b;
  border: 1px solid #f5c0c0;
}
.tag-good {
  background: #eaf6de;
  color: #3a7d1e;
  border: 1px solid #c4e6a0;
}

/* ── ACCESS ──────────────────────────────────────── */
.section-access {
  background: var(--bg-light);
  padding: 56px 0;
}
.steps {
  position: relative;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
  margin-top: 8px;
}
.step p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── QUOTE ───────────────────────────────────────── */
.section-quote {
  background: var(--blue-dark);
  padding: 52px 24px;
  text-align: center;
  color: #fff;
}
.quote-mark {
  font-size: 72px;
  line-height: 1;
  opacity: 0.2;
  color: #a8d97a;
  margin-bottom: -20px;
  font-family: Georgia, serif;
}
blockquote {
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  line-height: 1.65;
  font-family: "Lato", sans-serif;
  border: none;
  padding: 0;
}
blockquote strong {
  color: #a8d97a;
  font-style: normal;
}
.quote-author {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.65;
  font-weight: 600;
}

/* ── CTA BANNER ──────────────────────────────────── */
.section-cta {
  padding: 56px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.section-cta h2 {
  font-family: "Lato", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.section-cta p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
}
