/* ================= ROOT ================= */

:root {
  /* 🔥 DARKER (REMOVED NAVY FEEL) */
  --brand-dark: #0a0a0a;
  --brand-deep: #050505;

  --brand-primary: #c8a96a;
  --brand-accent: #d4af37;

  --text-dark: #1f2937;
  --text-light: #ffffff;
  --text-muted: #6b7280;

  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;
  --white: #ffffff;

  --border-light: #e5e7eb;
  --radius: 14px;
  --shadow-premium: 0 20px 60px rgba(0,0,0,0.25);
}

/* ================= RESET ================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui;
  background: var(--bg-light);
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= GLOBAL CENTER ================= */

.container,
.hero-content,
.resyd-footer-inner,
.resyd-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */

.resyd-header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* LOGO FIX */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer; /* 🔥 clickable feel */
}

.logo-img {
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 18px;
  font-weight: 700;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
}

/* NAV */

.header-right {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 14px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 30px;
  background: #f3f4f6;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background: linear-gradient(135deg,var(--brand-primary),var(--brand-accent));
  color: #111;
}

/* CTA */

.nav-cta {
  background: linear-gradient(135deg,var(--brand-primary),var(--brand-accent));
  padding: 10px 22px;
  border-radius: 30px;
  color: #111;
  font-weight: 600;
}

/* ================= HERO ================= */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
    url('/assets/hero.webp');

  background-size: cover;
  background-position: center;

  color: #fff;
  text-align: center;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}
.hero {
  text-align: left;
  padding: 80px 20px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-left p {
  color: #d1d5db;
  margin-bottom: 25px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
}

/* ZIP FLOAT CARD */
.hero-right {
  display: flex;
  justify-content: center;
}

.zip-module {
  width: 100%;
  max-width: 380px;
}

/* ================= BUTTON ================= */

.btn,
.nav-cta,
.next,
.back,
.zip-continue,
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;

  background: linear-gradient(135deg,var(--brand-primary),var(--brand-accent));
  color: #111;

  box-shadow: 0 10px 30px rgba(212,175,55,0.25);
  transition: 0.3s ease;
}

.btn:hover,
.next:hover,
.back:hover,
.zip-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.45);
}
/* ================= PREMIUM BUTTON GLOW ================= */

.btn,
.nav-cta,
.zip-continue,
.next,
.back,
.footer-cta {
  position: relative;
  overflow: hidden;
}

/* GOLD GLOW BASE */
.btn::after,
.nav-cta::after,
.zip-continue::after,
.next::after,
.back::after,
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, transparent 70%);
  transition: opacity 0.3s ease;
}

/* HOVER EFFECT */
.btn:hover,
.nav-cta:hover,
.zip-continue:hover,
.next:hover,
.back:hover,
.footer-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 60px rgba(212,175,55,0.55);
}

.btn:hover::after,
.nav-cta:hover::after,
.zip-continue:hover::after {
  opacity: 1;
}

/* CLICK EFFECT */
.btn:active,
.nav-cta:active {
  transform: scale(0.96);
  box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}
/* ================= ZIP ================= */

.zip-module {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  margin-top: 25px;
}

/* 🔥 BREAK HERO COLOR INHERIT (IMPORTANT) */
.hero .zip-module {
  color: #111;
}

.zip-input-group {
  display: flex;
  gap: 10px;
}

.zip-input {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.zip-btn {
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
}

/* ================= RESULT ================= */

.zip-result-box {
  margin-top: 20px;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);

  /* 🔥 FORCE TEXT COLOR */
  color: #111;
}

/* 🔥 TARGET ONLY TEXT ELEMENTS (NOT EVERYTHING) */
.zip-result-box h1,
.zip-result-box h2,
.zip-result-box h3,
.zip-result-box p,
.zip-result-box span,
.zip-result-box div {
  color: #111;
}

.zip-result-box.success {
  border-left: 4px solid #22c55e;
}

/* ================= GREEN DOT ================= */

.green-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,100% { opacity:1 }
  50% { opacity:0.3 }
}

/* ================= CONTINUE ================= */

.zip-continue {
  margin-top: 15px;
  width: 100%;
}
/* ================= FORM ================= */

.form {
  background: linear-gradient(145deg,var(--brand-deep),var(--brand-dark));
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.resyd-form-card {
  background: #fff;
  color: #111;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  margin: 40px auto;
}

.step { display: none; }
.step.active { display: block; }

/* OPTIONS */

.options {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.options button {
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  background: var(--bg-soft);
  transition: 0.3s ease;
}

.options button.active {
  background: linear-gradient(135deg,var(--brand-primary),var(--brand-accent));
  color: #111;
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

/* ================= FOOTER ================= */

.resyd-footer {
  background: linear-gradient(145deg,var(--brand-deep),var(--brand-dark));
  color: #fff;
  text-align: center;
}

.resyd-footer-inner {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 30px;
  padding: 60px 20px;
  text-align: left;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  color: var(--brand-primary);
}

.footer-logo {
  cursor: pointer; /* 🔥 clickable */
}

.footer-cta {
  margin-top: 10px;
}

/* DISCLAIMER */

.resyd-footer-bottom {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 14px;
}
/* ================= FORM CONVERSION LAYER ================= */

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* INTRO */

.form-intro h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.form-sub {
  color: #d1d5db;
  margin-bottom: 15px;
}

/* TRUST POINTS */

.trust-points {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 20px;
}

.trust-points span {
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: 20px;
}

/* SCARCITY */

.form-scarcity {
  margin: 20px 0;
  padding: 10px 18px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 30px;
  display: inline-block;
  font-size: 14px;
  color: #facc15;
}

/* FORM CARD TOP */

.form-top {
  margin-bottom: 15px;
}

.step-indicator {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.micro-copy {
  font-size: 13px;
  color: #6b7280;
}

/* FOOTER NOTE */

.form-footer-note {
  margin-top: 20px;
  font-size: 13px;
  color: #9ca3af;
}
/* ================= GLOBAL ALIGN FIX ================= */

.content,
.how,
.faq,
.form-intro,
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.content {
  padding: 60px 20px;
}

.content h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.content p {
  line-height: 1.7;
  color: #4b5563;
}

.section-cta {
  margin-top: 20px;
}
.how {
  padding: 70px 20px;
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-sub {
  color: #6b7280;
  margin-bottom: 20px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 15px;
  margin-top: 30px;
}

.step-box {
  background: #f1f5f9;
  padding: 18px;
  border-radius: 14px;
}
.faq {
  padding: 70px 20px;
}

.faq-item {
  margin-bottom: 18px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.faq-item h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.faq-item p {
  font-size: 14px;
  color: #4b5563;
}
.zip-module {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}
.hero {
  position: relative;
}

.hero * {
  position: relative;
  z-index: 2;
}
.btn.secondary {
  background: #111;
  color: #fff;
  box-shadow: none;
}
@media (max-width: 900px) {
  .resyd-footer-inner {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 500px) {
  .resyd-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.zip-live .dot {
  height: 10px;
  width: 10px;
  background: #00ff88;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.zip-continue {
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}