/* ===== VARIABLES & THEME ===== */
:root {
    /* Colors */
    --bg-color: #0f172a;
    /* Slate 900 */
    --bg-secondary: #1e293b;
    /* Slate 800 */
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;

    /* Gradients */
    --accent-blue: #3b82f6;
    /* Vibrant blue */
    --accent-purple: #d946ef;
    /* Vibrant magenta/purple */
    --gradient-primary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(30, 41, 59, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --nav-height: 80px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

/* ===== RESET & BASICS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.bg-secondary {
    background-color: var(--bg-secondary);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

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

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.nav-link:hover:not(.btn) {
    color: #fff;
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg-animated {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, rgba(217, 70, 239, 0.1) 30%, transparent 60%);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

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

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

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Hero Composition */
.hero-image {
    display: flex;
    justify-content: center;
}

.hero-composition {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.orb-1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
    top: -20px;
    left: -20px;
    opacity: 0.6;
    animation: pulseOrb1 8s ease-in-out infinite alternate;
}

.orb-2 {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, transparent, var(--accent-purple));
    bottom: -20px;
    right: -20px;
    opacity: 0.5;
    animation: pulseOrb2 10s ease-in-out infinite alternate;
}

@keyframes pulseOrb1 {
    0% {
        transform: scale(0.8) translate(10px, 10px);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1) translate(-20px, -10px);
        opacity: 0.7;
    }
}

@keyframes pulseOrb2 {
    0% {
        transform: scale(0.9) translate(-10px, -20px);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.3) translate(20px, 10px);
        opacity: 0.6;
    }
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.float-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.icon-gradient {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-feature {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sub-feature-1 {
    top: 50%;
    right: 5%;
    animation-delay: -2s;
}

.sub-feature-2 {
    bottom: 15%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {

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

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

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(14, 165, 233, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

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

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* ===== PRODUCT SECTION ===== */
.it-interview-logo {
    max-width: 120px;
    border-radius: 25px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.app-mockup {
    width: 300px;
    height: auto;
    aspect-ratio: 9 / 19.5;
    border-radius: 36px;
    margin: 0 auto;
    position: relative;
    border: 8px solid #1e293b;
    background: #000;
    overflow: hidden;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.app-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    text-align: center;
    padding: 2rem;
}

.icon-xl {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(217, 70, 239, 0.05) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.app-download-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.app-store-btn:hover {
    background: #222;
    border-color: rgba(255, 255, 255, 0.3);
}

.app-store-btn i {
    font-size: 1.8rem;
}

.app-store-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-store-btn .btn-text span {
    font-size: 0.65rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.app-store-btn .btn-text strong {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-color) 0%, #0c1a30 50%, var(--bg-color) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(217, 70, 239, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

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

.about-content {
    padding: 2rem;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(217, 70, 239, 0.15);
    border-color: rgba(217, 70, 239, 0.3);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #05070a;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== WOTW SECTION & THEMES ===== */
.wotw-theme-villain {
    --wotw-primary: #ef4444;
    --wotw-secondary: #7f1d1d;
    --wotw-gradient: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    --wotw-bg: rgba(239, 68, 68, 0.08);
    /* More subtle */
}

.wotw-theme-hero {
    --wotw-primary: #10b981;
    --wotw-secondary: #064e3b;
    --wotw-gradient: linear-gradient(135deg, #10b981 0%, #047857 100%);
    --wotw-bg: rgba(16, 185, 129, 0.08);
    /* More subtle */
}

.wotw-theme-zen {
    --wotw-primary: #fbbf24;
    --wotw-secondary: #78350f;
    --wotw-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --wotw-bg: rgba(251, 191, 36, 0.08);
    /* More subtle */
}

.wotw-gradient {
    background: var(--wotw-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wotw-section {
    position: relative;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
}

.wotw-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    /* Elegant top glow falling down into darkness */
    background: radial-gradient(ellipse at top center, var(--wotw-bg) 0%, transparent 60%);
    transition: background 0.8s ease;
    z-index: -1;
    pointer-events: none;
}

.theme-selector {
    text-align: center;
    margin-bottom: 4rem;
}

.theme-selector h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.theme-buttons {
    display: inline-flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.theme-btn.active {
    color: #fff;
}

.theme-btn[data-theme="villain"].active {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.theme-btn[data-theme="hero"].active {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.theme-btn[data-theme="zen"].active {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}

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

/* Removed Zen Arc specific centering so it falls back to the default grid structure */

.wotw-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.wotw-card:hover {
    transform: translateY(-5px);
    border-color: var(--wotw-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--wotw-bg);
}

.wotw-card:hover .wotw-icon {
    transform: scale(1.15) rotate(10deg);
    background: var(--wotw-gradient);
    color: white;
    box-shadow: 0 0 15px var(--wotw-primary);
}

.wotw-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--wotw-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.wotw-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.wotw-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.wotw-mockup {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px var(--wotw-bg);
    transition: box-shadow 0.5s ease;
}

.wotw-web-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.wotw-web-img:hover {
    opacity: 1;
}

.wotw-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    text-align: center;
    padding: 2rem;
}

.icon-xl.wotw-glow {
    color: var(--wotw-primary);
    filter: drop-shadow(0 0 15px var(--wotw-primary));
    transition: color 0.5s ease, filter 0.5s ease;
    background: none;
    -webkit-text-fill-color: initial;
}

.coming-soon-badge {
    margin-top: 1.5rem;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--wotw-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wotw-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.5s ease, border-color 0.5s ease;
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
}

.carousel-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

/* ===== ANIMATIONS (Intersection Observer) ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

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

    .hero-container,
    .product-grid,
    .about-grid,
    .wotw-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

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

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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