

  /* ── TOP BADGE ── */
  .top-badge {
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.15), transparent);
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    animation: pulse-badge 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
  }
  @keyframes pulse-badge { 0%,100%{opacity:0.8} 50%{opacity:1} }

  /* ── HERO ── */
  .hero {
    position: relative;
    padding: 64px 24px 52px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
  }
  .hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .logo-line {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold-dim);
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.1s;
  }
  .limited-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192,57,43,0.15);
    border: 1px solid rgba(192,57,43,0.4);
    color: #E74C3C;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
  }
  .limited-badge::before {
    content: '●';
    font-size: 8px;
    animation: blink 1.2s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 6vw, 70px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.3s;
  }
  h1 em { font-style: italic; color: var(--gold-light); }
  h1 strong {
    font-weight: 700;
    display: block;
    font-size: clamp(40px, 7vw, 84px);
  }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(15px, 2.5vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: rgba(245,240,232,0.6);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.45s;
  }

  /* $2,000 value callout */
  .value-callout {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
    border: 1px solid var(--border);
    padding: 14px 28px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.55s;
  }
  .val-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
  }
  .val-text {
    text-align: left;
    font-size: 12px;
    color: rgba(245,240,232,0.65);
    line-height: 1.6;
  }
  .val-text strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 2px;
  }

  /* Daily counter */
  .daily-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.25);
    padding: 8px 18px;
    margin-bottom: 0;
    font-size: 12px;
    color: rgba(245,240,232,0.7);
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.65s;
  }
  .counter-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #E74C3C;
    line-height: 1;
    min-width: 28px;
    text-align: center;
    transition: transform 0.3s;
  }

  /* ── WHAT'S INSIDE ── */
  .included-section {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 52px auto 0;
    padding: 0 24px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.75s;
  }
  .section-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dim);
    text-align: center;
    margin-bottom: 28px;
  }
  .included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .included-item {
    background: var(--card);
    padding: 26px 22px;
    transition: background 0.3s;
  }
  .included-item:hover { background: #1a1a1a; }
  .included-icon {
    font-size: 22px;
    margin-bottom: 10px;
    display: block;
  }
  .included-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 7px;
  }
  .included-desc {
    font-size: 12px;
    color: rgba(245,240,232,0.5);
    line-height: 1.65;
  }

  /* ── FORM ── */
  .form-section {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 52px auto 0;
    padding: 0 24px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 0.9s;
  }
  .form-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 44px 40px;
    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-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
  }
  .form-subtitle {
    font-size: 12px;
    color: rgba(245,240,232,0.45);
    text-align: center;
    margin-bottom: 28px;
  }
  .form-group { margin-bottom: 14px; }
  label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 7px;
  }


  input,select{
    /* width: 50%; */
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--white);
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 0;
    float: left;

    margin-right: 10px;
   
  }
  input::placeholder { color: rgba(245,240,232,0.22); }
  input:focus, select:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
  }
  select option { background: #1a1a1a; color: var(--white); }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .category-chip {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 10px 12px;
    font-size: 12px;
    color: rgba(245,240,232,0.55);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    user-select: none;
    line-height: 1.4;
  }
  .category-chip:hover { border-color: rgba(201,168,76,0.4); color: var(--white); }
  .category-chip.selected {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    color: var(--gold-light);
  }

  .cta-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #A8782A);    font-family: 'DM Sans', sans-serif;
    color: #0A0A0A;
    border: none;
    padding: 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 22px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cta-btn:hover::after { opacity: 1; }
  .cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
  .cta-btn:active { transform: translateY(0); }

  .form-note {
    font-size: 11px;
    color: rgba(245,240,232,0.28);
    text-align: center;
    margin-top: 14px;
    line-height: 1.7;
  }

  /* ── SUCCESS STATE ── */
  .success-state {
    display: none;
    text-align: center;
    padding: 36px 16px;
  }
  .success-icon { font-size: 52px; margin-bottom: 14px; }
  .success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: var(--gold-light);
    margin-bottom: 10px;
  }
  .success-sub {
    font-size: 14px;
    color: rgba(245,240,232,0.55);
    line-height: 1.8;
    max-width: 380px;
    margin: 0 auto 24px;
  }
  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .whatsapp-btn:hover { opacity: 0.9; }

  /* ── TRUST BAR ── */
  .trust-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 28px 24px;
    margin-top: 52px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 36px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards 1.05s;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(245,240,232,0.4);
  }
  .trust-item span:first-child { color: var(--gold); font-size: 13px; }



  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media(max-width: 600px) {
    .form-card { padding: 32px 22px; }
    .category-grid { grid-template-columns: 1fr; }
    .value-callout { flex-direction: column; text-align: center; gap: 8px; }
    h1 strong { font-size: clamp(38px, 12vw, 60px); }
  }
