:root {
  --black: #0a0a0a;
  --ink: #1c1c1c;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7b3c;
  --muted: #6b6b6b;
  --line: #e8e4dc;
  --bg: #faf9f7;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.hero,
.section,
.cta {
  scroll-margin-top: 80px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brandLogo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.navCta {
  background: var(--black);
  color: var(--gold-light);
  padding: 0.55rem 1.15rem;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.navCta:hover {
  background: #222;
}

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 85% -5%, rgba(201, 169, 98, 0.15), transparent 60%),
    linear-gradient(165deg, #fdfcf9 0%, #f5f1ea 100%);
  border-bottom: 1px solid var(--line);
}

.heroInner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0;
}

.badge {
  display: inline-block;
  background: var(--black);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--black);
  font-weight: 800;
}

.h1 .gold {
  color: var(--gold-dark);
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--gold-light);
  border: none;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}

.button:hover {
  background: #222;
  transform: translateY(-1px);
}

.buttonOutline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.buttonOutline:hover {
  background: var(--black);
  color: var(--gold-light);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.heroArt {
  position: relative;
}

.previewCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.previewBar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: #f3f0ea;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.previewBody {
  padding: 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #faf8f4 100%);
}

.previewHero {
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--black) 0%, #2a2418 100%);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.previewHero img {
  height: 28px;
  opacity: 0.95;
}

.previewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.previewItem {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(145deg, #ece8e0, #f8f6f2);
  border: 1px solid var(--line);
}

/* Highlights strip */
.highlights {
  background: var(--black);
  color: #fff;
  padding: 1.25rem 0;
}

.highlights .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.highlight {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
}

.highlight::before {
  content: "✦ ";
  color: var(--gold);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.sectionAlt {
  background: var(--bg);
}

.h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--black);
  font-weight: 800;
  text-align: center;
}

.sectionLead {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.sectionAlt .card {
  background: var(--white);
}

.card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.cardIcon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.cardTitle {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
}

.cardText {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 1rem;
}

.stepNum {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Pricing */
.priceCard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.priceCardHot {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(201, 169, 98, 0.15);
}

.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.planName {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
}

.period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.planList {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.planList li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.planList li::before {
  content: "✓ ";
  color: var(--gold-dark);
  font-weight: 700;
}

.planBtn {
  display: block;
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--black);
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}

.planBtn:hover {
  background: #222;
}

/* FAQ */
.faqWrap {
  max-width: 760px;
}

.faqs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  color: var(--black);
}

.faq p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA */
.cta {
  background: var(--black);
  color: #fff;
  padding: 4rem 0;
}

.ctaInner {
  text-align: center;
}

.ctaLogo {
  height: 42px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.ctaTitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  font-weight: 800;
  color: var(--gold-light);
}

.ctaText {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

/* Footer */
.footer {
  background: #111;
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0;
}

.footerInner {
  text-align: center;
}

.footerLogo {
  height: 32px;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}

.footerText {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.footerLinks {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footerLinks a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
}

.footerLinks a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* Privacy page */
.pageHeader {
  padding: 3rem 0 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.pageHeader h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.pageHeader p {
  margin: 0;
  color: var(--muted);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.prose h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.25rem;
}

.supportCard {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.supportCard h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.supportCard p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.supportGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.supportGrid .supportCard {
  margin: 0;
}

.faqItem {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}

.faqItem h2 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.faqItem p {
  margin: 0;
  color: var(--muted);
}

.pageNav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.pageNav a:hover {
  color: var(--black);
}

.backLink {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.backLink:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .supportGrid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
.menuBtn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
}

@media (max-width: 900px) {
  .heroInner,
  .grid3,
  .steps {
    grid-template-columns: 1fr;
  }

  .heroInner {
    padding: 3rem 0;
  }

  .heroArt {
    order: -1;
  }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .nav.open {
    display: flex;
  }

  .menuBtn {
    display: block;
  }

  .navCta {
    display: none;
  }
}
