/* ==============================
   V2 PREMIUM LANDING PAGE STYLES
   ============================== */

/* --- Variables & Utilities --- */
:root {
  --gold-gradient: linear-gradient(135deg, #DFBD69 0%, #926F34 100%);
  --gold-glow: 0 0 20px rgba(197, 160, 89, 0.4);
  --glass-bg: rgba(10, 25, 47, 0.7);
  --glass-border: 1px solid rgba(197, 160, 89, 0.3);
  --dark-overlay: linear-gradient(180deg, rgba(2, 12, 27, 0.8) 0%, #020c1b 100%);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  padding-bottom: 0.2em;
  /* Prevent descenders (y, j, g) from clipping */
  margin-bottom: -0.2em;
  /* Offset the padding to maintain layout */
  line-height: 1.2;
}

.center-text {
  text-align: center;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* --- Hero Section --- */
.v2-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('hero.jpg') no-repeat center center/cover;
  overflow: hidden;
  padding-top: 85px;
  /* Navbar offset */
}

.v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
  z-index: 1;
}

.v2-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeUp 1s ease-out;
}

.v2-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.v2-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.v2-hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* --- Buttons --- */
.btn-gold-pulse {
  background: var(--gold-gradient);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: var(--gold-glow);
  transition: all 0.3s ease;
  animation: pulse-gold 2s infinite;
  text-decoration: none;
  display: inline-block;
}

.btn-gold-pulse:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.6);
  color: #000;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-glass:hover {
  background: rgba(197, 160, 89, 0.1);
  transform: translateY(-3px);
}

.btn-glass-dark {
  background: rgba(2, 12, 27, 0.8);
  border: 1px solid var(--gold-muted);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-glass-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- Stats Ticker --- */
.stats-ticker {
  background: rgba(10, 25, 47, 0.8);
  border-top: 1px solid var(--gold-muted);
  border-bottom: 1px solid var(--gold-muted);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
  border-radius: 8px;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticker-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.ticker-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-divider {
  width: 1px;
  height: 40px;
  background: var(--gold-muted);
}

@media (max-width: 768px) {
  .stats-ticker {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .ticker-divider {
    display: none;
  }
}

/* --- Risk Section (Agitation) --- */
.v2-risk-section {
  background: var(--secondary-bg);
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.risk-content p {
  text-align: justify;
}

.lead-text {
  font-size: 1.25rem;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.risk-visual {
  display: grid;
  gap: 1.5rem;
}

.risk-card {
  background: var(--primary-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--gold-muted);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.risk-card:hover {
  border-color: #ff4d4d;
  transform: translateX(5px);
}

.risk-icon {
  font-size: 2rem;
}

.risk-card h4 {
  margin: 0 0 0.25rem 0;
  color: var(--white);
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

.risk-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: left;
  /* Keep small card text left-aligned or it looks weird */
}

/* --- Authority Section --- */
.authority-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.authority-text-col p {
  text-align: justify;
}

.premium-portrait {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  border: 4px solid var(--gold);
  /* The direct border */
  padding: 10px;
  /* Space between border and image */
  background: var(--primary-bg);
  /* Ensure gap is solid color */
}

.auth-img {
  width: 100%;
  display: block;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.img-accent-border {
  display: none;
  /* Hide the offset border */
}

/* Remove hover effect on border since it's now static */

.gold-subtitle {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  font-style: italic;
}

.v2-check-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.v2-check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  text-align: justify;
}

.v2-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* --- Options Cards (Glassmorphism) --- */
.v2-options-section {
  background: url('hero.jpg') fixed center/cover;
  /* Parallax effect */
  position: relative;
}

.v2-options-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--secondary-bg);
  opacity: 0.9;
}

.v2-options-section .container {
  position: relative;
  z-index: 2;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.v2-card {
  background: rgba(10, 25, 47, 0.6);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--gold-muted);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.v2-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.urgent-card {
  border-top: 4px solid var(--gold);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.v2-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.v2-card .subtitle {
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.card-desc {
  text-align: justify;
  color: var(--text-secondary);
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  flex-grow: 1;
}

.card-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

/* --- Contact Section --- */
.v2-contact-section {
  background: var(--primary-bg);
}

.form-wrapper-premium {
  max-width: 800px;
  margin: 0 auto;
  background: var(--secondary-bg);
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--gold-muted);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.premium-select,
textarea {
  background: var(--primary-bg);
  border: 1px solid var(--gold-muted);
  color: var(--white);
  padding: 1rem;
  width: 100%;
  border-radius: 4px;
  font-family: inherit;
}

.premium-select option {
  background: var(--secondary-bg);
}

@media (max-width: 768px) {

  .risk-grid,
  .authority-wrapper,
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .v2-hero-title {
    font-size: 2.5rem;
  }

  .v2-card {
    padding: 2rem;
  }
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* --- Footer & Misc (V2) --- */
.v2-footer {
  background: var(--primary-bg);
  border-top: 1px solid var(--gold-muted);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
  text-align: left;
  max-width: 800px;
  /* Bring columns closer together */
  margin-left: auto;
  margin-right: auto;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--gold-muted);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-col p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.text-link-gold {
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s ease;
}

.text-link-gold:hover {
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .footer-content {
    text-align: center;
  }

  .footer-col h4 {
    border-bottom: none;
    /* Cleaner look on mobile if stacked centered */
    text-decoration: underline;
    text-decoration-color: var(--gold);
  }
}

/* --- Legal Context Section --- */
.legal-context {
  background: var(--secondary-bg);
  border-bottom: 1px solid var(--gold-muted);
  position: relative;
  z-index: 2;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.legal-substance h2,
.legal-definition h2 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.legal-substance p,
.legal-definition p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  text-align: justify;
}

/* --- FAQ Section --- */
.faq-section {
  background: var(--secondary-bg);
  padding: 6rem 0;
}

.faq-grid {
  max-width: 900px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: var(--primary-bg);
  border: 1px solid var(--gold-muted);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.faq-item h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}