:root {
        --blue-900: #0b1021;
        --blue-700: #1f2a44;
        --blue-500: #3b82f6;
        --blue-100: #e7eefc;
        --blue-050: #f4f6fb;
        --green-500: #22c55e;
        --green-600: #16a34a;
        --text-dark: #0f172a;
        --text-muted: #4c5e82;
        --card-border: #d7deef;
        --shadow-soft: 0 18px 45px rgba(31, 42, 68, 0.1);
        font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        scroll-behavior: smooth;
      }

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

      html {
        background: linear-gradient(180deg, #0b1021 0%, #1f2a44 140px, var(--blue-050) 140px);
      }

      body {
        background: transparent;
        color: var(--text-dark);
        line-height: 1.6;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        width: 100%;
        background: linear-gradient(135deg, #111827, var(--blue-700));
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
        padding-top: env(safe-area-inset-top, 0px);
      }

      .nav-inner {
        width: min(1200px, 100%);
        margin: 0 auto;
        padding: 0.5rem clamp(1rem, 4vw, 2.25rem);
        display: flex;
        align-items: center;
        gap: 1.25rem;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        color: white;
        flex-shrink: 0;
      }

      .brand-logo-img {
        width: 80px;
        height: auto;
        display: block;
      }

      .nav-links {
        display: flex;
        gap: 1.5rem;
        margin-left: auto;
        margin-right: 1rem;
        font-weight: 600;
      }

      .nav-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        position: relative;
        padding-bottom: 0.2rem;
      }

      .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: var(--green-500);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 160ms ease;
      }

      .nav-links a:hover::after,
      .nav-links a.active::after {
        transform: scaleX(1);
      }

      .nav-cta {
        background: linear-gradient(120deg, #22d3ee, #0ea5e9);
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 0.55rem 1.15rem;
        border-radius: 999px;
        flex-shrink: 0;
        box-shadow: 0 10px 25px rgba(14, 165, 233, 0.32);
      }

      .notice-bar {
        background: linear-gradient(120deg, rgba(14, 165, 233, 0.95), rgba(17, 24, 39, 0.95));
        color: #e7ecff;
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        overflow: hidden;
        white-space: nowrap;
      }

      .notice-inner {
        width: min(1200px, 100%);
        margin: 0 auto;
        padding: 0.45rem clamp(1rem, 4vw, 2.25rem);
      }

      .notice-track {
        display: inline-flex;
        gap: 2rem;
        animation: ticker-scroll 28s linear infinite;
      }

      .notice-item {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
      }

      .notice-item::before {
        content: '';
        width: 16px;
        height: 16px;
        background: url('../../images/icons/warning.png') no-repeat center / contain;
        flex-shrink: 0;
        display: inline-block;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
      }

      @keyframes ticker-scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      @keyframes heroGlow {
        0% {
          transform: rotate(0deg) scale(1);
        }
        50% {
          transform: rotate(180deg) scale(1.05);
        }
        100% {
          transform: rotate(360deg) scale(1);
        }
      }

      @keyframes badgePop {
        0% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.45);
        }
        50% {
          transform: scale(1.06);
          box-shadow: 0 0 0 14px rgba(255, 77, 109, 0);
        }
        100% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(255, 77, 109, 0);
        }
      }

      header.hero {
        background: radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.32), transparent 60%), linear-gradient(120deg, #0f172a, #1f2a44);
        color: white;
        padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
        border-bottom-left-radius: 64px;
        border-bottom-right-radius: 64px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      header.hero::before {
        content: '';
        position: absolute;
        inset: -40% -15%;
        background: radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.2), transparent 60%), radial-gradient(circle at 70% 60%, rgba(14, 165, 233, 0.24), transparent 60%);
        opacity: 0.85;
        animation: heroGlow 18s linear infinite;
      }

      header.hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.18), transparent 60%);
        opacity: 0.5;
      }

      header.hero > * {
        position: relative;
        z-index: 1;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.4rem 1.2rem 0.4rem 0.5rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: white;
        font-weight: 600;
        margin-bottom: 1.75rem;
        letter-spacing: 0.02em;
        animation: badgePop 2.4s ease-in-out infinite;
        position: relative;
      }

      .badge-icon {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid rgba(255, 77, 109, 0.7);
        background: rgba(255, 77, 109, 0.15);
        display: grid;
        place-items: center;
      }

      .badge-icon img {
        width: 16px;
        height: 16px;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(29%) sepia(83%) saturate(2506%) hue-rotate(-7deg) brightness(102%) contrast(102%);
      }

      .hero h1 {
        font-size: clamp(2.7rem, 6vw, 4.8rem);
        font-weight: 700;
        line-height: 1.1;
      }

      .hero h1 span {
        color: #6be48c;
        display: block;
      }

      .hero p.lead {
        margin-top: 1rem;
        font-size: clamp(1.05rem, 2.4vw, 1.35rem);
      }

      .hero p.lead strong {
        font-weight: 600;
      }

      .hero-benefits {
        margin: 2rem auto 1.5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem 1.75rem;
        list-style: none;
        font-weight: 500;
      }

      .hero-benefits li {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
      }

      .icon-chip {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
        flex-shrink: 0;
      }

      .icon-chip img {
        width: 18px;
        height: 18px;
        object-fit: contain;
      }

      .hero-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 1.4rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.35);
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: border-color 200ms ease, transform 200ms ease;
      }

      .hero-cta-btn .cta-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255, 77, 109, 0.8);
        background: rgba(255, 77, 109, 0.15);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        animation: badgePop 2.4s ease-in-out infinite;
      }

      .hero-cta-btn .cta-icon img {
        width: 18px;
        height: 18px;
        object-fit: contain;
      }

      .hero-cta-btn:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.6);
      }

      .hero-footnote {
        margin: 1.75rem auto 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.5rem;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
      }

      .hero-footnote li {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .container {
        width: min(1200px, 100%);
        margin: 0 auto;
        padding: clamp(1.5rem, 4vw, 3.5rem);
      }

      .stats-grid {
        background: white;
        border-radius: 32px;
        box-shadow: var(--shadow-soft);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        margin-top: -70px;
        padding: clamp(1.5rem, 4vw, 3rem);
      }

      .stat-card { text-align: center; }
      .stat-card .icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 0.75rem;
        border-radius: 50%;
        background: var(--blue-100);
        display: grid;
        place-items: center;
        overflow: hidden;
      }

      .stat-card .icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
      }
      .stat-card .value {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--blue-700);
      }
      .stat-card .label { color: var(--text-muted); }

      .gallery-marquee {
        margin-top: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        border-radius: 28px;
        border: 1px solid rgba(13, 91, 255, 0.1);
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
        box-shadow: 0 25px 45px rgba(13, 91, 255, 0.12);
        scrollbar-width: none;
      }

      .gallery-marquee::-webkit-scrollbar {
        display: none;
      }

      .gallery-track {
        display: flex;
        gap: 1.5rem;
        animation: gallery-scroll 24s linear infinite;
        cursor: grab;
      }

      .gallery-marquee:is(:hover, :focus-within) .gallery-track {
        animation-play-state: paused;
      }

      .gallery-item {
        min-width: clamp(260px, 30vw, 420px);
        height: clamp(170px, 18vw, 240px);
        border-radius: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
        position: relative;
        box-shadow: 0 20px 35px rgba(7, 20, 75, 0.18);
        background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.2), rgba(5, 10, 31, 0.92));
      }

      .gallery-item img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
      }

      .gallery-item::after {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: inherit;
        pointer-events: none;
      }

      @keyframes gallery-scroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      section + section { margin-top: clamp(3rem, 6vw, 5rem); }

      h2.section-title {
        text-align: center;
        font-size: clamp(2rem, 4vw, 2.8rem);
      }

      p.section-subtitle {
        text-align: center;
        color: var(--text-muted);
        max-width: 760px;
        margin: 0.75rem auto 2rem;
      }

      .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.25rem;
      }

      #curriculum .card-grid {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
        max-width: 900px;
        margin: 0 auto;
      }

      #why .card-grid {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
        max-width: 900px;
        margin: 0 auto;
      }

      #why .benefit-card {
        width: 100%;
      }

      .card {
        background: white;
        border-radius: 28px;
        border: 1px solid var(--card-border);
        padding: 1.5rem;
        box-shadow: 0 20px 40px rgba(13, 91, 255, 0.05);
      }

      .card h3 { margin-bottom: 0.4rem; }
      .card p { color: var(--text-muted); font-size: 0.95rem; }

      .audience-card .icon,
      .benefit-card .icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        background: radial-gradient(circle at 30% 30%, #fff, rgba(255, 255, 255, 0) 60%), linear-gradient(140deg, #5ea8ff, #1b5eff);
        display: grid;
        place-items: center;
        margin-bottom: 0.9rem;
        box-shadow: 0 8px 18px rgba(13, 91, 255, 0.25);
        overflow: hidden;
      }

      .audience-card .icon img,
      .benefit-card .icon img {
        width: 65%;
        height: 65%;
        object-fit: contain;
      }

      .curriculum-card .icon {
        width: 72px;
        height: 72px;
        border-radius: 999px;
        background: linear-gradient(145deg, #f8fbff, #eef4ff);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(13, 91, 255, 0.18);
        box-shadow: 0 10px 25px rgba(13, 91, 255, 0.15), inset 0 0 12px rgba(13, 91, 255, 0.12);
        overflow: hidden;
        flex-shrink: 0;
      }

      .curriculum-card .icon img {
        width: 65%;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
      }

      .curriculum-card .icon.icon-market { background: radial-gradient(circle at 30% 30%, #ffece0, #ffc8ad); border-color: rgba(255, 133, 84, 0.45); }
      .curriculum-card .icon.icon-invest { background: radial-gradient(circle at 30% 30%, #f3e6ff, #d8c0ff); border-color: rgba(161, 111, 255, 0.4); }
      .curriculum-card .icon.icon-risk { background: radial-gradient(circle at 30% 30%, #e8fff5, #bcf5de); border-color: rgba(0, 201, 167, 0.35); }
      .curriculum-card .icon.icon-analysis { background: radial-gradient(circle at 30% 30%, #e7f2ff, #c7e0ff); border-color: rgba(59, 130, 246, 0.35); }
      .curriculum-card .icon.icon-roadmap { background: radial-gradient(circle at 30% 30%, #fff2dd, #ffd1a6); border-color: rgba(255, 179, 71, 0.35); }

      .instructor-card {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        align-items: center;
        padding: clamp(1.5rem, 4vw, 2.75rem);
      }

      .instructor-card img {
        width: 100%;
        border-radius: 32px;
        object-fit: cover;
        box-shadow: var(--shadow-soft);
      }

      .instructor-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
        margin: 1.25rem 0;
      }

      .highlight-pill {
        background: var(--blue-100);
        border-radius: 999px;
        padding: 0.45rem 0.85rem;
        font-size: 0.85rem;
        color: var(--text-dark);
      }

      blockquote {
        font-style: italic;
        color: var(--text-muted);
        border-left: 3px solid var(--blue-700);
        padding-left: 1rem;
        margin-top: 1rem;
      }

      .curriculum-card {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
        border: 2px solid rgba(13, 91, 255, 0.2);
        border-radius: 32px;
        padding: 1.75rem;
        background: white;
        box-shadow: 0 25px 45px rgba(13, 91, 255, 0.08);
        width: 100%;
      }

      @media (max-width: 640px) {
        .curriculum-card {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .curriculum-card ul {
          text-align: left;
        }
      }

      .curriculum-card ul {
        list-style: none;
        margin-top: 0.75rem;
        padding: 0;
      }

      .curriculum-card li {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        color: var(--text-muted);
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
      }

      .curriculum-card li::before {
        content: '';
        width: 0.9rem;
        height: 0.9rem;
        background: url('../../images/icons/check.png') no-repeat center / contain;
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .testimonials {
        display: flex;
        flex-direction: column;
        gap: 1.35rem;
        max-width: 900px;
        margin: 0 auto;
      }

      .testimonial {
        background: white;
        border-radius: 28px;
        border: 1px solid var(--card-border);
        padding: 1.5rem;
        box-shadow: 0 25px 45px rgba(13, 91, 255, 0.05);
        width: 100%;
      }

      .testimonial .quote {
        font-style: italic;
        color: var(--text-muted);
        margin-bottom: 1rem;
      }

      .testimonial strong { display: block; }
      .stars {
        display: inline-flex;
        gap: 0.12rem;
        margin-bottom: 0.4rem;
        font-size: 1.1rem;
        letter-spacing: 0.08rem;
        color: #ffb703;
      }

      .cta-panel {
        background: linear-gradient(135deg, #0d5bff, #002bbd);
        border-radius: 40px;
        padding: clamp(2rem, 5vw, 3.5rem);
        color: white;
        text-align: center;
        box-shadow: 0 35px 85px rgba(13, 91, 255, 0.25);
      }

      form.lead-form {
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
        background: linear-gradient(145deg, #0f172a 0%, #1f2a44 60%, #111827 100%);
        padding: 1.35rem;
        border-radius: 20px;
        border: 1px solid rgba(99, 102, 241, 0.25);
        box-shadow: 0 24px 60px rgba(5, 12, 26, 0.25);
      }

.lead-form input,
.lead-form select {
        width: 100%;
        border-radius: 14px;
        border: 1px solid rgba(215, 225, 241, 0.6);
        background: rgba(15, 23, 42, 0.78);
        padding: 0.95rem 1.1rem;
        color: #e5e7eb;
        font-size: 1rem;
        min-height: 56px;
        display: block;
        box-shadow: inset 0 1px 2px rgba(12, 27, 60, 0.12);
      }

.lead-form input::placeholder,
.lead-form select:invalid { color: rgba(229, 231, 235, 0.75); }
.lead-form select option { color: #0f172a; }

      .lead-form select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url('../../images/icons/arrow-down.png');
        background-repeat: no-repeat;
        background-position: right 1.35rem center;
        background-size: 18px;
        padding-right: 3rem;
        line-height: 1.4;
        font-weight: 500;
      }

      .phone-row {
        display: flex;
        gap: 0.75rem;
        width: 100%;
      }

      .phone-row select {
        flex: 0 0 32%;
        min-width: 120px;
        font-weight: 600;
      }

      .lead-form button {
        border: none;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--green-500), var(--green-600));
        color: #fff;
        font-size: 1.05rem;
        font-weight: 600;
        padding: 0.95rem 1.5rem;
        cursor: pointer;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 0.35rem;
      }

      .form-helper {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9);
      }

      .status {
        min-height: 24px;
        font-weight: 500;
        color: #dbeafe;
      }

      .status.error { color: #ffd2d2; }
      .status.success { color: #7ff5c2; }

      .hp-field {
        position: absolute;
        top: -9999px;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
        opacity: 0;
      }

      .faq { max-width: 860px; margin: 0 auto; }
      .faq-item {
        background: white;
        border-radius: 18px;
        border: 1px solid var(--card-border);
        margin-bottom: 0.75rem;
        overflow: hidden;
      }

      .faq-item button {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        font-weight: 600;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
      }

      .faq-item button span { font-size: 1.4rem; }
      .faq-item p { padding: 0 1.25rem 1rem; color: var(--text-muted); display: none; }
      .faq-item.open p { display: block; }

      .disclaimer-card {
        background: white;
        border-radius: 28px;
        border: 1px solid var(--card-border);
        padding: clamp(1.5rem, 4vw, 2.5rem);
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
        box-shadow: var(--shadow-soft);
      }

      .disclaimer-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #fff2e6;
        display: grid;
        place-items: center;
        overflow: hidden;
      }

      .disclaimer-icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
      }

      footer {
        background: var(--blue-900);
        color: #dbe4ff;
        padding: 3rem 1.5rem 2rem;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        width: min(1200px, 100%);
        margin: 0 auto;
      }

      .footer-title {
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.4rem;
      }

      .contact-item a {
        color: inherit;
        text-decoration: none;
      }

      .contact-item img {
        width: 20px;
        height: 20px;
        object-fit: contain;
      }

      .footer-social {
        display: flex;
        gap: 0.65rem;
        flex-wrap: wrap;
      }
      .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: transform 140ms ease, background 140ms ease;
        color: #ffffff;
      }

      .social-icon:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.25);
      }

      .social-icon img {
        width: 22px;
        height: 22px;
        display: block;
      }

      .footer-bottom {
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1rem;
        width: min(1200px, 100%);
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
      }

      .footer-links { display: flex; gap: 1rem; }

      body.register-page {
        background: radial-gradient(circle at 10% 20%, rgba(15, 118, 255, 0.2), transparent 40%), #020617;
        color: #e2e8f0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
      }

      .register-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem clamp(1rem, 4vw, 4rem);
      }

      .register-back-link {
        color: #cbd5f5;
        text-decoration: none;
        font-weight: 500;
      }

      .register-back-link:hover { text-decoration: underline; }

      .register-main {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: clamp(1.5rem, 5vw, 4rem);
      }

      .register-form-section {
        width: min(1200px, 100%);
        background: rgba(15, 23, 42, 0.35);
        border-radius: 48px;
        padding: clamp(1.5rem, 5vw, 4rem);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(1.5rem, 4vw, 3rem);
        box-shadow: 0 40px 120px rgba(2, 6, 23, 0.65);
      }

      .register-copy h1 {
        font-size: clamp(2.4rem, 4vw, 3.25rem);
        color: #fff;
        margin-bottom: 1rem;
      }

      .register-copy p {
        color: rgba(226, 232, 240, 0.9);
        margin-bottom: 1rem;
      }

      .register-highlights {
        list-style: none;
        padding: 0;
        margin: 1.25rem 0 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        color: rgba(148, 163, 184, 0.95);
      }

      .register-highlights li {
        display: flex;
        align-items: center;
        gap: 0.4rem;
      }

      .register-highlights li::before {
        content: '✓';
        color: #facc15;
        font-weight: 700;
      }


      .register-form-panel {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .register-form-card {
        width: min(440px, 100%);
        background: #ffffff;
        border-radius: 36px;
        padding: clamp(1.75rem, 4vw, 2.75rem);
        box-shadow: 0 45px 120px rgba(2, 6, 23, 0.3);
        color: #0f172a;
      }

      .register-form-title {
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 1rem;
      }

      .register-page .lead-form {
        margin-top: 1.25rem;
      }

      .register-page .lead-form input,
      .register-page .lead-form select {
        background: #f5f7ff;
        border: 1px solid rgba(15, 23, 42, 0.15);
        color: #0f172a;
      }

      .register-page .lead-form input::placeholder,
      .register-page .lead-form select:invalid {
        color: #64748b;
      }

      .register-page .lead-form select option { color: #0f172a; }

      .register-page .phone-row select {
        background: #fff;
      }

      .register-page .lead-form button {
        background: linear-gradient(135deg, #facc15, #f97316);
        color: #1e1b4b;
        box-shadow: 0 15px 40px rgba(249, 115, 22, 0.35);
      }

      .register-page .form-helper {
        color: #475569;
      }

      .register-page .status { color: #0f172a; }
      .register-page .status.error { color: #dc2626; }
      .register-page .status.success { color: #0f766e; }

      .register-footer {
        text-align: center;
        padding: 1rem;
        color: rgba(226, 232, 240, 0.8);
      }

      .register-footer a {
        color: #fff;
        text-decoration: none;
      }

      .register-footer a:hover { text-decoration: underline; }

      body.modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
      }

      .intro-modal {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        background: rgba(5, 10, 30, 0.65);
        backdrop-filter: blur(2px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
      }

      .intro-modal.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .intro-modal__dialog {
        width: min(420px, 100%);
        background: #ffffff;
        border-radius: 24px;
        padding: 2.5rem 2rem;
        box-shadow: 0 25px 80px rgba(15, 23, 42, 0.35);
        text-align: center;
        position: relative;
      }

      .intro-modal__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(15, 23, 42, 0.08);
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
        color: var(--blue-900);
      }

      .intro-modal__eyebrow {
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--blue-600, #2563eb);
        margin-bottom: 0.5rem;
      }

      html.inspect-blocked,
      html.inspect-blocked body {
        overflow: hidden !important;
      }

      .inspect-overlay {
        position: fixed;
        inset: 0;
        background: rgba(3, 6, 32, 0.96);
        color: #ffffff;
        z-index: 2147483000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        font-size: 1rem;
      }

      .inspect-overlay span {
        font-size: 0.9rem;
        font-weight: 400;
        opacity: 0.85;
        margin-top: 0.75rem;
      }

      .intro-modal__dialog h3 {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
        color: var(--blue-900);
      }

      .intro-modal__copy {
        color: var(--text-muted);
        margin-bottom: 1.25rem;
      }

      .intro-modal__cta {
        width: 100%;
        border-radius: 999px;
        padding: 0.9rem 1.25rem;
        border: none;
        font-weight: 600;
        cursor: pointer;
        background: linear-gradient(135deg, #facc15, #f97316);
        color: #1e1b4b;
        margin-bottom: 0.65rem;
        box-shadow: 0 12px 25px rgba(250, 204, 21, 0.25);
        animation: modalPulse 1.4s ease-in-out infinite alternate;
      }

      @keyframes modalPulse {
        0% {
          transform: translateY(0);
          box-shadow: 0 12px 25px rgba(250, 204, 21, 0.2);
        }
        100% {
          transform: translateY(-3px);
          box-shadow: 0 25px 45px rgba(250, 204, 21, 0.35);
        }
      }

      .intro-modal__hint {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-top: 0.25rem;
      }
      

      @media (max-width: 900px) {
        .nav-inner {
          flex-wrap: wrap;
        }

        .nav-links {
          order: 3;
          width: 100%;
          justify-content: center;
          margin: 0;
          padding-top: 0.5rem;
        }

        .nav-cta {
          order: 2;
        }

        .register-page .register-main {
          padding: 2.25rem 1.5rem;
          align-items: stretch;
        }

        .register-page .register-form-section {
          grid-template-columns: 1fr;
          border-radius: 32px;
        }

        .register-page .register-form-card {
          width: 100%;
        }
      }

      @media (max-width: 640px) {
        .nav-inner {
          gap: 0.65rem;
          flex-direction: column;
        }

        .nav-links {
          width: 100%;
          justify-content: space-around;
        }

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

        .disclaimer-card { grid-template-columns: 1fr; }
        header.hero { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; }
        .stats-grid { margin-top: -40px; }

        .register-page .register-header {
          flex-direction: column;
          gap: 1rem;
        }

        .register-page .register-form-section {
          border-radius: 24px;
          padding: 1.5rem;
        }
        .register-page .register-main {
          padding: 1.5rem 1rem 2rem;
        }
        .register-page .lead-form {
          gap: 0.85rem;
        }
        .register-page .lead-form input,
        .register-page .lead-form select {
          min-height: 52px;
          font-size: 0.95rem;
        }
        .register-page .phone-row {
          flex-direction: column;
        }
        .register-page .phone-row select {
          width: 100%;
          flex: 1 1 100%;
        }
      }

      @media (max-width: 480px) {
        .register-page .register-form-card {
          padding: 1.5rem;
          border-radius: 24px;
        }
        .register-page .register-copy h1 {
          font-size: 2rem;
        }
        .register-page .lead-form button {
          font-size: 1rem;
        }
      }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.floating-whatsapp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* --- Theme refresh (so it doesn't look like the old version) --- */
:root {
  --blue-900: #0f172a;
  --blue-700: #1d3557;
  --blue-500: #3a86ff;
  --blue-100: #e9f1ff;
  --blue-050: #f6f9ff;
  --green-500: #2dd4bf;
  --green-600: #0ea5e9;
  --amber-500: #f59e0b;
  --text-dark: #0b1224;
  --text-muted: #4b5563;
  --card-border: #d8e3f7;
  --shadow-soft: 0 28px 70px rgba(12, 23, 50, 0.16);
}

html {
  background: radial-gradient(circle at 18% 20%, rgba(59, 130, 246, 0.12), transparent 30%),
              radial-gradient(circle at 80% 10%, rgba(45, 212, 191, 0.12), transparent 28%),
              linear-gradient(180deg, #0f172a 0%, #0b1224 140px, var(--blue-050) 140px);
}

.site-header {
  background: linear-gradient(135deg, #0b1224, #1d3557 50%, #0ea5e9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.nav-cta {
  background: linear-gradient(120deg, #2dd4bf, #3a86ff);
  box-shadow: 0 12px 30px rgba(58, 134, 255, 0.35);
}

.notice-bar {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.95), rgba(14, 165, 233, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

header.hero {
  background: radial-gradient(circle at 12% 20%, rgba(45, 212, 191, 0.3), transparent 58%),
              radial-gradient(circle at 82% 18%, rgba(250, 204, 21, 0.25), transparent 52%),
              linear-gradient(130deg, #0b1224, #1d3557 60%, #111827);
  border-bottom-left-radius: 76px;
  border-bottom-right-radius: 76px;
}

header.hero::before {
  background: radial-gradient(ellipse at 30% 40%, rgba(255, 255, 255, 0.16), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(58, 134, 255, 0.22), transparent 60%);
  opacity: 0.92;
}

.hero-cta-btn {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(120deg, rgba(45, 212, 191, 0.2), rgba(58, 134, 255, 0.2));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.stats-grid,
.card,
.register-form-card,
.cta-panel {
  background: linear-gradient(145deg, #ffffff, #f7fbff);
  border: 1px solid rgba(216, 227, 247, 0.9);
  box-shadow: var(--shadow-soft);
}

.benefit-card .icon,
.curriculum-card .icon,
.stat-card .icon {
  background: radial-gradient(circle at 40% 40%, rgba(45, 212, 191, 0.2), rgba(58, 134, 255, 0.12));
}

.lead-form input,
.lead-form select {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d8e3f7;
  color: var(--text-dark);
  box-shadow: inset 0 1px 2px rgba(12, 27, 60, 0.08);
}

.lead-form input::placeholder,
.lead-form select:invalid { color: #6b7280; }

.lead-form button {
  background: linear-gradient(120deg, #f59e0b, #3a86ff);
  box-shadow: 0 16px 34px rgba(58, 134, 255, 0.28);
}

.gallery-marquee {
  border-color: rgba(58, 134, 255, 0.16);
  box-shadow: 0 26px 48px rgba(58, 134, 255, 0.16);
}

.intro-modal__dialog {
  background: #0b1224;
  border: 1px solid rgba(58, 134, 255, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
