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

  :root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #FDF6E3;
    --navy: #0A1628;
    --navy-mid: #132240;
    --navy-light: #1E3560;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --text-muted: #8A8070;
    --border: rgba(201,168,76,0.25);
    --success: #1A7A4A;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.18) 0%, transparent 70%),
      linear-gradient(180deg, #0A1628 0%, #0D1E38 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.04) 80px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.04) 80px);
    pointer-events: none;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeDown 0.7s ease both;
    /* position: absolute; */
    /* top: 1rem; */
    /* left: 2rem; */
    /* z-index: 10; */
    /* top: 86px;
    left: -30px;
    transform: rotate(320deg) !important; */
  }

  .badge-dot {
    width: 7px; height: 7px;
    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(38px, 6vw, 66px);
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
    max-width: 820px;
    margin-bottom: 24px;
    animation: fadeDown 0.7s 0.1s ease both;
  }

  h1 .accent {
    color: var(--gold);
    position: relative;
    display: inline-block;
  }

  h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
  }

  .hero-sub {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255,255,255,0.65);
    text-align: center;
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 48px;
    font-weight: 300;
    animation: fadeDown 0.7s 0.2s ease both;
  }

  /* ── VIDEO BOX ── */
  .video-section {
    width: 100%;
    max-width: 760px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.3);
    box-shadow:
      0 0 0 1px rgba(201,168,76,0.1),
      0 40px 80px rgba(0,0,0,0.5),
      0 0 60px rgba(201,168,76,0.08);
    background: #000;
    aspect-ratio: 16/9;
    cursor: pointer;
  }

  .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
  }

  .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.65) 100%);
  }

  .play-btn {
    width: 80px; height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 0 12px rgba(201,168,76,0.2);
    margin-bottom: 16px;
  }

  .play-btn:hover { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(201,168,76,0.25); }

  .play-btn svg { margin-left: 5px; }

  .video-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .video-overlay.loaded .play-btn{
    position: absolute;
    z-index: 22;
  }
  .video-overlay.loaded .video-label{
    position: absolute;
    top: 60%;
    z-index: 23;
  }
  .video-overlay.playing .play-btn,
  .video-overlay.playing .video-label{
    visibility: hidden;
    opacity: 0;
  }

  .video-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: white;
  }

  .video-caption strong { color: white; font-weight: 500; }

  /* ── PROOF STRIP ── */
  .proof-strip {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
    animation: fadeUp 0.8s 0.4s ease both;
  }

  .proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

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

  .proof-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-align: center;
  }

  .proof-divider {
    width: 1px;
    background: rgba(201,168,76,0.2);
    align-self: stretch;
  }

  /* ── UNLOCK SECTION ── */
  .unlock-section {
    background: var(--off-white);
    color: var(--navy);
    padding: 100px 24px;
  }

  .unlock-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  @media (max-width: 700px) {
    .unlock-inner { grid-template-columns: 1fr; gap: 48px; }
    .proof-divider { display: none; }
  }

  .unlock-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--navy);
  }

  .unlock-left h2 span { color: var(--gold); }

  .unlock-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4035;
    margin-bottom: 32px;
  }

  .module-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .module-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--navy-mid);
    line-height: 1.5;
  }

  .module-check {
    width: 22px; height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .module-check svg { display: block; }

  /* ── FORM CARD ── */
  .form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 20px 60px rgba(10,22,40,0.08);
    position: sticky;
    top: 24px;
  }

  .form-card-tag {
    display: inline-block;
    background: #FDF0D0;
    color: #8A6010;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .form-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #3A3025;
    margin-bottom: 7px;
    letter-spacing: 0.01em;
  }

  .form-group input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #E2D9C8;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--navy);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
  }

  .form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    background: #fff;
  }

  .form-group input::placeholder { color: #B0A898; }

  .cta-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
    background-size: 200% auto;
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 8px;
    letter-spacing: 0.01em;
    transition: background-position 0.4s ease, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .cta-btn:hover { background-position: right center; transform: translateY(-1px); }
  .cta-btn:active { transform: translateY(0) scale(0.99); }

  .cta-btn svg { flex-shrink: 0; }

  .form-footer {
    margin-top: 16px;
    font-size: 12px;
    color: #B0A898;
    text-align: center;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

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

  .success-icon {
    width: 64px; height: 64px;
    background: #E8F5EE;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }

  .success-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .success-state p {
    font-size: 15px;
    color: #4A4035;
    line-height: 1.6;
  }

  /* ── WHAT YOU LEARN ── */
  .learn-section {
    background: var(--navy);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
  }

  .learn-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 70%; height: 80%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.2;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .learn-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 16px;
    padding: 28px 26px;
    transition: border-color 0.2s, background 0.2s;
  }

  .learn-card:hover {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.05);
  }

  .card-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
  }

  .learn-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
  }

  .learn-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* ── TESTIMONIALS ── */
  .testi-section {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 80px 24px;
  }
  .testi-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  .testi-card {
    background: var(--navy-light);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px;
    /* padding: 28px 26px; */
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s;
    transform: translateY(0);
  }
  .testi-card:hover { 
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 12px -20px -10px rgba(201,168,76,0.4);
    transform: translateY(-2px);
  }
  .testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
  .testi-quote {
    font-size: 14px;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
  }
  .grid-card-overlay {
    background: linear-gradient(#0c0a091a, #0c0a09b3);
    border-radius: 16px;
    position: absolute;
    inset: 0;
  }
  .grid-card-badge {
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gold);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: #0c0a09bf;
    border-radius: 100px;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: 8px;
    left: 8px;
  }
  .grid-card-play {
    background: var(--gold);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    transition: all .3s;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px #ffffff22;
    cursor: pointer;
  }
  .testi-card:hover .grid-card-play{
    transform: translate(-50%, -50%) scale(1.1);
  }
  .testi-author { 
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  .testi-author img{
    width: 255px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    transition: transform .4s;
  }
  .testi-card:hover .testi-author img{
    transform: scale(1.05);
  }
  .testi-details{
    position: relative;
    padding: 0.75rem 1.5rem;
    width: 100%;
    z-index: 11;
  }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; color: var(--navy); flex-shrink: 0;
  }
  .av-amber { background: var(--gold); }
  .av-teal  { background: #2ABFA3; }
  .av-rose  { background: #E07070; }
  .testi-name { font-size: 13px; font-weight: 600; color: var(--white); }
  .testi-loc  { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
  @media (max-width: 700px) { .testi-grid { grid-template-columns: 1fr; } }

  /* ── INSTRUCTOR ── */
  .instructor-section {
    background: var(--navy-mid);
    padding: 80px 24px;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }

  .instructor-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }

  .instructor-avatar {
    width: 160px; height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
    border: 3px solid rgba(201,168,76,0.4);
  }
  .instructor-avatar img{
    border-radius: 50%;
    object-fit: contain;
  }

  .instructor-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 6px;
  }

  .instructor-info .title {
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 14px;
    font-weight: 500;
  }

  .instructor-info p,
  .instructor-info ul li {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
  }
  .instructor-info ul {
    margin-top: 1rem;
    margin-left: 1rem;
  }

  /* ── FOOTER CTA ── */
  .footer-cta {
    background: linear-gradient(135deg, #0A1628 0%, #132240 100%);
    padding: 80px 24px;
    text-align: center;
  }

  .footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
  }

  .footer-cta h2 span { color: var(--gold); }

  .footer-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.65;
  }

  .footer-anchor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
  }

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

  footer {
    background: #060E1A;
    padding: 28px 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
  }

  footer a{
    color: rgba(255,255,255,0.25);
    text-decoration: none;
  }
  footer a:hover{
    color: var(--gold);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

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

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── DUBAI SKYLINE GRAPHIC ── */
  .skyline {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    opacity: 0.07;
    pointer-events: none;
  }

@keyframes shake {
  0%,100%{transform:translateX(0)}25%{transform:translateX(-6px)}75%{transform:translateX(6px)}
}

/* Hidden by default */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

/* Active Class to trigger visibility */
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

/* Dark background overlay */
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* Modal box content wrapper */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  z-index: 10;
}

/* Close Button positioning */
.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 11;
  line-height: 1;
}

/* Maintaining a perfect 16:9 widescreen ratio */
.video-responsive-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-responsive-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}