@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f7fa;
  --bg-deep: #e6edf7;
  --surface: #ffffff;
  --surface-soft: #eef3fa;
  --text: #1a2b3d;
  --text-soft: #556171;
  --primary: #0d3b66;
  --primary-deep: #072a4d;
  --accent: #d17a22;
  --accent-deep: #b5651a;
  --line: #d0d9e6;
  --ok: #1d7a4e;
  --radius: 14px;
  --shadow: 0 12px 32px rgba(10, 30, 60, 0.1);
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(13, 59, 102, 0.08), transparent 36%),
    radial-gradient(circle at 85% 10%, rgba(209, 122, 34, 0.1), transparent 42%),
    linear-gradient(180deg, var(--bg), #f0f4f9 45%, #f5f7fa);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.photo-card .card-body {
  padding: 1.2rem;
}

.hero-photo {
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
}

.inline-photo {
  border-radius: var(--radius);
  margin: 1rem 0;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo-float-right {
  float: right;
  margin: 0 0 1rem 1.5rem;
  max-width: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-float-left {
  float: left;
  margin: 0 1.5rem 1rem 0;
  max-width: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 680px) {
  .photo-float-right,
  .photo-float-left {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }

  .photo-card img {
    height: 180px;
  }
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 0.9rem;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 250, 0.96);
  backdrop-filter: blur(10px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-family: "Fraunces", Georgia, serif;
  color: var(--primary);
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--primary);
  font: inherit;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--surface-soft);
  color: var(--primary);
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.78rem 1.2rem;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-deep);
}

.btn-gold {
  background: linear-gradient(180deg, #e08930, var(--accent));
  color: #fff;
}

.btn-gold:hover {
  background: linear-gradient(180deg, #c87520, var(--accent-deep));
}

.header-cta {
  white-space: nowrap;
}

.hero {
  padding: 4.2rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: center;
}

.eyebrow {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  color: var(--primary-deep);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  color: var(--primary-deep);
}

h3 {
  font-size: 1.2rem;
  color: var(--primary);
}

p {
  margin: 0;
}

.lead {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-soft);
  max-width: 64ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-panel {
  background: linear-gradient(170deg, #fff, #eff4fd);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.badge-row {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.badge {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.stat {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.75rem;
}

.stat strong {
  display: block;
  color: var(--primary-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.stat span {
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.breadcrumb {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 700;
}

.section {
  padding: 2.55rem 0;
}

.section-title {
  max-width: 70ch;
}

.section-title p {
  margin-top: 0.85rem;
  color: var(--text-soft);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--text-soft);
}

.card a {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.93rem;
}

.feature-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 900;
}

.tone-soft {
  background: linear-gradient(180deg, #f0f5fd, #edf2fa);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chip-list {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0.38rem 0.75rem;
  background: #fff;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.84rem;
}

.split {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.process li {
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.85rem 0.95rem 0.85rem 3rem;
  position: relative;
  color: var(--text-soft);
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 0.72rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
}

.cta-panel {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid #0d3b66;
  background:
    linear-gradient(130deg, rgba(13, 59, 102, 0.95), rgba(14, 52, 92, 0.92)),
    linear-gradient(45deg, rgba(209, 122, 34, 0.2), transparent 55%);
  box-shadow: var(--shadow);
  color: #f8fbff;
  padding: 1.5rem;
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p {
  color: #dbe6fa;
  margin-top: 0.65rem;
}

.cta-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cta-note {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: #cad9f3;
}

.link-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.link-grid a {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.62rem 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.link-grid a:hover {
  background: #f6f9ff;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0.8rem 0.95rem;
}

details + details {
  margin-top: 0.65rem;
}

details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--primary);
}

details p {
  margin-top: 0.6rem;
  color: var(--text-soft);
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

th,
td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 0.66rem 0.78rem;
}

th {
  color: var(--primary);
  font-size: 0.87rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

td {
  color: var(--text-soft);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.muted {
  color: var(--text-soft);
}

.page-intro {
  padding: 2.8rem 0 1.6rem;
}

.page-intro h1 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.site-footer {
  margin-top: 3rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  background: #fbfcff;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-nav a {
  color: var(--text-soft);
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-copy {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.88rem;
}

.footer-disclaimer {
  margin-top: 0.75rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 80ch;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Trust badges strip */
.trust-strip{padding:1.5rem 0;background:var(--primary);color:#fff}
.trust-badges{display:flex;justify-content:center;gap:2rem;flex-wrap:wrap;text-align:center}
.trust-badge strong{display:block;font-size:1rem;font-family:'Fraunces',serif}
.trust-badge span{font-size:.78rem;opacity:.8}
/* Review cards */
.review-card{padding:1.5rem}
.review-stars{color:#f5a623;font-size:1.2rem;margin-bottom:.5rem;letter-spacing:2px}
.review-author{margin-top:.75rem;font-size:.85rem;color:var(--text-soft)}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(245, 247, 250, 0.99);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 1rem;
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 3.25rem;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}
