/* ============================================
   GEARGUARD PREMIUM SCROLL STYLES
   Inspired by RMDU Mobile Design
   ============================================ */

/* ========== Google Fonts Import ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

/* ========== ROOT VARIABLES ========== */
:root {
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --white: #FFFFFF;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-muted: #FFFFFF;
    --accent-cyan: #00d4ff;
    --accent-purple: #a855f7;
    --danger: #ff6b6b;
    --success: #4ecdc4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

/* ========== CUSTOM HAMMER CURSOR ========== */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    font-size: 32px;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: transform 0.15s ease;
}

.custom-cursor::before {
    content: '🔨';
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) rotate(-15deg) scale(1.3);
}

/* ========== SCROLL CONTAINER ========== */
.scroll-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    width: 100vw;
    scrollbar-width: none;
    position: relative;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

/* ========== FULL SCREEN SECTIONS ========== */
.full-screen-section {
    height: 100vh;
    min-height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* ========== ANIMATED BACKGROUNDS ========== */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-gradient-1 {
    background: #0a0a0a;
}

.bg-gradient-2 {
    background: #0a0a0a;
}

.bg-gradient-3 {
    background: #0a0a0a;
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* ========== 3D HERO ANIMATIONS ========== */
.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    perspective: 1000px;
    overflow: hidden;
}

/* Floating Gears with 3D rotation */
.floating-gear {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: floatRotate3D 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    transform-style: preserve-3d;
}

.gear-1 {
    top: 15%;
    right: 10%;
    font-size: 4rem;
    animation-delay: 0s;
    animation-duration: 10s;
}

.gear-2 {
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    animation-delay: -2s;
    animation-duration: 8s;
}

.gear-3 {
    top: 75%;
    right: 30%;
    font-size: 3.5rem;
    animation-delay: -4s;
    animation-duration: 12s;
}

.gear-4 {
    top: 20%;
    right: 35%;
    font-size: 2rem;
    animation-delay: -1s;
    animation-duration: 9s;
}

.gear-5 {
    top: 45%;
    right: 5%;
    font-size: 2.5rem;
    animation-delay: -3s;
    animation-duration: 11s;
}

@keyframes floatRotate3D {

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

    25% {
        transform: translateY(-30px) rotateY(90deg) rotateX(15deg);
    }

    50% {
        transform: translateY(-15px) rotateY(180deg) rotateX(0deg);
    }

    75% {
        transform: translateY(-40px) rotateY(270deg) rotateX(-15deg);
    }
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 20%;
    animation-delay: -1.5s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 40%;
    animation-delay: -3s;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

/* Animated Lines */
.animated-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    animation: lineSlide 3s ease-in-out infinite;
}

.line-1 {
    width: 200px;
    top: 30%;
    right: 5%;
    animation-delay: 0s;
}

.line-2 {
    width: 150px;
    top: 50%;
    right: 25%;
    animation-delay: -1s;
    transform: rotate(45deg);
}

.line-3 {
    width: 180px;
    top: 70%;
    right: 10%;
    animation-delay: -2s;
    transform: rotate(-30deg);
}

@keyframes lineSlide {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-50px);
    }

    50% {
        opacity: 1;
        transform: translateX(50px);
    }
}

/* 3D Rotating Ring */
.rotating-ring {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transform-style: preserve-3d;
    animation: ringRotate3D 15s linear infinite;
}

.rotating-ring::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    animation: ringRotate3D 12s linear infinite reverse;
}

.rotating-ring::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: ringRotate3D 8s linear infinite;
}

@keyframes ringRotate3D {
    0% {
        transform: rotateX(70deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(70deg) rotateZ(360deg);
    }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Hero Content 3D styling */
.hero-3d-content {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Entrance Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* 3D Button Effects */
.btn-3d {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-3d:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.btn-primary.btn-3d {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-3d::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.5s ease;
}

.btn-primary.btn-3d:hover::before {
    left: 100%;
}

.btn-secondary.btn-3d:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4), inset 0 0 20px rgba(255, 215, 0, 0.1);
}

/* ========== HEADER / NAVBAR - PREMIUM GLASSMORPHISM ========== */
.premium-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1400px;
    z-index: 10000;

    /* Ultra-transparent glass effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);

    /* Premium border with gradient */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;

    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);

    /* Subtle outer glow */
    box-shadow:
        0 0 0 1px rgba(255, 215, 0, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated gradient border effect */
.premium-header::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0.15) 0%,
            transparent 25%,
            transparent 75%,
            rgba(255, 215, 0, 0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-header:hover::before {
    opacity: 1;
}

/* Subtle inner glow on top edge */
.premium-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    border-radius: 50%;
}

/* Scrolled state - more opaque and compact */
.premium-header.scrolled {
    top: 12px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    padding: 0.7rem 2rem;
    border-color: rgba(255, 215, 0, 0.12);
    box-shadow:
        0 0 0 1px rgba(255, 215, 0, 0.08),
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    text-transform: uppercase;
}

/* Subtle glass background on hover */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

/* Animated underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.nav-link:hover::after {
    width: 80%;
}

/* Premium CTA Button */
.nav-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 0.65rem 1.6rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(255, 215, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Shine effect */
.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
}

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

.nav-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.user-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-logout {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(255, 107, 107, 0.25);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== SECTION INDICATORS ========== */
.section-indicators {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.section-indicator:hover {
    border-color: var(--white);
    transform: scale(1.3);
}

.section-indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* ========== HERO SECTION ========== */
.section-hero {
    padding: 0 5rem;
    justify-content: flex-start;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(255, 215, 0, 0.3);
}

.hero-subheadline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

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

.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.arrow-down {
    font-size: 1.5rem;
    animation: arrowBounce 1.5s infinite;
}

@keyframes bounce {

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

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

@keyframes arrowBounce {

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

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ========== CONTENT SECTIONS ========== */
.section-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 2rem 2rem;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

/* ========== GLASS CARDS ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ========== FEATURE CARDS GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
    width: 100%;
}

.feature-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 160px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    flex-grow: 1;
}

/* ========== COMPARISON ROW ========== */
.comparison-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.comparison-box {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.comparison-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.comparison-box ul {
    list-style: none;
    padding: 0;
}

.comparison-box li {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-box.before li::before {
    content: '❌';
}

.comparison-box.after li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.vs-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--black);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

/* ========== CTA SECTION ========== */
.section-cta .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subheadline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.cta-brand {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.cta-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========== PREMIUM FOOTER ========== */
.premium-footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    scroll-snap-align: start;
}

.footer-brand {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-column h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--gold) !important;
    font-style: italic;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3.5rem;
    }

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

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .premium-header {
        padding: 1rem 1.5rem;
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section-hero {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding-top: 120px;
    }

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

    .hero-subheadline {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .comparison-row {
        flex-direction: column;
    }

    .vs-badge {
        transform: rotate(90deg);
    }

    .section-indicators {
        right: 1rem;
        gap: 1rem;
    }

    .section-indicator {
        width: 10px;
        height: 10px;
    }

    .cta-headline {
        font-size: 2.5rem;
    }

    .cta-subheadline {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}