/* ==========================================================================
   TURSYN MOVIES — ULTRA-MODERN STREAMING THEME
   Palette: "Stormy Morning" (Deep Obsidian Slate, Vibrant Sky Blue & Gold Glow)
   Brand Colors: #1e2632 | #283341 | #384959 | #88BDF2 | #BDDDFC | #FFE885
   ========================================================================== */

/* ==========================================================================
   1. ROOT VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #121822;
    --bg-secondary: #1a2230;
    --bg-card: rgba(40, 51, 65, 0.7);
    --bg-card-hover: rgba(56, 73, 89, 0.85);
    
    --accent-color: #88BDF2;
    --accent-hover: #BDDDFC;
    --accent-muted: #6A89A7;
    --accent-gold: #FFE885;
    
    --text-main: #ffffff;
    --text-muted: #BDDDFC;
    --text-subtle: #8fa5be;
    
    --success-color: #00e676;
    --border-subtle: rgba(189, 221, 252, 0.12);
    --border-glow: rgba(136, 189, 242, 0.4);
    --overlay-gradient: linear-gradient(180deg, rgba(18, 24, 34, 0.4) 0%, #121822 100%);

    /* Typography */
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Elevation & Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 45px rgba(0, 0, 0, 0.6);
    --shadow-accent: 0 0 25px rgba(136, 189, 242, 0.4);
    --shadow-gold: 0 0 30px rgba(255, 232, 133, 0.3);

    /* Animation Timing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    /* Border Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* ==========================================================================
   2. CSS RESET & GLOBAL BASE
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-muted);
}

::selection {
    background-color: var(--accent-color);
    color: #0c1219;
}

/* ==========================================================================
   3. TYPOGRAPHY & BASE ELEMENTS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

p {
    color: var(--text-muted);
}

b, strong {
    font-weight: 600;
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   4. SHARED LAYOUT & UI COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* High-Converting Buttons */
.download-btn, .tutorial-btn, .main-download-btn, .nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    outline: none;
    text-decoration: none;
}

.download-btn, .main-download-btn {
    padding: 16px 34px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #4a8dc7 100%);
    color: #0b1118;
    box-shadow: 0 6px 20px rgba(136, 189, 242, 0.35);
}

.download-btn:hover, .main-download-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    box-shadow: var(--shadow-accent);
    transform: translateY(-3px) scale(1.02);
}

.tutorial-btn {
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
}

.tutorial-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Section Title Hierarchy */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 14px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.section-title p {
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-subtle);
}

.small-title {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    background: rgba(136, 189, 242, 0.12);
    border: 1px solid rgba(136, 189, 242, 0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

/* ==========================================================================
   5. HEADER & NAVIGATION
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 18px 0;
    background: rgba(18, 24, 34, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(18, 24, 34, 0.96);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(189, 221, 252, 0.18);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(136, 189, 242, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-fast);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--text-main);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-cta-btn {
    padding: 9px 20px;
    font-size: 0.9rem;
    background: var(--accent-color);
    color: #0b1118;
}

.nav-cta-btn:hover {
    background: var(--accent-hover);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

/* ==========================================================================
   6. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(136, 189, 242, 0.18) 0px, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(106, 137, 167, 0.22) 0px, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 45px 45px, 45px 45px;
    padding: 150px 0 80px;
    overflow: hidden;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-gradient);
    z-index: 1;
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    width: 100%;
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
}

.hero-stats > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stats h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.hero-stats p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
}

/* Phone Showcase */
.hero-right .phone {
    position: relative;
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    animation: heroFloating 6s ease-in-out infinite;
    z-index: 3;
}

.hero-right .phone img {
    width: 100%;
    border-radius: 36px;
    border: 4px solid rgba(189, 221, 252, 0.15);
    background-color: var(--bg-secondary);
}

.glow-effect {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(136, 189, 242, 0.28) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

@keyframes heroFloating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}

/* ==========================================================================
   7. TUTORIAL VIDEO SECTION
   ========================================================================== */
.tutorial-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.video-wrapper {
    max-width: 440px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 vertical ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(136, 189, 242, 0.2);
    border: 2px solid rgba(189, 221, 252, 0.2);
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   8. FEATURES SECTION
   ========================================================================== */
.features {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-secondary);
    z-index: 2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 38px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.feature-card .icon {
    width: 54px;
    height: 54px;
    background: rgba(136, 189, 242, 0.14);
    color: var(--accent-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(136, 189, 242, 0.25);
    transition: transform var(--transition-fast);
}

.feature-card h3 {
    font-size: 1.35rem;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.feature-card:hover .icon {
    transform: scale(1.1) rotate(6deg);
}

/* ==========================================================================
   9. DISTINCT FOUNDER & EXECUTIVE LEADERSHIP SECTION
   ========================================================================== */
.leadership {
    padding: 110px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

/* Distinct Founder Showcase */
.founder-showcase {
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
}

.founder-card {
    background: linear-gradient(145deg, rgba(43, 57, 74, 0.9) 0%, rgba(26, 34, 46, 0.95) 100%);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 540px;
    width: 100%;
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 232, 133, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.founder-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 232, 133, 0.45);
}

.founder-card .role-badge {
    background: linear-gradient(135deg, rgba(255, 232, 133, 0.25) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 1px solid rgba(255, 232, 133, 0.7);
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 0.85rem;
}

.founder-card h3 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-top: 8px;
    margin-bottom: 6px;
}

/* Executive Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 26px;
}

.leadership-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-subtle);
    padding: 34px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-smooth);
}

.leadership-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md), var(--shadow-accent);
}

.role-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(136, 189, 242, 0.15);
    border: 1px solid rgba(136, 189, 242, 0.3);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.leadership-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.institution {
    font-size: 0.88rem;
    color: var(--text-subtle);
}

/* ==========================================================================
   10. SCREENSHOTS GALLERY
   ========================================================================== */
.screenshots {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-card);
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.03);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), var(--shadow-accent);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   11. DOWNLOAD SECTION
   ========================================================================== */
.download {
    padding: 110px 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.download-box {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-accent);
    overflow: hidden;
}

.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(136, 189, 242, 0.15);
    border: 1px solid var(--border-glow);
    color: var(--accent-hover);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.download-box h2 {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.download-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 36px 0;
}

.info-card {
    background: rgba(18, 24, 34, 0.65);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 14px;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.info-card h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
    margin-bottom: 6px;
}

.info-card p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-hover);
}

.download-note {
    font-size: 0.88rem;
    color: var(--text-subtle);
    margin-top: 20px;
}

/* ==========================================================================
   12. HELP & SUPPORT CENTER (TIMELINE & FAQ)
   ========================================================================== */
.help-section {
    padding: 110px 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

/* Timeline Track */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-card) 0%, var(--accent-color) 50%, var(--bg-card) 100%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--bg-primary);
    border: 2px solid var(--accent-color);
    color: var(--accent-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    z-index: 3;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.timeline-content {
    position: relative;
    width: 45%;
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-subtle);
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.timeline-item:hover .timeline-number {
    background-color: var(--accent-color);
    color: #0b1118;
    box-shadow: var(--shadow-accent);
    transform: translateX(-50%) scale(1.15);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-4px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

/* FAQ Accordion Component */
.faq-container {
    max-width: 820px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    background: none;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 1.08rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question span {
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: transform var(--transition-smooth), color var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth) cubic-bezier(0, 1, 0, 1);
    background-color: rgba(0, 0, 0, 0.18);
}

.faq-answer p {
    padding: 0 26px 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-question {
    color: var(--accent-hover);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: var(--accent-color);
}

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
footer {
    position: relative;
    background-color: #0d1219;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 35px;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    font-size: 1.85rem;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-subtle);
    max-width: 320px;
}

.footer-links h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-hover);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(189, 221, 252, 0.08);
    padding-top: 28px;
    color: var(--text-subtle);
    font-size: 0.88rem;
}

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-left {
        align-items: center;
    }
    .hero p {
        margin: 0 auto 36px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
        gap: 28px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .timeline::before {
        left: 24px;
    }
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 64px;
    }
    .timeline-number {
        left: 24px;
        top: 0;
    }
    .timeline-content {
        width: 100%;
        padding: 24px;
    }
    .download-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons a {
        width: 100%;
    }
    .download-info {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}