    :root {
      --maroon: #8B1A1A;
      --maroon-dark: #5c0f0f;
      --maroon-light: #b52424;
      --gold: #C9A84C;
      --gold-light: #e8c96d;
      --gold-pale: #f5e6b8;
      --cream: #faf7f2;
      --white: #ffffff;
      --text: #1a1a1a;
      --text-muted: #6b6560;
      --border: #e8e0d6;
      --shadow: rgba(139, 26, 26, 0.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }
/* ============================
   HEADER
============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1300px;
  margin: auto;
  height: 80px;
  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================
   LOGO
============================ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: white;
  padding: 3px;
  flex-shrink: 0;
}

.logo-texts {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--maroon);
  letter-spacing: 2px;
  line-height: 1;
}

.full-name {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 2px;
}

/* ============================
   NAVIGATION
============================ */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 40px;
  transition: .25s ease;
  display: block;
}

.nav-links li a:hover {
  background: var(--maroon);
  color: white;
}

/* ============================
   MENU BUTTON
============================ */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--maroon);
  cursor: pointer;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 768px) {

  .header-inner {
    height: 72px;
    padding: 0 16px;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 18px;
  }

  .full-name {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: white;

    border-bottom: 1px solid var(--border);

    max-height: 0;
    overflow: hidden;

    transition: max-height .35s ease;
  }

  .nav.active {
    max-height: 400px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 16px;
    gap: 10px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    text-align: center;
    background: #f7f7f7;
    border-radius: 12px;
    padding: 14px;
  }

  .nav-links li a:hover {
    background: var(--maroon);
  }
}
    /* ============================
       HERO
    ============================ */
    .hero {
      position: relative;
      min-height: 92vh;
      background: url("../images/bg6.png") center/cover no-repeat;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(92,15,15,0.88) 0%, rgba(92,15,15,0.6) 55%, rgba(0,0,0,0.2) 100%);
      z-index: 1;
    }

    /* Decorative diagonal stripe */
    .hero::after {
      content: "";
      position: absolute;
      top: 0; right: -60px;
      width: 400px; height: 100%;
      background: linear-gradient(to bottom, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
      transform: skewX(-6deg);
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 80px 80px;
      max-width: 760px;
      animation: fadeUp 0.9s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.4);
      border-radius: 40px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gold-light);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.5); }
    }

    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 66px;
      line-height: 1.05;
      color: #fff;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 10px;
    }

    .hero-content h1 .accent {
      color: var(--gold-light);
      display: block;
    }

    .hero-content p {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      margin: 22px 0 40px;
      line-height: 1.7;
      font-weight: 300;
      max-width: 480px;
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: #1a0a00;
      padding: 16px 38px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 8px 28px rgba(201,168,76,0.35);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(201,168,76,0.45);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: rgba(255,255,255,0.8);
      padding: 16px 28px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.25);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }

    /* Hero Stats */
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--gold-light);
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 5px;
      font-weight: 500;
    }

    /* ============================
       SECTION: PRICING / CARDS
    ============================ */
    .pricing {
      padding: 120px 20px;
      background: var(--cream);
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 72px;
    }

    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      font-weight: 800;
      color: var(--maroon);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .section-header p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      font-weight: 300;
    }

    /* Divider */
    .section-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, var(--gold), var(--gold-light));
      margin: 20px auto;
      border-radius: 2px;
    }

    /* Cards Grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1280px;
      margin: 0 auto;
    }

    /* ============================
       PRICE CARD — REDESIGNED
    ============================ */
    .price-card {
      background: white;
      border-radius: 16px;
      padding: 0;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
      display: flex;
      flex-direction: column;
    }

    .price-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(139,26,26,0.12);
      border-color: rgba(201,168,76,0.4);
    }

    .card-top-bar {
      height: 4px;
      background: linear-gradient(90deg, var(--maroon), var(--gold));
    }

    .card-inner {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-category {
      font-size: 10px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .price-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--maroon);
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .card-price {
      font-family: 'DM Mono', monospace;
      font-size: 26px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 22px;
      padding-bottom: 18px;
      border-bottom: 1px dashed var(--border);
    }

    .card-price.free {
      font-size: 16px;
      color: var(--maroon);
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
    }

    .card-price span {
      font-size: 14px;
      font-weight: 400;
      color: var(--text-muted);
      font-family: 'DM Sans', sans-serif;
    }

    .card-features {
      list-style: none;
      flex: 1;
      margin-bottom: 24px;
    }

    .card-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13.5px;
      color: #555;
      padding: 7px 0;
      border-bottom: 1px solid #f5f0eb;
      line-height: 1.5;
    }

    .card-features li:last-child { border-bottom: none; }

    .feat-icon {
      width: 18px;
      height: 18px;
      background: rgba(201,168,76,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .feat-icon svg {
      width: 10px;
      height: 10px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .card-register-btn {
      width: 100%;
      padding: 14px;
      border: 2px solid var(--maroon);
      border-radius: 8px;
      background: transparent;
      color: var(--maroon);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: 'DM Sans', sans-serif;
    }

    .card-register-btn:hover {
      background: var(--maroon);
      color: white;
    }

    /* Featured Card */
    .price-card.featured {
      border-color: var(--gold);
      box-shadow: 0 8px 32px rgba(201,168,76,0.2);
    }

    .price-card.featured .card-top-bar {
      background: var(--gold);
      height: 5px;
    }

    .price-card.featured .card-register-btn {
      background: var(--maroon);
      color: white;
    }

    .price-card.featured .card-register-btn:hover {
      background: var(--maroon-dark);
    }

    .featured-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--gold);
      color: #1a0a00;
      font-size: 9px;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* ============================
       EVENT INFO CARD — REDESIGNED
    ============================ */
    .event-info-card {
      background: var(--maroon);
      border-radius: 16px;
      overflow: hidden;
      border: none;
      box-shadow: 0 8px 32px rgba(139,26,26,0.25);
      transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .event-info-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 55px rgba(139,26,26,0.3);
    }

    .event-card-header {
      background: rgba(0,0,0,0.2);
      padding: 20px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .event-card-header .label {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold-light);
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }

    .event-dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .event-card-body { padding: 28px; }

    .event-card-date {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: white;
      line-height: 1.2;
      margin-bottom: 6px;
    }

    .event-card-venue {
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .event-card-venue svg {
      width: 13px; height: 13px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      flex-shrink: 0;
    }

    .includes-title {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .includes-list {
      list-style: none;
    }

    .includes-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: rgba(255,255,255,0.8);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      line-height: 1.5;
    }

    .includes-list li:last-child { border-bottom: none; }

    .includes-list li::before {
      content: "◆";
      color: var(--gold);
      font-size: 8px;
      margin-top: 4px;
      flex-shrink: 0;
    }

    .event-learn-btn {
      width: 100%;
      margin-top: 24px;
      padding: 14px;
      background: var(--gold);
      border: none;
      border-radius: 8px;
      color: #1a0a00;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: 'DM Sans', sans-serif;
    }

    .event-learn-btn:hover {
      background: var(--gold-light);
    }

    /* ============================
       MODAL — FULLY REDESIGNED
    ============================ */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 3000;
      background: rgba(15, 5, 5, 0.75);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      align-items: center;
      justify-content: center;
      padding: 20px;
      font-family: 'DM Sans', sans-serif;
    }

    .modal.active { display: flex; }

    .modal-content {
      width: 100%;
      max-width: 1080px;
      height: 88vh;
      display: flex;
      overflow: hidden;
      background: white;
      border-radius: 20px;
      box-shadow: 0 40px 100px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.1);
      animation: modalIn 0.35s cubic-bezier(0.23, 1, 0.32, 1) both;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.94) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* LEFT PANEL */
    .modal-left-panel {
      width: 38%;
      background: linear-gradient(160deg, var(--maroon-dark) 0%, var(--maroon) 60%, #a52828 100%);
      padding: 44px 36px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative pattern */
    .modal-left-panel::before {
      content: "";
      position: absolute;
      top: -80px; right: -80px;
      width: 260px; height: 260px;
      border-radius: 50%;
      background: rgba(201,168,76,0.07);
      pointer-events: none;
    }

    .modal-left-panel::after {
      content: "";
      position: absolute;
      bottom: -60px; left: -60px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(201,168,76,0.05);
      pointer-events: none;
    }

    .modal-logo {
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    .logo-img-modal {
      width: 64px;
      height: 64px;
      object-fit: contain;
      border-radius: 50%;
      background: white;
      padding: 6px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .modal-logo-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: white;
      letter-spacing: 2px;
      line-height: 1;
    }

    .modal-logo-sub {
      font-size: 10px;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .modal-left-divider {
      height: 1px;
      background: rgba(255,255,255,0.12);
      position: relative;
      z-index: 1;
    }

    .modal-branding { position: relative; z-index: 1; }

    .modal-branding h2 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .privacy-statement {
      font-size: 12.5px;
      line-height: 1.75;
      color: rgba(255,255,255,0.75);
    }

    .privacy-statement strong {
      color: var(--gold-light);
      font-weight: 600;
    }

    .modal-info-block {
      position: relative;
      z-index: 1;
      background: rgba(0,0,0,0.2);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 20px;
      margin-top: auto;
    }

    .modal-info-block h3 {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .modal-info-block ul { list-style: none; }

    .modal-info-block li {
      font-size: 12px;
      color: rgba(255,255,255,0.75);
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      line-height: 1.6;
    }

    .modal-info-block li:last-child { border-bottom: none; }

    .modal-info-block a {
      color: var(--gold-light);
      text-decoration: none;
    }

    .modal-info-block a:hover { text-decoration: underline; }

    /* RIGHT PANEL */
    .modal-right-panel {
      width: 62%;
      padding: 44px 48px;
      overflow-y: auto;
      position: relative;
      background: #fdfaf6;
    }

    .modal-right-panel::-webkit-scrollbar { width: 4px; }
    .modal-right-panel::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

    .close-btn {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 36px;
      height: 36px;
      background: rgba(139,26,26,0.08);
      border: none;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s ease;
      z-index: 10;
    }

    .close-btn:hover {
      background: var(--maroon);
    }

    .close-btn:hover svg { stroke: white; }

    .close-btn svg {
      width: 16px;
      height: 16px;
      stroke: var(--maroon);
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
    }

    #formTitle {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--maroon);
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .form-subtitle {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }

    /* Agreement */
    .agreement-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      margin-bottom: 28px;
      border-radius: 10px;
      border: 1px solid rgba(201,168,76,0.3);
      background: rgba(201,168,76,0.05);
    }

    .agreement-row input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      accent-color: var(--maroon);
      flex-shrink: 0;
    }

    .agreement-row label {
      font-size: 13px;
      line-height: 1.6;
      color: #444;
    }

    .agreement-row label strong { color: var(--maroon); }

    /* Field Divider */
    .field-divider {
      font-size: 10px;
      font-weight: 700;
      color: var(--maroon);
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin: 28px 0 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .field-divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, var(--gold-pale), transparent);
    }

    /* Inputs */
    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="file"],
    select,
    textarea {
      width: 100%;
      padding: 13px 16px;
      margin-bottom: 14px;
      border-radius: 8px;
      border: 1.5px solid #e5ddd4;
      background: white;
      font-size: 13.5px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      transition: all 0.2s ease;
      box-sizing: border-box;
      outline: none;
    }

    input:focus, select:focus, textarea:focus {
      border-color: var(--maroon);
      box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
    }

    input::placeholder, textarea::placeholder { color: #aaa; }

    select { appearance: none; cursor: pointer; }

    .select-wrapper {
      position: relative;
    }

    .select-wrapper::after {
      content: "";
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-65%);
      width: 0; height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--maroon);
      pointer-events: none;
    }

    .file-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--maroon);
      margin-bottom: 6px;
      letter-spacing: 0.3px;
    }

    input[type="file"] {
      padding: 10px 14px;
      font-size: 13px;
      background: #faf7f2;
      cursor: pointer;
    }

    #formFieldsWrapper.disabled {
      opacity: 0.4;
      pointer-events: none;
      filter: grayscale(0.3);
    }

    .btn-submit-gold {
      width: 100%;
      padding: 16px 0;
      margin-top: 10px;
      border: none;
      border-radius: 8px;
      background: var(--maroon);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s ease;
      box-shadow: 0 8px 24px rgba(139,26,26,0.2);
    }

    .btn-submit-gold:hover {
      background: var(--maroon-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(139,26,26,0.25);
    }

    /* ============================
       ATTENDANCE PANEL — REDESIGNED
    ============================ */
    .attendance-bar {
      position: fixed;
      bottom: 20px;
      right: 0;
      background: var(--maroon-dark);
      color: white;
      padding: 10px 16px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border-radius: 8px 0 0 8px;
      cursor: pointer;
      z-index: 1000;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: -4px 4px 16px rgba(0,0,0,0.2);
      font-family: 'DM Sans', sans-serif;
      transition: all 0.2s ease;
    }

    .attendance-bar:hover { background: var(--maroon); }

    .attendance-bar svg {
      width: 14px; height: 14px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
    }

    .attendance-panel {
      position: fixed;
      bottom: 68px;
      right: -300px;
      width: 280px;
      background: white;
      border-radius: 14px 0 0 14px;
      box-shadow: -8px 8px 32px rgba(0,0,0,0.18);
      transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      z-index: 999;
      overflow: hidden;
      border: 1px solid var(--border);
      border-right: none;
    }

    .attendance-panel.show { right: 0; }

    .panel-header {
      background: var(--maroon);
      color: white;
      padding: 14px 18px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
    }

    .panel-header svg {
      width: 14px; height: 14px;
      stroke: rgba(255,255,255,0.7);
      fill: none;
      stroke-width: 2;
    }

    .attendance-form {
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .attendance-form input {
      padding: 9px 12px;
      font-size: 12px;
      border-radius: 6px;
      border: 1.5px solid #e5ddd4;
      font-family: 'DM Sans', sans-serif;
      transition: 0.2s;
      outline: none;
      margin-bottom: 0;
    }

    .attendance-form input:focus { border-color: var(--maroon); }
    .attendance-form input::placeholder { color: #bbb; }

    .time-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .attendance-form button {
      padding: 11px;
      font-size: 12px;
      font-weight: 700;
      background: var(--maroon);
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.2s ease;
      font-family: 'DM Sans', sans-serif;
    }

    .attendance-form button:hover { background: var(--maroon-dark); }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 1024px) {
      .modal-content { max-width: 700px; }
      .modal-left-panel { width: 36%; }
      .modal-right-panel { width: 64%; padding: 36px 32px; }
    }

    @media (max-width: 900px) {
      .modal-left-panel { display: none; }
      .modal-right-panel { width: 100%; padding: 32px 20px; }
      .modal-content { max-width: 480px; height: auto; max-height: 92vh; }
    }

    @media (max-width: 768px) {
      .hero-content { padding: 80px 24px; }
      .hero-content h1 { font-size: 40px; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
      .pricing { padding: 80px 20px; }
      .logo-text { font-size: 18px; }
      .full-name { display: none; }
    }

    @media (max-width: 480px) {
      .hero-content h1 { font-size: 32px; }
      .hero-cta-row { flex-direction: column; align-items: flex-start; }
      .btn-primary, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
      .section-header h2 { font-size: 30px; }
    }
  /* ============================================================
   RATE PILLS — paste at the bottom of Plai-congress.css
   ============================================================ */

/* Pill row container — sits between price and feature list */
.rate-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

/* Single pill */
.rate-pill {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  line-height: 1.4;
  white-space: nowrap;
}

.rate-pill:hover:not(:disabled) {
  border-color: var(--maroon);
  color: var(--maroon);
  background: rgba(139, 26, 26, 0.05);
}

/* Active / selected */
.rate-pill--active {
  background: var(--maroon) !important;
  border-color: var(--maroon) !important;
  color: #fff !important;
}

/* Featured card (PLAI Members) — gold active pill */
.price-card.featured .rate-pill--active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #1a0a00 !important;
}

/* Expired / disabled pill */
.rate-pill--expired,
.rate-pill:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  border-style: dashed;
}

/* ============================================================
   RATE BADGE — displayed inside the modal form
   ============================================================ */
.rate-badge-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(139, 26, 26, 0.05);
  border: 1px solid rgba(139, 26, 26, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
}

.rate-badge-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.rate-badge-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}/* ── FOOTER ── */
footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 1.4rem;
  font-size: .78rem;
  border-top: 3px solid var(--gold);
}
footer span { color: var(--gold-light); font-weight: 500; }
/* ============================
   PAYMENT INFO — MATCH PRICE CARD STYLE
============================ */
.payment-info{
  margin: 0 0 26px;
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

/* top gold line */
.payment-info::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light)
  );
}

.payment-title{
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.payment-date{
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  font-weight: 400;
}

.payment-price{
  font-family: 'DM Mono', monospace;
  font-size: 30px;
  font-weight: 500;
  color: white;
  line-height: 1;
}

.payment-price span{
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
  margin-left: 4px;
}/* ============================================================
   Downloads Button + Modal  —  add to Plai-congress.css
   ============================================================ */

/* ── Hero Downloads button ───────────────────────────────── */
.btn-downloads {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.3rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  font-family: inherit;
}
.btn-downloads:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn-downloads svg { flex-shrink: 0; }

/* ── Backdrop ────────────────────────────────────────────── */
.downloads-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 30, .72);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.downloads-modal-backdrop.open {
  display: flex;
}

/* ── Card ────────────────────────────────────────────────── */
.downloads-modal-card {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  animation: dlModalIn .25s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}
@keyframes dlModalIn {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

/* ── Header ──────────────────────────────────────────────── */
.downloads-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem 1.1rem;
  border-bottom: 1.5px solid #f0f2f7;
  flex-shrink: 0;
}
.downloads-modal-title-row {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.downloads-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1a1a6e, #3b3bcc);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.downloads-modal-title {
  margin: 0 0 .2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}
.downloads-modal-sub {
  margin: 0;
  font-size: .78rem;
  color: #64748b;
}
.downloads-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  border-radius: 8px;
  color: #94a3b8;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.downloads-close-btn:hover { background: #f1f5f9; color: #0f172a; }

/* ── Body ────────────────────────────────────────────────── */
.downloads-modal-body {
  padding: 1.2rem 1.5rem 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* ── Loading ─────────────────────────────────────────────── */
.downloads-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 3rem 1rem;
  color: #94a3b8;
  font-size: .85rem;
}
.downloads-spinner {
  width: 28px; height: 28px;
  border: 3px solid #e2e8f0;
  border-top-color: #3b3bcc;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty ───────────────────────────────────────────────── */
.downloads-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #94a3b8;
}
.downloads-empty svg { opacity: .35; margin-bottom: .6rem; }
.downloads-empty p { margin: 0; font-size: .85rem; }

/* ── Category group ──────────────────────────────────────── */
.dl-category-group {
  margin-bottom: 1.4rem;
}
.dl-category-group:last-child { margin-bottom: 0; }

.dl-category-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #94a3b8;
  margin: 0 0 .6rem;
  padding-bottom: .4rem;
  border-bottom: 1.5px solid #f0f2f7;
}

/* ── File row ────────────────────────────────────────────── */
.dl-file-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem .85rem;
  border-radius: 10px;
  border: 1.5px solid #f0f2f7;
  background: #fafbff;
  margin-bottom: .45rem;
  transition: background .15s, border-color .15s;
  text-decoration: none;
  color: inherit;
}
.dl-file-row:last-child { margin-bottom: 0; }
.dl-file-row:hover {
  background: #f0f4ff;
  border-color: #c7d2fe;
}

.dl-badge {
  font-size: .62rem;
  font-weight: 800;
  padding: .22rem .4rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
}
.dl-badge-pdf  { background: #fee2e2; color: #dc2626; }
.dl-badge-doc  { background: #dbeafe; color: #1d4ed8; }
.dl-badge-xls  { background: #dcfce7; color: #16a34a; }
.dl-badge-img  { background: #fef9c3; color: #ca8a04; }
.dl-badge-ppt  { background: #ffedd5; color: #ea580c; }
.dl-badge-file { background: #f1f5f9; color: #475569; }

.dl-file-info { flex: 1; min-width: 0; }
.dl-file-name {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dl-file-meta {
  font-size: .72rem;
  color: #94a3b8;
  margin-top: .1rem;
}

.dl-download-icon {
  color: #6366f1;
  flex-shrink: 0;
  opacity: .7;
  transition: opacity .15s;
}
.dl-file-row:hover .dl-download-icon { opacity: 1; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .downloads-modal-card { border-radius: 14px; }
  .downloads-modal-header,
  .downloads-modal-body  { padding-left: 1.1rem; padding-right: 1.1rem; }
}