:root {
    /* Rich 2025 Palette - More Expressive Depth */
    --color-bg-base: #0f172a;
    /* Brighter start/end for vibration */
    --color-bg-gradient-start: #2e1065;
    /* Deep Violet */
    --color-bg-gradient-end: #0f172a;
    /* Slate 900 */

    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;

    /* Vibrant Animated Orbs */
    --orb-1: rgba(99, 102, 241, 0.6);
    /* Indigo 500 */
    --orb-2: rgba(192, 38, 211, 0.5);
    /* Fuchsia 600 */
    --orb-3: rgba(14, 165, 233, 0.5);
    /* Sky 500 */

    /* Glassmorphism Polish */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.2);

    /* Neon Accents */
    --neon-ctas: #6366F1;
    /* Indigo 500 */
    --neon-ctas-hover: #4F46E5;
    /* Indigo 600 */
    --neon-glow: 0 0 30px rgba(99, 102, 241, 0.5);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Animation settings */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-base);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    /* More expressive gradient */
    background: var(--color-bg-base);
}

/* Dynamic Background Elements */
/* Dynamic Background Elements - Lava Lamp */
.mesh-bg {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: var(--color-bg-base);
    transition: transform 0.1s linear;
    /* Smooth parallax */
}

/* Orbs Base */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    /* Slightly less blur for more definition */
    opacity: 0.9;
    /* Increased visibility */
    mix-blend-mode: screen;
    /* Critical for color mixing */
    animation: morphOrb 20s infinite ease-in-out alternate;
    will-change: transform, border-radius;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--orb-1);
    /* Indigo */
    animation-duration: 25s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: var(--orb-2);
    /* Fuchsia */
    animation-duration: 30s;
    animation-delay: -5s;
}

.orb-3 {
    top: 30%;
    left: 40%;
    width: 50vw;
    height: 50vw;
    background: var(--orb-3);
    /* Sky */
    animation-duration: 28s;
    animation-delay: -10s;
}

.orb-4 {
    bottom: 10%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: rgba(124, 58, 237, 0.4);
    /* Violet 600 */
    animation-duration: 22s;
    animation-delay: -2s;
}

/* Morphing Animation */
@keyframes morphOrb {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        transform: translate(5%, 10%) scale(1.1);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        transform: translate(-5%, 20%) scale(0.9);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    75% {
        transform: translate(10%, -10%) scale(1.05);
        border-radius: 40% 60% 70% 30% / 40% 80% 60% 50%;
    }

    100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Tech Lines Overlay (Static Grid) */
.tech-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    opacity: 0.4;
    pointer-events: none;
    animation: pulseGrid 12s infinite alternate;
}

@keyframes pulseGrid {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.5;
    }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Full Screen Sections */
.section,
#process {
    min-height: 120vh;
    /* Extended to isolate curve view */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 0 4rem 0;
    /* Added top padding */
}

#oferta {
    scroll-margin-top: 30px;
    /* Lands higher per user request */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
    /* Clean background - no noise */
}

/* Hero Section Full Height */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:not(.btn-glow):hover {
    text-shadow:
        0 0 15px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.3);
}

.btn-glow {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--neon-ctas);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 99px;
    text-decoration: none;
    box-shadow: var(--neon-glow);
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.btn-glow:hover {
    background-color: var(--neon-ctas-hover);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.7);
    transform: translateY(-2px);
}

.hero-section {
    min-height: 100vh;
    /* Full height */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 8rem 0 4rem 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    max-width: 100%;
    margin-left: 8rem;
    /* Aligned to end of logo (approx) */
}

@media (max-width: 1024px) {
    .hero-content {
        margin-left: 0;
        /* Reset on mobile/tablet */
    }
}

/* Typography Hierarchy */
.hero-top {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #C7D2FE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.hero-middle {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    margin: 0.5rem 0 1rem 0;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    position: relative;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-bottom {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-shadow: none;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    line-height: 1;
}

/* Typography Gradient */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #C7D2FE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero Subtitle - Responsive */
.hero-subtitle {
    color: #fff;
    text-shadow: 0 2px 2px #000000;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    white-space: nowrap;
    /* Responsive sizing: scales with viewport, capped at 1.5rem, shrinks if needed */
    font-size: clamp(0.1rem, 3.5vw, 1.5rem);
}

/* New Large Section Title (for Offer) */
.section-title-large {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 800;
    /* ExtraBold */
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    text-align: right;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Offer Item Styles */
/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Offer Item Styles - Aurora Glow System */
.offer-item {
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    border-radius: 20px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Base Deep Matte with Ambient Light - Aurora Glow */
    background: radial-gradient(circle at 100% 100%,
            color-mix(in srgb, var(--card-glow), transparent 90%) 0%,
            rgba(15, 23, 42, 0.95) 50%);

    /* Milled Bezel Effect */
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
        0 10px 30px -10px rgba(0, 0, 0, 0.5);

    /* Animation Entrance */
    opacity: 0;
    transform: translateY(40px);

    /* Default color fallback */
    --card-glow: #3B82F6;
}

/* Aurora Glow - Individual Color Assignments */
/* Aurora Glow - Individual Color Assignments */
.offer-item:nth-child(1) {
    --card-glow: #3B82F6;
}

/* Blue - Prawo Jazdy */
.offer-item:nth-child(2) {
    --card-glow: #10B981;
}

/* Emerald - Akty */
.offer-item:nth-child(3) {
    --card-glow: #8B5CF6;
}

/* Violet - Pobyt */
.offer-item:nth-child(4) {
    --card-glow: #EC4899;
}

/* Pink - Medyczne */
.offer-item:nth-child(5) {
    --card-glow: #F59E0B;
}

/* Amber - Notariusz */
.offer-item:nth-child(6) {
    --card-glow: #06B6D4;
}

/* Cyan - Finanse */

.offer-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.offer-item:hover {
    transform: translateY(-5px);
    /* Border Glow matching the card color */
    border-color: color-mix(in srgb, var(--card-glow), transparent 50%);
    /* Stronger Shadow */
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        0 20px 40px -10px color-mix(in srgb, var(--card-glow), transparent 85%);
}

/* Premium SVG Watermark Seal */
.card-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
    pointer-events: none;
    transition: all 0.5s ease;
    z-index: 0;
}

.offer-item:hover .card-watermark {
    color: rgba(255, 255, 255, 0.08);
    transform: rotate(0deg) scale(1.1);
}

.offer-item::before {
    display: none;
}

/* Typography Hierarchy for Cards */
.card-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.5rem;

    /* Watermark Styling - Subordinate to Seal */
    color: var(--card-glow);
    opacity: 0.08;
    filter: drop-shadow(0 0 10px var(--card-glow));

    line-height: 1;
    text-shadow: none;
    margin-bottom: auto;
    transition: all 0.4s ease;
    transform-origin: top left;

    /* Ensure it stays behind text but visible */
    position: relative;
    z-index: 0;
}



.offer-item:hover .card-num {
    opacity: 0.15;
    transform: scale(1.1);
}

.card-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    /* Increased weight */
    font-size: 1.3rem;
    /* Increased size */
    color: #FFFFFF;
    margin: 1rem 0 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.offer-item:hover h3 {
    color: #C7D2FE;
    /* Accent color on hover */
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.5;
}

/* Arrow Icon */
/* Arrow Icon - Top Right */
.arrow-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s var(--ease-smooth);

    /* Circular Button Base */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-item:hover .arrow-icon {
    background: var(--card-glow);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 15px color-mix(in srgb, var(--card-glow), transparent 40%);
    transform: rotate(45deg);
}

/* Apply float animation ONLY to specific items */
.float-animate {
    animation: gentleFloat 6s ease-in-out infinite;
}

/* Process Grid (3 columns) */
#process .section-title-large {
    text-align: center;
    margin-bottom: 5rem;
}

/* Process Section: 2025 Future Minimal + Neon Curve */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 6rem auto;
    padding: 2rem 0;
    min-height: 500px;
    gap: 2rem;
    /* Added gap */
}

/* Individual Step Container */
.timeline-step {
    flex: 1;
    position: relative;
    z-index: 1;
    /* Ensure above SVG */
}

/* Neon Curve - Positioned at Card Bottom (260px) */
.timeline-curve {
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 300px;
    /* Card Bottom */
    left: 0;
    width: 100%;
    height: 200px;
    /* Exact SVG Height */
    z-index: 0;
    overflow: visible;
}

/* Energy Flow Curve Styles */
.timeline-curve path.path-active {
    stroke: url(#energyGradient);
    /* Ensure gradient is applied */
    stroke-dasharray: 2000;
    /* Max length cover */
    stroke-dashoffset: 2000;
    /* Initially hidden */
    /* will-change: stroke-dashoffset; */
    /* Transition removed for scroll-synced JS */

    /* Neon Glow (Fintech Style) */
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.timeline-curve path.path-background {
    opacity: 1;
}

/* Deep Matte Glass Card - Fixed Height */
/* Deep Matte Glass Card - Fixed Height */
.step-card {
    -webkit-user-select: none;
    /* Safari */
    user-select: none;
    /* Standard syntax */
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    height: 260px;
    /* Fixed height for alignment */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;

    /* Default Dimmed State */
    opacity: 0.4;
    transform: scale(0.95);
    filter: grayscale(100%);
}

.step-card.visible {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Cinematic Number */
.step-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 8rem;
    color: #fff;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

/* Content */
.step-card h3 {
    position: relative;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
    z-index: 1;
    letter-spacing: -0.02em;
}

.step-card p {
    position: relative;
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.6;
    z-index: 1;
}

/* Minimalist Marker - Neon Ready */
/* Minimalist Marker - Energy Trigger */
.step-marker {
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
    /* Prevent any interaction/selection */
    width: 16px;
    height: 16px;
    background: transparent;
    /* Empty initially */
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Dim border */
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: none;
}

/* Active State (Triggered by JS) */
.step-marker.active {
    border-color: transparent;
    transform: scale(1.3);
    box-shadow: 0 0 15px currentColor;
}

/* Pulsing Animation for Active Markers */
@keyframes signalPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.step-marker.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    animation: signalPulse 2s infinite;
}

/* Step 1 Marker Color (Amber) */
.timeline-step:nth-child(2) .step-marker.active {
    background: #F59E0B;
    color: #F59E0B;
    /* For shadow reference */
}

/* Step 2 Marker Color (Transition) */
.timeline-step:nth-child(3) .step-marker.active {
    background: color-mix(in srgb, #F59E0B, #8B5CF6);
    color: color-mix(in srgb, #F59E0B, #8B5CF6);
}

/* Step 3 Marker Color (Violet) */
.timeline-step:nth-child(4) .step-marker.active {
    background: #8B5CF6;
    color: #8B5CF6;
}

@keyframes neon-on {
    0% {
        background: #ffffff;
        border-color: #ffffff;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    100% {
        background: #d946ef;
        border: 0;
        box-shadow: 0 0 15px #d946ef, 0 0 30px #a855f7;
        transform: scale(1.2);
    }
}

/* Marker Delays & Exact Bezier Positions (Y=57, Y=100, Y=143) */
/* Marker Delays & Calculated Positions for Symmetric U-Curve */
/* Marker Delays & Exact Bezier Positions (Symmetrical Right-Extended) */
/* Calculated for S-Curve: M-100,125 C300,375 800,-125 1119,125 */
/* Right end extended to 1119 for equal overhangs */
.timeline-step:nth-child(2) .step-marker {
    animation-delay: 0.8s;
    margin-top: 160px;
    /* Side Left */
}

.timeline-step:nth-child(3) .step-marker {
    animation-delay: 1.6s;
    margin-top: 107px;
    /* Center */
}

.timeline-step:nth-child(4) .step-marker {
    animation-delay: 2.4s;
    margin-top: 45px;
    /* Side Right - Adjusted to 45px (Sweet spot) */
}

.step-card:hover+.step-marker {
    transform: scale(1.5) !important;
    box-shadow: 0 0 25px rgba(217, 70, 239, 0.8) !important;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.mobile-menu-dropdown.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-dropdown a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {

    .desktop-nav,
    .main-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    /* Hero */
    /* Hero */
    .hero-content {
        text-align: center;
        padding-top: 2rem;
    }

    .hero-top,
    .hero-middle,
    .hero-bottom,
    .hero-subtitle {
        text-align: center;
    }

    /* Center Trust Bar and CTA */
    /* Trust Bar Mobile: Compact Row */
    .trust-item svg {
        display: none;
    }

    .trust-bar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.1rem 0.4rem;
        /* Minimal gap */
        padding: 0.25rem 0.5rem;
        /* Tight padding */
        width: 100%;
        max-width: none;
        margin: 0.5rem auto;
    }

    .trust-item {
        width: auto;
        border: none;
        padding: 0;
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        line-height: 1.1;
        /* Tight line height */
    }

    .trust-item::after {
        display: none !important;
    }

    /* Add bullets back for row layout separation? User said 'remove dots' before.
       Let's stick to spacing (gap). */

    .trust-item:last-child {
        border-bottom: none;
    }

    /* Process Section Mobile */
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        /* Clean stack spacing */
        margin: 4rem auto;
        padding-left: 0;
    }

    .timeline-curve,
    .step-marker {
        display: none;
    }

    /* Hide Curve and Markers */

    .timeline-step {
        width: 100%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .step-card {
        width: 100%;
        position: relative;
        overflow: hidden;
        /* Ensure watermark doesn't spill */
    }

    /* Mobile Step Design: Watermark Number */
    .step-num {
        position: absolute;
        top: -1rem;
        right: 1rem;
        font-size: 6rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.05);
        /* Very subtle watermark */
        pointer-events: none;
        z-index: 0;
        transform: none;
        /* Reset desktop transforms */
        left: auto;
    }

    /* No connectors */
    .timeline-step::after {
        display: none;
    }
}



.why-us-grid .stat-item:nth-child(2) {
    animation-delay: 1.5s;
}

/* Trust Bar */
/* Trust Bar & Items */
.trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 2rem;
    border-radius: 99px;
    backdrop-filter: blur(10px);
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

.trust-item svg {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

/* Vertical Separator for Desktop */
/* Separator (Bullet) */
.trust-item:not(:last-child)::after {
    content: '•';
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    margin-left: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2em;
    line-height: 1;
}





/* Premium Guarantee Badge */
.guarantee-badge {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(234, 179, 8, 0.3);
    /* Gold tint */
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    /* Animated by default in gentleFloat */
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(234, 179, 8, 0.08), transparent 70%);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

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

/* Cleaned up syntax error */

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* Tighter gap */
}

/* Mobile */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.premium-footer {
    background: rgba(15, 23, 42, 0.95);
    /* Slightly more opaque */
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 0 0;
    /* Removed bottom padding */
    margin-top: 1.8rem;
    /* Reduced gap by ~35px per user request */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.contact-list p {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Mobile Hero Fix */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding-top: 8rem;
    }
}

/* Light Shadow for Readable Text (Premium Feel) */
/* Light Shadow for Readable Text (Premium Feel) */
.seo-text,
.faq-content,
.glass-panel p {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Specific Override for Hero Subtitle - FORCE BLACK SHADOW */
/* Specific Override for Hero Subtitle - FORCE BLACK SHADOW */
.hero-subtitle .seo-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
    /* Ensure visibility */
    color: #F0F9FF !important;
    /* Ensure color */
}

.hero-subtitle .subtitle-pl {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
    /* Ensure visibility */
    color: #B8C5D6 !important;
    /* Custom Medium-Dark Gray (Between Slate 300/400) */
}

/* Forced Override for Subtitle PL */
.subtitle-pl {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4) !important;
}