/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --color-primary: #0A0A45;
    --color-primary-dark: #06060F;
    --color-primary-light: #1A1A2E;
    --color-accent: #E30000;
    --color-accent-dark: #D11F45;
    --color-accent-glow: rgba(227, 0, 0, 0.2);
    --color-white: #FFFFFF;
    --color-off-white: #F8F8FA;
    --color-gray-100: #F0F0F3;
    --color-gray-200: #E4E4E8;
    --color-gray-300: #C8C8D0;
    --color-gray-400: #9898A4;
    --color-gray-500: #686878;
    --color-text: #1A1A2E;
    --color-text-light: #5A5A72;

    --font-heading: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --section-padding: 100px;
    --container-max-width: 1200px;

    --shadow-sm: 0 2px 8px rgba(10, 10, 69, 0.04);
    --shadow-md: 0 8px 30px rgba(10, 10, 69, 0.06);
    --shadow-lg: 0 16px 40px rgba(10, 10, 69, 0.08);
    --shadow-xl: 0 24px 60px rgba(10, 10, 69, 0.12);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    touch-action: pan-x pan-y;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #04041a;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    touch-action: pan-x pan-y;
    width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========================================
   Page Transition
   ======================================== */
.page-transition {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0B0B26 0%, #04040d 100%);
    z-index: 9999;
    transform: translateY(100%);
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-transition.active { transform: translateY(0); pointer-events: all; }

.page-transition::after {
    content: '';
    width: 64px;
    height: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E30000' stroke-width='1.5'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translate(-50px, 50px) rotate(-45deg);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s, opacity 0.4s ease 0.2s;
}
.page-transition.active::after {
    opacity: 1;
    transform: translate(0, 0) rotate(-45deg);
}

/* ========================================
     Loader
     ======================================== */
.loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #0B0B26 0%, #04040d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s ease;
    overflow: hidden;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Animated background */
.loader-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.loader-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 0, 0, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    animation: bgPulse 6s ease-in-out infinite;
}
@keyframes bgPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1.2; transform: translate(-50%, -50%) scale(1.1); }
}

/* Grid pattern */
.loader-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}
@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(60px, 60px); }
}

/* Animated orbs */
.loader-orb {
    position: absolute;
    border-radius: 50%;
    animation: orbFloat 20s ease-in-out infinite;
}
.loader-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 0, 0, 0.08) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
    filter: blur(60px);
}
.loader-orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(10, 10, 69, 0.4) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation-delay: -7s;
    filter: blur(50px);
}
.loader-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 0, 0, 0.04) 0%, transparent 70%);
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    filter: blur(40px);
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.08); }
    50% { transform: translate(-20px, 20px) scale(0.96); }
    75% { transform: translate(30px, 15px) scale(1.04); }
}

/* Glow lines */
.loader-glow-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.loader-glow-line {
    position: absolute;
    height: 1.5px;
    width: 250px;
    background: linear-gradient(90deg, transparent, rgba(227, 0, 0, 0.4), rgba(227, 0, 0, 0.2), transparent);
    animation: glowMove 6s ease-in-out infinite;
    border-radius: 1px;
    box-shadow: 0 0 15px rgba(227, 0, 0, 0.3);
}
.loader-glow-line:nth-child(1) { top: 20%; left: -250px; animation-delay: 0s; }
.loader-glow-line:nth-child(2) { top: 70%; right: -250px; animation-delay: -3s; }
@keyframes glowMove {
    0% { opacity: 0; transform: translateX(0); }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateX(500px); }
}

/* Particles */
.loader-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.loader-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
    box-shadow: 0 0 8px var(--color-accent);
}
@keyframes particleFloat {
    0% { transform: translateY(105vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-5vh) scale(1); opacity: 0; }
}

/* Main content */
.loader-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Icon - Glassmorphic Plate */
.loader-icon-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 35px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}
.loader-icon-float {
    position: absolute;
    inset: 0;
    animation: iconFloat 3s ease-in-out infinite;
}
.loader-icon-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: iconRingSpin 10s linear infinite;
}
.loader-icon-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-accent), 0 0 6px #ffffff;
}
@keyframes iconRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.loader-icon {
    position: absolute;
    inset: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(227, 0, 0, 0.2);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}
.loader-icon svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
    filter: drop-shadow(0 0 8px var(--color-accent));
    transform: rotate(-45deg);
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Logo wrapper */
.loader-logo-wrapper {
    position: relative;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.loader-logo {
    font-family: var(--font-heading);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    letter-spacing: 8px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}
.loader-logo::after {
    content: 'BUSINESS MENTOR';
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    text-shadow: none;
}
.loader-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(227, 0, 0, 0.18) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
    animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Progress */
.loader-progress-wrapper {
    width: 280px;
    margin: 35px auto 0;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.loader-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    position: relative;
}
.loader-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9E0000, var(--color-accent), #9E0000);
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    box-shadow: 0 0 10px var(--color-accent);
    transition: width 0.1s linear;
}
.loader-progress-fill::after {
    content: '';
    position: absolute;
    right: -3px;
    top: -2px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 5px var(--color-accent);
}
.loader-progress-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}
.loader-percentage {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* Takeoff State Transitions */
.loader.takeoff .loader-icon-float {
    animation: none !important;
}
.loader.takeoff .loader-icon {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.loader.takeoff .loader-icon-ring {
    transform: scale(1.8);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.6s ease;
}
.loader.takeoff .loader-logo-wrapper,
.loader.takeoff .loader-progress-wrapper {
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.loader.takeoff .loader-orb-1 {
    transform: scale(1.4) translate(-10%, -10%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}
.loader.takeoff .loader-orb-2 {
    transform: scale(1.4) translate(10%, 10%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}
.loader.takeoff .loader-orb-3 {
    transform: scale(1.4) translate(-5%, 5%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}
.loader.takeoff .loader-bg {
    opacity: 0;
    transition: opacity 0.8s ease;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Cursor
   ======================================== */
.cursor, .cursor-dot {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

.cursor {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.cursor svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    filter: drop-shadow(0 0 3px rgba(255, 45, 85, 0.5));
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
}

.cursor.hover {
    width: 44px;
    height: 44px;
}

.cursor.hover svg {
    transform: rotate(0deg) scale(1.2);
}

.cursor-dot { width: 6px; height: 6px; background: var(--color-accent); }

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor, .cursor-dot { display: none; }
}

/* Hide default cursor when custom is active */
body.custom-cursor {
    cursor: none;
}

body.custom-cursor a,
body.custom-cursor button,
body.custom-cursor .btn,
body.custom-cursor input,
body.custom-cursor select,
body.custom-cursor textarea {
    cursor: none;
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-accent), #9E0000);
    border-radius: 4px;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9E0000, var(--color-accent));
}

/* ========================================
   Utility Classes
   ======================================== */
.container { max-width: var(--container-max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding) 0; position: relative; }
.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-accent);
    margin-bottom: 18px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.08), rgba(255, 45, 85, 0.03));
    border: 1px solid rgba(255, 45, 85, 0.2);
    border-radius: 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 45, 85, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-label:hover::before {
    left: 100%;
}

.section-label:hover {
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.15), rgba(255, 45, 85, 0.08));
    border-color: var(--color-accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 45, 85, 0.3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    text-align: center;
    padding-bottom: 18px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #9E0000);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(227, 0, 0, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(227, 0, 0, 0.4);
        width: 70px;
    }
    50% {
        box-shadow: 0 0 30px rgba(227, 0, 0, 0.7);
        width: 90px;
    }
}
.section-subtitle { font-size: 16px; color: #000000; margin-top: 12px; }

/* ========================================
   Reveal Animations
   ======================================== */
.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);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(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; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   Header
   ======================================== */
/* ========================================
   Header (Floating Glassmorphism)
   ======================================== */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--container-max-width);
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(10, 10, 69, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, background, padding, border-color, box-shadow;
}
.header.scrolled {
    top: 12px;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(10, 10, 69, 0.08);
    box-shadow: 
        0 16px 40px rgba(10, 10, 69, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
}
.header.hidden {
    transform: translate(-50%, -150%) scale(0.95);
    opacity: 0;
    pointer-events: none;
}
.header-container {
    width: 100%;
    max-width: 100% !important;
    padding: 0 8px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform var(--transition-base);
}
.logo:hover {
    transform: translateY(-1px);
}
.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-white);
    font-size: 11px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(227, 0, 0, 0.25);
    transition: all var(--transition-base);
}
.logo:hover .logo-icon {
    box-shadow: 0 6px 18px rgba(227, 0, 0, 0.4);
    transform: scale(1.05);
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    transition: color var(--transition-base);
}
.header.scrolled .logo-text {
    color: var(--color-primary);
}
.nav-list {
    display: flex;
    gap: 28px;
}
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
    transition: color var(--transition-base);
}
.header.scrolled .nav-link {
    color: var(--color-text-light);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), #9E0000);
    transition: width var(--transition-base);
    box-shadow: 0 0 8px rgba(227, 0, 0, 0.4);
}
.nav-link:hover {
    color: var(--color-white);
}
.header.scrolled .nav-link:hover {
    color: var(--color-primary);
}
.nav-link:hover::after {
    width: 100%;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    transition: all var(--transition-spring);
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
}
.header-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}
.header-cta:hover::before {
    opacity: 1;
}
.header-cta:hover {
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(227, 0, 0, 0.3);
    color: var(--color-white) !important;
}
.header.scrolled .header-cta {
    border-color: rgba(10, 10, 69, 0.12);
    background: transparent;
    color: var(--color-primary);
}
.header.scrolled .header-cta:hover {
    border-color: var(--color-accent);
}
.header-cta svg {
    width: 11px;
    height: 11px;
    transition: transform var(--transition-base);
}
.header-cta:hover svg {
    transform: translateX(3px);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.mobile-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--color-white);
    transition: background var(--transition-base);
}
.header.scrolled .mobile-toggle span {
    background: var(--color-primary);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 80%, rgba(227, 0, 0, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 20% 20%, rgba(10, 10, 69, 0.95) 0%, #04041a 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        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: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.hero-text {
    animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mobile-br {
    display: none;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}
.hero-title span {
    color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-accent) 30%, #FF5A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 100%;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}
.btn .glow-dot,
.btn .shine {
    display: none !important;
}
.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #B00000 100%);
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(227, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
}
.btn-primary svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover svg {
    transform: translateX(4px);
}
.btn-primary:hover {
    box-shadow: 0 12px 35px rgba(227, 0, 0, 0.45);
    transform: translateY(-2px);
}
.btn-white {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-white svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-white:hover svg {
    transform: translateX(4px);
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Secondary Button (for Light Theme sections) */
.btn-secondary {
    background: rgba(10, 10, 69, 0.03);
    border: 1px solid rgba(10, 10, 69, 0.12);
    color: var(--color-primary);
}
.btn-secondary:hover {
    background: rgba(10, 10, 69, 0.06);
    border-color: rgba(10, 10, 69, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 10, 69, 0.05);
}

/* ========================================
   Hero Image & Visuals
   ======================================== */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}
.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}
.hero-stat {
    text-align: left;
    background: rgba(15, 15, 45, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 18px 24px;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.hero-stat.clients {
    position: absolute;
    bottom: -10px;
    left: -40px;
}
.hero-stat.years {
    position: absolute;
    top: 50px;
    right: -40px;
}
.hero-stat:hover {
    background: rgba(15, 15, 45, 0.85);
    border-color: rgba(227, 0, 0, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(227, 0, 0, 0.15);
}
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 500;
}

/* ========================================
   Marquee (High-End Subdued Band)
   ======================================== */
.marquee {
    background: var(--color-off-white);
    border-top: 1px solid rgba(10, 10, 69, 0.05);
    border-bottom: 1px solid rgba(10, 10, 69, 0.05);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
}
.marquee-item {
    flex-shrink: 0;
    padding: 0 36px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary) !important;
    white-space: nowrap;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.marquee-item:hover {
    opacity: 1;
}
.marquee-item::after {
    content: '◆';
    margin-left: 36px;
    color: var(--color-accent);
    opacity: 0.8;
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ========================================
   Lead Magnet
   ======================================== */
.lead-magnet {
    background: var(--color-off-white);
    border-top: 1px solid var(--color-gray-200);
}
.lead-magnet-content {
    max-width: 600px; margin: 0 auto; text-align: center;
    padding: 32px 24px;
}
.lead-magnet-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 25px rgba(227, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float 3s ease-in-out infinite;
}
.lead-magnet-icon:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(227, 0, 0, 0.45);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.lead-magnet-icon svg { width: 20px; height: 20px; color: white; }
.lead-magnet-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.lead-magnet-text {
    font-size: 14px; color: #000000;
    line-height: 1.6; margin-bottom: 20px;
}

/* --- Interactive Quiz Styles --- */
.quiz-step {
    transition: opacity var(--transition-base), transform var(--transition-base);
    animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.quiz-progress-wrapper {
    margin-bottom: 24px;
    text-align: left;
}
.quiz-progress-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.quiz-progress-bar {
    width: 100%;
    height: 6px;
    background: var(--color-gray-200);
    border-radius: 3px;
    overflow: hidden;
}
.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 3px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-question-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}
.quiz-option-btn {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}
.quiz-option-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(227, 0, 0, 0.02);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.quiz-option-btn:active {
    transform: translateY(0);
}
.quiz-result-header {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}
.quiz-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 16px;
}
.quiz-badge.badge-red {
    background: rgba(227, 0, 0, 0.1);
    color: var(--color-accent);
}
.quiz-badge.badge-yellow {
    background: rgba(255, 193, 7, 0.1);
    color: #b58100;
}
.quiz-badge.badge-green {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}
.quiz-result-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.quiz-result-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}
.quiz-form-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: var(--shadow-md);
}
.quiz-form-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}
.quiz-form-subtitle {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}
.quiz-contact-form .form-group {
    margin-bottom: 16px;
}
.quiz-contact-form .form-consent {
    margin-top: 16px;
    margin-bottom: 24px;
}
.quiz-contact-form .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
}


/* ========================================
   Offer Section
   ======================================== */
.offer { 
    background: var(--color-off-white); 
    padding-bottom: 60px;
}
.offer-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.offer-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.offer-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
}
.offer-scroll {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}
.offer-scroll::-webkit-scrollbar { display: none; }
.offer-track {
    display: flex;
    gap: 28px;
    padding: 10px;
}
.offer-card {
    flex-shrink: 0;
    width: 310px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(10, 10, 69, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(10, 10, 69, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: center;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #9E0000);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 24px 50px rgba(10, 10, 69, 0.06),
        0 0 0 1px rgba(227, 0, 0, 0.03);
}

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

.offer-card-img {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.offer-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 69, 0.2) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: saturate(0.9);
}

.offer-card:hover .offer-card-img img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.offer-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: rgba(227, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(227, 0, 0, 0.18);
    color: var(--color-accent);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.offer-card-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-accent);
    animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.offer-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.offer-card-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.offer-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 12px 24px;
    background: rgba(10, 10, 69, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(10, 10, 69, 0.08);
    width: 100%;
}

.offer-card-link:hover {
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    color: white !important;
    box-shadow: 0 8px 20px rgba(227, 0, 0, 0.3);
    transform: translateY(-2px);
    border-color: transparent;
}

.offer-card-link svg {
    width: 11px;
    height: 11px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-card-link:hover svg {
    transform: translateX(4px);
    color: white;
}

.offer-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid rgba(10, 10, 69, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(10, 10, 69, 0.03);
    position: relative;
    z-index: 10;
}

.offer-btn:hover {
    transform: scale(1.08) translateY(-2px);
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(227, 0, 0, 0.3);
}

.offer-btn:hover svg { 
    color: white;
}

.offer-btn svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

/* ========================================
   About Section
   ======================================== */
.about { 
    background: var(--color-white); 
    overflow: hidden;
}
.about-bg-element {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.about-container { 
    display: grid; 
    grid-template-columns: 42% 58%; 
    gap: 60px; 
    align-items: center;
}
.about-image-col {
    position: relative;
}
.about-image-wrapper {
    position: relative;
}
.about-image-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.15) 0%, rgba(255, 45, 85, 0.05) 100%);
    border-radius: 20px;
    z-index: 0;
}
.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}
.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}
.about-stat-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(10, 10, 69, 0.08);
    padding: 12px 18px;
    border-radius: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 30px rgba(10, 10, 69, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-stat-badge:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(227, 0, 0, 0.25);
    box-shadow: 0 16px 40px rgba(10, 10, 69, 0.08);
}
.about-stat-badge-1 {
    top: -10px;
    left: -20px;
    animation: floatBadge 4s ease-in-out infinite;
}
.about-stat-badge-2 {
    bottom: 40px;
    right: -30px;
    animation: floatBadge 5s ease-in-out infinite 0.5s;
}
.about-stat-badge-3 {
    bottom: -10px;
    left: 30px;
    animation: floatBadge 4.5s ease-in-out infinite 1s;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.about-stat-badge:hover {
    animation-play-state: paused;
}
.badge-number {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.badge-text {
    font-size: 10px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
}
.about-content-col {
    padding: 20px 0;
}
.about-content {
    max-width: 520px;
}
.about-title {
    line-height: 1.2;
    margin-bottom: 20px;
}
.text-accent {
    color: var(--color-accent);
    position: relative;
}
.text-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), rgba(227, 0, 0, 0.2));
    border-radius: 2px;
}
.about-title {
    margin-bottom: 8px;
}
.about-text-wrapper {
    margin: 24px 0;
}
.about-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
}
.about-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    border-radius: 2px;
}
.about-features {
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; 
    margin: 28px 0 0;
}
.about-feature {
    display: flex;
    gap: 14px;
    text-align: left;
    padding: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(10, 10, 69, 0.06);
    box-shadow: 0 4px 15px rgba(10, 10, 69, 0.01), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    cursor: pointer;
}
.about-feature:hover {
    background: #ffffff;
    border-color: rgba(227, 0, 0, 0.2);
    box-shadow: 0 12px 30px rgba(10, 10, 69, 0.05);
    transform: translateY(-4px);
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(227, 0, 0, 0.08), rgba(227, 0, 0, 0.03));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-feature:hover .about-feature-icon {
    background: var(--color-accent);
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 6px 15px rgba(227, 0, 0, 0.25);
}
.about-feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    transition: color 0.3s ease;
}
.about-feature:hover .about-feature-icon svg {
    color: white;
}
.about-feature-title { 
    font-family: var(--font-heading); 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--color-primary); 
    margin-bottom: 2px; 
}
.about-feature-text {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* ========================================
   Testimonials (Premium Contrast Section)
   ======================================== */
.testimonials {
    background: radial-gradient(circle at center, #0B0B3A 0%, #050518 100%);
    position: relative; 
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute; 
    inset: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(227, 0, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(227, 0, 0, 0.05) 0%, transparent 40%);
}
.testimonials .section-title { 
    color: var(--color-white); 
    text-align: center; 
    display: block; 
}
.testimonials .section-title::after { 
    display: none; 
}
.testimonials-intro { 
    text-align: center; 
    color: rgba(255, 255, 255, 0.5); 
    font-size: 15px; 
    margin-bottom: 40px; 
}
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 28px; 
    max-width: 900px; 
    margin: 0 auto; 
    position: relative;
    z-index: 5;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px; 
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #9E0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 24px;
    font-family: serif;
    font-size: 100px;
    line-height: 1;
    color: rgba(227, 0, 0, 0.04);
    font-weight: 900;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
}
.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(227, 0, 0, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), 0 0 20px rgba(227, 0, 0, 0.06);
}
.testimonial-card:hover::before {
    transform: scaleX(1);
}
.testimonial-card:hover::after {
    color: rgba(227, 0, 0, 0.08);
    transform: scale(1.08);
}
.testimonial-stars { 
    display: flex; 
    gap: 3px; 
    margin-bottom: 16px; 
}
.testimonial-stars svg { 
    width: 15px; 
    height: 15px; 
    color: #FBBF24; 
    fill: #FBBF24; 
}
.testimonial-text { 
    font-size: 15px; 
    color: rgba(255, 255, 255, 0.85); 
    line-height: 1.7; 
    margin-bottom: 24px; 
    font-style: italic; 
    position: relative;
    z-index: 2;
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding-top: 16px; 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
}
.testimonial-avatar { 
    width: 38px; 
    height: 38px; 
    background: var(--color-accent); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 600; 
    color: var(--color-white); 
    font-size: 13px; 
    box-shadow: 0 4px 12px rgba(227, 0, 0, 0.3);
}
.author-name { 
    font-family: var(--font-heading); 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--color-white); 
}
.author-role { 
    font-size: 11px; 
    color: rgba(255, 255, 255, 0.4); 
}

/* ========================================
   FAQ (Accordion Cards)
   ======================================== */
.faq { 
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-off-white) 100%); 
}
.faq-header { 
    text-align: center; 
    margin-bottom: 40px; 
    max-width: 500px; 
    margin-left: auto; 
    margin-right: auto; 
}
.faq-subtitle { 
    font-size: 15px; 
    color: var(--color-text-light); 
    margin-top: 10px; 
}
.faq-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
    max-width: 680px; 
    margin: 0 auto; 
}
.faq-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px; 
    padding: 20px 24px;
    position: relative; 
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(10, 10, 69, 0.06);
    box-shadow: 0 4px 15px rgba(10, 10, 69, 0.01), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    cursor: pointer;
}
.faq-card::before {
    content: '';
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #9E0000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-card:hover {
    transform: translateY(-2px);
    border-color: rgba(227, 0, 0, 0.15);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(10, 10, 69, 0.04);
}
.faq-card:hover::before { 
    transform: scaleX(1); 
}
.faq-card-number {
    position: absolute; 
    top: 16px; 
    right: 20px;
    font-family: var(--font-heading); 
    font-size: 28px; 
    font-weight: 800;
    color: rgba(227, 0, 0, 0.04); 
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-card:hover .faq-card-number {
    color: rgba(227, 0, 0, 0.08);
}
.faq-card-icon {
    width: 40px; 
    height: 40px;
    background: rgba(227, 0, 0, 0.05);
    border-radius: 10px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-card:hover .faq-card-icon {
    background: var(--color-accent);
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 6px 15px rgba(227, 0, 0, 0.25);
}
.faq-card-icon svg { 
    width: 20px; 
    height: 20px; 
    color: var(--color-accent); 
    transition: color 0.3s ease; 
}
.faq-card:hover .faq-card-icon svg { 
    color: white; 
}
.faq-card-question { 
    font-family: var(--font-heading); 
    font-size: 16px; 
    font-weight: 600; 
    color: var(--color-primary); 
    margin-bottom: 0px; 
}
.faq-card-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    opacity: 0; 
}
.faq-card:hover .faq-card-answer { 
    max-height: 150px; 
    opacity: 1; 
    margin-top: 12px; 
}
.faq-card-answer p { 
    font-size: 14px; 
    color: var(--color-text-light); 
    line-height: 1.6; 
    padding-top: 12px; 
    border-top: 1px solid rgba(10, 10, 69, 0.06); 
}

/* ========================================
   Contact
   ======================================== */
.contact {
    position: relative;
    background: radial-gradient(circle at center, #0B0B3A 0%, #050518 100%);
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(227, 0, 0, 0.08) 0%, transparent 60%);
    animation: contactPulse 10s ease-in-out infinite;
}
.contact::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(227, 0, 0, 0.05) 0%, transparent 60%);
    animation: contactPulse 12s ease-in-out infinite reverse;
}
@keyframes contactPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}
.contact-container {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: stretch;
    max-width: 1000px; margin: 0 auto;
}
.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px; padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.contact-card-header {
    margin-bottom: 24px;
}
.contact-card-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(227, 0, 0, 0.3);
}
.contact-card-icon svg { width: 22px; height: 22px; color: white; }
.contact-title { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--color-white); margin-bottom: 10px; letter-spacing: -0.02em; }
.contact-subtitle { font-size: 14px; color: rgba(255, 255, 255, 0.75); line-height: 1.6; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-detail-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.contact-detail-item:hover {
    background: rgba(227, 0, 0, 0.08);
    border-color: rgba(227, 0, 0, 0.25);
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-detail-icon {
    width: 40px; height: 40px;
    background: rgba(227, 0, 0, 0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-detail-item:hover .contact-detail-icon {
    background: var(--color-accent);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 15px rgba(227, 0, 0, 0.25);
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--color-accent); transition: color 0.4s ease; }
.contact-detail-item:hover .contact-detail-icon svg { color: white; }
.contact-detail-content { flex: 1; }
.contact-detail-label { font-size: 11px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 1px; }
.contact-detail-value { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--color-white); }
.contact-detail-arrow { width: 18px; height: 18px; color: rgba(255, 255, 255, 0.2); transition: all 0.4s ease; }
.contact-detail-arrow svg { width: 100%; height: 100%; }
.contact-detail-item:hover .contact-detail-arrow { color: var(--color-accent); transform: translateX(3px); }
.contact-social { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08); margin-top: 24px; }
.contact-social-label { font-size: 11px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; display: block; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-4px) rotate(3deg);
    box-shadow: 0 8px 20px rgba(227, 0, 0, 0.3);
}
.social-link svg { width: 16px; height: 16px; color: var(--color-white); }
.contact-form {
    background: var(--color-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(10, 10, 69, 0.05);
}
.form-header { margin-bottom: 24px; }
.form-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--color-primary); margin-bottom: 4px; }
.form-subtitle { font-size: 13px; color: var(--color-text-light); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 600; color: var(--color-text-light); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.form-input, .form-textarea {
    width: 100%; padding: 14px 16px;
    font-family: inherit; font-size: 16px;
    color: var(--color-primary);
    background: rgba(10, 10, 69, 0.02);
    border: 1px solid rgba(10, 10, 69, 0.08);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-gray-400); }
.form-input:focus, .form-textarea:focus {
    outline: none;
    background: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 
        0 0 12px rgba(227, 0, 0, 0.2),
        0 0 0 1px rgba(227, 0, 0, 0.05);
    transform: translateY(-2px);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-input:hover, .form-textarea:hover {
    background: rgba(10, 10, 69, 0.04);
    border-color: rgba(227, 0, 0, 0.15);
}

.form-consent {
    margin-bottom: 16px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.consent-checkbox input {
    display: none;
}

.consent-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(10, 10, 69, 0.15);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.consent-checkbox input:checked + .consent-custom {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.consent-checkbox input:checked + .consent-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-text a {
    color: var(--color-accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.consent-text a:hover {
    color: var(--color-accent-dark);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    color: white;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(227, 0, 0, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(227, 0, 0, 0.45);
}

.submit-btn-text {
    position: relative;
    z-index: 1;
}

.submit-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submit-btn-icon svg {
    width: 14px;
    height: 14px;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(227, 0, 0, 0.15);
}

.submit-btn:disabled::before {
    display: none;
}

.submit-btn:hover:not(:disabled) .submit-btn-icon {
    background: white;
    transform: scale(1.1) rotate(-10deg);
}

.submit-btn:hover:not(:disabled) .submit-btn-icon svg {
    transform: translateX(3px) rotate(-45deg);
    color: var(--color-accent);
}

.btn-full { width: 100%; }

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(227, 0, 0, 0.3);
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.success-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}

/* ========================================
   Copy Notification
   ======================================== */
.copy-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-accent), #9E0000);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(227, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.copy-notification svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.copy-notification span {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   Footer
   ======================================== */
.footer { background: var(--color-primary-dark); color: var(--color-white); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-mobile { display: none; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 36px; height: 36px; background: var(--color-accent); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--color-white); font-size: 12px; border-radius: 8px; }
.footer-logo-text { font-family: var(--font-heading); font-size: 15px; font-weight: 700; letter-spacing: 2px; }
.footer-description { font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.7; }
.footer-heading { font-family: var(--font-heading); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; color: var(--color-white); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 13px; color: rgba(255, 255, 255, 0.5); transition: all var(--transition-fast); }
.footer-link:hover { color: var(--color-accent); padding-left: 6px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--color-accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; }
.footer-copyright { font-size: 12px; color: rgba(255, 255, 255, 0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255, 255, 255, 0.35); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--color-accent); }

.footer-accordion-btn { background: none; border: none; cursor: pointer; color: var(--color-white); font-family: inherit; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.footer-accordion-btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.footer-accordion-item.active .footer-accordion-btn svg { transform: rotate(180deg); }
.footer-accordion-content { display: none; padding-bottom: 16px; }
.footer-accordion-item.active .footer-accordion-content { display: block; }
.footer-accordion { border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-accordion-item:last-child { border-bottom: none; }

/* ========================================
   Modal
   ======================================== */
.modal { display: none; position: fixed; inset: 0; background: rgba(13, 13, 26, 0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 2000; align-items: center; justify-content: center; padding: 24px; }
.modal.active { display: flex; }
.modal-content { background: var(--color-white); border-radius: 16px; max-width: 500px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: modalSlide 0.4s ease; }
@keyframes modalSlide { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--color-gray-100); display: flex; align-items: center; justify-content: center; transition: all var(--transition-fast); }
.modal-close:hover { background: var(--color-accent); color: var(--color-white); }
.modal-close svg { width: 18px; height: 18px; }
.modal-header { padding: 24px 24px 0; }
.modal-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.modal-description { font-size: 14px; color: #000000; line-height: 1.6; padding-bottom: 20px; border-bottom: 1px solid var(--color-gray-200); }
.modal-body { padding: 20px 24px 24px; }
.modal-options { display: flex; flex-direction: column; gap: 12px; }
.modal-option { border: 2px solid var(--color-gray-200); border-radius: 10px; overflow: hidden; transition: all var(--transition-fast); cursor: pointer; }
.modal-option:hover { border-color: var(--color-accent); }
.modal-option.active { border-color: var(--color-accent); background: rgba(255, 45, 85, 0.03); }
.option-content { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; }
.option-name { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--color-primary); }
.option-price { font-size: 13px; font-weight: 600; color: var(--color-accent); }
.modal-footer { padding: 20px 24px; border-top: 1px solid var(--color-gray-200); }

/* ========================================
   Responsive
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .offer-track { gap: 24px; }
    .offer-card { width: 280px; }
    .offer-header::before { width: 160px; height: 160px; }
}

/* Desktop — full-screen header */
@media (min-width: 1025px) {
    .header .container {
        max-width: 100%;
        margin: 0;
        padding: 0 48px;
    }
    .nav-list {
        gap: 40px;
        flex: 1;
        justify-content: center;
        margin: 0 32px;
    }
    .header-cta {
        flex-shrink: 0;
    }

    /* Hero — text left edge, photo right edge */
    .hero-content {
        grid-template-columns: 1fr auto;
        padding: 40px 0;
        align-items: center;
    }
    .hero-text {
        padding-left: 0;
        margin-left: -12px;
        max-width: 720px;
    }
    .hero-visual {
        padding-right: 0;
        margin-right: 16px;
        max-width: 440px;
        grid-column: 2;
    }
}

/* Tablets landscape */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text { text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons {
        display: flex !important;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
        width: 100%;
    }
    .hero-visual { max-width: 320px; margin: 0 auto; }
    .hero-stats {
        display: flex !important;
        position: relative;
        inset: auto;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
        pointer-events: auto;
        z-index: 10;
        width: 100%;
    }
    .hero-stat {
        position: relative !important;
        inset: auto !important;
        margin: 0 !important;
        flex: 1;
        max-width: 150px;
        text-align: center;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .hero-stat-number {
        color: var(--color-white);
        font-size: 24px;
        font-weight: 800;
        font-family: var(--font-heading);
    }
    .hero-stat-label {
        color: rgba(255, 255, 255, 0.5);
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 4px;
    }
    .hero-stat:hover {
        transform: none !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }

    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-image-col { max-width: 400px; margin: 0 auto; }
    .about-content-col { text-align: center; }
    .about-content { max-width: 100%; }
    .about-features { max-width: 500px; margin: 28px auto 0; }
    .about-stat-badge-1 { left: -10px; }
    .about-stat-badge-2 { right: -10px; }

    .offer-wrapper { padding: 0 20px; gap: 16px; }
    .offer-card { width: 270px; }
    .offer-btn { width: 48px; height: 48px; }
    .section-label { padding: 8px 18px; font-size: 9px; letter-spacing: 3px; }
    .section-title { font-size: clamp(24px, 4vw, 32px); }
}

/* Tablets portrait */
@media (max-width: 768px) {
    :root { --section-padding: 48px; }
    .nav-list, .header-cta { display: none; }
    .marquee-content {
        animation: marquee 12s linear infinite !important;
    }
    
    .loader-particles,
    #particles {
        display: none !important;
    }
    
    .header {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        background: #04041a !important; /* solid navy */
        padding: 0 !important;
    }
    .header.scrolled {
        top: 0 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-bottom: 1px solid rgba(10, 10, 69, 0.08) !important;
        box-shadow: 0 4px 20px rgba(10, 10, 69, 0.05) !important;
        padding: 0 !important;
    }
    .header-container {
        padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 12px 16px !important;
        position: relative;
    }
    .mobile-toggle { 
        display: flex; 
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        gap: 5px; 
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        z-index: 1001;
        cursor: pointer;
        background: transparent;
        border: none;
    }
    .mobile-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--color-white);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Header container needs position: relative for absolute children */
    .header .container,
    .header-container {
        position: relative;
    }
    
    /* Mobile menu styles */
    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute !important;
        top: 100% !important; /* Align exactly at the bottom edge of the solid header */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        background: #04041a !important; /* Solid navy matching the header */
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 0 0 24px 24px !important; /* Rounded only at the bottom */
        padding: 24px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
        gap: 8px;
        z-index: 999;
        transition: all 0.3s ease;
    }
    .nav-list.active .nav-link {
        color: #ffffff;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-weight: 500;
        text-align: center;
        width: 100%;
        transition: color 0.3s ease;
    }
    .nav-list.active .nav-link:last-child {
        border-bottom: none;
    }
    .nav-list.active .nav-link:hover {
        color: var(--color-accent);
    }
    
    .header.scrolled .nav-list.active {
        background: rgba(255, 255, 255, 0.98) !important; /* Solid white background matching scrolled header */
        border-color: rgba(10, 10, 69, 0.08) !important;
        border-bottom: 1px solid rgba(10, 10, 69, 0.08) !important;
        box-shadow: 0 20px 40px rgba(10, 10, 69, 0.08) !important;
    }
    .header.scrolled .nav-list.active .nav-link {
        color: var(--color-primary);
        border-bottom: 1px solid rgba(10, 10, 69, 0.06);
    }
    .header.scrolled .nav-list.active .nav-link:last-child {
        border-bottom: none;
    }
    .header.scrolled .nav-list.active .nav-link:hover {
        color: var(--color-accent);
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 0 0 !important; /* Dock content directly under the flat header */
        min-height: auto !important;
        background: #04041a !important; /* Dark navy */
        overflow: visible !important; /* Allow buttons to overflow the bottom */
        position: relative !important;
    }
    .hero-bg {
        opacity: 0.2 !important;
    }
    .hero-content {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important; /* Start content layout from bottom */
        align-items: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 16px 12px 16px !important; /* Text block pushed right down to the bottom boundary */
        min-height: 520px !important; /* Taller to give face breathing room */
    }
    .hero-text {
        text-align: left !important;
        padding: 0 !important;
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important; /* Align elements to the bottom */
        width: 100% !important;
        max-width: 100% !important; /* Expand wrapper so buttons can span full width */
        position: relative !important;
        z-index: 3 !important;
        flex-grow: 1 !important; /* Expand to fill full vertical container height */
    }
    .hero-label {
        align-self: flex-start !important;
        font-size: 8px !important;
        padding: 4px 8px !important;
        margin-bottom: 8px !important;
        letter-spacing: 1px !important;
        max-width: 300px !important;
    }
    .hero-title {
        font-size: clamp(32px, 9.5vw, 42px) !important; /* Made title text even larger */
        line-height: 1.25 !important;
        text-align: left !important;
        margin-bottom: 12px !important;
        max-width: 350px !important; /* Constrain text to left to not overlap Jacek's face */
    }
    .hero-title span {
        display: inline !important;
        color: var(--color-accent) !important;
        white-space: nowrap !important; /* Force 'odzyskać kontrolę' to stay on a single line */
    }
    .mobile-br {
        display: inline !important;
    }
    .hero-description {
        font-size: 13px !important; /* Keep font size readable */
        line-height: 1.4 !important;
        text-align: center !important; /* Center the bottom services list */
        margin-bottom: 16px !important;
        color: rgba(255, 255, 255, 0.8) !important; /* Slightly brighter contrast */
        max-width: 100% !important; /* Span full width to center across the viewport */
        width: 100% !important;
    }
    .hero-buttons {
        position: absolute !important;
        bottom: -120px !important; /* Hangs below the bottom of the hero section fully in the white area */
        left: 16px !important;
        right: 16px !important;
        width: auto !important;
        max-width: none !important;
        display: flex !important;
        flex-direction: row-reverse !important; /* Swap order: Poznaj ofertę on left, Umów on right */
        gap: 12px !important;
        z-index: 20 !important;
        margin-top: 0 !important;
    }
    .hero-buttons .btn {
        flex: 1 !important; /* Share width equally */
        width: auto !important;
        justify-content: center !important;
        padding: 12px 6px !important;
        font-size: 11px !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 100px !important;
        transition: transform 0.2s ease, background-color 0.3s ease, border-color 0.3s ease !important;
        white-space: nowrap !important; /* Prevent text wrapping */
    }
    .hero-buttons .btn:active {
        transform: scale(0.96) !important;
    }
    .hero-buttons .btn-primary {
        background: linear-gradient(135deg, #E30000 0%, #B00000 100%) !important; /* Solid Crimson Red */
        color: #ffffff !important;
        border: none !important;
        box-shadow: 0 8px 25px rgba(227, 0, 0, 0.35) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    }
    .hero-buttons .btn-primary svg {
        color: #ffffff !important;
    }
    .hero-buttons .btn-white {
        background: #ffffff !important; /* Solid white background for perfect contrast against page backgrounds */
        border: 1.5px solid var(--color-primary) !important; /* Dark navy border */
        color: var(--color-primary) !important; /* Dark navy text */
        box-shadow: 0 4px 15px rgba(10, 10, 69, 0.05) !important;
        text-shadow: none !important;
    }
    .hero-buttons .btn-white svg {
        color: var(--color-primary) !important;
    }
    .lead-magnet {
        padding-top: 125px !important; /* Spacing adjusted to clear buttons with a perfect 48px visual gap */
    }
    .hero-visual {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: none !important; /* Wipes out the 320px constraint */
        height: 100% !important;
        z-index: 1 !important;
        margin: 0 !important;
        order: 2 !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        pointer-events: none !important;
    }
    .hero-image-wrapper {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
    }
    .hero-image-wrapper::after {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(to top, 
            rgba(4, 4, 26, 0.95) 0%, 
            rgba(4, 4, 26, 0.85) 45%, 
            rgba(4, 4, 26, 0.3) 70%, 
            transparent 100%) !important;
        z-index: 2 !important;
    }
    .hero-image {
        border-radius: 0 !important;
        border: none !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important; /* Center Jacek in frame */
        display: block !important;
        aspect-ratio: auto !important;
        box-shadow: none !important;
        transform: scale(1.2) translateY(-6%) !important; /* Zoom in slightly and seat Jacek higher in the frame */
    }
    .hero-stats {
        display: none !important;
    }
    
    .offer-wrapper { padding: 0 12px; gap: 10px; }
    .offer-scroll { padding: 15px 5px; }
    .offer-track { gap: 16px; padding: 5px; }
    .offer-card { width: 240px; border-radius: 18px; }
    .offer-card-img { aspect-ratio: 16/12; }
    .offer-card-body { padding: 16px; }
    .offer-card-title { font-size: 14px; }
    .offer-card-desc { font-size: 11px; margin-bottom: 14px; }
    .offer-card-link { padding: 10px 16px; font-size: 9px; }
    .offer-card-badge { padding: 6px 10px; font-size: 7px; top: 12px; left: 12px; }
    .offer-btn { width: 40px; height: 40px; }
    .offer-btn svg { width: 18px; height: 18px; }
    .offer-header { margin-bottom: 32px; }
    .offer-header::before { width: 100px; height: 100px; top: -25px; }
    
    .section-label { padding: 8px 14px; font-size: 8px; letter-spacing: 2px; margin-bottom: 14px; }
    .section-title { font-size: clamp(22px, 5vw, 28px); padding-bottom: 14px; }
    .section-title::after { width: 50px; height: 3px; }
    
    .footer-grid { display: none; }
    .footer-mobile { display: block; }
    .footer { padding: 32px 0 20px; }
    .footer-bottom { flex-direction: column; gap: 12px; padding-top: 20px; text-align: center; }
    .footer-copyright { font-size: 11px; }
    .footer-legal { gap: 16px; justify-content: center; }
    .footer-legal a { font-size: 11px; }
    .footer-brand { text-align: center; margin-bottom: 20px; }
    .footer-logo { justify-content: center; margin-bottom: 12px; }
    .footer-logo-icon { width: 32px; height: 32px; font-size: 11px; }
    .footer-logo-text { font-size: 13px; }
    .footer-description { font-size: 12px; max-width: 240px; margin: 0 auto; }
    .about-features { grid-template-columns: 1fr; max-width: 300px; }
    .about-image-col {
        max-width: 300px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        margin: 0 auto !important;
    }
    .about-stat-badge {
        display: flex !important;
        position: absolute !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 !important;
        width: auto !important;
        max-width: none !important;
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
        border-radius: 14px !important;
        padding: 8px 14px !important;
        gap: 2px !important;
        text-align: center !important;
        transform: none !important;
        z-index: 3 !important;
    }
    .about-stat-badge-1 {
        top: -14px !important;
        left: -24px !important;
        right: auto !important;
        bottom: auto !important;
    }
    .about-stat-badge-2 {
        top: 38% !important;
        right: -28px !important;
        left: auto !important;
        bottom: auto !important;
    }
    .about-stat-badge-3 {
        bottom: -14px !important;
        left: -24px !important;
        transform: none !important;
        right: auto !important;
        top: auto !important;
    }
    .about-stat-badge .badge-number {
        font-size: 18px !important;
        font-weight: 800 !important;
        color: var(--color-accent) !important;
        line-height: 1 !important;
        font-family: var(--font-heading) !important;
    }
    .about-stat-badge .badge-text {
        font-size: 7px !important;
        color: var(--color-text-light) !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
    }
    .about-image-bg { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .contact-card { padding: 24px; }
    .contact-card-header { text-align: center; }
    .contact-card-icon { margin: 0 auto 16px; }
    .contact-title { text-align: center; font-size: 28px; }
    .contact-subtitle { text-align: center; }
    .contact-details { text-align: left; }
    .contact-social { text-align: center; }
    .social-links { justify-content: center; }
    .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
    :root { --section-padding: 40px; }
    .container { padding: 0 16px; }
}

/* Extra small devices */
@media (max-width: 360px) {
    .offer-card { width: 180px; }
    .offer-card-title { font-size: 12px; }
    .section-title { font-size: 18px; }
    .hero-title { font-size: 20px; }
    .hero-description { font-size: 12px; }
}

/* Fix for Firefox - scrollbar styling */
.offer-scroll {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gray-300) transparent;
}

/* Fix for IE11 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .offer-track { display: -ms-flexbox; }
    .offer-card { -ms-flex: 0 0 auto; }
}

/* Print styles */
@media print {
    .offer-btn,
    .mobile-toggle { display: none; }
    .offer-card { break-inside: avoid; }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .offer-card { border: 2px solid var(--color-primary); }
    .section-title::after { background: var(--color-accent); }
}

/* ========================================
   Blog Section
   ======================================== */
.blog-hero-section {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
    padding: 160px 0 80px;
    text-align: center;
}
.blog-hero-section .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
}
.blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}
.blog-hero-title span {
    color: var(--color-accent);
}
.blog-hero-desc {
    font-size: 18px;
    color: #ffffff;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.blog-list-section {
    padding: 80px 0 120px;
    background: var(--color-off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 45, 85, 0.1);
    border-color: rgba(255, 45, 85, 0.2);
}

.blog-card-image {
    height: 220px;
    position: relative;
    background: linear-gradient(135deg, #1A1A2E, #0A0A45);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card:nth-child(2n) .blog-card-image { background: linear-gradient(135deg, #2d132c, #801336); }
.blog-card:nth-child(3n) .blog-card-image { background: linear-gradient(135deg, #1b2838, #2d4a3e); }
.blog-card:nth-child(4n) .blog-card-image { background: linear-gradient(135deg, #2c1810, #5c3a21); }

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}

.blog-card-icon {
    font-size: 64px;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card:hover .blog-card-icon {
    transform: scale(1.2) rotate(5deg);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: var(--color-accent);
}

.blog-card-excerpt {
    font-size: 14px;
    color: #000000;
    opacity: 1;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-200);
}

.blog-card-read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-read-more {
    color: var(--color-accent);
}

.blog-card-read-more svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-read-more svg {
    transform: translateX(4px);
}

/* Featured Blog Post */
.blog-featured {
    margin-bottom: 60px;
}
.blog-featured .blog-card {
    flex-direction: row;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}
.blog-featured .blog-card-image {
    width: 50%;
    height: 100%;
    min-height: 350px;
}
.blog-featured .blog-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center;
}
.blog-featured .blog-card-content {
    width: 50%;
    padding: 50px;
    justify-content: center;
}
.blog-featured .blog-card-title {
    font-size: 28px;
}
.blog-featured .blog-card-excerpt {
    font-size: 16px;
    -webkit-line-clamp: 4;
}

@media (max-width: 900px) {
    .blog-featured .blog-card {
        flex-direction: column;
    }
    .blog-featured .blog-card-image {
        width: 100%;
        min-height: 250px;
    }
    .blog-featured .blog-card-content {
        width: 100%;
        padding: 30px;
    }
}

/* ========================================
   Blog Post Single
   ======================================== */
.post-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 140px 24px 80px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.back-link:hover {
    color: var(--color-accent);
}
.back-link svg {
    transition: transform 0.3s;
}
.back-link:hover svg {
    transform: translateX(-4px);
}
.post-header {
    text-align: center;
    margin-bottom: 60px;
}
.post-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.1), rgba(255, 45, 85, 0.05));
    border: 1px solid rgba(255, 45, 85, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.post-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}
.post-meta {
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
}
.post-content p {
    margin-bottom: 24px;
}
.post-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 60px 0 24px;
}
.post-content strong {
    color: var(--color-primary);
    font-weight: 700;
}
.post-content ul, .post-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}
.post-content li {
    margin-bottom: 10px;
}

/* ========================================
   Blog Images
   ======================================== */
.blog-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
}

.blog-card-image .blog-card-icon {
    display: none;
}

.post-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 48px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
