:root {
  --bg: #f5f1ec;
  --ink: #0f1a1f;
  --muted: #5b6b73;
  --accent: #0f2a3b;
  --accent-dark: #091722;
  --gold: #98a3ad;
  --paper: #ffffff;
  --shadow: 0 20px 50px rgba(15, 26, 31, 0.15);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(245, 241, 236, 0.85);
  border-bottom: 1px solid rgba(15, 26, 31, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid rgba(15, 26, 31, 0.12);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-logo {
  width: 130%;
  height: 130%;
  object-fit: contain;
}

.brand-name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 26, 31, 0.15);
}

.btn-solid {
  background: var(--accent);
  color: var(--paper);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-ghost {
  border-color: rgba(15, 26, 31, 0.15);
  background: var(--paper);
}

.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(152, 163, 173, 0.25), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(15, 42, 59, 0.18), transparent 45%),
    linear-gradient(120deg, #fefcf9 0%, #eef2f0 50%, #f8f2e9 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-copy h1 span {
  color: var(--accent);
}

.eyebrow {
  font-family: "Oswald", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid rgba(15, 26, 31, 0.1);
  font-weight: 600;
}

.hero-card .card {
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 26, 31, 0.08);
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.form label {
  font-size: 0.9rem;
  font-weight: 600;
  display: grid;
  gap: 6px;
}

.form input,
.form textarea {
  border: 1px solid rgba(15, 26, 31, 0.15);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 70px 0;
}

.section h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 20px;
  text-transform: uppercase;
}


.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: var(--paper);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 26, 31, 0.08);
  box-shadow: 0 12px 30px rgba(15, 26, 31, 0.08);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefits {
  background: linear-gradient(120deg, #f6f4ef, #eef2f5);
}

/* Logo Banner */
.logo-banner {
  background: var(--accent-dark);
  padding: 60px 0;
  text-align: center;
}

.logo-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.logo-banner-img {
  width: 320px;
  height: auto;
  border-radius: 22px;
  background: var(--paper);
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.logo-banner-name {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--paper);
}

.logo-banner-tag {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 4px;
  box-shadow: 0 0 0 3px rgba(15, 79, 63, 0.2);
}

.stats {
  display: grid;
  gap: 16px;
}

.stat {
  background: var(--paper);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 26, 31, 0.08);
}

.stat-number {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--accent);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Reviews */
.reviews {
  background: linear-gradient(120deg, #eef2f5, #f6f4ef);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.review {
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 26, 31, 0.08);
  box-shadow: 0 12px 30px rgba(15, 26, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-stars {
  color: #d4a017;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}

.review-author {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 26, 31, 0.08);
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-detail {
  font-size: 0.85rem;
  color: var(--muted);
}

/* CTA Logo */
.cta-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-logo {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 22px;
  background: var(--paper);
  padding: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.cta {
  background: var(--accent-dark);
  color: var(--paper);
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: #0b1316;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-grid a {
  color: #fff;
}

.small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-mark {
    width: 140px;
    height: 140px;
  }

  .hero {
    padding-top: 70px;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-logo {
    width: 190px;
    height: 190px;
  }

  .logo-banner-img {
    width: 220px;
  }

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