:root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --gold-dim: #8B6914;
      --black: #050505;
      --black-2: #0D0D0D;
      --black-3: #111111;
      --black-4: #1A1A1A;
      --white: #F5F0E8;
      --white-dim: rgba(245,240,232,0.6);
      --glass: rgba(201,168,76,0.05);
      --glass-border: rgba(201,168,76,0.18);
      --glow: rgba(201,168,76,0.25);
      --red-dim: rgba(200, 80, 80, 0.12);
      --red-accent: #E07070;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      line-height: 1.8;
      overflow-x: hidden;
    }

    /* LOADER */
    #loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--black);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; }
    .loader-ring {
      width: 70px; height: 70px;
      position: relative;
    }
    .loader-ring::before, .loader-ring::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: 50%;
      border: 1px solid transparent;
    }
    .loader-ring::before {
      border-top-color: var(--gold);
      animation: spin 1s linear infinite;
    }
    .loader-ring::after {
      border-bottom-color: var(--gold-dim);
      animation: spin 1.5s linear infinite reverse;
    }
    .loader-gem {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1.2rem;
    }
    .loader-label {
      font-family: 'Cormorant Garamond', serif;
      color: var(--gold);
      font-size: 0.72rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      margin-top: 1.5rem;
      animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    @keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

    /* NAVBAR */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      padding: 0 5%;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(5,5,5,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      transition: all 0.4s ease;
    }
    nav.scrolled { height: 64px; }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 500;
      color: var(--gold); text-decoration: none;
      letter-spacing: 0.05em;
    }
    .nav-logo span { font-style: italic; color: var(--gold-light); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: var(--white-dim); text-decoration: none;
      font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
      transition: color 0.3s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.3s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px;
    }
    .nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: all 0.3s ease; }
    .nav-mobile {
      display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
      background: rgba(5,5,5,0.97); backdrop-filter: blur(20px);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2.5rem; z-index: 998;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      color: var(--white-dim); text-decoration: none;
      font-size: 1.2rem; letter-spacing: 0.2em; text-transform: uppercase;
      font-family: 'Cormorant Garamond', serif; transition: color 0.3s;
    }
    .nav-mobile a:hover { color: var(--gold); }

    /* HERO */
    .page-hero {
      min-height: 50vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      padding: 140px 5% 80px;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    }
    .hero-ornament {
      width: 1px; height: 60px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      margin: 0 auto 2rem;
      animation: fadeInUp 1s ease 0.5s both;
    }
    .hero-badge {
      font-size: 0.65rem; letter-spacing: 0.5em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 1.2rem;
      animation: fadeInUp 1s ease 0.7s both;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300;
      color: var(--white); line-height: 1.1; margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease 0.9s both;
    }
    .hero-title em { font-style: italic; color: var(--gold); }
    .hero-subtitle {
      font-size: 0.78rem; letter-spacing: 0.15em; color: var(--white-dim);
      animation: fadeInUp 1s ease 1.1s both;
    }
    .hero-line {
      width: 120px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      margin: 2rem auto 0;
      animation: fadeInUp 1s ease 1.3s both;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ALERT BANNER */
    .alert-banner {
      max-width: 900px; margin: 0 auto 3rem;
      padding: 0 5%;
      animation: fadeInUp 1s ease 1.5s both;
    }
    .alert-box {
      background: rgba(201,168,76,0.08);
      border: 1px solid var(--gold);
      border-radius: 2px;
      padding: 1.8rem 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .alert-box::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim));
    }
    .alert-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; color: var(--gold-light);
      margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem;
    }
    .alert-body {
      font-size: 0.82rem; color: var(--white-dim); line-height: 1.7;
    }
    .alert-body strong { color: var(--gold-light); }

    /* CONTENT */
    .content-wrapper {
      max-width: 900px; margin: 0 auto;
      padding: 0 5% 100px;
    }
    .policy-section {
      margin-bottom: 2.5rem;
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .policy-section.visible { opacity: 1; transform: translateY(0); }

    .glass-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 2px;
      padding: 2.5rem 3rem;
      position: relative; overflow: hidden;
      transition: border-color 0.4s ease, box-shadow 0.4s ease;
    }
    .glass-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .glass-card:hover {
      border-color: rgba(201,168,76,0.35);
      box-shadow: 0 0 40px var(--glow);
    }

    /* VIDEO REQUIREMENT CARD — special */
    .video-card {
      background: rgba(201,168,76,0.04);
      border: 1px solid var(--gold);
      border-radius: 2px;
      padding: 2.5rem 3rem;
      position: relative; overflow: hidden;
    }
    .video-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold-light), transparent);
    }
    .video-card::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 60%);
      pointer-events: none;
    }

    .section-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.7rem; color: var(--gold-dim);
      letter-spacing: 0.4em; text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 400;
      color: var(--gold-light); margin-bottom: 1.5rem; line-height: 1.2;
    }
    .section-body {
      font-size: 0.85rem; color: var(--white-dim); line-height: 1.9;
    }
    .section-body p { margin-bottom: 1rem; }
    .section-body ul { list-style: none; margin: 1rem 0; }
    .section-body ul li {
      padding: 0.5rem 0 0.5rem 1.5rem;
      position: relative;
      border-bottom: 1px solid rgba(201,168,76,0.07);
    }
    .section-body ul li:last-child { border-bottom: none; }
    .section-body ul li::before {
      content: '◆'; position: absolute; left: 0;
      color: var(--gold); font-size: 0.45rem; top: 0.75rem;
    }
    .section-body a {
      color: var(--gold); text-decoration: none;
      border-bottom: 1px solid var(--gold-dim);
      transition: border-color 0.3s, color 0.3s;
    }
    .section-body a:hover { color: var(--gold-light); border-color: var(--gold-light); }

    /* STEPS */
    .steps-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.5rem; margin-top: 1.5rem;
    }
    .step-item {
      background: rgba(201,168,76,0.06);
      border: 1px solid var(--glass-border);
      border-radius: 2px;
      padding: 1.5rem;
      text-align: center;
      transition: border-color 0.3s, transform 0.3s;
    }
    .step-item:hover { border-color: var(--gold); transform: translateY(-4px); }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; color: var(--gold);
      display: block; margin-bottom: 0.5rem;
    }
    .step-label {
      font-size: 0.72rem; letter-spacing: 0.1em;
      color: var(--white-dim); text-transform: uppercase;
    }

    /* VIDEO CHECKLIST */
    .video-checklist {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1rem; margin-top: 1.5rem;
    }
    .check-item {
      display: flex; align-items: flex-start; gap: 1rem;
      background: rgba(201,168,76,0.07);
      border: 1px solid var(--glass-border);
      border-radius: 2px; padding: 1.2rem;
      transition: border-color 0.3s;
    }
    .check-item:hover { border-color: rgba(201,168,76,0.4); }
    .check-icon {
      width: 32px; height: 32px; min-width: 32px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem; color: var(--gold);
    }
    .check-text {
      font-size: 0.8rem; color: var(--white-dim); line-height: 1.5;
    }
    .check-text strong { color: var(--white); display: block; margin-bottom: 0.2rem; font-size: 0.82rem; }

    /* NOT ELIGIBLE */
    .not-eligible-list li::before { content: '✕ '; color: var(--red-accent); position: static; font-size: 0.75rem; }
    .not-eligible-list li {
      padding-left: 0.3rem !important;
      color: rgba(245,240,232,0.5);
    }

    /* TIMELINE */
    .timeline {
      position: relative; margin: 1.5rem 0;
      padding-left: 2rem;
    }
    .timeline::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
    }
    .timeline-item {
      position: relative; margin-bottom: 1.5rem; padding-left: 1rem;
    }
    .timeline-item::before {
      content: ''; position: absolute; left: -2rem; top: 0.5rem;
      width: 8px; height: 8px;
      border: 1px solid var(--gold); border-radius: 50%;
      background: var(--black);
    }
    .timeline-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; color: var(--gold-light); margin-bottom: 0.3rem;
    }
    .timeline-desc { font-size: 0.8rem; color: var(--white-dim); }

    /* FOOTER */
    footer {
      background: var(--black-2);
      border-top: 1px solid var(--glass-border);
      padding: 5rem 5% 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr;
      gap: 4rem; max-width: 1100px; margin: 0 auto 4rem;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; color: var(--gold); font-weight: 500;
      margin-bottom: 1rem; display: block;
    }
    .footer-logo span { font-style: italic; color: var(--gold-light); }
    .footer-tagline {
      font-size: 0.72rem; letter-spacing: 0.2em; color: var(--white-dim);
      text-transform: uppercase; margin-bottom: 1.5rem;
    }
    .footer-contact p { font-size: 0.8rem; color: var(--white-dim); margin-bottom: 0.6rem; }
    .footer-contact a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
    .footer-contact a:hover { color: var(--gold-light); }
    .footer-col-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; color: var(--gold); letter-spacing: 0.15em;
      text-transform: uppercase; margin-bottom: 1.5rem;
      position: relative; padding-bottom: 0.8rem;
    }
    .footer-col-title::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 30px; height: 1px; background: var(--gold);
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.8rem; }
    .footer-links a {
      color: var(--white-dim); text-decoration: none;
      font-size: 0.78rem; letter-spacing: 0.08em;
      transition: color 0.3s, padding-left 0.3s; display: inline-block;
    }
    .footer-links a:hover { color: var(--gold); padding-left: 6px; }
    .footer-divider {
      width: 100%; height: 1px;
      background: linear-gradient(to right, transparent, var(--glass-border), transparent);
      max-width: 1100px; margin: 0 auto 2rem;
    }
    .footer-bottom {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.72rem; color: var(--white-dim); letter-spacing: 0.08em; }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { font-size: 0.72rem; color: var(--white-dim); text-decoration: none; transition: color 0.3s; }
    .footer-legal a:hover { color: var(--gold); }

    /* WHATSAPP */
    .whatsapp-btn {
      position: fixed; bottom: 30px; right: 30px; z-index: 888;
      width: 58px; height: 58px; background: #25D366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: float 3s ease-in-out infinite;
    }
    .whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
    .whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero-title { font-size: 2.5rem; }
      .glass-card, .video-card { padding: 2rem 1.5rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .video-checklist { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
    }
