:root {
  --bg-dark: #0a0a0a;
  --bg-light: #ffffff;
  --surface-dark: #1a1a1a;
  --surface-mid: #2a2a2a;
  --surface-gray: #e8e8e8;
  --text-on-dark: #f5f5f5;
  --text-on-light: #111111;
  --text-muted: #6b6b6b;
  --accent: #25639e;
  --accent-hover: #1e5080;
  --accent-soft: #e8f0f8;
  --accent-ink: #ffffff;
  --border: #2f2f2f;
  --radius: 20px;
  --font-display: "Unbounded", sans-serif;
  --font-heading: "Manrope", sans-serif;
  --font-body: "Onest", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-on-light);
  background: var(--bg-light);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow { width: min(760px, calc(100% - 2.5rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand { display: flex; flex-direction: column; color: var(--text-on-dark); }
.brand:hover { color: var(--text-on-dark); }
.brand-mark {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}
.brand-sub { font-size: 0.78rem; color: #9a9a9a; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  color: #d8d8d8;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav .nav-cta { color: #fff; }

.site-nav .nav-cta {
  background: var(--accent);
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
}

.site-nav .nav-cta:hover { background: var(--accent-hover); color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #fff;
  top: 50%;
}

.nav-toggle-bar::before { transform: translateY(-7px); }
.nav-toggle-bar::after { transform: translateY(7px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 14px;
  border: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}

.btn-ghost:hover { border-color: #fff; color: #fff; }

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(37, 99, 158, 0.28), transparent 55%),
    linear-gradient(160deg, #0a0a0a 0%, #121820 100%);
  color: var(--text-on-dark);
  padding: 4.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #9db7d0;
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1.1rem;
  letter-spacing: -0.03em;
}

.lead, .section-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin: 0 0 1.4rem;
}

.lead, .section-lead.on-dark { color: #c9c9c9; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.2rem; }
.trust-line { margin: 0; color: #b8b8b8; font-size: 0.95rem; }
.micro { margin: 0.45rem 0 0; color: #7a7a7a; font-size: 0.88rem; }

.hero-panel {
  display: grid;
  gap: 0.85rem;
}

.hero-stat {
  background: var(--surface-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.hero-stat.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-stat span {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.hero-stat em {
  display: block;
  font-style: normal;
  margin-top: 0.25rem;
  opacity: 0.8;
  font-size: 0.92rem;
}

.section { padding: 4.2rem 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-soft { background: var(--accent-soft); }
.section h2,
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.cred-grid,
.cases-grid,
.formats-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cases-grid,
.formats-grid { grid-template-columns: repeat(3, 1fr); }
.reviews-grid { grid-template-columns: repeat(2, 1fr); }

.cred-card,
.case-card,
.format-card,
.review-card,
.step {
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
  background: #fff;
  border: 1px solid #ececec;
}

.cred-card span,
.format-card span,
.step span {
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
}

.cred-card h3,
.case-card h3,
.format-card h3 {
  font-family: var(--font-heading);
  margin: 0.5rem 0;
  font-size: 1.15rem;
}

.cred-card p,
.case-card p,
.format-card p { margin: 0; color: var(--text-muted); }

.cred-card.soft { background: var(--accent-soft); border-color: transparent; }
.cred-card.dark {
  background: var(--surface-dark);
  border-color: var(--border);
  color: #fff;
}
.cred-card.dark p { color: #bdbdbd; }

.pain-list,
.fit-list,
.about-marks,
.blog-topics,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pain-list li,
.fit-list li {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #ececec;
  margin-bottom: 0.7rem;
}

.punch {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 1.4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.step {
  background: var(--surface-dark);
  border-color: var(--border);
  color: #fff;
}

.step p { margin: 0.35rem 0 0; color: #bdbdbd; }

.case-card .meta {
  font-size: 0.88rem;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.section-cta { margin-top: 1.8rem; }

.review-card.placeholder { opacity: 0.85; }
.review-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.about-marks li {
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.format-card {
  background: var(--surface-dark);
  border-color: var(--border);
  color: #fff;
}

.format-card p { color: #c4c4c4; }
.format-card strong {
  display: inline-block;
  margin-top: 1rem;
  color: #9db7d0;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.fit-list.yes li { border-left: 4px solid var(--accent); }
.fit-list.no li { border-left: 4px solid #c45c5c; }

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 0.85rem;
  background: var(--surface-dark);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.4rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: #d0d0d0;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #111;
  color: #fff;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.lead-form .consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  grid-template-columns: none;
}

.lead-form .consent input { width: auto; margin-top: 0.2rem; }
.lead-form .hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-note { padding: 0.8rem 1rem; border-radius: 12px; }
.form-note.success { background: rgba(47, 158, 68, 0.2); color: #b6f0c0; }
.form-note.error { background: rgba(224, 49, 49, 0.2); color: #ffc9c9; }

.faq-item {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
}

.faq-item p { margin: 0.7rem 0 0; color: var(--text-muted); }

.site-footer {
  background: #070707;
  color: #cfcfcf;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-links { display: grid; gap: 0.4rem; }
.footer-links a,
.footer-legal a { color: #bdbdbd; }
.footer-tag,
.footer-name,
.muted { color: #8f8f8f; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #eee;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; max-width: 70ch; }

.post-card {
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.content-page .entry-content { color: #333; line-height: 1.7; }

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .fit-grid,
  .cta-grid,
  .footer-grid,
  .cred-grid,
  .cases-grid,
  .formats-grid,
  .reviews-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open { display: flex; }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}
