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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --dark: #0A0A0F;
  --dark2: #111118;
  --dark3: #1A1A24;
  --text: #E8E4DC;
  --muted: #7A7585;
  --accent: #FF6B35;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, #1c1428 0%, var(--dark) 70%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.07) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  animation: slideUp 0.9s ease both;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 80px 40px;
  animation: slideUp 0.9s ease 0.2s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h1 .accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #a07830);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── FORM CARD ─── */
.form-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 44px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 168, 76, 0.05);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.25;
}

.form-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

input,
select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

select option {
  background: var(--dark3);
}

input::placeholder {
  color: #3d3a45;
}

input:focus,
select:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  border-radius: 10px;
  color: #0A0A0F;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-submit:hover::after {
  opacity: 1;
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit .btn-text {
  position: relative;
  z-index: 1;
}

.privacy-note {
  text-align: center;
  font-size: 11.5px;
  color: #4a4555;
  margin-top: 16px;
}

/* ─── WHAT YOU'LL GET ─── */
.section {
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  max-width: 60px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 60px;
}

.section-title .accent {
  font-style: italic;
  color: var(--gold);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.benefit-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  margin: 0 80px;
}

/* ─── SOCIAL PROOF ─── */
.proof-section {
  padding: 80px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 60px;
}

.proof-num {
  padding: 40px;
  text-align: center;
  background: var(--dark2);
}

.proof-num .number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-num .label {
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s;
}

.testimonial:hover {
  border-color: rgba(201, 168, 76, 0.15);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial p {
  font-size: 0.9rem;
  color: #8a8395;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a07830);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  flex-shrink: 0;
}

.author-info .name {
  font-size: 0.875rem;
  font-weight: 500;
}

.author-info .role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── CTA BOTTOM ─── */
.cta-bottom {
  text-align: center;
  padding: 80px 80px 100px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-bottom h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-bottom p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 1.05rem;
  position: relative;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  padding: 16px 48px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

/* ─── SUCCESS STATE ─── */
.success-state {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.success-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.success-state p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-download:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}


/* ─── SOCIAL SECTION ─── */
  .social-section {
    padding: 70px 80px 80px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .social-section .section-label {
    justify-content: center;
    margin-bottom: 12px;
  }

  .social-section .section-label::after { display: none; }

  .social-tagline {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 44px;
    font-weight: 300;
  }

  /* Grid — change repeat(2, ...) to repeat(3, ...) or repeat(4, ...) as you add more */
  .social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 560px;
    margin: 0 auto;
  }

  .social-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  }

  /* Hover glow uses each platform's brand color via CSS variable */
  .social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, var(--brand-color), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .social-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-color);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }

  .social-card:hover::before { opacity: 0.07; }

  .social-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s;
  }

  .social-card:hover .social-icon-wrap {
    background: rgba(255,255,255,0.07);
    border-color: var(--brand-color);
  }

  .social-icon-wrap svg {
    width: 26px;
    height: 26px;
  }

  .social-name {
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
  }

  .social-handle {
    font-size: 0.8rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
    margin-top: -8px;
  }

  .social-follow-btn {
    margin-top: 4px;
    padding: 7px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .social-card:hover .social-follow-btn {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
  }

  @media (max-width: 900px) {
    .social-section { padding: 50px 24px 60px; }
    /* On mobile show 2 columns always (looks great for 2 cards) */
    .social-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  }



/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

footer p {
  font-size: 12px;
  color: #3d3a45;
}

/* ─── LOADING SPINNER ─── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(10, 10, 15, 0.3);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1c2a1c;
  border: 1px solid rgba(74, 200, 74, 0.25);
  color: #7edb7e;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  z-index: 1000;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 80px 24px 40px;
    align-items: center;
    text-align: center;
  }

  .hero-left .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-left .badge {
    margin: 0 auto 28px;
  }

  .hero-left .trust-row {
    justify-content: center;
  }

  .hero-right {
    padding: 0 24px 80px;
  }

  .section,
  .proof-section {
    padding: 60px 24px;
  }

  .benefits-grid,
  .testimonials,
  .proof-numbers {
    grid-template-columns: 1fr;
  }

  .proof-numbers {
    gap: 1px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .divider {
    margin: 0 24px;
  }

  .cta-bottom {
    padding: 60px 24px 80px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 20px 24px;
  }
}