/* ===================================
   VARIABLES & RESET
   =================================== */

:root {
    /* Logo-derived color palette */
    --sky-blue: #8ECAE6;
    --sky-blue-light: #B5DCF0;
    --sky-blue-dark: #5BA4C9;
    --navy-deep: #1B4965;
    --navy-medium: #2A5F7A;
    --navy-dark: #0F2D40;
    --navy-darkest: #081B29;

    /* Colors - Dark Mode (Default) */
    --bg-primary: #06080C;
    --bg-secondary: #0A1118;
    --bg-tertiary: #101820;
    --bg-card: rgba(16, 24, 32, 0.7);
    --bg-card-hover: rgba(26, 40, 52, 0.85);

    --text-primary: #F0F6FA;
    --text-secondary: #9EBDD0;
    --text-muted: #5A7A8C;

    /* Accent colors derived from logo */
    --accent-primary: #8ECAE6;
    --accent-secondary: #5BA4C9;
    --accent-tertiary: #1B4965;
    --accent-deep: #1B4965;
    --accent-glow: rgba(142, 202, 230, 0.4);
    --accent-glow-strong: rgba(142, 202, 230, 0.65);
    --accent-gradient: linear-gradient(135deg, #8ECAE6 0%, #5BA4C9 50%, #1B4965 100%);
    --accent-gradient-vivid: linear-gradient(135deg, #B5DCF0 0%, #8ECAE6 40%, #1B4965 100%);

    --border-subtle: rgba(142, 202, 230, 0.06);
    --border-light: rgba(142, 202, 230, 0.12);
    --border-accent: rgba(142, 202, 230, 0.25);

    /* Typography - Distinctive fonts */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.25s ease;

    /* Theme transition */
    --theme-transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* ===================================
   LIGHT MODE THEME
   =================================== */

[data-theme="light"] {
    --bg-primary: #FAFCFE;
    --bg-secondary: #F0F4F8;
    --bg-tertiary: #E8EEF4;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.95);

    --text-primary: #0F2D40;
    --text-secondary: #3A5A6C;
    --text-muted: #7A9AAC;

    --accent-primary: #1B4965;
    --accent-secondary: #2A5F7A;
    --accent-tertiary: #8ECAE6;
    --accent-deep: #0F2D40;
    --accent-glow: rgba(27, 73, 101, 0.2);
    --accent-glow-strong: rgba(27, 73, 101, 0.35);
    --accent-gradient: linear-gradient(135deg, #1B4965 0%, #2A5F7A 50%, #8ECAE6 100%);
    --accent-gradient-vivid: linear-gradient(135deg, #0F2D40 0%, #1B4965 40%, #5BA4C9 100%);

    --border-subtle: rgba(27, 73, 101, 0.08);
    --border-light: rgba(27, 73, 101, 0.12);
    --border-accent: rgba(27, 73, 101, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    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");
}

/* Theme transition for all elements */
body,
body *:not(script):not(style) {
    transition: var(--theme-transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow: hidden;
    }

    /* Disable animations that cause overflow */
    .gradient-overlay {
        animation: none;
        transform: none;
    }

    .grid-overlay {
        display: none;
    }
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

[data-theme="light"] #particles-canvas {
    opacity: 0.35;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 100% 60% at 50% -30%, rgba(142, 202, 230, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 90% 20%, rgba(27, 73, 101, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 70%, rgba(91, 164, 201, 0.1) 0%, transparent 50%);
    animation: gradientShift 25s ease infinite;
}

[data-theme="light"] .gradient-overlay {
    background:
        radial-gradient(ellipse 100% 60% at 50% -30%, rgba(142, 202, 230, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 90% 20%, rgba(27, 73, 101, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 10% 70%, rgba(91, 164, 201, 0.08) 0%, transparent 50%);
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    33% {
        opacity: 0.85;
        transform: scale(1.05) translateY(-2%);
    }
    66% {
        opacity: 0.9;
        transform: scale(1.02) translateY(1%);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image:
        linear-gradient(var(--border-subtle) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 90% 60% at 50% 20%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 20%, black 0%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.35; }
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 8, 12, 0.75);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: var(--transition-smooth);
}

[data-theme="light"] .navbar {
    background: rgba(250, 252, 254, 0.85);
}

.navbar.scrolled {
    background: rgba(6, 8, 12, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(250, 252, 254, 0.95);
    box-shadow: 0 4px 24px rgba(27, 73, 101, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

[data-theme="light"] .logo-img {
    filter: none;
}

.logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px var(--accent-glow));
}

[data-theme="light"] .logo-img:hover {
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

/* ===================================
   THEME TOGGLE BUTTON
   =================================== */

/* Hide mobile toggle on desktop, hide desktop toggle on mobile */
.nav-content > .theme-toggle {
    display: none;
}

.theme-toggle-desktop {
    display: flex;
}

.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    cursor: pointer;
    padding: 0;
    margin-left: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.theme-toggle:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 16px var(--accent-glow);
}

.theme-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.theme-toggle-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
}

/* Stars for dark mode */
.theme-toggle-stars {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle-stars::before,
.theme-toggle-stars::after {
    content: '';
    position: absolute;
    background: #F0F6FA;
    border-radius: 50%;
}

.theme-toggle-stars::before {
    width: 3px;
    height: 3px;
    top: 2px;
    left: 2px;
    box-shadow:
        6px 8px 0 1px #F0F6FA,
        10px 2px 0 0 #F0F6FA;
}

.theme-toggle-stars::after {
    width: 2px;
    height: 2px;
    top: 10px;
    left: 8px;
}

[data-theme="light"] .theme-toggle-stars {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

/* Sun rays for light mode */
.theme-toggle-sun {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle-sun::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #1B4965;
    border-radius: 50%;
    box-shadow:
        0 -8px 0 -4px #1B4965,
        0 8px 0 -4px #1B4965,
        -8px 0 0 -4px #1B4965,
        8px 0 0 -4px #1B4965,
        -5px -5px 0 -4px #1B4965,
        5px -5px 0 -4px #1B4965,
        -5px 5px 0 -4px #1B4965,
        5px 5px 0 -4px #1B4965;
}

[data-theme="light"] .theme-toggle-sun {
    opacity: 1;
    transform: translateY(-50%) rotate(180deg);
}

/* Toggle knob */
.theme-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.15, 0.32, 1.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

[data-theme="light"] .theme-toggle-knob {
    left: calc(100% - 23px);
    background: linear-gradient(135deg, #1B4965 0%, #2A5F7A 100%);
}

/* Moon crater details */
.theme-toggle-knob::before,
.theme-toggle-knob::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.theme-toggle-knob::before {
    width: 5px;
    height: 5px;
    top: 4px;
    left: 10px;
}

.theme-toggle-knob::after {
    width: 3px;
    height: 3px;
    top: 12px;
    left: 5px;
}

[data-theme="light"] .theme-toggle-knob::before,
[data-theme="light"] .theme-toggle-knob::after {
    opacity: 0;
}

/* Mobile theme toggle positioning */
@media (max-width: 768px) {
    .nav-content > .theme-toggle {
        display: block;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        width: 44px;
        height: 24px;
    }

    .theme-toggle-desktop {
        display: none !important;
    }

    .nav-content > .theme-toggle .theme-toggle-knob {
        width: 16px;
        height: 16px;
        top: 3px;
        left: 3px;
    }

    [data-theme="light"] .nav-content > .theme-toggle .theme-toggle-knob {
        left: calc(100% - 19px);
    }

    .nav-content > .theme-toggle .theme-toggle-stars {
        left: 6px;
        width: 12px;
        height: 12px;
    }

    .nav-content > .theme-toggle .theme-toggle-stars::before {
        width: 2px;
        height: 2px;
        box-shadow:
            4px 6px 0 0.5px #F0F6FA,
            7px 1px 0 0 #F0F6FA;
    }

    .nav-content > .theme-toggle .theme-toggle-sun {
        right: 6px;
        width: 10px;
        height: 10px;
    }

    .nav-content > .theme-toggle .theme-toggle-sun::before {
        width: 6px;
        height: 6px;
        box-shadow:
            0 -6px 0 -3px #1B4965,
            0 6px 0 -3px #1B4965,
            -6px 0 0 -3px #1B4965,
            6px 0 0 -3px #1B4965,
            -4px -4px 0 -3px #1B4965,
            4px -4px 0 -3px #1B4965,
            -4px 4px 0 -3px #1B4965,
            4px 4px 0 -3px #1B4965;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: var(--transition-smooth);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(6, 8, 12, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        padding: 40px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    [data-theme="light"] .nav-links {
        background: rgba(250, 252, 254, 0.98);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 600;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 90px 0 120px;
    position: relative;
    overflow: visible;
}

/* Floating glow orbs */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 202, 230, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatGlow 10s ease-in-out infinite;
    pointer-events: none;
}

[data-theme="light"] .hero-glow {
    background: radial-gradient(circle, rgba(27, 73, 101, 0.15) 0%, transparent 70%);
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 73, 101, 0.2) 0%, transparent 70%);
    top: 30%;
    left: 70%;
    animation: floatGlow2 12s ease-in-out infinite;
    animation-delay: -3s;
}

[data-theme="light"] .hero-glow-2 {
    background: radial-gradient(circle, rgba(142, 202, 230, 0.2) 0%, transparent 70%);
}

@keyframes floatGlow {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-30px) scale(1.1);
    }
}

@keyframes floatGlow2 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(20px) scale(0.9);
    }
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(142, 202, 230, 0.1);
    border: 1px solid rgba(142, 202, 230, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    animation: badgeGlow 3s ease-in-out infinite;
}

[data-theme="light"] .hero-badge {
    background: rgba(27, 73, 101, 0.08);
    border-color: rgba(27, 73, 101, 0.2);
}

.hero-badge.pilot-badge {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.2);
    position: relative;
    z-index: 10;
}

.hero-badge.pilot-badge .hero-badge-dot {
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
    animation: pulseDotGreen 2s ease-in-out infinite;
}

@keyframes pulseDotGreen {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

@keyframes pilotBadgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
    }
    50% {
        box-shadow: 0 0 35px rgba(34, 197, 94, 0.3);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(142, 202, 230, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(142, 202, 230, 0.2);
    }
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--accent-glow);
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 12px var(--accent-glow);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
        box-shadow: 0 0 20px var(--accent-glow-strong);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.hero-title .gradient-text {
    background: var(--accent-gradient-vivid);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin: 0 auto 36px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.bullet-item:hover {
    color: var(--text-primary);
}

.bullet-item:hover .check-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px var(--accent-glow));
}

.check-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.hero-ctas {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.hero-badges .hero-badge {
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 80px;
        min-height: auto;
        overflow: hidden;
    }

    .hero-content {
        padding: 0;
        width: 100%;
        overflow: hidden;
    }

    .hero-title {
        font-size: clamp(26px, 7vw, 42px);
        letter-spacing: -1px;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 12px;
        white-space: normal;
        text-align: center;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-bullets {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 10px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        padding: 0;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-glow,
    .hero-glow-2 {
        display: none;
    }
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow:
        0 4px 24px var(--accent-glow),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -2px 0 rgba(0,0,0,0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 40%);
    pointer-events: none;
    border-radius: inherit;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow:
        0 12px 40px var(--accent-glow-strong),
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -2px 0 rgba(0,0,0,0.1);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--border-accent);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 20px 44px;
    font-size: 16px;
    border-radius: 16px;
}


/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.section-title .gradient-text {
    background: var(--accent-gradient-vivid);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease infinite;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.transition-text {
    font-family: var(--font-display);
    font-weight: 600;
    background: var(--accent-gradient-vivid);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 52px !important;
    font-size: 22px !important;
}

@media (max-width: 768px) {
    .problem-section {
        padding: var(--section-padding-mobile) 0;
    }

    .section-title {
        letter-spacing: -1px;
    }
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.solution-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card glow effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(142, 202, 230, 0.15), transparent 40%);
    pointer-events: none;
}

[data-theme="light"] .card-glow {
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(27, 73, 101, 0.08), transparent 40%);
}

.pillar-card {
    background: var(--bg-card);
    padding: 44px 36px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    cursor: default;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-primary) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pillar-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px var(--accent-glow);
}

[data-theme="light"] .pillar-card:hover {
    box-shadow:
        0 20px 40px rgba(27, 73, 101, 0.1),
        0 0 40px rgba(142, 202, 230, 0.15);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover .card-glow {
    opacity: 1;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    color: var(--accent-primary);
    padding: 14px;
    background: rgba(142, 202, 230, 0.12);
    border-radius: 16px;
    border: 1px solid rgba(142, 202, 230, 0.2);
    transition: var(--transition-bounce);
}

[data-theme="light"] .pillar-icon {
    background: rgba(27, 73, 101, 0.08);
    border-color: rgba(27, 73, 101, 0.15);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.pillar-description {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .solution-section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ===================================
   DIFFERENTIATION SECTION
   =================================== */

.differentiation-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.diff-card {
    padding: 48px 36px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    cursor: default;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.diff-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px var(--accent-glow);
}

[data-theme="light"] .diff-card:hover {
    box-shadow:
        0 20px 40px rgba(27, 73, 101, 0.1),
        0 0 40px rgba(142, 202, 230, 0.15);
}

.diff-card:hover .card-glow {
    opacity: 1;
}

.diff-card:hover .diff-number {
    opacity: 0.8;
    transform: scale(1.05);
}

.diff-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    margin-bottom: 20px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.diff-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

@media (max-width: 900px) {
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .differentiation-section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* ===================================
   USE CASES SECTION
   =================================== */

.usecases-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    margin-top: 18px;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.usecase-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    cursor: default;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.usecase-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px var(--accent-glow);
}

[data-theme="light"] .usecase-card:hover {
    box-shadow:
        0 20px 40px rgba(27, 73, 101, 0.1),
        0 0 40px rgba(142, 202, 230, 0.15);
}

.usecase-card:hover .card-glow {
    opacity: 1;
}

.usecase-card:hover .usecase-icon {
    transform: scale(1.2) rotate(10deg);
}

.usecase-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    transition: var(--transition-bounce);
}

.usecase-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .usecases-section {
        padding: var(--section-padding-mobile) 0;
    }

    .usecases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===================================
   METHOD SECTION
   =================================== */

.method-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.method-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

/* Vertical line */
.method-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    opacity: 0.3;
}

[data-theme="light"] .method-timeline::before {
    opacity: 0.5;
}

.timeline-marker {
    position: relative;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: var(--transition-bounce);
    z-index: 2;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: 0 8px 32px var(--accent-glow-strong);
}

.timeline-item:hover .timeline-marker span {
    animation: pulseNumber 0.5s ease;
}

@keyframes pulseNumber {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.timeline-item:hover .timeline-title {
    color: var(--accent-secondary);
}

.timeline-content {
    flex: 1;
    padding-top: 4px;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: var(--transition-fast);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .method-section {
        padding: var(--section-padding-mobile) 0;
    }

    .method-timeline {
        padding: 0;
    }

    .method-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 0;
        gap: 16px;
    }

    .timeline-marker {
        position: relative;
        left: 0;
    }

    .timeline-content {
        padding: 0;
    }

    .timeline-title {
        font-size: 17px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 0;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.faq-item:hover {
    border-color: var(--border-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 30px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    letter-spacing: -0.02em;
}

.faq-question:hover {
    color: var(--accent-secondary);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-primary);
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 26px 30px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: var(--section-padding-mobile) 0;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 22px 22px;
        font-size: 16px;
    }

    .faq-question span {
        padding-right: 14px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-answer {
        padding: 0 22px;
    }

    .faq-item.active .faq-answer {
        padding: 0 22px 22px 22px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-top: 24px;
    margin-bottom: 60px;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(142, 202, 230, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(142, 202, 230, 0.2);
    transition: var(--transition-smooth);
}

[data-theme="light"] .contact-icon {
    background: rgba(27, 73, 101, 0.08);
    border-color: rgba(27, 73, 101, 0.15);
}

.contact-item:hover .contact-icon {
    background: rgba(142, 202, 230, 0.2);
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--accent-glow);
}

[data-theme="light"] .contact-item:hover .contact-icon {
    background: rgba(27, 73, 101, 0.12);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

.contact-link {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--accent-secondary);
}

.contact-form {
    background: var(--bg-card);
    padding: 52px;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    text-align: left;
    backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-glow), 0 0 24px var(--accent-glow);
    background: var(--bg-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 16px;
}

.form-message {
    margin-top: 24px;
    padding: 18px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(142, 202, 230, 0.12);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    display: block;
}

[data-theme="light"] .form-message.success {
    background: rgba(27, 73, 101, 0.08);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid #dc2626;
    display: block;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: var(--section-padding-mobile) 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .contact-form {
        padding: 32px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 12px;
    }

    .footer-separator {
        display: none;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 64px 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.footer-text {
    margin-top: 24px;
}

.footer-text p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 14px;
}

.footer-contact-link:hover {
    color: var(--accent-secondary);
}

.footer-separator {
    color: var(--text-muted);
}

.footer-address {
    font-size: 13px !important;
}

.footer-year {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.scroll-reveal[data-delay="0"] { transition-delay: 0s; }
.scroll-reveal[data-delay="1"] { transition-delay: 0.1s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.2s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.3s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.4s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.5s; }

/* Hero entrance animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: heroEnter 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-in[data-delay="0"] { animation-delay: 0.1s; }
.animate-in[data-delay="1"] { animation-delay: 0.2s; }
.animate-in[data-delay="2"] { animation-delay: 0.35s; }
.animate-in[data-delay="3"] { animation-delay: 0.5s; }
.animate-in[data-delay="4"] { animation-delay: 0.65s; }
.animate-in[data-delay="5"] { animation-delay: 0.8s; }

@keyframes heroEnter {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* 3D Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding-mobile: 50px;
    }
}

/* ===================================
   REDUCED MOTION
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }

    .animate-in {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .animated-background,
    .navbar,
    .hero-ctas,
    .contact-form,
    .footer,
    .hero-glow,
    .hero-glow-2 {
        display: none;
    }

    body::before {
        display: none;
    }
}
