@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Rubik:wght@400;500;700;900&display=swap');

:root {
    /* Color Palette */
    --bg-deep: #010a18;
    --bg-surface: #041226;
    --bg-surface-light: #081b35;
    --primary-gold: #d4af37;
    --primary-gold-hover: #f3cf55;
    --primary-gold-rgb: 212, 175, 55;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --text-gray-light: #cbd5e1;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-color-hover: rgba(212, 175, 55, 0.4);
    --error-red: #ef4444;
    --success-green: #10b981;

    /* Fonts */
    --font-sans: 'Rubik', 'Assistant', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing & Layout */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Typography Utilities */
.text-gold {
    color: var(--primary-gold);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ffe58f 0%, #d4af37 50%, #aa830e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-mono {
    font-family: var(--font-mono);
}

/* Visual Styling & Cards */
.glass-card {
    background: rgba(4, 18, 38, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

.glow-gold {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
}

/* Custom Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(1, 10, 24, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 80px;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    font-family: var(--font-mono);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f5d061 0%, #d4af37 100%);
    color: #010a18;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffe58f 0%, #f5d061 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 1.5px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background: radial-gradient(circle at 10% 20%, rgba(4, 18, 38, 0.5) 0%, rgba(1, 10, 24, 1) 90%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.social-proof-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    flex-direction: row-reverse;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-deep);
    margin-left: -12px;
    object-cover: cover;
}

.social-proof-avatars span {
    font-size: 14px;
    color: var(--text-gray-light);
    font-weight: 600;
}

/* VSL Video Container */
.vsl-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.vsl-container.vsl-vertical {
    max-width: 340px;
    margin: 0 auto;
}

.vsl-aspect {
    aspect-ratio: 16 / 9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vsl-container.vsl-vertical .vsl-aspect {
    aspect-ratio: 9 / 16;
}

.vsl-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.vsl-thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.vsl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 18, 38, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.vsl-overlay:hover {
    background: rgba(4, 18, 38, 0.3);
}

.vsl-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.vsl-play-btn svg {
    width: 32px;
    height: 32px;
    fill: #010a18;
    margin-right: -4px; /* Adjust centering */
}

.vsl-overlay:hover .vsl-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
}

/* Pain Points Section */
.pain {
    background-color: rgba(4, 18, 38, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pain-card {
    border-top: 3px solid rgba(239, 68, 68, 0.4);
}

.pain-card:hover {
    border-top-color: var(--error-red);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--error-red);
}

.icon-wrapper.gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
}

.pain-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pain-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* Solution / Value Prop Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.bento-col-8 {
    grid-column: span 8;
}

.bento-col-4 {
    grid-column: span 4;
}

.bento-col-6 {
    grid-column: span 6;
}

.solution-highlight {
    position: relative;
    overflow: hidden;
}

.solution-highlight-content {
    max-width: 60%;
    position: relative;
    z-index: 5;
}

.solution-highlight h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.solution-highlight p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.solution-list {
    list-style: none;
    margin-bottom: 16px;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.solution-list svg {
    color: var(--primary-gold);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bento-mockup {
    position: absolute;
    left: -20px;
    bottom: -40px;
    width: 42%;
    transform: rotate(-6deg);
    transition: var(--transition-smooth);
}

.solution-highlight:hover .bento-mockup {
    transform: rotate(0deg) scale(1.05);
}

.bento-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

/* Syllabus Section */
.syllabus {
    background-color: rgba(4, 18, 38, 0.4);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(4, 18, 38, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: right;
}

.accordion-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-number {
    font-family: var(--font-mono);
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 700;
    opacity: 0.8;
}

.accordion-chevron {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    background: rgba(1, 10, 24, 0.4);
    border-top: 1px solid transparent;
}

.accordion-content-inner {
    padding: 24px 0;
}

.accordion-content-inner ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-content-inner ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray-light);
    font-size: 15px;
}

.accordion-content-inner ul li::before {
    content: "•";
    color: var(--primary-gold);
    font-size: 20px;
    line-height: 1;
}

/* Active Accordion State */
.accordion-item.active {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    border-top-color: rgba(212, 175, 55, 0.1);
}

/* Comparison Table */
.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

table.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(4, 18, 38, 0.8);
    font-weight: 700;
    font-size: 16px;
}

.comparison-table td {
    font-size: 15px;
    background: rgba(4, 18, 38, 0.4);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table th.featured, .comparison-table td.featured {
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.04);
}

.comparison-table tr:hover td {
    background: rgba(8, 27, 53, 0.4);
}

.comparison-table tr:hover td.featured {
    background: rgba(212, 175, 55, 0.08);
}

.comparison-table th.featured {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 800;
}

.comparison-table td.featured {
    color: var(--text-white);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background-color: rgba(4, 18, 38, 0.4);
}

/* Final Offer & Form */
.offer-box {
    background: linear-gradient(135deg, rgba(8, 27, 53, 0.9) 0%, rgba(4, 18, 38, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 64px;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(212, 175, 55, 0.15);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.offer-tag {
    position: absolute;
    top: 32px;
    right: 32px;
    background: var(--error-red);
    color: var(--text-white);
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    z-index: 10;
}

.offer-details h3 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.pricing-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.price-old {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-gray);
}

.price-new {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-gold);
}

.price-new span {
    font-size: 16px;
    color: var(--text-gray-light);
    font-weight: 400;
}

.offer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-gray-light);
}

.offer-features svg {
    color: var(--primary-gold);
    width: 20px;
    height: 20px;
}

.offer-timer {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

.offer-timer span {
    color: var(--primary-gold);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
}

/* Contact & Signup Form */
.signup-form-container {
    background: rgba(1, 10, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 32px;
}

.signup-form-container h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.signup-form-container p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-gray-light);
}

.form-input {
    width: 100%;
    background: #010a18;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    transition: var(--transition-smooth);
    text-align: right;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.checkbox-group input {
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--primary-gold);
}

.checkbox-group label {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Success State Styles */
.success-message {
    text-align: center;
    padding: 32px 16px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.success-message h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--success-green);
}

.success-message p {
    color: var(--text-gray-light);
    font-size: 15px;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.5);
    max-width: 800px;
    line-height: 1.8;
}

/* Custom Modal/Popup Player */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(1, 10, 24, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 100%;
    max-width: 900px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    left: 0;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Responsive Grid/Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 44px;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .social-proof-avatars {
        justify-content: center;
    }
    
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-col-8, .bento-col-4, .bento-col-6 {
        grid-column: span 12;
    }
    
    .solution-highlight-content {
        max-width: 100%;
        margin-bottom: 240px;
    }
    
    .bento-mockup {
        width: 320px;
        left: 50%;
        transform: translateX(-50%) rotate(0deg);
        bottom: -20px;
    }
    
    .solution-highlight:hover .bento-mockup {
        transform: translateX(-50%) scale(1.05);
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    nav {
        height: auto;
        padding: 12px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 14px;
        padding: 4px 0;
    }

    nav .btn {
        display: none;
    }

    .hero {
        padding-top: 150px;
    }

    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-box {
        padding: 32px 20px;
    }
    
    .offer-tag {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
        transform: none;
    }
    
    .offer-details h3 {
        font-size: 32px;
    }
    
    .price-new {
        font-size: 36px;
    }
}

/* Scroll Animation Effects */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for beautiful sequential grids */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Micro-interactions & Extra Premium Hover Animations */
.glass-card .icon-wrapper svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-card:hover .icon-wrapper svg {
    transform: scale(1.2) translateY(-4px);
}

/* Accordion bounce animation */
.accordion-header .accordion-chevron {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.accordion-header:hover .accordion-chevron {
    transform: translateY(-3px);
}

.accordion-item.active .accordion-header:hover .accordion-chevron {
    transform: rotate(180deg) translateY(-3px);
}

/* Button scaling on hover */
.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) scale(1.03);
}

/* Hero Section Loading Animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-hero-item {
    opacity: 0;
    animation: heroFadeInUp 0.85s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.75s; }

/* Accessibility Widget Styles */
.a11y-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #010a18;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 0 15px rgba(212,175,55,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.a11y-trigger:hover {
    transform: scale(1.1);
    background: var(--primary-gold-hover);
}

.a11y-panel {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 320px;
    background: rgba(4, 18, 38, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
    z-index: 9998;
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.a11y-panel.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.a11y-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.a11y-panel-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-gold);
    margin: 0;
}

.a11y-close {
    background: transparent;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition-smooth);
    padding: 4px;
    line-height: 1;
}

.a11y-close:hover {
    color: var(--text-white);
}

.a11y-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.a11y-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(1, 10, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    transition: var(--transition-smooth);
    width: 100%;
}

.a11y-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

.a11y-btn.active {
    background: var(--primary-gold);
    color: #010a18;
    border-color: var(--primary-gold);
}

.a11y-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: currentColor;
}

/* Accessibility Modifications */
body.a11y-large-text h1 { font-size: 64px !important; }
body.a11y-large-text h2 { font-size: 44px !important; }
body.a11y-large-text h3 { font-size: 26px !important; }
body.a11y-large-text p, body.a11y-large-text li, body.a11y-large-text span, body.a11y-large-text td { font-size: 20px !important; }
body.a11y-large-text a { font-size: 18px !important; }

body.a11y-grayscale {
    filter: grayscale(100%) !important;
}

body.a11y-high-contrast {
    background: #000000 !important;
    color: #ffff00 !important;
}

body.a11y-high-contrast * {
    background-color: #000000 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.a11y-high-contrast a, body.a11y-high-contrast button {
    color: #00ffff !important;
    border: 2px solid #ffff00 !important;
    background: #000 !important;
}

body.a11y-highlight-links a {
    outline: 2px dashed var(--primary-gold) !important;
    outline-offset: 2px;
    text-decoration: underline !important;
    font-weight: 800 !important;
}

body.a11y-readable-font {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: 90%;
    max-width: 750px;
    background: rgba(4, 18, 38, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
    z-index: 9997;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0;
}

.cookie-banner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-gray-light);
    line-height: 1.6;
    margin: 0;
}

.cookie-content p a {
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 16px !important;
    font-size: 13px !important;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}



