:root {
  --bg: #1A1410;
  --panel: #241C17;
  --panel-2: #2D231D;
  --text: #F5F2ED;
  --muted: #D6D1C9;
  --soft: #B8B2A9;
  --gold: #D4AF37;
  --gold-hover: #E6C354;
  --line: rgba(212, 175, 55, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1140px;
  --max-narrow: 900px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.09), transparent 32%),
    linear-gradient(180deg, #17120e 0%, var(--bg) 100%);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  justify-content: center;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  z-index: 1000;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(26, 20, 16, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.brand-subtitle {
  font-size: 0.86rem;
  color: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-nav a {
  color: var(--soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--soft);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switch button:hover,
.lang-switch button:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.lang-switch button.active {
  background: var(--gold);
  color: #1A1410;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.header-cta,
.btn-primary,
.btn-secondary,
.pricing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.header-cta {
  min-height: 44px;
  padding: 11px 16px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-hover);
  border-color: var(--gold-hover);
  outline: none;
  transform: translateY(-1px);
}

main {
  display: block;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px;
}

.hero {
  padding-top: 52px;
  padding-bottom: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy {
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 20px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-points li,
.value-points span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-primary,
.btn-secondary,
.pricing-link {
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #1A1410;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-hover);
  outline: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transform: translateY(-1px);
}

.microcopy {
  color: var(--soft);
  font-size: 0.92rem;
  margin: 0;
}

.hero-card,
.proof-card,
.offer-card,
.contact-card,
.footer-wrap,
.privacy-card,
.pricing-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-banner-real {
  position: relative;
  min-height: 230px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background: #201813;
}

.hero-banner-real img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.18), rgba(10, 8, 7, 0.62)),
    linear-gradient(135deg, rgba(212, 175, 55, 0.10), transparent 55%);
}

.hero-banner-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.hero-banner-badge span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(26, 20, 16, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero-banner-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.hero-banner-caption strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.hero-banner-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 34ch;
}

.hero-card-body {
  padding: 22px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 14px;
}

.hero-stat strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-stat span {
  color: var(--soft);
  font-size: 0.88rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2,
.privacy-section h2 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.15;
}

.section-heading p,
.privacy-card p,
.privacy-card li {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.proof-card,
.contact-card,
.privacy-card,
.footer-wrap {
  padding: 26px;
}

.audio-proof-wrap {
  margin-top: 16px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.audio-player {
  width: 100%;
}

.proof-text {
  margin-top: 16px;
  color: var(--muted);
}

.proof-supporting-link {
  margin-top: 14px;
}

.proof-supporting-link a,
.footer-links a,
.contact-list a,
.privacy-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.proof-supporting-link a:hover,
.proof-supporting-link a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible,
.privacy-card a:hover,
.privacy-card a:focus-visible {
  color: var(--gold-hover);
  text-decoration: underline;
  outline: none;
}

.offer-grid,
.steps-grid,
.contact-grid,
.footer-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.offer-grid,
.steps-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.pricing-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.offer-card,
.step,
.pricing-card {
  padding: 24px;
}

.offer-card h3,
.step h3,
.contact-block h3,
.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.offer-card p,
.step p,
.contact-block p,
.pricing-sub,
.payment-strip p,
.pricing-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.95rem;
}

.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.13);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.03);
}

.pricing-card-featured {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

.pricing-card-outline {
  border-color: rgba(255,255,255,0.18);
}

.pricing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212,175,55,0.14);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.28);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  white-space: nowrap;
}

.pricing-sub {
  margin: 6px 0 16px;
  color: var(--muted);
}

.pricing-list {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--soft);
}

.pricing-list li + li,
.privacy-card li + li,
.contact-list li + li {
  margin-top: 10px;
}

.pricing-link {
  width: 100%;
  background: rgba(255,255,255,0.94);
  color: #111;
}

.pricing-link:hover,
.pricing-link:focus-visible {
  background: #fff;
  outline: none;
  transform: translateY(-1px);
}

.pricing-link-featured {
  background: #111;
  color: #fff;
}

.pricing-link-featured:hover,
.pricing-link-featured:focus-visible {
  background: #000;
}

.value-strip,
.payment-strip {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.value-strip h3,
.payment-strip strong {
  display: block;
  margin: 0 0 10px;
}

.value-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.92rem;
}

.contact-card {
  margin-top: 26px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.contact-block p {
  margin-bottom: 12px;
}

.contact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 12px;
  padding: 13px 14px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9d968e;
}

.contact-form select option {
  color: #111;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(212,175,55,0.45);
  outline-offset: 2px;
  border-color: var(--gold);
}

.form-note,
.footer-copy,
.footer-meta,
.footer-small,
.privacy-meta,
.privacy-footer-note {
  color: var(--soft);
  font-size: 0.92rem;
}

footer {
  padding: 0 20px 40px;
}

.footer-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  align-items: start;
}

.footer-title {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-small {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.privacy-page {
  max-width: none;
}

.privacy-wrap {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.privacy-heading {
  margin-bottom: 22px;
}

.privacy-heading h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.privacy-meta {
  margin: 0 0 14px;
}

.privacy-card {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.privacy-section + .privacy-section {
  margin-top: 28px;
}

.privacy-section h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.privacy-card p,
.privacy-card ul {
  margin: 0 0 14px;
}

.privacy-card ul {
  padding-left: 20px;
}

.privacy-footer-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 1180px) {
  .pricing-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .offer-grid,
  .steps-grid,
  .footer-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .header-cta,
  .pricing-link {
    width: 100%;
  }

  .section {
    padding: 56px 16px;
  }

  .proof-card,
  .offer-card,
  .contact-card,
  .footer-wrap,
  .pricing-card,
  .privacy-card {
    padding: 20px;
  }

  .pricing-card-top {
    flex-direction: column;
  }
  
  /* Ensure your main grid is set to 3 columns */
.pricing-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; /* This gap now perfectly handles BOTH horizontal and vertical spacing */
}

/* Style the 4th card to span the bottom row and stay centered */
.pricing-custom-tier {
  grid-column: 1 / -1; /* Spans all 3 columns */
  max-width: 800px; /* Prevents it from stretching too wide on large screens */
  margin: 0 auto; /* Centers the card horizontally */
  width: 100%;
}

/* Optional: Mobile responsiveness so they stack neatly on phones */
@media (max-width: 768px) {
  .pricing-grid-three {
    grid-template-columns: 1fr; /* Stacks all cards in 1 column on mobile */
  }
  .pricing-custom-tier {
    grid-column: 1; /* Resets the span behavior for mobile */
  }
} 
}



