/* ========================================
   PARAGON ROOFING & EXTERIORS
   Sales Recruitment Landing Page
======================================== */

/* ========================================
   BLUEPRINT PRELOADER
======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a1628;
    overflow: hidden;
}

/* Blueprint Grid Background */
.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    animation: gridPan 20s linear infinite;
}

@keyframes gridPan {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.blueprint-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 50%, transparent 0%, #0a1628 70%);
    pointer-events: none;
}

.loader-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
}

/* Blueprint House Container */
.blueprint-container {
    position: relative;
    width: 280px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-house {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3));
}

/* Blueprint Lines - Draw Animation */
.blueprint-line {
    stroke: #60A5FA;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Staggered line animations */
.blueprint-line.foundation {
    animation: drawLine 0.6s ease-out 0.2s forwards;
}

.blueprint-line.wall-left {
    animation: drawLine 0.4s ease-out 0.5s forwards;
}

.blueprint-line.wall-right {
    animation: drawLine 0.4s ease-out 0.6s forwards;
}

.blueprint-line.roof-left {
    stroke: #2563EB;
    stroke-width: 2.5;
    animation: drawLine 0.5s ease-out 0.9s forwards;
}

.blueprint-line.roof-right {
    stroke: #2563EB;
    stroke-width: 2.5;
    animation: drawLine 0.5s ease-out 1.1s forwards;
}

.blueprint-line.door {
    animation: drawLine 0.4s ease-out 1.4s forwards;
}

.blueprint-line.window-1,
.blueprint-line.window-1-h,
.blueprint-line.window-1-v {
    animation: drawLine 0.3s ease-out 1.6s forwards;
}

.blueprint-line.window-2,
.blueprint-line.window-2-h,
.blueprint-line.window-2-v {
    animation: drawLine 0.3s ease-out 1.8s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Blueprint Points - Appear Animation */
.blueprint-point {
    fill: #2563EB;
    opacity: 0;
    transform-origin: center;
    transform: scale(0);
}

.blueprint-point.peak {
    fill: #60A5FA;
    animation: pointAppear 0.3s ease-out 1.3s forwards, pointPulse 2s ease-in-out 1.6s infinite;
}

.blueprint-point.corner-1 {
    animation: pointAppear 0.2s ease-out 0.9s forwards;
}

.blueprint-point.corner-2 {
    animation: pointAppear 0.2s ease-out 1.1s forwards;
}

.blueprint-point.corner-3 {
    animation: pointAppear 0.2s ease-out 0.5s forwards;
}

.blueprint-point.corner-4 {
    animation: pointAppear 0.2s ease-out 0.6s forwards;
}

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

@keyframes pointPulse {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.8));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(96, 165, 250, 1));
        transform: scale(1.2);
    }
}

/* Measurement Lines */
.blueprint-measure {
    stroke: rgba(96, 165, 250, 0.4);
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 0.5s ease-out 2s forwards;
}

/* Scanning Line Effect */
.blueprint-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #60A5FA, #2563EB, #60A5FA, transparent);
    opacity: 0.8;
    animation: scanMove 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.8), 0 0 40px rgba(37, 99, 235, 0.4);
}

@keyframes scanMove {
    0%, 100% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Logo Reveal After Blueprint */
.loader-logo-reveal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    opacity: 0;
    animation: logoReveal 0.8s ease-out 2.2s forwards;
}

.loader-logo-reveal .loader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.6));
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
        filter: blur(10px);
    }
    50% {
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Loader Text */
.loader-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loader-headline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.loader-word {
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: loaderWordAppear 0.6s ease-out forwards;
}

.loader-word:nth-child(1) { animation-delay: 0.3s; }
.loader-word:nth-child(2) { animation-delay: 0.5s; }
.loader-word:nth-child(3) { animation-delay: 0.7s; }
.loader-word:nth-child(4) { animation-delay: 0.9s; }

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

.loader-highlight {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    opacity: 0;
    animation: loaderFadeIn 0.6s ease-out 1.2s forwards;
}

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

/* Loader Progress */
.loader-progress-container {
    width: 100%;
    max-width: 320px;
    opacity: 0;
    animation: loaderFadeIn 0.6s ease-out 1.4s forwards;
}

.loader-progress {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2563EB, #60A5FA, #2563EB);
    background-size: 200% 100%;
    border-radius: 100px;
    animation: loaderProgressShine 2s linear infinite;
    transition: width 0.3s ease;
}

@keyframes loaderProgressShine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.loader-progress-glow {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
    animation: loaderGlowMove 2s ease-in-out infinite;
}

@keyframes loaderGlowMove {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.loader-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.loader-stat {
    font-size: 0.875rem;
    font-weight: 700;
    color: #2563EB;
}

.stat-value {
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}

.loader-stat-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* Loader Features */
.loader-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 300px;
}

.loader-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-20px);
    animation: loaderFeatureAppear 0.5s ease-out forwards;
}

.loader-feature[data-delay="0"] { animation-delay: 1.8s; }
.loader-feature[data-delay="1"] { animation-delay: 2.1s; }
.loader-feature[data-delay="2"] { animation-delay: 2.4s; }

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

.feature-icon {
    font-size: 1.25rem;
}

.feature-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Loader complete state */
.page-loader.complete .loader-content {
    animation: loaderContentExit 0.5s ease-in forwards;
}

@keyframes loaderContentExit {
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* Mobile adjustments for loader */
@media (max-width: 640px) {
    .loader-content {
        gap: 24px;
        padding: 20px;
    }
    
    .blueprint-container {
        width: 220px;
        height: 180px;
    }
    
    .loader-logo-reveal {
        width: 80px;
        height: 80px;
    }
    
    .loader-headline {
        font-size: 1.5rem;
    }
    
    .loader-tagline {
        font-size: 0.875rem;
    }
    
    .blueprint-grid {
        background-size: 60px 60px, 60px 60px, 15px 15px, 15px 15px;
    }
}

/* CSS Variables - Paragon Roofing Blue Theme */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --accent: #60A5FA;
    --accent-dark: #2563EB;
    --accent-light: #93C5FD;
    --dark: #0a0a0a;
    --dark-light: #141414;
    --gray-900: #111111;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #6a6a6a;
    --gray-400: #9a9a9a;
    --gray-300: #c0c0c0;
    --gray-200: #e0e0e0;
    --gray-100: #f0f0f0;
    --gray-50: #f8f8f8;
    --white: #FFFFFF;
    --success: #22C55E;
    --warning: #F59E0B;
    --danger: #DC2626;
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #60A5FA 50%, #2563EB 100%);
    --gradient-gold: linear-gradient(135deg, #2563EB 0%, #60A5FA 50%, #2563EB 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    --gradient-money: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-gold: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-200);
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p { color: var(--gray-300); }

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
}

.btn-secondary {
    background: #0a0a0a;
    color: var(--primary);
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-xlarge {
    padding: 24px 56px;
    font-size: 1.25rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray-300);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ========================================
   LIVE VIEWERS WIDGET
======================================== */
.live-viewers {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: slide-up 0.5s ease-out 2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    position: relative;
}

.live-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #22C55E;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-out infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.live-text strong {
    color: var(--white);
    font-weight: 700;
}

.viewer-count {
    display: inline-block;
    min-width: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

.viewer-count.bump {
    transform: scale(1.2);
}

/* Mobile positioning */
@media (max-width: 768px) {
    .live-viewers {
        bottom: 16px;
        left: 16px;
        right: 16px;
        justify-content: center;
        font-size: 0.8125rem;
        padding: 10px 16px;
    }
}

/* ========================================
   RECENT ACTIVITY NOTIFICATION
======================================== */
.recent-activity {
    position: fixed;
    bottom: 90px;
    left: 24px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    max-width: 320px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.recent-activity.show {
    transform: translateX(0);
    opacity: 1;
}

.activity-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-text {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin: 0 0 2px 0;
}

.activity-name {
    color: var(--white);
}

.activity-time {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

.activity-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.activity-close:hover {
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .recent-activity {
        bottom: auto;
        top: 70px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
    
    .live-viewers {
        bottom: 16px;
    }
}

/* ========================================
   STICKY CTA BAR (Premium Animated)
======================================== */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: var(--white);
    padding: 14px 0;
    z-index: 1000;
    overflow: hidden;
}

.sticky-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
    z-index: 0;
}

.sticky-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(37, 99, 235, 0.1) 25%, 
        rgba(37, 99, 235, 0.15) 50%, 
        rgba(37, 99, 235, 0.1) 75%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: stickyGradientMove 4s ease-in-out infinite;
}

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

.sticky-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.sticky-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #2563EB;
    border-radius: 50%;
    opacity: 0;
    animation: stickyParticle 3s ease-in-out infinite;
}

.sticky-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.sticky-particles span:nth-child(2) { left: 30%; animation-delay: 0.6s; }
.sticky-particles span:nth-child(3) { left: 50%; animation-delay: 1.2s; }
.sticky-particles span:nth-child(4) { left: 70%; animation-delay: 1.8s; }
.sticky-particles span:nth-child(5) { left: 90%; animation-delay: 2.4s; }

@keyframes stickyParticle {
    0%, 100% { 
        opacity: 0;
        transform: translateY(100%) scale(0);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
}

.sticky-border-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(37, 99, 235, 0.3), 
        #2563EB, 
        rgba(37, 99, 235, 0.3), 
        transparent);
    background-size: 200% 100%;
    animation: borderGlowMove 3s linear infinite;
}

@keyframes borderGlowMove {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.sticky-cta .container {
    position: relative;
    z-index: 1;
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sticky-pulse {
    width: 10px;
    height: 10px;
    background: #2563EB;
    border-radius: 50%;
    position: relative;
    animation: stickyPulse 2s ease-in-out infinite;
}

.sticky-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2563EB;
    border-radius: 50%;
    animation: stickyPulseRing 2s ease-out infinite;
}

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

@keyframes stickyPulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.sticky-badge {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: #0a0a0a;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    animation: stickyBadgePulse 2s ease-in-out infinite;
}

@keyframes stickyBadgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.6); }
}

.sticky-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-300);
}

.sticky-highlight {
    color: #2563EB;
    font-weight: 700;
}

.sticky-countdown {
    display: inline-flex;
    gap: 6px;
    margin: 0 4px;
}

.sticky-time {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60A5FA;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    font-variant-numeric: tabular-nums;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563EB 0%, #60A5FA 50%, #2563EB 100%);
    background-size: 200% 100%;
    color: #0a0a0a;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: stickyBtnShine 3s ease-in-out infinite;
}

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

.sticky-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.sticky-btn svg {
    transition: transform 0.3s ease;
}

.sticky-btn:hover svg {
    transform: translateX(4px);
}

/* Mobile adjustments for sticky CTA */
@media (max-width: 768px) {
    .sticky-cta {
        padding: 10px 0;
    }
    
    .sticky-content {
        gap: 10px;
    }
    
    .sticky-badge {
        display: none;
    }
    
    .sticky-text {
        font-size: 0.75rem;
    }
    
    .sticky-countdown {
        display: none;
    }
    
    .sticky-btn {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: 140px 0 100px;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    position: relative;
    z-index: 10;
}

/* Hero Logo */
.hero-logo-wrapper {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.hero-logo {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: heroLogoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.5));
}

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

.hero-logo-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.5) 0%, rgba(37, 99, 235, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    animation: heroLogoGlowPulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroLogoGlowPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.4); 
        opacity: 0.9;
    }
}

.hero-logo-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    animation: heroLogoRingExpand 4s ease-out infinite;
}

.hero-logo-ring-2 {
    animation-delay: 2s;
    border-color: rgba(37, 99, 235, 0.25);
}

@keyframes heroLogoRingExpand {
    0% { 
        transform: scale(0.8);
        opacity: 1;
    }
    100% { 
        transform: scale(2.5);
        opacity: 0;
    }
}

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

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
    animation: heroParticleFloat 8s ease-in-out infinite;
}

@keyframes heroParticleFloat {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: translateY(80vh) scale(1);
    }
    90% { 
        opacity: 0.8;
        transform: translateY(-10vh) scale(0.8);
    }
    100% { 
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Hero Background Layers */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Animated Gradient Background */
.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 100%);
    animation: gradient-shift-bg 10s ease-in-out infinite;
}

@keyframes gradient-shift-bg {
    0%, 100% { 
        background-position: 0% 0%, 100% 50%, 0% 50%, 0% 0%;
    }
    50% { 
        background-position: 100% 100%, 0% 50%, 100% 50%, 0% 100%;
    }
}

/* Grid Pattern Overlay */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* ========================================
   HERO BLUEPRINT ANIMATION
======================================== */
.hero-blueprint {
    position: absolute;
    width: 300px;
    height: 240px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.hero-blueprint-left {
    left: 5%;
    top: 20%;
    animation: blueprintFloat 8s ease-in-out infinite;
}

.hero-blueprint-right {
    right: 5%;
    bottom: 15%;
    animation: blueprintFloat 8s ease-in-out infinite 4s;
    transform: scaleX(-1);
}

@keyframes blueprintFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-20px) rotate(2deg); opacity: 0.25; }
}

.hero-blueprint-right {
    animation: blueprintFloatRight 8s ease-in-out infinite 4s;
}

@keyframes blueprintFloatRight {
    0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: scaleX(-1) translateY(-20px) rotate(-2deg); opacity: 0.25; }
}

.hero-blueprint-house {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(37, 99, 235, 0.4));
}

/* Hero Blueprint Lines - Continuous Draw Animation */
.hero-bp-line {
    stroke: #60A5FA;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: heroDrawLine 3s ease-out forwards;
}

.hero-bp-line.bp-foundation { animation-delay: 0.2s; }
.hero-bp-line.bp-wall-left { animation-delay: 0.5s; }
.hero-bp-line.bp-wall-right { animation-delay: 0.6s; }
.hero-bp-line.bp-roof-left { 
    stroke: #2563EB; 
    animation-delay: 0.9s; 
}
.hero-bp-line.bp-roof-right { 
    stroke: #2563EB; 
    animation-delay: 1.1s; 
}
.hero-bp-line.bp-door { animation-delay: 1.4s; }
.hero-bp-line.bp-window-1 { animation-delay: 1.6s; }
.hero-bp-line.bp-window-2 { animation-delay: 1.8s; }

@keyframes heroDrawLine {
    to { stroke-dashoffset: 0; }
}

/* Hero Blueprint Points */
.hero-bp-point {
    fill: #2563EB;
    opacity: 0;
    transform-origin: center;
}

.hero-bp-point.bp-peak {
    fill: #60A5FA;
    animation: heroPointAppear 0.4s ease-out 1.3s forwards, heroPointPulse 3s ease-in-out 1.7s infinite;
}

.hero-bp-point.bp-corner-1 { animation: heroPointAppear 0.3s ease-out 0.9s forwards; }
.hero-bp-point.bp-corner-2 { animation: heroPointAppear 0.3s ease-out 1.1s forwards; }

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

@keyframes heroPointPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 12px rgba(96, 165, 250, 1));
        transform: scale(1.3);
    }
}

/* Hero Blueprint Measurement Lines */
.hero-bp-measure {
    stroke: rgba(96, 165, 250, 0.3);
    fill: none;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: heroDrawLine 1s ease-out 2s forwards;
}

/* Hide on smaller screens */
@media (max-width: 1024px) {
    .hero-blueprint {
        display: none;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float-shape 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(37, 99, 235, 0.2));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.2));
    top: 60%;
    right: 10%;
    animation-delay: -3s;
    animation-duration: 15s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(37, 99, 235, 0.25);
    top: 30%;
    right: 25%;
    animation-delay: -6s;
    animation-duration: 20s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: -9s;
    animation-duration: 22s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: rgba(37, 99, 235, 0.2);
    top: 50%;
    left: 50%;
    animation-delay: -4s;
    animation-duration: 12s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.25), rgba(37, 99, 235, 0.15));
    top: 15%;
    right: 5%;
    animation-delay: -7s;
    animation-duration: 17s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg) scale(1.05);
    }
}

/* Center Glow Effect */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.08) 30%, transparent 65%);
    animation: glow-pulse 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Particle Container */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particle-rise 8s ease-in-out infinite;
}

@keyframes particle-rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Hero Content - Light text for dark bg */
.hero h1 {
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 24px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    color: var(--gray-300);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    max-width: 900px;
    margin: 0 auto 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 32px;
    margin-bottom: 32px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--gray-300);
}

.bullet-icon {
    font-size: 1.25rem;
}

.hero-callout {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--white);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto 40px;
    backdrop-filter: blur(10px);
}

.hero-callout p {
    color: var(--gray-200);
    font-size: 1.125rem;
    margin: 0;
}

.hero-callout strong {
    color: var(--accent);
}

.hero-micro {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 16px;
}

/* Urgency Banner & Countdown */
.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: urgency-pulse 2s ease-in-out infinite;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@keyframes urgency-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(220, 38, 38, 0.2); }
}

.urgency-banner span {
    color: #FCA5A5;
    font-size: 0.875rem;
    font-weight: 500;
}

.urgency-icon {
    font-size: 1.25rem !important;
}

.countdown {
    display: flex;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 10px;
    border-radius: 6px;
    min-width: 44px;
}

.countdown-num {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white) !important;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.625rem;
    color: var(--gray-400) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

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

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.trust-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Enhanced Bullet Items */
.bullet-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-bullets .bullet-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bullets .bullet-item strong {
    color: var(--accent);
}

/* Hero CTA Group */
.hero-cta-group {
    margin-top: 32px;
}

.btn-glow {
    animation: btn-glow-pulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes btn-glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 60px rgba(37, 99, 235, 0.3); }
}

.hero-micro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.micro-check {
    color: var(--accent);
    font-weight: 600;
}

.micro-dot {
    color: var(--gray-600);
}

/* Social Proof Ticker */
.hero-ticker {
    margin-top: 48px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 20s linear infinite;
    width: max-content;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    white-space: nowrap;
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fade-in-up 1s ease-out 1.5s forwards;
    opacity: 0;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
    }
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    color: var(--accent);
    animation: scroll-bounce-arrow 2s ease-in-out infinite;
}

.scroll-arrow svg {
    display: block;
}

@keyframes scroll-bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========================================
   SOCIAL PROOF SECTION
======================================== */
.social-proof {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.proof-header h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.proof-header p {
    color: var(--gray-400);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

.social-proof .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.stat-card {
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
}

.proof-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.quote-card {
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border-left: 3px solid #2563EB;
    text-align: left;
}

.quote-card p {
    color: var(--gray-200);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 12px;
}

.quote-author {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.proof-banner {
    background: var(--gradient-gold);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.proof-banner p {
    color: var(--dark) !important;
}

.proof-banner p {
    color: var(--white);
    font-size: 1.125rem;
    margin: 0;
}

/* ========================================
   TRUST BADGES SECTION
======================================== */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.2);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.5), transparent);
}

.trust-header {
    text-align: center;
    margin-bottom: 40px;
}

.trust-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 0;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.badge-item:hover .badge-glow {
    opacity: 1;
    transform: scale(1.5);
}

.badge-item:hover .badge-icon {
    transform: scale(1.15);
}

.badge-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.badge-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.badge-subtitle {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-weight: 500;
}

.badge-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsive adjustments for trust badges */
@media (max-width: 1024px) {
    .trust-badges {
        gap: 16px;
    }
    
    .badge-divider {
        display: none;
    }
    
    .badge-item {
        padding: 12px 20px;
    }
}

@media (max-width: 640px) {
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .badge-item {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .badge-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(37, 99, 235, 0.3);
    }
}

/* ========================================
   WHO THIS IS FOR SECTION (Premium)
======================================== */
.who-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--gray-900) 50%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.who-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.who-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    animation: who-glow 8s ease-in-out infinite;
}

@keyframes who-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.who-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.who-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.who-header h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.who-header .section-sub {
    color: var(--gray-400);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto;
}

.text-gradient {
    background: linear-gradient(135deg, #2563EB, #60A5FA, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.fit-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fit-card:hover {
    transform: translateY(-8px);
}

.fit-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.3), transparent 30%);
    animation: rotate-glow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fit-card:hover .fit-card-glow {
    opacity: 1;
}

@keyframes rotate-glow {
    100% { transform: rotate(360deg); }
}

.fit-card-inner {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 100%;
    backdrop-filter: blur(10px);
}

.fit-yes .fit-card-inner {
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.fit-yes:hover .fit-card-inner {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(37, 99, 235, 0.2);
}

.fit-no .fit-card-inner {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.fit-no:hover .fit-card-inner {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fit-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.fit-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fit-icon-yes {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #2563EB;
}

.fit-icon-no {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.fit-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fit-title-group h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.fit-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.fit-yes .fit-subtitle {
    color: rgba(37, 99, 235, 0.8);
}

.fit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--gray-300);
    font-size: 0.9375rem;
    line-height: 1.5;
    padding: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.fit-list li:hover {
    transform: translateX(4px);
}

.fit-list li strong {
    color: var(--white);
    font-weight: 600;
}

.fit-check, .fit-x {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.fit-check {
    background: rgba(37, 99, 235, 0.15);
    color: #2563EB;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.fit-x {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.fit-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fit-yes .fit-footer {
    border-color: rgba(37, 99, 235, 0.2);
}

.fit-footer-text {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}

.fit-yes .fit-footer-text {
    color: #2563EB;
}

.fit-footer-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.fit-footer-no {
    justify-content: center;
}

.who-cta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.who-cta-text {
    color: var(--gray-400);
    font-size: 1.125rem;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .who-section {
        padding: 80px 0;
    }
    
    .who-header h2 {
        font-size: 2rem;
    }
    
    .fit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .fit-card-inner {
        padding: 28px;
    }
    
    .fit-icon-wrapper {
        width: 48px;
        height: 48px;
    }
    
    .fit-title-group h3 {
        font-size: 1.25rem;
    }
    
    .fit-list {
        gap: 12px;
    }
    
    .fit-list li {
        font-size: 0.875rem;
    }
}

/* ========================================
   OFFER SECTION (Ultra Premium)
======================================== */
.offer-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, var(--gray-900) 50%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.offer-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: offer-gradient-move 12s ease-in-out infinite;
}

@keyframes offer-gradient-move {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.offer-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.offer-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.offer-header h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.offer-header .section-sub {
    color: var(--gray-400);
    font-size: 1.25rem;
    max-width: 550px;
    margin: 0 auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.offer-card {
    position: relative;
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.offer-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Animated border gradient */
.offer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.3));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offer-card:hover::before {
    opacity: 1;
    animation: border-rotate 3s linear infinite;
}

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

.offer-card-inner {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.offer-card:hover .offer-card-inner {
    background: rgba(255, 255, 255, 0.06);
    border-color: transparent;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.offer-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.1), transparent 30%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: card-shine-rotate 4s linear infinite paused;
}

.offer-card:hover .offer-card-shine {
    opacity: 1;
    animation-play-state: running;
}

@keyframes card-shine-rotate {
    100% { transform: rotate(360deg); }
}

.offer-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.offer-icon {
    font-size: 2.75rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.offer-card:hover .offer-icon {
    transform: scale(1.2) translateY(-4px);
}

.offer-icon-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.offer-card:hover .offer-icon-glow {
    opacity: 1;
    transform: scale(1.4);
}

.offer-content h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 700;
}

.offer-content p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin: 0;
}

.offer-callout {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 32px 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.offer-callout:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.offer-callout-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.offer-callout-content p {
    color: var(--gray-300);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

.offer-callout-content strong {
    color: #2563EB;
}

/* Responsive */
@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 80px 0;
    }
    
    .offer-header h2 {
        font-size: 2rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .offer-card-inner {
        padding: 28px 24px;
    }
    
    .offer-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .offer-icon {
        font-size: 2.25rem;
    }
    
    .offer-callout {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
}

/* ========================================
   COMPENSATION SECTION
======================================== */
.comp-section {
    padding: 100px 0;
    background: #0a0a0a;
    text-align: center;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
}

.comp-item {
    padding: 24px;
    border-left: 3px solid #2563EB;
}

.comp-item h4 {
    margin-bottom: 8px;
    color: var(--white);
}

.comp-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.comp-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.comp-note p {
    color: var(--gray-300);
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   DAY IN THE LIFE SECTION
======================================== */
.day-section {
    padding: 100px 0;
    background: #111111;
    text-align: center;
}

.day-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.day-item {
    padding: 32px 24px;
    background: #0a0a0a;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.day-time {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.day-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-400);
}

.day-footer {
    padding: 24px;
    background: var(--dark);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.day-footer p {
    color: var(--white);
    font-size: 1.25rem;
    margin: 0;
}

/* ========================================
   CULTURE SECTION (Ultra Premium)
======================================== */
.culture-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, #050505 50%, var(--gray-900) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.culture-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.culture-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: 
        radial-gradient(ellipse at 40% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 60%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    animation: culture-gradient-pulse 10s ease-in-out infinite;
}

@keyframes culture-gradient-pulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.culture-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 98%, rgba(37, 99, 235, 0.03) 100%);
    background-size: 100% 100px;
}

.culture-header {
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.culture-header h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.culture-header .section-sub {
    color: var(--gray-400);
    font-size: 1.25rem;
    max-width: 500px;
    margin: 0 auto;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.culture-item {
    position: relative;
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.culture-item:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Animated border for culture items */
.culture-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(37, 99, 235, 0.4), rgba(37, 99, 235, 0.4));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.culture-item:hover::before {
    opacity: 1;
    animation: culture-border-rotate 4s linear infinite;
}

@keyframes culture-border-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.culture-item-inner {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    height: 100%;
    backdrop-filter: blur(20px);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.culture-item:hover .culture-item-inner {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: transparent;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Rotating glow effect */
.culture-item-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.08), transparent 20%);
    opacity: 0;
    animation: culture-glow-rotate 6s linear infinite paused;
    transition: opacity 0.4s ease;
}

.culture-item:hover .culture-item-inner::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes culture-glow-rotate {
    100% { transform: rotate(360deg); }
}

.culture-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #2563EB;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.culture-item:hover .culture-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
    border-color: rgba(37, 99, 235, 0.4);
}

.culture-content {
    position: relative;
    z-index: 1;
}

.culture-content h4 {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.culture-item:hover .culture-content h4 {
    color: #2563EB;
}

.culture-content p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin: 0;
}

.culture-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 0;
}

.culture-item:hover .culture-number {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
    -webkit-background-clip: text;
    background-clip: text;
}

.culture-cta {
    position: relative;
    z-index: 1;
}

.culture-cta-content {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.culture-cta-text {
    color: var(--gray-300);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .culture-section {
        padding: 80px 0;
    }
    
    .culture-header h2 {
        font-size: 2rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .culture-item-inner {
        padding: 28px 24px;
    }
    
    .culture-icon-wrapper {
        width: 52px;
        height: 52px;
    }
    
    .culture-number {
        font-size: 3rem;
        bottom: 16px;
        right: 16px;
    }
    
    .culture-cta-content {
        padding: 28px 32px;
        width: 100%;
    }
}

/* ========================================
   VIDEO SECTION
======================================== */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
}

.video-section h2 {
    color: var(--white);
}

.video-section .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

.video-section .section-sub {
    color: var(--gray-400);
}

.video-wrapper {
    max-width: 540px;
    margin: 0 auto 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-800);
}

.video-placeholder {
    padding: 80px 40px;
    text-align: center;
}

.video-placeholder a {
    display: block;
    color: var(--white);
    text-decoration: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.video-placeholder a:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder p {
    color: var(--gray-300);
    font-weight: 500;
}

.video-cta {
    max-width: 600px;
    margin: 0 auto;
}

.video-cta p {
    color: var(--gray-300);
    font-size: 1.125rem;
}

/* ========================================
   PROCESS SECTION
======================================== */
.process-section {
    padding: 100px 0;
    background: #0a0a0a;
    text-align: center;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    padding: 32px 24px;
    background: #111111;
    border-radius: var(--radius-lg);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step h4 {
    margin-bottom: 8px;
}

.step p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--gray-400);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--gray-400);
    font-weight: 300;
}

.process-urgency {
    background: var(--warning);
    color: var(--white);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.process-urgency p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta {
    padding: 120px 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta .container {
    position: relative;
    z-index: 10;
}

.final-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.final-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 50%);
}

.final-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 100% 80px;
}

.final-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.4);
    color: var(--accent);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.final-cta h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.final-sub {
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-question {
    margin-bottom: 40px;
}

.final-question p {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.final-stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.final-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 20px 32px;
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto 40px;
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-text {
    text-align: left;
    color: var(--gray-300);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.guarantee-text strong {
    color: #6EE7B7;
}

.final-cta .btn-xlarge {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4); }
    to { box-shadow: 0 4px 40px rgba(37, 99, 235, 0.8); }
}

.final-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: urgency-blink 1s ease-in-out infinite;
}

@keyframes urgency-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.final-micro {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.final-micro-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.final-micro-check {
    color: #2563EB;
    font-weight: 700;
}

/* Premium Final CTA Enhancements */
.final-spotlight {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: conic-gradient(from 0deg, transparent, rgba(37, 99, 235, 0.1), transparent 30%);
    animation: spotlightRotate 20s linear infinite;
}

@keyframes spotlightRotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.final-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.final-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.final-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2563EB;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
    animation: finalParticleRise 8s ease-in-out infinite;
}

@keyframes finalParticleRise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(80vh) scale(1); }
    90% { opacity: 0.5; }
    100% { transform: translateY(-20vh) scale(0.5); opacity: 0; }
}

/* Logo Mark */
.final-logo-mark {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: finalLogoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.5));
}

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

.final-logo-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: finalLogoGlow 3s ease-in-out infinite;
}

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

.final-logo-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    animation: finalLogoRingExpand 3s ease-out infinite;
}

.final-logo-ring-2 {
    animation-delay: 1.5s;
}

@keyframes finalLogoRingExpand {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Badge Enhancements */
.final-badge-dot {
    width: 8px;
    height: 8px;
    background: #2563EB;
    border-radius: 50%;
    animation: badgeDotPulse 1.5s ease-in-out infinite;
}

@keyframes badgeDotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.6); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
}

/* Headline Animation */
.final-headline {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.final-word {
    display: inline-block;
}

.final-word-highlight {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.final-word-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #60A5FA);
    border-radius: 2px;
}

/* Question Box Enhancement */
.final-question-inner {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 24px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.final-question-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    animation: questionShine 3s ease-in-out infinite;
}

@keyframes questionShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.final-question-icon {
    font-size: 2rem;
}

/* Stats Enhancement */
.final-stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.final-stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 16px;
}

.final-stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563EB, #60A5FA);
    border-radius: 2px;
}

.final-stat-urgent .final-stat-num {
    color: #60A5FA;
    animation: urgentPulse 1s ease-in-out infinite;
}

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

.final-stat-bar-urgent .final-stat-bar-fill {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

/* Guarantee Enhancement */
.final-guarantee-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: guaranteeGlow 4s ease-in-out infinite;
}

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

.final-guarantee-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.03) 100%);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 28px 36px;
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.guarantee-shield {
    position: relative;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-shield-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    animation: shieldRingPulse 2s ease-out infinite;
}

@keyframes shieldRingPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.guarantee-content {
    text-align: left;
}

.guarantee-title {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 8px;
}

/* Premium CTA Button */
.final-cta-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}

.final-apply-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a0a0a;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.final-btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563EB 0%, #60A5FA 50%, #2563EB 100%);
    background-size: 200% 100%;
    animation: btnBgShift 3s ease-in-out infinite;
    z-index: -2;
}

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

.final-btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShineMove 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes btnShineMove {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.final-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.final-btn-icon {
    font-size: 1.25rem;
}

.final-btn-arrow {
    transition: transform 0.3s ease;
}

.final-apply-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
}

.final-apply-btn:hover .final-btn-arrow {
    transform: translateX(6px);
}

.final-btn-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    z-index: -1;
    animation: btnPulseRing 2s ease-out infinite;
    opacity: 0;
}

@keyframes btnPulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* Trust Avatars */
.final-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.final-avatars {
    display: flex;
}

.final-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2563EB;
    margin-left: -12px;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.final-avatar:first-child {
    margin-left: 0;
}

.final-avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.final-avatar-more {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: #0a0a0a;
    font-size: 0.75rem;
}

.final-trust-text {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

/* Responsive Final CTA */
@media (max-width: 768px) {
    .final-headline {
        font-size: 2.5rem;
        gap: 10px;
    }
    
    .final-question-inner {
        flex-direction: column;
        padding: 20px 24px;
    }
    
    .final-guarantee-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .guarantee-content {
        text-align: center;
    }
    
    .final-apply-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .final-micro {
        flex-direction: column;
        gap: 12px;
    }
    
    .final-trust {
        flex-direction: column;
        gap: 12px;
    }
}

.final-micro span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .final-stats {
        gap: 24px;
    }
    
    .final-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-text {
        text-align: center;
    }
    
    .final-micro {
        flex-direction: column;
        gap: 8px;
    }
}

/* ========================================
   EXIT INTENT POPUP
======================================== */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(37, 99, 235, 0.3);
    overflow: hidden;
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1) translateY(0);
}

.exit-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.exit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--gray-400);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.exit-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.exit-content {
    padding: 48px 40px;
    text-align: center;
}

.exit-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    color: #FCA5A5;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.exit-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.exit-headline {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.exit-headline .gold {
    color: var(--accent);
    font-weight: 700;
}

.exit-offer {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
}

.exit-offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.exit-offer p {
    color: var(--gray-300);
    margin-bottom: 16px;
}

.exit-offer ul {
    text-align: left;
    display: inline-block;
}

.exit-offer li {
    color: var(--white);
    padding: 6px 0;
    font-weight: 500;
}

.exit-countdown {
    margin-bottom: 24px;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.exit-timer {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    color: #FCA5A5;
    font-weight: 800;
    font-size: 1.125rem;
    padding: 4px 12px;
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
}

.exit-content .btn {
    width: 100%;
    margin-bottom: 16px;
}

.exit-decline {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.8125rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
}

.exit-decline:hover {
    color: var(--gray-400);
}

@media (max-width: 500px) {
    .exit-content {
        padding: 40px 24px;
    }
    
    .exit-content h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   APPLICATION MODAL & FORM
======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #ffffff;
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: #111;
}

.modal-header p {
    color: #666;
    font-size: 0.9375rem;
}

/* Application Form */
.application-form {
    padding: 24px 32px 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    background: #f8f8f8;
    color: #111;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin-top: 24px;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.btn-full {
    width: 100%;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success Modal */
.modal-success {
    text-align: center;
    padding: 48px 32px;
    max-width: 440px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: success-bounce 0.6s ease;
}

@keyframes success-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.modal-success h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--white);
}

.modal-success p {
    color: #555;
    margin-bottom: 12px;
}

.modal-success h3 {
    color: #111;
}

.success-note {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 24px !important;
}

/* Form validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not([value=""]),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--danger);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--success);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .modal {
        max-height: 100vh;
        border-radius: var(--radius-lg);
    }
    
    .modal-header {
        padding: 24px 20px 20px;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 40px 0;
    background: var(--dark);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.footer-sub {
    font-size: 0.75rem !important;
    color: var(--gray-600) !important;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .sticky-cta .container {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero {
        padding: 120px 0 100px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-bullets {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-callout {
        padding: 16px 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .shape {
        display: none;
    }
    
    .hero-glow {
        width: 300px;
        height: 300px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .btn-xlarge {
        padding: 18px 36px;
        font-size: 1.125rem;
    }
    
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .fit-grid {
        grid-template-columns: 1fr;
    }
    
    .fit-card {
        padding: 24px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .final-cta {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-badge {
        font-size: 0.6875rem;
        padding: 6px 12px;
    }
    
    .btn {
        width: 100%;
    }
    
    .quote-card {
        padding: 16px;
    }
    
    .offer-card,
    .culture-item,
    .day-item {
        padding: 20px;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   ADVANCED ANIMATIONS & MICRO-INTERACTIONS
======================================== */

/* Scroll-triggered fade-in animations - Fast & Snappy */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-25px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(25px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered animation delays - Tighter timing */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }

/* Hero text reveal animation */
@keyframes reveal-text {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero h1 {
    animation: reveal-text 0.8s ease-out forwards;
}

.hero-sub {
    animation: reveal-text 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-bullets {
    animation: reveal-text 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-callout {
    animation: reveal-text 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Floating animation for badges */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge {
    animation: float 3s ease-in-out infinite, reveal-text 0.6s ease-out forwards;
}

/* Enhanced button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

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

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Ripple effect on click */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* Stat counter animation */
@keyframes count-up {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-number {
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

/* Quote card hover effects */
.quote-card {
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.quote-card:hover {
    transform: translateX(8px);
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}

/* Fit card interactions */
.fit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fit-card li {
    transition: transform 0.2s ease, color 0.2s ease;
}

.fit-card:hover li:hover {
    transform: translateX(8px);
}

/* Offer card 3D tilt effect */
.offer-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.offer-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.offer-icon {
    transition: transform 0.3s ease;
}

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

/* Process steps animation */
.step {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: #0a0a0a;
}

.step-number {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.step-arrow {
    transition: transform 0.3s ease, color 0.3s ease;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Culture items magnetic effect */
.culture-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: #0a0a0a;
}

/* Day timeline items */
.day-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.day-time {
    transition: background 0.3s ease, transform 0.3s ease;
}

.day-item:hover .day-time {
    background: var(--accent);
    transform: scale(1.05);
}

/* Video play button pulse */
.play-button {
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: play-pulse 2s ease-out infinite;
}

@keyframes play-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Final CTA dramatic entrance */
.final-cta h2 {
    animation: dramatic-entrance 1s ease-out forwards;
}

@keyframes dramatic-entrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Enhanced glow animation for final CTA */
.final-cta .btn-xlarge {
    animation: glow 2s ease-in-out infinite alternate, pulse-scale 2s ease-in-out infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Sticky CTA slide-in */
@keyframes slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-cta {
    animation: slide-down 0.5s ease-out forwards;
}

/* Callout box shine effect */
.hero-callout,
.proof-banner,
.offer-callout,
.process-urgency {
    position: relative;
    overflow: hidden;
}

.hero-callout::after,
.proof-banner::after,
.offer-callout::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.1) 50%,
        transparent 60%
    );
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Typing cursor effect for headlines */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
}

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Number counting animation helper */
.count-up {
    transition: all 0.3s ease;
}

/* Tooltip on hover */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 8px 16px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.75rem;
    border-radius: var(--radius);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Confetti burst animation (for success states) */
@keyframes confetti {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-500px) rotate(720deg); opacity: 0; }
}

/* Gradient text animation */
.gradient-animate {
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .fade-in,
    .fade-in-left,
    .fade-in-right,
    .scale-in {
        opacity: 1;
        transform: none;
    }
}
