/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: white;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: visible;
    z-index: 9999;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    z-index: 10000;
}

/* Menu Section */
.menu-section {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10001;
}

.menu-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-family: inherit;
}

.menu-button:hover {
    opacity: 0.8;
}

.menu-button[aria-expanded="true"] {
    opacity: 1;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-line .line {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.middle-line .line {
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.bottom-line .line {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

.dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.menu-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: white;
}

/* Dropdown Menu */
.menu-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(186, 160, 105, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10002;
}

/* Desktop: Show on hover */
@media (hover: hover) and (pointer: fine) {
    .menu-section:hover .menu-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Show when menu is open (mobile click or desktop hover) */
.menu-section.menu-open .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-item {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.menu-item:hover {
    background: rgba(186, 160, 105, 0.1);
    color: #d4c089;
    border-left-color: #baa069;
    padding-left: 22px;
}

.menu-item:active {
    background: rgba(186, 160, 105, 0.15);
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.logo-container {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(186, 160, 105, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(186, 160, 105, 0.2);
}

.main-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1);
    display: block;
    max-width: 80px;
    max-height: 80px;
}

.logo-container:hover .main-logo {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.brand-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    text-align: center;
}

/* Login Section */
.login-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Dropdown Selector */
.language-dropdown {
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.language-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(186, 160, 105, 0.1);
    border: 1px solid rgba(186, 160, 105, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    color: #baa069;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.language-trigger:hover {
    background: rgba(186, 160, 105, 0.2);
    border-color: rgba(186, 160, 105, 0.5);
    color: #d4c089;
}

.language-trigger[aria-expanded="true"] {
    background: rgba(186, 160, 105, 0.2);
    border-color: rgba(186, 160, 105, 0.5);
}

.globe-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    flex-shrink: 0;
}

.current-lang {
    font-weight: 700;
    letter-spacing: 0.5px;
    min-width: 28px;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.language-trigger[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(186, 160, 105, 0.3);
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10003;
}

.language-dropdown.open .language-menu,
.language-menu[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
}

.language-item:hover {
    background: rgba(186, 160, 105, 0.15);
    color: #d4c089;
}

.language-item.active {
    background: rgba(186, 160, 105, 0.2);
    color: #baa069;
}

.language-item .lang-code {
    font-weight: 700;
    letter-spacing: 0.5px;
    min-width: 32px;
    font-size: 14px;
}

.language-item .lang-name {
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 13px;
}

/* Mobile optimization */
@media (max-width: 480px) {
    .language-trigger {
        padding: 10px 12px;
        gap: 6px;
    }
    
    .current-lang {
        min-width: 24px;
    }
    
    .globe-icon {
        width: 16px;
        height: 16px;
    }
    
    .chevron-icon {
        width: 12px;
        height: 12px;
    }
}

.login-btn {
    background: black;
    color: white;
    border: 1px solid #444;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #666;
    border-radius: 25px;
    margin: -1px;
}

.login-btn:hover {
    background: #1a1a1a;
    border-color: #666;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    padding: 0;
}

/* Hero Section - EXACT BACKGROUND FROM IMAGE */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background Image */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../Public/video_bg.webp') center center;
    background-size: cover;
    opacity: 0.8;
    pointer-events: none;
    animation: floatUpDown 8s ease-in-out infinite;
}

/* Floating animation for background */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    75% {
        transform: translateY(15px);
    }
}

/* Right Side - Additional Background Elements */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle overlay for better text readability */
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Very subtle scanline texture */
.hero-section .hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Very faint scanlines for digital texture */
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 255, 255, 0.005) 1px, rgba(255, 255, 255, 0.005) 2px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero Heading */
.hero-heading {
    margin-bottom: 3rem;
}

.main-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.highlight {
    color: #baa069;
}

.highlight-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #baa069;
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Container */
.video-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.video-player {
    width: 100%;
    max-width: 800px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(243, 156, 18, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-player:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(243, 156, 18, 0.4);
}

/* Custom HTML5 Video Player Styling */
.custom-video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border-radius: 12px;
    object-fit: cover;
}

.video-player {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hide native video controls */
.custom-video::-webkit-media-controls {
    display: none !important;
}

.custom-video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Custom Video Controls */
.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 10;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Controls at Bottom - everything in one row */
.video-controls-bottom {
    position: relative;
    width: 100%;
    padding: 12px 18px 14px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 70%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Progress Bar in the controls row */
.video-progress-container {
    flex: 1;
    position: relative;
    height: 5px;
    margin: 0 12px;
}

.video-progress-bar {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    overflow: visible;
}

.video-progress-filled {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #baa069 0%, #d4c089 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(186, 160, 105, 0.5);
}

.video-progress-slider {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 13px;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.video-progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #d4c089;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(212, 192, 137, 0.9);
    border: 2px solid #ffffff;
}

.video-progress-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #d4c089;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 0 8px rgba(212, 192, 137, 0.9);
}

/* Time Display */
.video-time {
    color: #baa069;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gold Bottom Border */
.video-blue-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #baa069 0%, #d4c089 50%, #baa069 100%);
    z-index: 11;
    box-shadow: 0 -1px 8px rgba(186, 160, 105, 0.4);
}

.video-control-btn {
    background: transparent;
    border: none;
    color: #baa069;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 6px;
    flex-shrink: 0;
}

.video-control-btn:hover {
    background: rgba(186, 160, 105, 0.2);
    color: #d4c089;
    transform: scale(1.08);
}

.video-control-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}



/* Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 20;
    pointer-events: auto;
}

.video-player.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4c089 0%, #baa069 50%, #a09059 100%);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(186, 160, 105, 0.5);
    pointer-events: auto;
}

.video-play-button:hover {
    background: linear-gradient(135deg, #e0ce9a 0%, #d4c089 50%, #baa069 100%);
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(186, 160, 105, 0.7);
}

.video-play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    fill: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mobile Responsive Styles for Video Player */
@media (max-width: 768px) {
    .video-container {
        margin: 2rem 0;
    }
    
    .video-player {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button svg {
        width: 24px;
        height: 24px;
    }
    
    .video-controls-bottom {
        padding: 8px 10px 10px 10px;
        gap: 8px;
    }
    
    .video-control-btn {
        padding: 6px;
    }
    
    .video-control-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .video-progress-container {
        margin: 0 8px;
        height: 4px;
    }
    
    .video-time {
        font-size: 11px;
        min-width: 60px;
        margin: 0 2px;
    }
    
    .video-blue-border {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .video-play-button {
        width: 50px;
        height: 50px;
    }
    
    .video-play-button svg {
        width: 20px;
        height: 20px;
    }
    
    .video-controls-bottom {
        padding: 6px 8px 8px 8px;
        gap: 6px;
    }
    
    .video-control-btn {
        padding: 4px;
    }
    
    .video-control-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .video-progress-container {
        margin: 0 6px;
    }
    
    .video-time {
        font-size: 10px;
        min-width: 50px;
    }
    
    /* Hide PiP button on very small screens */
    .pip-btn {
        display: none;
    }
}

/* Video Overlays */
.video-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 6px;
    z-index: 3;
}

.video-overlay.top-left {
    top: 20px;
    left: 20px;
}

.video-overlay.bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.video-overlay span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Scanlines Effect */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    pointer-events: none;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    margin: 3rem 0;
}

.cta-button {
    background: linear-gradient(135deg, #d4c089 0%, #a09059 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.3);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #d4c089 0%, #a09059 100%);
}

/* Process Flow Diagram */
.process-flow {
    margin: 4rem 0;
    position: relative;
    z-index: 3;
}

.process-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 0 auto;
}

/* TIMELINE FLOW DIAGRAM - MODERN & DYNAMIC */

.flow-diagram {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    gap: 2rem;
}

.flow-track {
    position: absolute;
    top: calc(3rem + 30px);
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(212, 192, 137, 0.2) 0%, 
        rgba(212, 192, 137, 0.6) 50%, 
        rgba(212, 192, 137, 0.2) 100%
    );
    z-index: 0;
}

.flow-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #d4c089, #baa069);
    animation: track-fill 3s ease-out forwards;
    box-shadow: 0 0 15px rgba(212, 192, 137, 0.6);
}

@keyframes track-fill {
    to { width: 100%; }
}

.flow-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    animation: node-appear 0.6s ease-out backwards;
}

.flow-node:nth-child(2) { animation-delay: 0.2s; }
.flow-node:nth-child(3) { animation-delay: 0.4s; }
.flow-node:nth-child(4) { animation-delay: 0.6s; }

@keyframes node-appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.node-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4c089 0%, #baa069 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(212, 192, 137, 0.5);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(10, 10, 14, 1);
}

.node-badge::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4c089, #baa069);
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
}

.flow-node:hover .node-badge::before {
    opacity: 0.8;
}

.flow-node:hover .node-badge {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 192, 137, 0.7);
}

.badge-number {
    font-size: 22px;
    font-weight: 800;
    color: #0a0a0e;
}

.node-card {
    background: linear-gradient(135deg, rgba(20, 20, 24, 0.95) 0%, rgba(12, 12, 15, 0.98) 100%);
    border: 2px solid rgba(212, 192, 137, 0.3);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    width: 100%;
    max-width: 250px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.node-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 192, 137, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flow-node:hover .node-card::before {
    opacity: 1;
}

.flow-node:hover .node-card {
    transform: translateY(-8px);
    border-color: rgba(212, 192, 137, 0.6);
    box-shadow: 0 15px 45px rgba(212, 192, 137, 0.2);
}

.card-icon {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.icon-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(212, 192, 137, 0.4));
    transition: all 0.4s ease;
    display: block;
}

.flow-node:hover .icon-image {
    transform: scale(1.15) rotate(10deg);
    filter: drop-shadow(0 5px 12px rgba(212, 192, 137, 0.6));
}

.card-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.flow-node:hover .card-title {
    color: #d4c089;
}

.card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.flow-node:hover .card-desc {
    color: rgba(255, 255, 255, 0.9);
}
/* Mobile Responsive Design */
@media (max-width: 968px) {
    .flow-diagram {
        flex-direction: column;
        gap: 4rem;
        padding: 4rem 2rem;
    }

    .flow-track {
        top: 5rem;
        left: 50%;
        right: auto;
        bottom: 5rem;
        width: 3px;
        height: auto;
        background: linear-gradient(180deg, 
            rgba(212, 192, 137, 0.2) 0%, 
            rgba(212, 192, 137, 0.6) 50%, 
            rgba(212, 192, 137, 0.2) 100%
        );
        transform: translateX(-50%);
    }

    .flow-track::after {
        width: 100%;
        height: 0;
        background: linear-gradient(180deg, #d4c089, #baa069);
        animation: track-fill-vertical 3s ease-out forwards;
    }

    @keyframes track-fill-vertical {
        to { height: 100%; }
    }

    .flow-node {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .node-badge {
        width: 75px;
        height: 75px;
    }

    .badge-number {
        font-size: 26px;
    }

    .node-card {
        max-width: 100%;
    }

    .card-icon {
        font-size: 44px;
    }

    .card-title {
    font-size: 24px;
    }

    .card-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .flow-diagram {
        padding: 3rem 1rem;
        gap: 3rem;
    }

    .node-badge {
        width: 65px;
        height: 65px;
        margin-bottom: 1.5rem;
    }

    .badge-number {
        font-size: 22px;
    }

    .node-card {
        padding: 1.5rem 1.25rem;
    }

    .card-icon {
        font-size: 40px;
    }

    .card-title {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .card-desc {
        font-size: 13px;
    }
}

/* EL ENGAÑO SECTION - MASONRY LAYOUT */

.engano-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0f 100%);
    padding: 6rem 2rem;
    position: relative;
}

.engano-masonry {
    max-width: 1100px;
    margin: 0 auto;
}

.masonry-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0 0 4rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.masonry-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(15, 15, 25, 0.85) 100%);
    border: 1px solid rgba(212, 192, 137, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.masonry-card:hover {
    border-color: rgba(212, 192, 137, 0.5);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.m-number {
    display: inline-block;
    font-family: 'Switzer', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    color: #0a0a0f;
    background: linear-gradient(135deg, #d4c089 0%, #baa069 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.masonry-card h3 {
    font-family: 'Switzer', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.masonry-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 968px) {
    .masonry-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .engano-section {
        padding: 5rem 1.5rem;
    }

    .masonry-title {
        font-size: 2rem;
    }

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

    .masonry-card {
        padding: 1.5rem;
    }

    .masonry-card h3 {
        font-size: 1.125rem;
    }

    .masonry-card p {
        font-size: 0.875rem;
    }
}

/* Center Divider */
.center-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    position: relative;
}

.divider-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 192, 137, 0.5) 50%, transparent 100%);
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 192, 137, 0.8) 50%, transparent 100%);
    animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, #07080b 0%, #0b0c10 100%);
    padding: 6rem 0;
}

.reviews-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.reviews-eyebrow {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.4em;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.reviews-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
    position: relative;
}

.reviews-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: min(90%, 900px);
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    filter: blur(0.3px);
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.review-item {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border-radius: 12px;
    overflow: hidden;
    padding: 2px; /* slim premium frame */
    border: 1px solid rgba(186, 160, 105, 0.35);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255,255,255,0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    aspect-ratio: 1 / 1; /* square tiles */
    backdrop-filter: blur(2px);
}
.review-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0) 35%);
    opacity: 0.25;
    pointer-events: none;
}
.review-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.48);
    border-color: rgba(212, 192, 137, 0.5);
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
    border-color: rgba(212, 192, 137, 0.28);
}

.review-item img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(35%) contrast(1.05) saturate(0.9);
    transform: scale(1.02);
    transition: filter .25s ease, transform .25s ease;
}
.review-item:hover img {
    filter: grayscale(0) contrast(1.05) saturate(1.1);
    transform: scale(1.06);
}

/* Compact, uniform thumbnails with premium frame */
.review-item { aspect-ratio: auto; }

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .reviews-section {
        padding: 4rem 0;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .reviews-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }
    .reviews-title::after {
        width: 92%;
        height: 80px;
    }
}

.divider-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4e5b8 0%, #d4c089 50%, #baa069 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    box-shadow: 
        0 0 0 10px rgba(212, 192, 137, 0.25),
        0 0 0 20px rgba(212, 192, 137, 0.15),
        0 0 0 30px rgba(212, 192, 137, 0.08),
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    animation: circleGlow 2s ease-in-out infinite alternate;
    position: relative;
}

.divider-circle::before {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 192, 137, 0.1) 0%, transparent 70%);
    animation: circlePulse 3s ease-in-out infinite;
}

@keyframes circleGlow {
    from {
        box-shadow: 
            0 0 0 10px rgba(212, 192, 137, 0.25),
            0 0 0 20px rgba(212, 192, 137, 0.15),
            0 0 0 30px rgba(212, 192, 137, 0.08),
            0 10px 40px rgba(0, 0, 0, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    to {
        box-shadow: 
            0 0 0 10px rgba(212, 192, 137, 0.4),
            0 0 0 20px rgba(212, 192, 137, 0.25),
            0 0 0 30px rgba(212, 192, 137, 0.15),
            0 15px 50px rgba(0, 0, 0, 0.6),
            inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

@keyframes circlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.vs-text {
    font-family: 'Switzer', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #0a0a0f;
    letter-spacing: 2px;
}

/* Right Side - Choice Cards */
.choice-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.choice-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 25, 0.98) 100%);
    border: 2px solid rgba(212, 192, 137, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.choice-card.dominate {
    animation-delay: 0.8s;
    border-color: rgba(212, 192, 137, 0.4);
    color: #d4c089;
}

.choice-card.dominated {
    animation-delay: 1s;
    border-color: rgba(255, 100, 100, 0.3);
    color: #ff6464;
}

.choice-card:hover::before {
    opacity: 0.5;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.choice-card:hover {
    transform: translateX(-10px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.choice-card.dominate:hover {
    border-color: rgba(212, 192, 137, 0.8);
    box-shadow: 
        0 20px 60px rgba(212, 192, 137, 0.3),
        0 0 0 1px rgba(212, 192, 137, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(30, 30, 52, 0.95) 0%, rgba(20, 20, 30, 0.98) 100%);
}

.choice-card.dominated:hover {
    border-color: rgba(255, 100, 100, 0.7);
    box-shadow: 
        0 20px 60px rgba(255, 100, 100, 0.2),
        0 0 0 1px rgba(255, 100, 100, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(52, 30, 30, 0.95) 0%, rgba(30, 20, 20, 0.98) 100%);
}

.choice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.choice-card h4 {
    font-family: 'Switzer', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.choice-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem 0;
}

.choice-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4c089 0%, #baa069 100%);
    color: #0a0a0f;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-family: 'Switzer', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 192, 137, 0.3);
}

.choice-badge.danger {
    background: linear-gradient(135deg, #ff6464 0%, #cc5050 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 100, 100, 0.3);
}

.decision-text {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 192, 137, 0.1) 0%, transparent 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 192, 137, 0.2);
}

.decision-text strong {
    display: block;
    font-family: 'Switzer', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #d4c089;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(212, 192, 137, 0.3);
}

.decision-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .engano-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .split-side {
        max-width: 100%;
        justify-self: center;
    }

    .left-side,
    .right-side {
        justify-self: center;
    }

    .center-divider {
        flex-direction: row;
        min-height: auto;
        height: auto;
        margin: 2rem 0;
    }

    .divider-line {
        height: 2px;
        width: auto;
        background: linear-gradient(90deg, transparent 0%, rgba(212, 192, 137, 0.5) 50%, transparent 100%);
    }

    .divider-line::before {
        background: linear-gradient(90deg, transparent 0%, rgba(212, 192, 137, 0.8) 50%, transparent 100%);
    }

    .info-block,
    .choice-card {
        transform: none;
        animation: fadeIn 0.8s ease-out forwards;
    }

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

@media (max-width: 768px) {
    .engano-section {
        padding: 4rem 1rem;
    }

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

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

    .engano-content {
        gap: 3rem;
    }

    .info-block,
    .choice-card {
        padding: 1.5rem;
    }

    .side-icon {
        font-size: 3rem;
    }

    .side-title {
        font-size: 1.5rem;
    }

    .divider-circle {
        width: 60px;
        height: 60px;
    }

    .vs-text {
        font-size: 1.5rem;
    }
}

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

    .info-block h4,
    .choice-card h4 {
        font-size: 1.25rem;
    }

    .info-block p,
    .choice-card p {
        font-size: 0.875rem;
    }
}

/* Premium Card Hover Effects (Front) */
.premium-card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(186, 160, 105, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover .premium-card-front::before {
    opacity: 1;
}

.reality-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.reality-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.reality-particle:nth-child(3) {
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.reality-particle:nth-child(4) {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 11s;
}

.reality-particle:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 13s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(-10vh) rotate(36deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-90vh) rotate(324deg) scale(1);
    }
    100% {
        transform: translateY(-100vh) rotate(360deg) scale(0.5);
        opacity: 0;
    }
}

/* Main Content Container */
.reality-content {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Revolutionary Title */
.reality-title-wrapper {
    text-align: center;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(50px);
    animation: titleReveal 1.5s ease-out 0.5s forwards;
}

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

.reality-title {
    font-family: 'Switzer', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.title-word {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
}

.title-word::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: 0 0 40px rgba(212, 192, 137, 0.3);
}

.title-word.highlight {
    background: linear-gradient(135deg, #d4c089 0%, #f4e5b8 50%, #d4c089 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(212, 192, 137, 0.6))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    animation: wordPulse 3s ease-in-out infinite, gradientShift 4s ease infinite;
}

@keyframes wordPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(212, 192, 137, 0.6))
                drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 50px rgba(212, 192, 137, 0.9))
                drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.title-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(212, 192, 137, 0.8);
    margin-top: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 192, 137, 0.3);
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    from {
        opacity: 0.7;
        text-shadow: 0 0 20px rgba(212, 192, 137, 0.3);
    }
    to {
        opacity: 1;
        text-shadow: 0 0 30px rgba(212, 192, 137, 0.5);
    }
}

/* Floating Cards Container */
.reality-cards {
    position: relative;
    min-height: 600px;
    margin-bottom: 6rem;
}

/* Individual Floating Cards */
.reality-card {
    position: absolute;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 25, 0.95) 100%);
    border: 1px solid rgba(212, 192, 137, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(30px) saturate(120%);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    width: 320px;
    opacity: 0;
    transform: translateY(100px) scale(0.8) rotateX(10deg);
    animation: cardFloatIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    perspective: 1000px;
}

.reality-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 192, 137, 0.08) 0%, transparent 50%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.reality-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(0deg);
    border-color: rgba(212, 192, 137, 0.5);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.7),
        0 15px 40px rgba(212, 192, 137, 0.2),
        0 0 0 1px rgba(212, 192, 137, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

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

/* Card Glow Effect */
.card-glow {
    position: absolute;
    inset: -3px;
    background: 
        linear-gradient(135deg, 
            rgba(212, 192, 137, 0.4) 0%, 
            rgba(244, 229, 184, 0.3) 25%,
            rgba(186, 160, 105, 0.4) 50%,
            rgba(244, 229, 184, 0.3) 75%,
            rgba(212, 192, 137, 0.4) 100%);
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(15px);
    background-size: 200% 200%;
    animation: glowRotate 4s ease infinite;
}

@keyframes glowRotate {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.reality-card:hover .card-glow {
    opacity: 0.6;
}

@keyframes cardFloatIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8) rotateX(10deg);
    }
    60% {
        transform: translateY(-10px) scale(1.02) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* Card Positioning */
.float-left {
    top: 0;
    left: 0;
    animation-delay: 1s;
}

.float-right {
    top: 0;
    right: 0;
    animation-delay: 1.5s;
}

.center-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100px) scale(0.8);
    animation-delay: 2s;
}

.center-bottom.animation-complete {
    transform: translateX(-50%) translateY(0) scale(1);
}

.float-left-bottom {
    bottom: 0;
    left: 0;
    animation-delay: 2.5s;
}

.float-right-bottom {
    bottom: 0;
    right: 0;
    animation-delay: 3s;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-number {
        position: absolute;
    top: -18px;
    left: -18px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f4e5b8 0%, #d4c089 50%, #baa069 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0a0a0f;
    box-shadow: 
        0 6px 20px rgba(212, 192, 137, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reality-card:hover .card-number {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 
        0 8px 25px rgba(212, 192, 137, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reality-card:hover .card-icon {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.card-content h3 {
    font-family: 'Switzer', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease;
}

.reality-card:hover .card-content h3 {
    color: #f4e5b8;
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.card-content strong {
    color: #f4e5b8;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(244, 229, 184, 0.3);
}

/* Central Call to Action */
.reality-cta {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: ctaReveal 1s ease-out 3.5s forwards;
}

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

.cta-pulse {
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(212, 192, 137, 0.3);
    border-radius: 60px;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.reality-button {
    position: relative;
    background: linear-gradient(135deg, #f4e5b8 0%, #d4c089 50%, #baa069 100%);
    border: none;
    border-radius: 60px;
    padding: 1.75rem 3.5rem;
    font-family: 'Switzer', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0a0a0f;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(212, 192, 137, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.reality-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 60px;
}

.reality-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(212, 192, 137, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #fff9e6 0%, #f4e5b8 50%, #d4c089 100%);
}

.button-energy {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        transparent 40%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    border-radius: 60px;
}

.reality-button:hover .button-energy {
    transform: translateX(200%);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .reality-cards {
        min-height: 500px;
    }
    
    .reality-card {
        width: 280px;
        padding: 1.5rem;
    }
    
    .reality-title {
        font-size: 4rem;
    }
}

@media (max-width: 968px) {
    .reality-section {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .reality-title {
        font-size: 3rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .title-subtitle {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }
    
    .reality-cards {
        position: static;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .reality-card {
        position: static;
        width: 100%;
        max-width: 400px;
        transform: none;
        animation: none;
        opacity: 1;
    }
    
    .reality-title-wrapper {
        margin-bottom: 4rem;
    }
    
    .reality-cta {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .reality-title {
        font-size: 2.5rem;
    }
    
    .reality-card {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .reality-button {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
}

/* Premium Card Hover Effects (Front) */
.premium-card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(186, 160, 105, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover .premium-card-front::before {
    opacity: 1;
}

.premium-card:hover .premium-icon-bg {
    background: linear-gradient(135deg, rgba(186, 160, 105, 0.2) 0%, rgba(186, 160, 105, 0.1) 100%);
    border-color: rgba(186, 160, 105, 0.4);
    transform: scale(1.1);
}

.premium-card:hover .premium-icon-text {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Premium Animations */
.premium-card {
    opacity: 0;
    transform: translateY(50px) rotateY(-15deg);
}

.premium-card:nth-child(1) {
    animation: premiumSlideIn 0.8s ease-out 0.2s both;
}

.premium-card:nth-child(2) {
    animation: premiumSlideIn 0.8s ease-out 0.4s both;
}

.premium-card:nth-child(3) {
    animation: premiumSlideIn 0.8s ease-out 0.6s both;
}

@keyframes premiumSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateY(-15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateY(0deg);
    }
}

/* Premium Responsive Design */
@media (max-width: 1024px) {
    .premium-cards-wrapper {
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .premium-card {
        width: 260px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .premium-cards-wrapper {
        flex-direction: column;
        gap: 3rem;
        padding: 2.5rem 1rem;
    }
    
    .premium-card {
        width: 100%;
        max-width: 320px;
        height: 380px;
        margin: 0 auto;
    }
    
    .premium-number {
        font-size: 64px;
    }
    
    .premium-icon-box {
        width: 90px;
        height: 90px;
    }
    
    .premium-icon-text {
        font-size: 44px;
    }
    
    .premium-title {
        font-size: 18px;
    }
    
    .premium-back-title {
        font-size: 22px;
    }
    
    .premium-back-text {
        font-size: 14px;
    }
}

/* Smooth Animations */
.smooth-card {
    opacity: 0;
    transform: translateY(40px);
}

.smooth-card-1 {
    animation: smoothFadeUp 0.8s ease-out 0.2s both;
}

.smooth-card-2 {
    animation: smoothFadeUp 0.8s ease-out 0.4s both;
}

.smooth-card-3 {
    animation: smoothFadeUp 0.8s ease-out 0.6s both;
}

@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Responsive Design */
@media (max-width: 1024px) {
    .smooth-process-grid {
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
    }
    
    .smooth-card {
        min-width: 220px;
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .smooth-process-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .smooth-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .smooth-icon-wrapper {
        width: 72px;
        height: 72px;
        margin-bottom: 24px;
    }
    
    .smooth-heading {
        font-size: 20px;
    }
    
    .smooth-text {
        font-size: 13px;
    }
}

/* Geo Animations */
.geo-card {
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
}

.geo-card-1 {
    animation: geoSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.geo-card-2 {
    animation: geoSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.geo-card-3 {
    animation: geoSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

@keyframes geoSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Geo Responsive Design */
@media (max-width: 768px) {
    .geo-process-flow {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }
    
    .geo-card {
        width: 90vw;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .geo-shape {
        width: 100px;
        height: 100px;
    }
    
    .geo-title {
        font-size: 16px;
    }
    
    .geo-highlight {
        font-size: 22px;
    }
    
    .geo-badge {
        width: 36px;
        height: 36px;
    }
    
    .geo-badge-number {
        font-size: 16px;
    }
}

/* Cyber Animations */
@keyframes cyberGridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

@keyframes cyberGlowPulse1 {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes cyberGlowPulse2 {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes cyberGlowPulse3 {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes cyberTextGlow {
    0% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6); }
}

@keyframes cyberTitlePulse {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(0, 255, 255, 0.6), 0 0 60px rgba(0, 255, 255, 0.4); }
}

@keyframes cyberAccentSlide {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(20px); opacity: 1; }
}

@keyframes cyberDataFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes cyberPulseMove {
    0% { left: -20px; }
    100% { left: 80px; }
}

@keyframes cyberNodeGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Cyber Scroll Animations */
.cyber-stage {
    opacity: 0;
    transform: translateY(40px);
}

.cyber-stage-1 {
    animation: cyberSlideUp 0.8s ease-out 0.2s both;
}

.cyber-stage-2 {
    animation: cyberSlideUp 0.8s ease-out 0.4s both;
}

.cyber-stage-3 {
    animation: cyberSlideUp 0.8s ease-out 0.6s both;
}

.cyber-connector {
    opacity: 0;
    transform: scaleX(0);
}

.cyber-connector-1 {
    animation: cyberConnectorDraw 0.6s ease-out 0.8s both;
}

.cyber-connector-2 {
    animation: cyberConnectorDraw 0.6s ease-out 1s both;
}

@keyframes cyberSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cyberConnectorDraw {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Cyber Responsive Design */
@media (max-width: 768px) {
    .cyber-process-container {
        flex-direction: column;
        gap: 40px;
        padding: 1.5rem;
    }
    
    .cyber-connector {
        transform: rotate(90deg);
    }
    
    .cyber-card {
        width: 100%;
        max-width: 350px;
        height: 120px;
    }
    
    .cyber-icon-frame {
        width: 64px;
        height: 64px;
    }
    
    .cyber-title {
        font-size: 20px;
    }
    
    .cyber-subtitle {
        font-size: 10px;
    }
}

/* Legacy Process Stage - Hidden */
.process-stage {
    display: none;
}

.process-stage:hover {
    transform: translateY(-4px);
    border-color: rgba(186, 160, 105, 0.4);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(186, 160, 105, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.process-stage.active {
    border-color: rgba(186, 160, 105, 0.6);
    box-shadow: 
        0 16px 48px rgba(186, 160, 105, 0.3),
        0 0 0 2px rgba(186, 160, 105, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 3;
    transform: translateY(-2px);
}

.stage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4c089 0%, #a09059 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 192, 137, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 
        0 6px 20px rgba(186, 160, 105, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.icon-circle.active {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.process-stage:nth-child(3) .icon-circle {
    background: linear-gradient(135deg, #555 0%, #333 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.process-stage:nth-child(5) .icon-circle {
    background: linear-gradient(135deg, #555 0%, #333 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Custom Icon Styles */
.chart-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-chart {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    gap: 2px;
    height: 20px;
}

.chart-icon {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-stage:nth-child(3) .chart-icon,
.process-stage:nth-child(5) .chart-icon {
    color: #ccc;
}

.graduation-icon {
    color: #ccc;
    font-size: 16px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.advice-icon {
    color: #ccc;
    font-size: 16px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.graduation-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cap-base {
    width: 40px;
    height: 8px;
    background: #ccc;
    border-radius: 4px;
    position: absolute;
    bottom: 15px;
}

.cap-top {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 25px solid #ccc;
    position: absolute;
    bottom: 23px;
}

.tassel {
    width: 2px;
    height: 12px;
    background: #ccc;
    position: absolute;
    top: 8px;
    right: 15px;
    border-radius: 1px;
}

.advice-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hands {
    position: relative;
    width: 30px;
    height: 20px;
}

.hand {
    width: 12px;
    height: 8px;
    background: #333;
    border-radius: 6px;
    position: absolute;
}

.left-hand {
    left: 0;
    top: 6px;
}

.right-hand {
    right: 0;
    top: 6px;
}

.speech-bubble {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    font-size: 14px;
    font-weight: bold;
}

.stage-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.stage-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: #baa069;
    letter-spacing: 1.2px;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.stage-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    transition: all 0.6s ease;
}

/* Process Arrows */
.process-arrow {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
    margin: 0;
    flex-shrink: 0;
}

.arrow-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(243, 156, 18, 0.6) 50%, transparent 100%);
    position: relative;
}

.arrow-head {
    width: 0;
    height: 0;
    border-left: 8px solid rgba(243, 156, 18, 0.6);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: -1px;
}

/* Dynamic Border Animation - Moves from box to box */
.process-stage:nth-child(1) {
    animation: borderAnimation1 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.process-stage:nth-child(3) {
    animation: borderAnimation2 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.process-stage:nth-child(5) {
    animation: borderAnimation3 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes borderAnimation1 {
    0%, 20% {
        border-color: rgba(243, 156, 18, 0.8);
        box-shadow: 
            0 8px 25px rgba(243, 156, 18, 0.3),
            0 0 0 1px rgba(243, 156, 18, 0.3);
        transform: translateY(-2px);
    }
    25%, 100% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(0px);
    }
}

@keyframes borderAnimation2 {
    0%, 30% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(0px);
    }
    35%, 55% {
        border-color: rgba(243, 156, 18, 0.8);
        box-shadow: 
            0 8px 25px rgba(243, 156, 18, 0.3),
            0 0 0 1px rgba(243, 156, 18, 0.3);
        transform: translateY(-2px);
    }
    60%, 100% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(0px);
    }
}

@keyframes borderAnimation3 {
    0%, 62% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(0px);
    }
    67%, 87% {
        border-color: rgba(243, 156, 18, 0.8);
        box-shadow: 
            0 8px 25px rgba(243, 156, 18, 0.3),
            0 0 0 1px rgba(243, 156, 18, 0.3);
        transform: translateY(-2px);
    }
    92%, 100% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        transform: translateY(0px);
    }
}

/* Small Text */
.small-text {
    position: absolute;
    bottom: 40px;
    right: 40px;
    opacity: 0.3;
}

.small-text span {
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}




/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .logo-container {
        width: 50px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 10px;
    }
    
    .menu-text {
        font-size: 12px;
    }
    
    .login-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Hero Section Mobile */
    .main-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .video-player {
        max-width: 90vw;
        width: 100%;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-icon {
        border-left: 15px solid #333;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    /* Process Flow Mobile */
    .process-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* New Section Mobile */
    .deception-title {
        font-size: 2rem;
    }
    
    .cards-container {
        gap: 2rem;
    }
    
    .cards-row {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .cards-row.bottom-row {
        max-width: 100%;
    }
    
    .content-card {
        width: 100%;
        max-width: 400px;
        height: 450px;
    }
    
    .card-content {
        padding: 70px 25px 25px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon div {
        font-size: 32px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-text {
        font-size: 0.95rem;
    }
    
}

/* New Section - Tools To Maximize Your Life */
.tools-section {
    padding: 6rem 0;
    background: 
        url('Public/bg_2.webp') center/cover no-repeat,
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tools-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.tools-heading {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tools-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tools-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 20%, 
        #ffffff 50%, 
        rgba(255, 255, 255, 0.8) 80%, 
        transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.tools-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.tools-line-1 {
    display: block;
    color: #ffffff;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.tools-line-2 {
    display: block;
    background: linear-gradient(135deg, 
        #baa069 0%, 
        #f7931e 25%, 
        #baa069 50%, 
        #baa069 75%, 
        #f7931e 100%);
    background-size: 200% 200%;
    animation: textGradient 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(186, 160, 105, 0.5));
    position: relative;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tools-line-2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #baa069, transparent);
    opacity: 0.6;
}

/* Responsive Design for Tools Section */
@media (max-width: 768px) {
    .tools-section {
        padding: 3rem 0;
        min-height: 40vh;
    }
    
    .tools-container {
        padding: 0 1.5rem;
    }
    
    .tools-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .tools-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .tools-line-1 {
        margin-bottom: 0.3rem;
    }
}

@media (max-width: 480px) {
    .tools-section {
        padding: 2.5rem 0;
        min-height: 35vh;
    }
    
    .tools-container {
        padding: 0 1rem;
    }
    
    .tools-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.8rem;
    }
    
    .tools-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
}

/* Triangle Words Container */
.triangle-words-container {
    position: relative;
    width: 600px;
    height: 520px;
    max-width: 90vw;
    z-index: 2;
}

/* Triangle Lines */
.triangle-line {
    position: absolute;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.3) 20%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.3) 80%, 
            transparent 100%);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
    z-index: 1;
    border-radius: 0;
}

.line-top-left {
    top: 80px;
    left: 300px;
    width: 3px;
    height: 360px;
    transform: rotate(-30deg);
    transform-origin: top center;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.3) 20%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.3) 80%, 
            transparent 100%);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.line-top-right {
    top: 80px;
    right: 300px;
    width: 3px;
    height: 360px;
    transform: rotate(30deg);
    transform-origin: top center;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.3) 20%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.3) 80%, 
            transparent 100%);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.line-bottom {
    bottom: 80px;
    left: 100px;
    width: 400px;
    height: 3px;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.3) 20%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0.3) 80%, 
            transparent 100%);
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.triangle-word {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.9) 25%, 
            rgba(255, 255, 255, 0.9) 75%, 
            rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 2;
    overflow: hidden;
    transform: translateY(0);
}

.triangle-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(186, 160, 105, 0.1) 0%, 
            transparent 50%, 
            rgba(186, 160, 105, 0.1) 100%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.triangle-word::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(186, 160, 105, 0.15) 0%, transparent 70%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    z-index: 0;
    opacity: 0;
    transition: all 0.4s ease;
}


.triangle-word.top-word {
    top: 0;
        left: 50%;
        transform: translateX(-50%);
    width: 200px;
    height: 80px;
}

.triangle-word.bottom-left-word {
    bottom: 0;
    left: 0;
    width: 200px;
    height: 80px;
}

.triangle-word.bottom-right-word {
    bottom: 0;
    right: 0;
    width: 200px;
    height: 80px;
}

.word-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
.triangle-word:hover {
    transform: translateY(-8px);
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 0.98) 25%, 
            rgba(255, 255, 255, 0.98) 75%, 
            rgba(255, 255, 255, 1) 100%);
    border-color: rgba(186, 160, 105, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.triangle-word.top-word:hover {
    transform: translateX(-50%) translateY(-8px);
}

.triangle-word.bottom-left-word:hover {
    transform: translateY(-8px);
}

.triangle-word.bottom-right-word:hover {
    transform: translateY(-8px);
}

.triangle-word:hover::before {
    opacity: 1;
}

.triangle-word:hover::after {
    opacity: 1;
}

.triangle-word:hover .word-text {
    color: #baa069;
    transform: scale(1.05);
    text-shadow: 0 4px 8px rgba(186, 160, 105, 0.3);
}

/* Responsive Design for Triangle Words */
@media (max-width: 768px) {
    .tools-container {
        gap: 3rem;
    }
    
    .triangle-words-container {
        width: 400px;
        height: 350px;
    }
    
    .triangle-word {
        width: 150px;
        height: 60px;
    }
    
    .word-text {
        font-size: 1.1rem;
        letter-spacing: 0.8px;
    }
    
    /* Responsive Triangle Lines */
    .line-top-left {
        top: 60px;
        left: 200px;
        height: 240px;
        width: 2px;
    }
    
    .line-top-right {
        top: 60px;
        right: 200px;
        height: 240px;
        width: 2px;
    }
    
    .line-bottom {
        bottom: 60px;
        left: 75px;
        width: 250px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .tools-container {
        gap: 2rem;
    }
    
    .triangle-words-container {
        width: 300px;
        height: 260px;
    }
    
    .triangle-word {
        width: 120px;
        height: 50px;
    }
    
    .word-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    /* Responsive Triangle Lines */
    .line-top-left {
        top: 50px;
        left: 150px;
        height: 160px;
        width: 2px;
    }
    
    .line-top-right {
        top: 50px;
        right: 150px;
        height: 160px;
        width: 2px;
    }
    
    .line-bottom {
        bottom: 50px;
        left: 60px;
        width: 180px;
        height: 2px;
    }
}

/* Tools Timeline Section - Ultra Sleek Professional Timeline */
.tools-timeline-section {
    background: 
        url('Public/bg_2.webp') center/cover no-repeat,
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.tools-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.tools-timeline-container {
    max-width: 1236px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.tools-timeline-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.tools-timeline-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
}

.tools-timeline-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    line-height: 1.1;
    background: linear-gradient(135deg, #d4c089 0%, #ffffff 40%, #a09059 80%, #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(244, 185, 66, 0.2);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 180px;
    bottom: 180px;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 20%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.15) 80%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.timeline-arrow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #baa069;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(244, 185, 66, 0.6));
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, 
        #baa069 0%, 
        rgba(244, 185, 66, 0.9) 30%, 
        rgba(244, 185, 66, 0.7) 70%, 
        rgba(244, 185, 66, 0.5) 100%);
    transition: height 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    box-shadow: 0 0 15px rgba(244, 185, 66, 0.4);
}

.timeline-ball {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #d4c089 0%, #a09059 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 25px rgba(244, 185, 66, 0.8),
        0 0 50px rgba(244, 185, 66, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Timeline Steps */
.timeline-steps {
    position: relative;
    z-index: 2;
}

.timeline-step {
    margin-bottom: 10rem;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Device Cards */
.device-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 320px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(25px);
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.device-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 50, 100, 0.95) 0%, 
        rgba(0, 30, 60, 0.98) 50%, 
        rgba(0, 20, 40, 0.95) 100%);
    z-index: 1;
}

.device-card-glow {
    position: absolute;
    top: -60%;
    left: -60%;
    right: -60%;
    bottom: -60%;
    background: radial-gradient(circle, 
        rgba(0, 120, 220, 0.4) 0%, 
        rgba(0, 80, 160, 0.2) 40%, 
        transparent 70%);
    filter: blur(50px);
    z-index: 0;
    opacity: 0.8;
}

/* Smartphones */
.smartphones-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
}

.smartphone {
    width: 80px;
    height: 140px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 2px solid #333;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.smartphone-1 {
    transform: rotate(-5deg);
}

.smartphone-2 {
    transform: rotate(5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 10px;
    padding: 8px;
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.app-title {
    color: #fff;
    font-size: 8px;
    font-weight: 600;
}

.app-icons {
    display: flex;
    gap: 2px;
}

.icon {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.icon.gold {
    background: #baa069;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.task-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.task-icon.blue {
    background: #4A90E2;
}

.task-icon.green {
    background: #7ED321;
}

.task-text {
    color: #fff;
    font-size: 6px;
    font-weight: 500;
}

.chat-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-header {
    color: #fff;
    font-size: 6px;
    font-weight: 600;
    margin-bottom: 4px;
}

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.message {
    background: rgba(244, 185, 66, 0.2);
    color: #fff;
    font-size: 5px;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Laptop */
.laptop-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.laptop {
    width: 200px;
    height: 120px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 2px solid #444;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 6px;
    padding: 8px;
    overflow: hidden;
}

.dashboard-header {
    margin-bottom: 8px;
}

.dashboard-title {
    color: #fff;
    font-size: 8px;
    font-weight: 600;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-course {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    background: rgba(244, 185, 66, 0.1);
    border-radius: 4px;
}

.course-image {
    font-size: 12px;
}

.course-title {
    color: #fff;
    font-size: 6px;
    font-weight: 500;
}

.progress-stats {
    display: flex;
    gap: 8px;
}

.stat {
    color: #baa069;
    font-size: 5px;
    font-weight: 500;
}

.course-cards {
    display: flex;
    gap: 4px;
}

.course-card {
    width: 20px;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Tablet */
.tablet-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tablet {
    width: 180px;
    height: 100px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 2px solid #333;
    position: relative;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 6px;
    padding: 6px;
    overflow: hidden;
    display: flex;
    gap: 4px;
}

.video-lesson {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.video-player-alt {
    flex: 1;
    background: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.instructor {
    font-size: 16px;
}

.lesson-controls {
    display: flex;
    gap: 2px;
}

.control-btn {
    flex: 1;
    background: rgba(244, 185, 66, 0.2);
    border: none;
    border-radius: 2px;
    color: #fff;
    font-size: 4px;
    padding: 2px;
    cursor: pointer;
}

.lesson-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lesson-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lesson-item {
    color: #fff;
    font-size: 5px;
    padding: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 60%;
    background: #baa069;
    border-radius: 1px;
}

/* Step Text */
.step-text {
    padding-left: 2rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-icon {
    font-size: 2rem;
    color: #baa069;
}

.step-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #d4c089 0%, #ffffff 50%, #a09059 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(244, 185, 66, 0.2);
}

.step-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-benefits li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.step-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #baa069;
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(244, 185, 66, 0.4);
}

.step-benefits strong {
    color: #ffffff;
    font-weight: 700;
}

/* Call to Action */
.timeline-cta {
    text-align: center;
    margin-top: 6rem;
}

.cta-button-glow {
    background: linear-gradient(135deg, #d4c089 0%, #baa069 50%, #a09059 100%);
    color: #000;
    border: none;
    padding: 1.4rem 3rem;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 12px 40px rgba(244, 185, 66, 0.4),
        0 6px 20px rgba(244, 185, 66, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.cta-button-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-button-glow:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 50px rgba(244, 185, 66, 0.5),
        0 8px 30px rgba(244, 185, 66, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 900;
}

.cta-button-glow:hover .button-arrow {
    transform: translateX(6px) scale(1.1);
}

.cta-subtext {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cash-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 4px rgba(244, 185, 66, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .tools-timeline-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .tools-timeline-container {
        padding: 0 1rem;
    }
    
    .tools-timeline-header {
        margin-bottom: 3rem;
    }
    
    .tools-timeline-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .tools-timeline-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.2;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-arrow,
    .timeline-progress,
    .timeline-ball {
        display: none;
    }
    
    .step-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-text {
        padding-left: 0;
        padding-top: 0;
        order: 2;
        background: rgba(0, 0, 0, 0.4);
        padding: 1.5rem;
        border-radius: 16px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(186, 160, 105, 0.2);
    }
    
    .step-imagery {
        order: 1;
    }
    
    .step-header {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .step-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-title {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .step-benefits {
        padding-left: 1.2rem;
    }
    
    .step-benefits li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
    
    .device-card {
        height: 260px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .timeline-step {
        margin-bottom: 4rem;
    }
    
    .timeline-cta {
        margin-top: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .cta-button-glow {
        width: 100%;
        max-width: 320px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .tools-timeline-section {
        padding: 3rem 0;
    }
    
    .tools-timeline-container {
        padding: 0 0.75rem;
    }
    
    .tools-timeline-header {
        margin-bottom: 2rem;
    }
    
    .tools-timeline-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
    }
    
    .tools-timeline-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 1rem;
    }
    
    .step-icon img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .device-card {
        height: 220px;
        border-radius: 20px;
        transform: scale(0.9);
    }
    
    .step-benefits {
        padding-left: 1rem;
    }
    
    .step-benefits li {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
        line-height: 1.6;
    }
    
    .timeline-step {
        margin-bottom: 3rem;
    }
    
    .cta-button-glow {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    
    .timeline-cta {
        margin-top: 2rem;
        text-align: center;
    }
    
    /* Scale down device mockups */
    .smartphone {
        width: 60px;
        height: 110px;
        border-radius: 10px;
    }
    
    .smartphones-container {
        gap: 0.8rem;
        transform: scale(0.9);
    }
    
    .laptop {
        width: 140px;
        height: 85px;
        transform: scale(0.9);
    }
    
    .tablet {
        width: 110px;
        height: 145px;
        transform: scale(0.9);
    }
    
    .app-title,
    .chat-header {
        font-size: 6px;
    }
    
    .task-text {
        font-size: 4.5px;
    }
    
    .message {
        font-size: 4px;
    }
    
    /* Better touch targets */
    .timeline-step {
        touch-action: pan-y;
    }
    
    /* Improve readability */
    .step-text {
        background: rgba(0, 0, 0, 0.3);
        padding: 1.5rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
}

/* Features Section - Clean Minimalist Design */
.features-section-clean {
    background: 
        url('Public/bg_2.webp') center/cover no-repeat,
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.features-section-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.features-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-header {
    display: flex;
        flex-direction: column;
    align-items: center;
        gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: #ff8c00;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: #ffa500;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    margin-bottom: 0.6rem;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 0.9rem;
    border-left: 3px solid #ff8c00;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-list li::before {
    content: '•';
    color: #ff8c00;
    font-weight: bold;
    margin-right: 0.8rem;
}

.feature-list li:hover {
    background: rgba(255, 140, 0, 0.1);
    color: #ffffff;
    border-left-color: #ffa500;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .features-section-clean {
        padding: 2.5rem 0;
    }
    
    .features-container {
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-list li {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}

/* Social Proof Section - Premium Professional Design */
.social-proof-section {
    background: 
        radial-gradient(circle at 20% 80%, rgba(243, 156, 18, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.social-proof-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.social-proof-title {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
    position: relative;
}

.social-proof-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(243, 156, 18, 0.6) 20%, 
        #baa069 50%, 
        rgba(243, 156, 18, 0.6) 80%, 
        transparent 100%);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(243, 156, 18, 0.3);
}

.social-proof-subtitle {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    line-height: 1.1;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.social-proof-card {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(255, 255, 255, 0.98) 25%, 
            rgba(255, 255, 255, 0.98) 75%, 
            rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transform: translateY(0) rotate(0deg);
}

/* Staggered positioning for natural look */
.social-proof-card:nth-child(1) {
    transform: translateY(0px) rotate(-0.5deg);
    animation-delay: 0.1s;
}

.social-proof-card:nth-child(2) {
    transform: translateY(8px) rotate(0.8deg);
    animation-delay: 0.2s;
}

.social-proof-card:nth-child(3) {
    transform: translateY(4px) rotate(-0.3deg);
    animation-delay: 0.3s;
}

.social-proof-card:nth-child(4) {
    transform: translateY(12px) rotate(0.6deg);
    animation-delay: 0.4s;
}

.social-proof-card:nth-child(5) {
    transform: translateY(6px) rotate(-0.7deg);
    animation-delay: 0.5s;
}

.social-proof-card:nth-child(6) {
    transform: translateY(2px) rotate(0.4deg);
    animation-delay: 0.6s;
}

.social-proof-card:nth-child(7) {
    transform: translateY(10px) rotate(-0.4deg);
    animation-delay: 0.7s;
}

.social-proof-card:nth-child(8) {
    transform: translateY(3px) rotate(0.9deg);
    animation-delay: 0.8s;
}

.social-proof-card:nth-child(9) {
    transform: translateY(7px) rotate(-0.6deg);
    animation-delay: 0.9s;
}

.social-proof-card:nth-child(10) {
    transform: translateY(5px) rotate(0.3deg);
    animation-delay: 1.0s;
}

.social-proof-card:nth-child(11) {
    transform: translateY(9px) rotate(-0.2deg);
    animation-delay: 1.1s;
}

.social-proof-card:nth-child(12) {
    transform: translateY(1px) rotate(0.7deg);
    animation-delay: 1.2s;
}

.social-proof-card:nth-child(13) {
    transform: translateY(11px) rotate(-0.8deg);
    animation-delay: 1.3s;
}

.social-proof-card:nth-child(14) {
    transform: translateY(4px) rotate(0.5deg);
    animation-delay: 1.4s;
}

.social-proof-card:nth-child(15) {
    transform: translateY(8px) rotate(-0.1deg);
    animation-delay: 1.5s;
}

.social-proof-card:nth-child(16) {
    transform: translateY(6px) rotate(0.2deg);
    animation-delay: 1.6s;
}

.social-proof-card:nth-child(17) {
    transform: translateY(13px) rotate(-0.9deg);
    animation-delay: 1.7s;
}

.social-proof-card:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 20;
    border-color: rgba(243, 156, 18, 0.3);
}

.social-proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(243, 156, 18, 0.08) 0%,
            transparent 30%,
            transparent 70%,
            rgba(243, 156, 18, 0.05) 100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    border-radius: 20px;
}

.social-proof-card:hover::before {
    opacity: 1;
}

.social-proof-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    border-radius: 20px;
}

.social-proof-card:hover::after {
    opacity: 1;
}

.proof-image {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 280px;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.proof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.social-proof-card:hover .proof-image img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
}

/* Add subtle animation on load */
@keyframes cardSlideIn {
    0% {
    opacity: 0;
        transform: translateY(30px) rotate(0deg);
}
    100% {
    opacity: 1;
        transform: translateY(var(--initial-y, 0px)) rotate(var(--initial-rotation, 0deg));
    }
}

.social-proof-card {
    animation: cardSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

/* Add floating animation */
@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(var(--initial-y, 0px)) rotate(var(--initial-rotation, 0deg));
    }
    50% {
        transform: translateY(calc(var(--initial-y, 0px) - 3px)) rotate(var(--initial-rotation, 0deg));
    }
}

.social-proof-card:not(:hover) {
    animation: 
        cardSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
        subtleFloat 6s ease-in-out infinite;
    animation-delay: var(--animation-delay, 0s), 2s;
}

/* Responsive Design for Social Proof - Premium Professional */
@media (max-width: 1024px) {
    .social-proof-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .proof-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .social-proof-section {
        padding: 4rem 0;
    }
    
    .social-proof-container {
        padding: 0 1.5rem;
    }
    
    .social-proof-header {
        margin-bottom: 3.5rem;
    }
    
    .social-proof-title {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .social-proof-subtitle {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    
    .social-proof-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.8rem;
    }
    
    .proof-image {
        height: 200px;
    }
    
    .social-proof-card {
        border-radius: 16px;
    }
    
    .proof-image {
        border-radius: 16px;
    }
    
    .social-proof-card:hover {
        transform: translateY(-12px) rotate(0deg) scale(1.02);
    }
}

@media (max-width: 480px) {
    .social-proof-section {
        padding: 3rem 0;
    }
    
    .social-proof-container {
        padding: 0 1rem;
    }
    
    .social-proof-header {
        margin-bottom: 2.5rem;
    }
    
    .social-proof-title {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .social-proof-title::after {
        width: 60px;
        height: 1.5px;
    }
    
    .social-proof-subtitle {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }
    
    .social-proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proof-image {
        height: 180px;
    }
    
    .social-proof-card {
        border-radius: 14px;
    }
    
    .proof-image {
        border-radius: 14px;
    }
    
    .social-proof-card:hover {
        transform: translateY(-10px) rotate(0deg) scale(1.01);
    }
    
    /* Reduce animation intensity on mobile */
    .social-proof-card:not(:hover) {
        animation: 
            cardSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
            subtleFloat 8s ease-in-out infinite;
        animation-delay: var(--animation-delay, 0s), 3s;
    }
}

@media (max-width: 360px) {
    .social-proof-section {
        padding: 2.5rem 0;
    }
    
    .social-proof-container {
        padding: 0 0.8rem;
    }
    
    .social-proof-header {
        margin-bottom: 2rem;
    }
    
    .social-proof-title {
        font-size: 0.75rem;
    }
    
    .social-proof-subtitle {
        font-size: clamp(1.6rem, 12vw, 2.4rem);
    }
    
    .social-proof-grid {
        gap: 1.2rem;
    }
    
    .proof-image {
        height: 160px;
    }
    
    .social-proof-card:hover {
        transform: translateY(-8px) rotate(0deg) scale(1.005);
    }
}

/* Lock In For The Next Year Section */
.lock-in-section {
    background: #0a0e1a;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.lock-in-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.lock-in-content {
    padding: 0 4rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lock-in-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lock-in-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.lock-in-gradient {
    background: linear-gradient(135deg, #d4c089 0%, #a09059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    animation: gradientShimmer 3s ease-in-out infinite;
}

@keyframes gradientShimmer {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.lock-in-white {
    color: #ffffff;
    display: inline-block;
}

.lock-in-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.lock-in-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.lock-in-emphasis {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.lock-in-emphasis strong {
    color: #ffffff;
    font-weight: 600;
}

.lock-in-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.lock-in-cta {
    background: linear-gradient(180deg, #d4c089 0%, #a09059 100%);
    color: #0a0e1a;
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(186, 160, 105, 0.3);
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.lock-in-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lock-in-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(186, 160, 105, 0.6), 0 0 60px rgba(186, 160, 105, 0.4);
}

.lock-in-cta:hover::before {
    opacity: 1;
}

.cta-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.lock-in-cta:hover .cta-arrow {
    transform: translateX(6px);
}

.lock-in-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.4s;
    clip-path: polygon(
        10% 0%, 100% 0%, 100% 100%, 10% 100%,
        12% 95%, 8% 85%, 15% 75%, 9% 65%, 13% 55%,
        7% 45%, 14% 35%, 8% 25%, 13% 15%, 10% 5%
    );
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lock-in-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #0a0e1a 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lock-in-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lock-in-content {
        padding: 0 2rem;
    }
    
    .lock-in-image {
        min-height: 400px;
        clip-path: none;
    }
}

@media (max-width: 768px) {
    .lock-in-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .lock-in-content {
        padding: 0 1.5rem;
    }
    
    .lock-in-heading {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .lock-in-body p {
        font-size: 1rem;
    }
    
    .lock-in-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .lock-in-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .lock-in-content {
        padding: 0 1rem;
    }
    
    .lock-in-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .lock-in-heading {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .lock-in-body {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .lock-in-body p {
        font-size: 0.95rem;
    }
    
    .lock-in-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .lock-in-image {
        min-height: 250px;
    }
}


/* Two Paths Lie Before You Section */
.two-paths-section {
    background: #0a0e1a;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.two-paths-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.02) 50px, rgba(255, 255, 255, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.02) 50px, rgba(255, 255, 255, 0.02) 51px),
        radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.two-paths-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.paths-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

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

.paths-prompt {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(150, 140, 180, 0.7);
    margin-bottom: 1.5rem;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.paths-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.1;
}

.paths-connections {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    align-items: flex-end;
}

.connection-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.blue-pill-image,
.red-pill-image {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 0;
}

.connection-line {
    height: 120px;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    margin: 0 auto;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 0.8s;
}

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

.connection-node {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0;
    animation: dropDown 0.6s ease-out forwards;
    animation-delay: 1s;
}

@keyframes dropDown {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 40%;
        opacity: 1;
    }
}

.white-node {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.gold-node {
    background: #baa069;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Switzer', 'Inter', sans-serif;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
    animation-delay: 1.2s;
}

.paths-choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.choice-column {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

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

.left-choice {
    animation-delay: 1.4s;
}

.right-choice {
    animation-delay: 1.6s;
}

.choice-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.fail-label {
    color: rgba(150, 150, 150, 0.7);
}

.pay-label {
    color: #baa069;
}

.choice-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.choice-price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #baa069;
    margin: 0 0 1.5rem 0;
    font-family: 'Switzer', 'Inter', sans-serif;
    text-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

.choice-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.choice-button {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Switzer', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.employee-button {
    background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
    color: #ffffff;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.employee-button:hover {
    background: linear-gradient(180deg, #3a4558 0%, #1d2738 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.employee-button:active {
    transform: translateY(1px);
}

.join-button {
    background: linear-gradient(180deg, #d4c089 0%, #a09059 100%);
    color: #0a0e1a;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 25px rgba(186, 160, 105, 0.4);
}

.join-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.join-button:hover::before {
    opacity: 1;
}

.join-button:hover {
    box-shadow: 0 12px 35px rgba(186, 160, 105, 0.5), 0 0 40px rgba(186, 160, 105, 0.3);
    transform: translateY(-2px);
}

.join-button:hover .button-arrow {
    transform: translateX(4px);
}

.button-arrow {
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .paths-choices {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .two-paths-section {
        padding: 6rem 0;
    }

    .two-paths-container {
        padding: 0 1.5rem;
    }

    .paths-header {
        margin-bottom: 2rem;
    }

    /* Restructure connections for mobile - show pills inline with choices */
    .paths-connections {
        display: none;
    }

    .paths-choices {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 100%;
    }

    /* Reorder content for mobile */
    .choice-column {
        position: relative;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Add pill image above each choice on mobile using background */
    .left-choice::before {
        content: '';
        display: block;
        width: 90px;
        height: 90px;
        min-height: 90px;
        margin: 0 auto 1.5rem auto;
        background-image: url('Public/blue.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.95;
    }

    .right-choice::before {
        content: '';
        display: block;
        width: 90px;
        height: 90px;
        min-height: 90px;
        margin: 0 auto 1.5rem auto;
        background-image: url('Public/red.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.95;
    }

    /* Add VS divider after left choice with equal spacing */
    .left-choice {
        margin-bottom: 0;
        padding-bottom: 3.5rem;
        position: relative;
    }

    .left-choice::after {
        content: 'VS';
        display: block;
        width: 50px;
        height: 50px;
        padding-top: 14px;
        text-align: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        font-family: 'Switzer', 'Inter', sans-serif;
        line-height: 1;
        box-sizing: border-box;
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }

    .right-choice {
        margin-top: 0;
        padding-top: 3.5rem;
        position: relative;
    }

    .choice-label {
        font-size: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .choice-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    .choice-price {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .choice-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .choice-button {
        max-width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .two-paths-section {
        padding: 3rem 0;
    }

    .two-paths-container {
        padding: 0 1rem;
    }

    .paths-header {
        margin-bottom: 1.5rem;
    }

    .paths-prompt {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        margin-bottom: 1rem;
    }

    .paths-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .paths-choices {
        gap: 0;
    }

    .choice-column {
        padding: 1.5rem 1rem;
    }

    /* Smaller pills on very small screens */
    .left-choice::before,
    .right-choice::before {
        width: 75px;
        height: 75px;
        min-height: 75px;
        margin-bottom: 1.25rem;
    }

    .left-choice {
        padding-bottom: 3rem;
    }

    .left-choice::after {
        width: 45px;
        height: 45px;
        bottom: -22.5px;
        font-size: 0.8rem;
        padding-top: 12px;
    }

    .right-choice {
        padding-top: 3rem;
    }

    .choice-label {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .choice-heading {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 0.75rem;
    }

    .choice-price {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .choice-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }

    .choice-button {
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Are You Prepared To Work Hard Section */
.prepared-section {
    background: linear-gradient(135deg, #0a0e1a 0%, #0e1420 50%, #0a0e1a 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.prepared-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.015) 50px, rgba(255, 255, 255, 0.015) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.015) 50px, rgba(255, 255, 255, 0.015) 51px),
        radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.prepared-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.prepared-content {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideInFromLeft 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.prepared-caption {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(150, 160, 180, 0.7);
    margin-bottom: 2rem;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.prepared-heading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.prepared-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.prepared-paragraph {
    font-size: 1.05rem;
    color: rgba(200, 210, 220, 0.8);
    line-height: 1.7;
    margin: 0;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.prepared-paragraph strong {
    color: #ffffff;
    font-weight: 700;
}

.prepared-emphasis {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Switzer', 'Inter', sans-serif;
    font-weight: 700;
}

.prepared-cta {
    background: linear-gradient(180deg, #d4c089 0%, #a09059 100%);
    color: #0a0e1a;
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(186, 160, 105, 0.3);
    font-family: 'Switzer', 'Inter', sans-serif;
}

.prepared-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prepared-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(186, 160, 105, 0.6), 0 0 60px rgba(186, 160, 105, 0.4);
}

.prepared-cta:hover::before {
    opacity: 1;
}

.prepared-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.prepared-cta:hover .prepared-arrow {
    transform: translateX(6px);
}

.prepared-collage {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    animation: slideInFromRight 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.collage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.6) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.collage-single {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.collage-single img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .prepared-container {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .prepared-section {
        padding: 6rem 0;
    }
    
    .prepared-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .prepared-heading {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
}

@media (max-width: 480px) {
    .prepared-section {
        padding: 4rem 0;
    }
    
    .prepared-container {
        padding: 0 1rem;
    }
    
    .prepared-caption {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .prepared-heading {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .prepared-body {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .prepared-paragraph {
        font-size: 1rem;
    }
    
    .prepared-emphasis {
        font-size: 1.05rem;
    }
    
    .prepared-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
}

/* The Choice Is Yours Section */
.choice-section {
    background: linear-gradient(135deg, #0a0e1a 0%, #111827 50%, #0a0e1a 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.choice-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255, 255, 255, 0.015) 50px, rgba(255, 255, 255, 0.015) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 255, 255, 0.015) 50px, rgba(255, 255, 255, 0.015) 51px),
        radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.choice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.choice-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.7s ease-out forwards;
    animation-delay: 0.2s;
}

.choice-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(120, 140, 170, 0.7);
    margin-bottom: 1.5rem;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.choice-heading {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Switzer', 'Inter', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    position: relative;
}

.choice-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(100, 150, 200, 0.15);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 24px 24px 0 0;
}

.choice-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.left-card {
    animation-delay: 0.4s;
}

.right-card {
    animation-delay: 0.6s;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: rgba(200, 210, 220, 0.6);
}

.card-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.card-subtitle {
    font-size: 1rem;
    color: rgba(200, 210, 220, 0.7);
    text-align: center;
    margin: 0 0 2rem 0;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.card-strapline {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(180, 180, 180, 0.8);
    text-align: center;
    margin: 0 0 2rem 0;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.card-price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #baa069;
    text-align: center;
    margin: 0 0 2rem 0;
    font-family: 'Switzer', 'Inter', sans-serif;
    filter: drop-shadow(0 2px 8px rgba(243, 156, 18, 0.4));
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(200, 210, 220, 0.85);
    line-height: 1.5;
    font-family: 'Switzer', 'Inter', sans-serif;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.5s ease-out forwards;
}

.card-list li:nth-child(1) { animation-delay: 0.8s; }
.card-list li:nth-child(2) { animation-delay: 0.9s; }
.card-list li:nth-child(3) { animation-delay: 1.0s; }
.card-list li:nth-child(4) { animation-delay: 1.1s; }
.card-list li:nth-child(5) { animation-delay: 1.2s; }
.card-list li:nth-child(6) { animation-delay: 1.3s; }

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-icon.gold {
    color: #baa069;
}

.benefits-list li {
    color: rgba(220, 230, 240, 0.9);
}

.card-pricing-note {
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cancel-text,
.forever-price {
    font-size: 0.9rem;
    color: rgba(200, 210, 220, 0.8);
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.cancel-icon,
.shield-icon {
    font-size: 1rem;
}

.forever-price strong {
    color: #baa069;
}

.lock-price {
    font-size: 0.75rem;
    color: rgba(160, 170, 180, 0.6);
    margin: 0.5rem 0 0 0;
    font-family: 'Switzer', 'Inter', sans-serif;
}

.card-button {
    width: 100%;
    padding: 1.3rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Switzer', 'Inter', sans-serif;
    border: none;
    text-decoration: none;
    margin-top: auto;
}

.grey-button {
    background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.grey-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grey-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.grey-button:hover::before {
    opacity: 1;
}

.orange-button {
    background: linear-gradient(180deg, #d4c089 0%, #a09059 100%);
    color: #0a0e1a;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px rgba(186, 160, 105, 0.3);
}

.orange-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.orange-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(186, 160, 105, 0.6), 0 0 60px rgba(186, 160, 105, 0.4);
}

.orange-button:hover::before {
    opacity: 1;
}

.button-arrow {
    font-size: 1.4rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.orange-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .choice-cards {
        gap: 1.5rem;
    }
    
    .choice-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .choice-section {
        padding: 6rem 0;
    }
    
    .choice-header {
        margin-bottom: 3rem;
    }
    
    .choice-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .choice-card {
        padding: 2rem 1.5rem;
    }
    
    .card-list {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .choice-section {
        padding: 4rem 0;
    }
    
    .choice-container {
        padding: 0 1rem;
    }
    
    .choice-label {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    
    .choice-heading {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .choice-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
    
    .card-list li {
        font-size: 0.95rem;
    }
    
    .card-button {
        padding: 1.1rem 1.8rem;
        font-size: 1rem;
    }
}


/* ========================================
   PRICE INCREASE IS IMMINENT SECTION - SPANISH
   ======================================== */

.price-increase-section {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 60px 0;
    z-index: 20;
    background: 
        radial-gradient(circle at 30% 20%, rgba(186, 160, 105, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(186, 160, 105, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0, 20, 40, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 30%, #1a1a1a 50%, #0a0a0a 70%, #000000 100%);
    overflow: hidden;
    min-height: 500px;
    border-top: 1px solid rgba(186, 160, 105, 0.2);
    border-bottom: 1px solid rgba(186, 160, 105, 0.2);
    box-shadow: 
        inset 0 1px 0 rgba(186, 160, 105, 0.1),
        inset 0 -1px 0 rgba(186, 160, 105, 0.1);
}

/* Background ambient elements */
.price-increase-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.price-increase-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 40% 30%, rgba(186, 160, 105, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 70%, rgba(186, 160, 105, 0.08) 0%, transparent 50%);
    z-index: 2;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.price-increase-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.price-increase-bg-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(186, 160, 105, 0.12), rgba(186, 160, 105, 0.08));
    border-radius: 30px;
    filter: blur(50px);
    opacity: 0.6;
}

.price-increase-bg-shape.shape-1 {
    width: 300px;
    height: 200px;
    top: -10%;
    left: -5%;
    animation: float1 12s ease-in-out infinite;
}

.price-increase-bg-shape.shape-2 {
    width: 250px;
    height: 180px;
    top: 50%;
    right: -10%;
    animation: float2 10s ease-in-out infinite;
}

.price-increase-bg-shape.shape-3 {
    width: 280px;
    height: 160px;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 14s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(-10px, 0px) scale(1); }
    50% { transform: translate(10px, -30px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-15px, 20px) scale(1.08); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(-50%) translateY(0px) scale(1); }
    50% { transform: translateX(-50%) translateY(-25px) scale(1.05); }
}

/* Main container */
.price-increase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    animation: priceIncreaseFadeIn 1s ease-out;
}

@keyframes priceIncreaseFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.price-increase-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Label */
.price-increase-label {
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #baa069;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(186, 160, 105, 0.3);
    animation: labelGlow 3s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% { 
        color: #baa069;
        text-shadow: 0 0 10px rgba(186, 160, 105, 0.3);
    }
    50% { 
        color: #baa069;
        text-shadow: 0 0 15px rgba(186, 160, 105, 0.5);
    }
}

/* Title row with icon and headline */
.price-increase-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-increase-icon-wrapper {
    flex-shrink: 0;
}

.price-increase-icon {
    animation: iconScaleIn 0.8s ease-out, iconPulse 2.5s ease-in-out infinite 0.8s;
    filter: drop-shadow(0 0 10px rgba(186, 160, 105, 0.4));
    transition: all 0.3s ease;
}

.price-increase-icon:hover {
    filter: drop-shadow(0 0 20px rgba(186, 160, 105, 0.6));
    transform: scale(1.1);
}

@keyframes iconScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.price-increase-headline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    animation: headlineSlideIn 1s ease-out, headlineFloat 6s ease-in-out infinite 2s;
    transition: all 0.3s ease;
}

.price-increase-headline:hover {
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(186, 160, 105, 0.2);
    transform: scale(1.02);
}

@keyframes headlineFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes headlineSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Copy text */
.price-increase-copy {
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 25px 0;
    opacity: 0.8;
    animation: textFadeIn 1s ease-out 0.3s both;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.price-increase-urgency {
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 40px 0;
    animation: textFadeIn 1s ease-out 0.5s both;
}

/* CTA Button */
.price-increase-cta-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.price-increase-cta {
    background: linear-gradient(135deg, #d4c089 0%, #baa069 50%, #a09059 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0 45px;
    height: 56px;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0a0e1a;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 12px 35px rgba(186, 160, 105, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    animation: buttonFadeIn 1s ease-out 0.7s both, buttonGlow 4s ease-in-out infinite 2s;
    position: relative;
    overflow: hidden;
}

@keyframes buttonGlow {
    0%, 100% { 
        box-shadow: 
            0 12px 35px rgba(186, 160, 105, 0.4),
            0 6px 20px rgba(0, 0, 0, 0.15),
            inset 0 2px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }
    50% { 
        box-shadow: 
            0 12px 35px rgba(186, 160, 105, 0.6),
            0 6px 20px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(186, 160, 105, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.5),
            inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    }
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-increase-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(186, 160, 105, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(186, 160, 105, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.price-increase-cta:active {
    transform: translateY(0px) scale(0.97);
    box-shadow: 
        0 5px 25px rgba(186, 160, 105, 0.6),
        0 2px 12px rgba(0, 0, 0, 0.25),
        inset 0 3px 6px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.3);
}

.cta-text {
    font-weight: 700;
}

.cta-arrow {
    font-size: 20px;
    font-weight: 900;
    color: #0a0e1a;
    transition: transform 0.3s ease;
}

.price-increase-cta:hover .cta-arrow {
    transform: translateX(6px) scale(1.1);
}

/* FAQ SECTION */
.faq-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.faq-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #888888;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-headline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    animation: faqHeadlineSlideIn 1s ease-out;
}

@keyframes faqHeadlineSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-accordion {
    margin-bottom: 60px;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
    border: 1px solid #2d2d44;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.faq-item:hover {
    border-color: rgba(186, 160, 105, 0.3);
    box-shadow: 0 4px 20px rgba(186, 160, 105, 0.1);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a2e;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #22223a;
}

.faq-question span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    flex: 1;
    margin-right: 20px;
}

.faq-chevron {
    font-size: 16px;
    color: #888888;
    transition: transform 0.4s ease;
    font-weight: bold;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: #baa069;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: #22223a;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.faq-item.active .faq-answer p {
    opacity: 1;
}

.faq-cta-container {
    text-align: center;
}

.faq-cta {
    background: linear-gradient(135deg, #d4c089 0%, #baa069 50%, #a09059 100%);
    border: none;
    border-radius: 12px;
    padding: 18px 36px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(186, 160, 105, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(186, 160, 105, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.faq-cta:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(186, 160, 105, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cta-arrow {
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.faq-cta-subtext {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #888888;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-increase-headline {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .price-increase-title-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .price-increase-copy {
        font-size: 16px;
    }
    
    .price-increase-urgency {
        font-size: 18px;
    }
    
    .price-increase-cta {
        padding: 0 30px;
        height: 48px;
        font-size: 15px;
        width: 200px;
    }
    
    .faq-headline {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px 24px;
        font-size: 15px;
    }
    
    .faq-cta {
        font-size: 16px;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .price-increase-headline {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .price-increase-copy {
        font-size: 14px;
    }
    
    .price-increase-urgency {
        font-size: 16px;
    }
    
    .price-increase-cta {
        padding: 0 25px;
        height: 44px;
        font-size: 14px;
        width: 180px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-headline {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .faq-container {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }
    
    .faq-cta {
        font-size: 15px;
        padding: 14px 28px;
    }
}

/* FOOTER SECTION */
.footer {
    background: #0a0a0a;
    width: 100%;
    position: relative;
    padding: 40px 0 60px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-separator {
    width: 90%;
    height: 1px;
    background: #333333;
    margin: 0 auto 40px auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-separator-vertical {
    color: #666666;
    font-size: 14px;
}

.footer-disclaimers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-disclaimer {
    color: #aaaaaa;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-support {
    text-align: right;
}

.support-heading {
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.support-email {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-login-btn {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-login-btn:hover {
    background: #222222;
    border-color: #444444;
}

/* Floating Interactive Elements */
.floating-elements {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.join-now-btn {
    background: #1a1a1a;
    border: 2px solid #baa069;
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(186, 160, 105, 0.2),
        0 0 0 1px rgba(186, 160, 105, 0.1);
    position: relative;
    overflow: hidden;
}

.join-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(186, 160, 105, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.join-now-btn:hover {
    border-color: #d4c089;
    box-shadow: 
        0 6px 25px rgba(186, 160, 105, 0.3),
        0 0 0 1px rgba(186, 160, 105, 0.2);
    transform: translateY(-2px);
}

.join-now-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 15px rgba(186, 160, 105, 0.2),
        0 0 0 1px rgba(186, 160, 105, 0.1);
}

.help-btn {
    background: #3366ff;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 102, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-btn:hover {
    background: #4a7cff;
    box-shadow: 0 6px 20px rgba(51, 102, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.help-btn:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 2px 10px rgba(51, 102, 255, 0.3);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
    }
    
    .footer-support {
        text-align: center;
    }
    
    .floating-elements {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .join-now-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .help-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 50px 0;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-disclaimer {
        font-size: 11px;
    }
    
    .floating-elements {
        bottom: 15px;
        right: 15px;
        flex-direction: column;
        gap: 8px;
    }
    
    .join-now-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .help-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

.timeline-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Device Cards */
.device-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 320px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(25px);
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

