/* ===== DARK THEME (default) ===== */
:root,
[data-theme="dark"] {
    --bg-main: #020b14;
    --bg-card: rgba(10, 25, 47, 0.4);
    --bg-card-hover: rgba(14, 38, 70, 0.6);

    --color-primary: #0088cc;
    --color-primary-glow: rgba(0, 136, 204, 0.4);
    --color-secondary: #00cba9;
    --color-accent: #f0c341;

    --text-main: #f0f4f8;
    --text-muted: #94a3b8;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 203, 169, 0.3);

    --navbar-bg: rgba(2, 11, 20, 0.85);
    --company-bg: linear-gradient(135deg, rgba(0, 51, 102, 0.3), rgba(10, 25, 47, 0.6));
    --company-border: rgba(0, 90, 156, 0.3);
    --floating-card-bg: rgba(10, 25, 47, 0.7);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --blur: blur(16px);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
    --bg-main: #f5f7fa;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.9);

    --color-primary: #005A9C;
    --color-primary-glow: rgba(0, 90, 156, 0.2);
    --color-secondary: #008f78;
    --color-accent: #c9981a;

    --text-main: #0f172a;
    --text-muted: #475569;

    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 143, 120, 0.3);

    --navbar-bg: rgba(245, 247, 250, 0.9);
    --company-bg: linear-gradient(135deg, rgba(0, 90, 156, 0.08), rgba(245, 247, 250, 0.8));
    --company-border: rgba(0, 90, 156, 0.15);
    --floating-card-bg: rgba(255, 255, 255, 0.85);
}

[data-theme="light"] .bg-glow {
    opacity: 0.15;
}

[data-theme="light"] body::after {
    opacity: 0.01;
}

[data-theme="light"] .image-wrapper {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 60px rgba(0, 90, 156, 0.1);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .floating-card {
    background: var(--floating-card-bg);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-box {
    background: var(--bg-card);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .company-wrapper {
    background: var(--company-bg);
    border-color: var(--company-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .contact-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.accent-text {
    color: var(--color-accent);
    font-style: italic;
}

.brand-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.bg-glow-1 {
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
}

.bg-glow-2 {
    bottom: 20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 203, 169, 0.15) 0%, transparent 70%);
}

.glass {
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #005A9C, var(--color-primary));
    color: white;
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.badge,
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 136, 204, 0.15);
    color: var(--color-secondary);
    border: 1px solid rgba(0, 203, 169, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo span {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary) !important;
}

.nav-links a.nav-btn:hover {
    background: var(--color-primary);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
}

/* Nav Controls (Theme + Lang + Burger) */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.toggle-btn:hover {
    border-color: var(--color-primary);
    background: var(--bg-card-hover);
}

.lang-toggle {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.lang-dropdown {
    position: relative;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
}

.lang-option:hover {
    background: var(--bg-card-hover);
    color: var(--text-main);
}

.lang-option.active {
    color: var(--color-primary);
    font-weight: 700;
    background: var(--color-primary-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 136, 204, 0.15);
    background: linear-gradient(45deg, var(--bg-card), rgba(0, 136, 204, 0.2));
    border: 1px solid rgba(0, 136, 204, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.photo-placeholder {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 2rem;
    position: absolute;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    position: absolute;
    z-index: 2;
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* Show image when real src is set */
.hero-img[src]:not([src="placeholder-photo.jpg"]) {
    opacity: 1;
}

/* Hide placeholder text when image loaded */
.hero-img[src]:not([src="placeholder-photo.jpg"])~.photo-placeholder,
.hero-img[src="photo.jpg"]~.photo-placeholder {
    display: none;
}

.floating-card {
    position: absolute;
    background: var(--floating-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 8%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 12%;
    left: -10%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.fc-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.fc-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.about-text {
    padding: 3rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-text p strong {
    color: var(--text-main);
}

.about-text .lead {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 500;
    font-family: var(--font-heading);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
}

.stat-box.highlight {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 203, 169, 0.2));
    border-color: var(--color-secondary);
}

.stat-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.highlight .stat-icon {
    color: var(--color-secondary);
}

.stat-value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.highlight .stat-value {
    color: var(--color-accent);
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ═══════════════════════════════════ */
/* Mission & Values Section */
/* ═══════════════════════════════════ */
.mission-section {
    padding: 6rem 0;
    position: relative;
}

.mission-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.mission-quote {
    position: relative;
    padding: 3rem;
    border-radius: 24px;
    background: var(--bg-card);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--color-accent);
    margin-top: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block;
}

.mission-quote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 195, 65, 0.15), rgba(240, 195, 65, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-accent);
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════ */
/* Opportunities / Benefits Section */
/* ═══════════════════════════════════ */
.opportunities-section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 136, 204, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

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

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(0, 136, 204, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: var(--text-muted);
}

.card.featured {
    border-color: rgba(0, 203, 169, 0.3);
    background: linear-gradient(to bottom right, var(--bg-card), rgba(0, 203, 169, 0.05));
}

.card.featured .card-icon {
    background: rgba(0, 203, 169, 0.15);
    color: var(--color-secondary);
}

/* Company Section */
.company-section {
    padding: 5rem 0;
}

.company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    border-radius: 30px;
    background: var(--company-bg);
    border: 1px solid var(--company-border);
}

.company-slogan {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 136, 204, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
    margin-bottom: 2rem;
}

.company-slogan i {
    font-size: 2rem;
    color: var(--color-accent);
}

.company-slogan h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 0;
    font-style: italic;
}

.company-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.company-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    font-size: 8rem;
    color: var(--color-secondary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0, 203, 169, 0.4));
}

.floating-orbit {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.orb {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 20px var(--color-primary);
}

.orb.o-1 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.orb.o-2 {
    bottom: 20%;
    right: -5px;
    background: var(--color-secondary);
    box-shadow: 0 0 20px var(--color-secondary);
}

.orb.o-3 {
    bottom: 20%;
    left: -5px;
    background: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ═══════════════════════════════════ */
/* Target Audience Section */
/* ═══════════════════════════════════ */
.audience-section {
    padding: 6rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audience-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

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

.audience-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 195, 65, 0.15), rgba(240, 195, 65, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-accent);
    margin: 0 auto 1.5rem;
}

.audience-card h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.audience-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════ */
/* Success Timeline Section */
/* ═══════════════════════════════════ */
.timeline-section {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 1.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 3px var(--color-primary);
    z-index: 2;
}

.timeline-marker.active {
    width: 20px;
    height: 20px;
    left: -35px;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent), 0 0 20px rgba(240, 195, 65, 0.4);
}

.timeline-content {
    padding: 1.5rem 2rem;
}

.timeline-content.featured {
    border-color: var(--color-accent);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-content.featured .timeline-year {
    color: var(--color-accent);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════ */
/* Quiz CTA Section */
/* ═══════════════════════════════════ */
.quiz-section {
    padding: 4rem 0;
}

.quiz-card {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.quiz-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(240, 195, 65, 0.08), transparent 60%);
    pointer-events: none;
}

.quiz-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.quiz-card p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.btn-accent {
    background: var(--color-accent);
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 195, 65, 0.3);
}

/* Quiz Interactive Elements */
.quiz-progress {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 0%;
}

.quiz-question-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.quiz-option-btn {
    display: block;
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 1.05rem;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
}

.quiz-option-btn:hover {
    border-color: var(--color-primary);
    background: rgba(0, 136, 204, 0.06);
    transform: translateX(6px);
}

.quiz-option-btn:active {
    transform: scale(0.98);
}

.quiz-result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

#quizResult h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

#quizResult p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════ */
/* Philosophy & Anti-fit Section */
/* ═══════════════════════════════════ */
.philosophy-section {
    padding: 6rem 0;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.philosophy-block {
    padding: 3rem;
}

.philosophy-quote {
    margin: 1.5rem 0;
    padding: 0;
    border: none;
}

.philosophy-quote p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
}

.philosophy-block>p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.antifit-block {
    padding: 3rem;
    border-color: rgba(220, 50, 50, 0.3);
}

.antifit-block h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.antifit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.antifit-list li {
    color: var(--text-muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.antifit-list li:last-child {
    border-bottom: none;
}

.antifit-footer {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* ═══════════════════════════════════ */
/* Articles Section */
/* ═══════════════════════════════════ */
.articles-section {
    padding: 6rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.article-card {
    padding: 2.5rem;
    transition: var(--transition);
}

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

.article-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 136, 204, 0.15);
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.article-tag.tag-secondary {
    background: rgba(0, 203, 169, 0.15);
    color: var(--color-secondary);
}

.article-tag.tag-accent {
    background: rgba(240, 195, 65, 0.15);
    color: var(--color-accent);
}

.article-card h3 {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.article-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.article-link:hover {
    color: var(--color-secondary);
}

/* ═══════════════════════════════════ */
/* FAQ Section */
/* ═══════════════════════════════════ */
.faq-section {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-toggle-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
.footer {
    padding-top: 5rem;
    margin-top: 5rem;
}

.contact-section {
    margin-bottom: 5rem;
}

.contact-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--color-primary);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #005A9C);
}

.contact-icon.email {
    background: linear-gradient(135deg, #EA4335, #B31412);
}

.contact-icon.vk {
    background: linear-gradient(135deg, #0077FF, #0055CC);
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #F56040, #C13584, #833AB4);
}

.contact-icon.max-messenger {
    background: linear-gradient(135deg, #6C3CE1, #4A1DAD);
}

.contact-info h4 {
    color: var(--text-main);
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-info span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.qr-hint {
    position: absolute;
    right: 1.5rem;
    opacity: 0.1;
    font-size: 3rem;
    color: var(--text-main);
    transition: var(--transition);
}

.contact-card:hover .qr-hint {
    opacity: 0.6;
    transform: scale(1.1);
    color: var(--color-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--color-primary);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    padding-bottom: 2rem;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    display: none;
    /* Enabled via JS on desktop */
}

@media (pointer: fine) {
    .cursor {
        display: block;
    }
}

/* WhatsApp Pulse Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.contact-icon.whatsapp {
    animation: pulse-glow 2s infinite;
}

/* Film grain overlay for premium texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(2, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--color-secondary);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 5%;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {

    .hero-container,
    .about-grid,
    .company-wrapper {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 3rem;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .image-wrapper {
        max-width: 320px;
        aspect-ratio: 3/4;
    }

    .company-wrapper {
        padding: 2rem;
    }

    .company-visual {
        height: 250px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-section,
    .opportunities-section,
    .mission-section,
    .audience-section,
    .timeline-section,
    .philosophy-section,
    .articles-section,
    .faq-section {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid,
    .articles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .floating-card {
        padding: 0.6rem 1rem;
        border-radius: 12px;
    }

    .card-1 {
        top: 5%;
        right: -3%;
    }

    .card-2 {
        bottom: 8%;
        left: -3%;
    }

    .fc-num {
        font-size: 1.1rem;
    }

    .fc-label {
        font-size: 0.7rem;
    }

    .floating-card i {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.2rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .about-text {
        padding: 1.5rem;
    }

    .about-text .lead {
        font-size: 1.2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-links-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .company-slogan {
        padding: 1rem;
    }

    .company-slogan h3 {
        font-size: 1rem;
    }

    .shield-icon {
        font-size: 5rem;
    }

    .floating-orbit {
        width: 200px;
        height: 200px;
    }

    .contact-section {
        margin-bottom: 3rem;
    }

    .footer {
        padding-top: 3rem;
        margin-top: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .mission-quote {
        padding: 1.5rem;
    }

    .mission-quote p {
        font-size: 1.15rem;
    }

    .mission-section {
        padding: 3rem 0;
    }

    .audience-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .audience-card {
        padding: 2rem 1.5rem;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -23px;
        width: 12px;
        height: 12px;
    }

    .timeline-marker.active {
        left: -25px;
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 1.2rem 1.5rem;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    .quiz-card {
        padding: 2.5rem 1.5rem;
    }

    .quiz-card h2 {
        font-size: 1.5rem;
    }

    .philosophy-block,
    .antifit-block {
        padding: 2rem;
    }

    .article-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .faq-section,
    .quiz-section,
    .articles-section {
        padding: 3rem 0;
    }
}