/* ===== LUXURY LANDING PAGE - Royal Black Theme ===== */

:root {
    --black-royal: #0a0a0a;
    --black-rich: #111111;
    --black-soft: #1a1a1a;
    --charcoal: #2a2a2a;
    --charcoal-light: #3a3a3a;
    --gray-dark: #4a4a4a;
    --gray: #6a6a6a;
    --gray-light: #8a8a8a;
    --gold: #c9a227;
    --gold-light: #dbb84d;
    --gold-dark: #a68520;
    --white: #ffffff;
    --white-off: #f5f5f5;
    --danger: #8b0000;
    --whatsapp: #25d366;
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--black-royal) 0%, var(--black-rich) 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.3);
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Cursor Glow ===== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-text {
    display: none;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 600;
}

.whatsapp-float:hover { width: auto; padding: 0 20px; border-radius: 30px; }
.whatsapp-float:hover .whatsapp-text { display: block; }

/* ===== Seats Badge ===== */
.seats-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    background: var(--danger);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.1);
}

.seats-badge .pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid var(--danger);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/hero-bg.jpg') center/cover no-repeat;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10,10,10,0.65) 0%, 
        rgba(10,10,10,0.5) 50%, 
        rgba(10,10,10,0.75) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201,162,39,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201,162,39,0.03) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge-limited {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid var(--danger);
    color: #ff6b6b;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
    padding-bottom: 10px;
}

.hero h1 .line { display: block; }

.hero h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta { margin-bottom: 30px; }

/* ===== Gold Button ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--black-royal);
}

.btn-gold .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-gold .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover .btn-shine { left: 100%; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black-royal);
}

.btn-large { padding: 18px 50px; font-size: 1.1rem; }

/* ===== Scroll Indicator ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 12px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* ===== Section Styles ===== */
section { padding: 120px 0; }

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    margin-top: 24px;
    color: var(--gray-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-subtitle i { color: var(--gold); }

/* ===== Video Section ===== */
.video-section { background: var(--black-rich); }

.videos-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
}

.video-card {
    position: relative;
}

.video-frame {
    position: relative;
    background: var(--charcoal);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--charcoal-light);
    transition: all 0.4s ease;
}

.video-frame:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.video-horizontal .video-frame { aspect-ratio: 16/9; }
.video-vertical .video-frame { aspect-ratio: 9/16; max-height: 500px; }

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-frame:hover .video-placeholder i {
    opacity: 1;
    transform: scale(1.1);
}

.video-label {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--gray);
    font-size: 14px;
}

/* ===== About Section ===== */
.about-section { background: var(--black-royal); }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.visual-frame {
    position: relative;
    padding: 30px;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
}

.frame-corner.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corner.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }

.visual-content {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.visual-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-lead {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features { display: flex; flex-direction: column; gap: 24px; }

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--black-soft);
    border-radius: 12px;
    border: 1px solid var(--charcoal);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--gold);
    transform: translateX(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(201,162,39,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--white);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== Instructor Section ===== */
.instructor-section {
    background: var(--black-rich);
    position: relative;
    overflow: hidden;
}

.instructor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,162,39,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.instructor-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.instructor-image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.instructor-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--charcoal);
}

.instructor-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 150px;
}

.certificate-badge img {
    width: 100%;
    border-radius: 8px;
}

.certificate-badge span {
    display: block;
    text-align: center;
    font-size: 10px;
    color: var(--black-royal);
    font-weight: 700;
    margin-top: 6px;
}

.instructor-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.instructor-title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.instructor-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--charcoal);
    border-bottom: 1px solid var(--charcoal);
}

.stat-item { text-align: center; }
.stat-value { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--gray); }
.stat-divider { width: 1px; height: 40px; background: var(--charcoal); }

.achievements-list {
    list-style: none;
    margin-bottom: 30px;
}

.achievements-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    color: var(--gray-light);
}

.achievements-list i {
    color: var(--gold);
    margin-top: 4px;
}

/* ===== Journey/Timeline Section ===== */
.journey-section { background: var(--black-royal); }

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--charcoal);
    transform: translateX(-50%);
}

.progress-fill {
    width: 100%;
    height: 0%;
    background: var(--gradient-gold);
    transition: height 0.3s ease;
}

.timeline-items { position: relative; }

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-item:nth-child(even) { text-align: left; }

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-number {
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.timeline-item.active .marker-number {
    background: var(--gold);
    color: var(--black-royal);
}

.marker-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: marker-pulse 2s infinite;
}

@keyframes marker-pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.timeline-content {
    width: calc(50% - 60px);
    padding: 30px;
    background: var(--black-soft);
    border-radius: 16px;
    border: 1px solid var(--charcoal);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.timeline-content p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.highlight-item .timeline-content {
    background: linear-gradient(145deg, rgba(201,162,39,0.1) 0%, var(--black-soft) 100%);
    border-color: var(--gold);
}

.content-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black-royal);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-text { color: var(--gold) !important; }

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    list-style: none;
}

.tech-list li {
    background: var(--charcoal);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gray-light);
}

/* ===== Target Section ===== */
.target-section { background: var(--black-rich); }

.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.target-card {
    position: relative;
    padding: 40px 24px;
    background: var(--black-soft);
    border: 1px solid var(--charcoal);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.target-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201,162,39,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.target-card:hover .card-glow { opacity: 1; }

.target-card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(201,162,39,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.target-card:hover .card-icon {
    background: var(--gold);
    color: var(--black-royal);
}

.target-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.target-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Requirements Section ===== */
.requirements-section { background: var(--black-royal); }

.requirements-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--black-soft);
    border: 1px solid var(--charcoal);
    border-radius: 20px;
    overflow: hidden;
}

.requirements-card .card-header {
    background: var(--charcoal);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
}

.requirements-card .card-header i {
    color: var(--gold);
    font-size: 1.3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--charcoal);
}

.spec-item {
    background: var(--black-soft);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: rgba(201,162,39,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.spec-details { flex: 1; }
.spec-label { display: block; font-size: 12px; color: var(--gray); margin-bottom: 4px; }
.spec-value { font-weight: 700; color: var(--white); }

/* ===== System Section ===== */
.system-section { background: var(--black-rich); }

.system-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.system-card {
    position: relative;
    padding: 40px 30px;
    background: var(--black-soft);
    border: 1px solid var(--charcoal);
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

.system-card .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.system-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(201,162,39,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--gold);
}

.system-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--white);
}

.system-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.system-card .card-note {
    display: inline-block;
    background: var(--charcoal);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
}

/* ===== Pricing Section ===== */
.pricing-section {
    background: var(--black-royal);
    position: relative;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--black-soft);
    border: 2px solid var(--gold);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--danger);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 700;
}

.pricing-header {
    padding: 30px;
    background: var(--charcoal);
}

.duration-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.duration-badge i {
    font-size: 2rem;
    color: var(--gold);
}

.duration-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.duration-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-body {
    padding: 40px 30px;
    text-align: center;
}

.price-original {
    margin-bottom: 16px;
}

.price-original .label {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.price-original .value {
    font-size: 1.3rem;
    color: var(--gray);
    text-decoration: line-through;
}

.price-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,211,102,0.1);
    color: #4ade80;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.price-final .label {
    display: block;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount .currency {
    font-size: 1.5rem;
    color: var(--gold);
}

.price-amount .value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
}

.installment-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    background: var(--charcoal);
    border-radius: 12px;
    font-size: 14px;
    color: var(--gray-light);
}

.installment-option i { color: var(--gold); }

.pricing-footer {
    padding: 30px;
    border-top: 1px solid var(--charcoal);
}

.seats-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(139,0,0,0.2);
    border: 1px solid var(--danger);
    border-radius: 12px;
    margin-bottom: 24px;
    color: #ff6b6b;
    font-size: 14px;
    animation: pulse-alert 2s infinite;
}

@keyframes pulse-alert {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.alert-icon {
    width: 30px;
    height: 30px;
    background: var(--danger);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.pricing-footer .btn { width: 100%; }

/* ===== CTA Section ===== */
.cta-section {
    background: var(--black-rich);
    position: relative;
    padding: 100px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.05) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content > p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.cta-buttons { margin-bottom: 30px; }

.contact-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact-numbers a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-numbers a:hover { color: var(--gold-light); }
.contact-numbers .divider { color: var(--charcoal); }

/* ===== Footer ===== */
.footer {
    background: var(--black-royal);
    padding: 30px 0;
    border-top: 1px solid var(--charcoal);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: var(--gray);
    font-size: 14px;
}

.footer-note {
    font-size: 12px !important;
    margin-top: 4px;
}

/* ===== Animations ===== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(40px); }
.reveal-right { transform: translateX(-40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .about-layout, .instructor-layout { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { order: -1; }
    .videos-grid { grid-template-columns: 1fr 1fr; }
    .target-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline-progress { left: 30px; }
    .timeline-marker { left: 30px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; text-align: left; padding-left: 80px; }
    .timeline-content { width: 100%; }
}

@media (max-width: 768px) {
    section { padding: 80px 0; }
    .hero h1 { font-size: 2.5rem; }
    .videos-grid { grid-template-columns: 1fr; }
    .video-vertical .video-frame { max-height: 400px; }
    .target-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }
    .system-grid { grid-template-columns: 1fr; }
    .instructor-stats { flex-wrap: wrap; justify-content: center; }
    .certificate-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; max-width: 200px; margin-left: auto; margin-right: auto; }
    .seats-badge { top: auto; bottom: 100px; left: 50%; transform: translateX(-50%); font-size: 11px; }
    .price-amount .value { font-size: 3rem; }
}

@media (max-width: 480px) {
    .hero-subtitle { font-size: 1rem; }
    .btn { padding: 14px 28px; font-size: 0.95rem; }
    .btn-large { padding: 16px 36px; }
    .contact-numbers { flex-direction: column; gap: 12px; }
    .contact-numbers .divider { display: none; }
}

/* ===== 3-Video Grid ===== */
.videos-grid-3 {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 16px;
    align-items: start;
}

.videos-grid-3 .video-frame {
    position: relative;
}

.videos-grid-3 .video-horizontal .video-frame {
    aspect-ratio: 16/9;
}

.videos-grid-3 .video-vertical .video-frame {
    aspect-ratio: 9/16;
    max-height: 450px;
}

@media (max-width: 1024px) {
    .videos-grid-3 { grid-template-columns: 1fr 1fr; }
    .videos-grid-3 .video-horizontal { grid-column: span 2; }
}

@media (max-width: 768px) {
    .videos-grid-3 { grid-template-columns: 1fr; }
    .videos-grid-3 .video-horizontal { grid-column: span 1; }
    .videos-grid-3 .video-vertical .video-frame { max-height: 400px; }
}

/* ===== Certificate Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active { display: flex; }

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover { color: var(--gold); }

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ===== Detailed List for Timeline ===== */
.detailed-list {
    list-style: none;
    margin-top: 16px;
    padding: 0;
}

.detailed-list li {
    position: relative;
    padding: 8px 0 8px 0;
    padding-right: 25px;
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.detailed-list li::before {
    content: '▸';
    position: absolute;
    right: 0;
    color: var(--gold);
}

/* ===== System Single Card ===== */
.system-single {
    max-width: 700px;
    margin: 0 auto;
}

.system-card-main {
    position: relative;
    padding: 50px 40px;
    background: var(--black-soft);
    border: 2px solid var(--gold);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
}

.system-card-main .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.system-card-main .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(201,162,39,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--gold);
}

.system-card-main h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--white);
}

.system-card-main p {
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.bonus-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, rgba(37,211,102,0.05) 100%);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 12px;
    color: #4ade80;
    font-size: 0.95rem;
    text-align: right;
}

.bonus-badge i {
    font-size: 1.5rem;
    color: #4ade80;
}

/* ===== Instructor Name Style ===== */
.instructor-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

/* ===== Hero Features ===== */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 32px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(201,162,39,0.2);
    transform: translateY(-3px);
}

.hero-feature i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-features {
        gap: 10px;
    }
    .hero-feature {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ===== Investment Section ===== */
.investment-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--charcoal) 50%, var(--deep-black) 100%);
}

.investment-content {
    margin-top: 60px;
}

.investment-main {
    margin-bottom: 50px;
}

.investment-highlight {
    background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, rgba(201,162,39,0.05) 100%);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.investment-highlight > i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.investment-highlight h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.investment-highlight > p {
    color: var(--gray-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 24px;
}

.highlight-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(37,211,102,0.15) 0%, rgba(37,211,102,0.05) 100%);
    border: 1px solid rgba(37,211,102,0.4);
    border-radius: 12px;
    color: #4ade80;
    font-size: 1rem;
    font-weight: 600;
}

.highlight-box i {
    font-size: 1.5rem;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.investment-card {
    background: rgba(30,30,30,0.6);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.investment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,162,39,0.5);
    box-shadow: 0 10px 40px rgba(201,162,39,0.1);
}

.investment-card .card-icon {
    width: 70px;
    height: 70px;
    background: rgba(201,162,39,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
}

.investment-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.investment-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .investment-grid {
        grid-template-columns: 1fr;
    }
    .investment-highlight {
        padding: 30px 20px;
    }
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }
}

/* ===== Employment Section ===== */
.employment-section {
    padding: 60px 0;
    background: var(--deep-black);
}

.employment-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(201,162,39,0.02) 100%);
    border: 2px solid rgba(201,162,39,0.3);
    border-radius: 20px;
    padding: 40px;
}

.employment-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #e6c547 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-black);
}

.employment-content h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.employment-content > p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.employment-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-right: 3px solid var(--gold);
}

.employment-note i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 2px;
}

.employment-note span {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .employment-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .employment-icon {
        margin: 0 auto;
    }
    .employment-note {
        flex-direction: column;
        text-align: right;
        border-right: none;
        border-top: 3px solid var(--gold);
        padding-top: 16px;
    }
}

/* ===== Visual Content Fix ===== */
.visual-content {
    padding: 0;
    overflow: hidden;
    min-height: 300px;
}
