/* ===== CRITICAL MOBILE OPTIMIZATIONS ===== */

/* Global mobile performance fixes */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
}

/* iPhone-specific optimizations */
@supports (-webkit-touch-callout: none) {
    .hero {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
        contain: layout style paint;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    .hero-background {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
        contain: layout style paint;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    .hero-background::before,
    .hero-background::after {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
        contain: layout style paint;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    .particles {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
        contain: layout style paint;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    .bloom-animation {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
        contain: layout style paint;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    /* Prevent hero section from disappearing during scroll */
    .hero-content {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
        contain: layout style paint;
    }
}

/* Allow text selection where appropriate */
.selectable,
input,
textarea,
[contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent iOS bounce scroll on specific elements */
.hero,
.section,
main,
.container {
    touch-action: pan-y;
    overscroll-behavior: contain;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Disable intensive animations on mobile */
    .dynamic-star,
    .bloom-animation,
    .parallax-element,
    [id^="dynamic-stars-layer"] {
        display: none !important;
    }
    
    /* Optimize remaining animations for mobile */
    * {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Reduce complexity of transforms */
    .service-card:hover,
    .testimonial-card:hover,
    .app-card:hover {
        transform: translateY(-5px) !important;
    }
    
    /* Disable hover effects on touch devices */
    .btn:hover,
    .nav-link:hover,
    .card:hover {
        transform: none !important;
    }
    
    /* iPhone-specific hero section fixes */
    .hero {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }
    
    .hero-background {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }
    
    .hero-background::before,
    .hero-background::after {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }
    
    .particles {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: auto;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transform: none !important;
    }
    
    /* Hide all decorative animations */
    .dynamic-star,
    .bloom-animation,
    .parallax-element,
    .particles,
    [id^="dynamic-stars-layer"],
    .hero-background::before,
    .hero-background::after {
        display: none !important;
    }
}

/* Low-power mode detection and optimization */
@media (prefers-reduced-motion: reduce),
       (max-width: 768px) and (hover: none) {
    
    /* Disable all non-essential animations */
    .shiny-text,
    .decrypt-text,
    .gradient-text {
        animation: none !important;
        background: linear-gradient(135deg, #D05214 0%, #FF6B35 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    
    /* Simplify complex layouts */
    .nav-glow,
    .footer-glow,
    .showcase-glow {
        display: none;
    }
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    body {
        /* Prevent iOS bounce */
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .main-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ===== COOKIE BANNER STYLES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.cookie-text a {
    color: #D05214;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-text a:hover {
    border-bottom-color: #D05214;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #D05214 0%, #E85A1A 100%);
    color: #FFFFFF;
}

.cookie-btn-primary:hover {
    background: linear-gradient(135deg, #E85A1A 0%, #FF6B2B 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(208, 82, 20, 0.3);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn-text {
    background: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1rem;
}

.cookie-btn-text:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.cookie-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    line-height: 1;
    margin-left: 0.5rem;
}

.cookie-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .cookie-text {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== COOKIE CUSTOMIZATION MODAL ===== */
.cookie-customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-customize-modal.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-modal-content {
    position: relative;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 600px;
    max-height: 80vh;
    margin: 10vh auto;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-customize-modal.visible .cookie-modal-content {
    transform: translateY(0) scale(1);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
}

.cookie-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    line-height: 1;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.cookie-modal-body {
    padding: 1rem 2rem;
    max-height: 50vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.cookie-modal-body::-webkit-scrollbar {
    width: 6px;
}

.cookie-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.cookie-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.cookie-modal-description {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-category {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cookie-toggle-container {
    display: flex;
    align-items: center;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 32px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cookie-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(120, 120, 128, 0.16);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(120, 120, 128, 0.32);
}

.cookie-toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateX(0);
}

/* Active state - Orange for optional cookies */
.cookie-toggle.active .cookie-toggle-slider {
    background: linear-gradient(135deg, #D05214 0%, #E85A1A 100%);
    border-color: rgba(208, 82, 20, 0.8);
}

.cookie-toggle.active .cookie-toggle-knob {
    transform: translateX(20px);
    box-shadow: 0 2px 8px rgba(208, 82, 20, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Essential toggle - always active, gray color (locked) */
.cookie-toggle.essential-toggle {
    cursor: not-allowed;
    opacity: 0.9;
}

.cookie-toggle.essential-toggle .cookie-toggle-slider {
    background: linear-gradient(135deg, #D05214 0%, #E85A1A 100%);
    border-color: rgba(208, 82, 20, 0.8);
}

.cookie-toggle.essential-toggle .cookie-toggle-knob {
    transform: translateX(20px);
    background: #8E8E93;
    box-shadow: 0 2px 8px rgba(142, 142, 147, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Hover effects */
.cookie-toggle:not(.essential-toggle):hover .cookie-toggle-slider {
    background: rgba(120, 120, 128, 0.24);
    border-color: rgba(120, 120, 128, 0.48);
}

.cookie-toggle:not(.essential-toggle).active:hover .cookie-toggle-slider {
    background: linear-gradient(135deg, #E85A1A 0%, #FF6B2B 100%);
    border-color: rgba(232, 90, 26, 0.9);
}

/* Focus states for accessibility */
.cookie-toggle:focus {
    outline: 2px solid rgba(208, 82, 20, 0.5);
    outline-offset: 2px;
    border-radius: 18px;
}

.cookie-toggle.essential-toggle:focus {
    outline-color: rgba(142, 142, 147, 0.5);
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h3 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
}

.cookie-category-status,
.cookie-category-vendors {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.cookie-category-status {
    color: #D05214;
}

.cookie-category-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 0.9rem;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    justify-content: flex-end;
}

.cookie-modal-links {
    text-align: center;
    font-size: 0.85rem;
}

.cookie-modal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-modal-links a:hover {
    color: #D05214;
}

.cookie-modal-links span {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* Responsive design for cookie modal */
@media (max-width: 768px) {
    .cookie-modal-content {
        margin: 5vh 1rem;
        max-height: 90vh;
    }
    
    .cookie-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .cookie-modal-header h2 {
        font-size: 1.25rem;
    }
    
    .cookie-modal-body {
        padding: 1rem 1.5rem;
        max-height: 60vh;
    }
    
    .cookie-category {
        padding: 1rem;
    }
    
    .cookie-category-header {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    .cookie-toggle-container {
        order: 2;
        flex-shrink: 0;
    }
    
    .cookie-category-info {
        order: 1;
        flex: 1;
    }
    
    .cookie-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-modal-actions .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1.25rem 0;
    }
    
    .cookie-banner-content {
        padding: 0 1rem;
        gap: 1.25rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Focus states for accessibility */
.cookie-btn:focus-visible {
    outline: 2px solid #D05214;
    outline-offset: 2px;
}

.cookie-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ===== LANGUAGE SWITCHER STYLES ===== */
.language-switcher {
    position: relative;
    margin-left: 1rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.lang-toggle.active {
    background: rgba(208, 82, 20, 0.2);
    border-color: rgba(208, 82, 20, 0.4);
    color: #D05214;
}

.lang-toggle svg {
    transition: transform 0.3s ease;
}

.lang-toggle.active svg {
    transform: rotate(180deg);
}

.lang-current {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.lang-option.active {
    background: rgba(208, 82, 20, 0.15);
    color: #D05214;
}

.lang-flag {
    font-size: 1.1rem;
    filter: brightness(0.9);
}

.lang-name {
    font-family: 'Inter', sans-serif;
}

/* Tablet responsive for contact section */
@media (max-width: 1024px) {
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

/* Mobile responsive for contact section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-info p {
        font-size: 1.1rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-switcher {
        order: -1;
        margin-left: 0;
        margin-right: auto;
    }
    
    .lang-toggle {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-height: 40px;
        min-width: 50px;
    }
    
    .lang-dropdown {
        left: 0;
        right: auto;
        min-width: 120px;
    }
    
    .lang-option {
        padding: 0.625rem;
        font-size: 0.8rem;
    }
}

/* Focus states for accessibility */
.lang-toggle:focus-visible,
.lang-option:focus-visible {
    outline: 2px solid #D05214;
    outline-offset: 2px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    pointer-events: none;
    z-index: -1;
    /* Isolate background layer to prevent star animation interference */
    isolation: isolate;
    transform: translateZ(0);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(208, 82, 20, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 30, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    /* Isolate background layer to prevent star animation interference */
    isolation: isolate;
    transform: translateZ(0);
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translate3d(30%, -30%, 0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate3d(35%, -25%, 0) scale(1.05);
        opacity: 0.15;
    }
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Premium backdrop blur effects */
.glass-effect {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced fade-in animations (optimized) */
.fade-in {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

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

.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

/* Decrypted text effect styles */
.decrypt-text {
    display: inline-block;
    font-family: 'Inter', monospace;
    position: relative;
    /* Isolate text animations to prevent star flickering */
    isolation: isolate;
    contain: layout style paint;
}

.decrypt-char {
    display: inline-block;
    transition: all 0.1s ease;
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 0 8px rgba(208, 82, 20, 0.3);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
}

.decrypt-char {
    display: inline-block;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.85) !important;
    text-shadow: 0 0 8px rgba(208, 82, 20, 0.3);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
    position: relative;
    z-index: 1;
    /* Optimize individual character rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.decrypt-char.revealed {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 
        0 0 10px rgba(208, 82, 20, 0.4),
        0 0 20px rgba(208, 82, 20, 0.2),
        0 0 30px rgba(208, 82, 20, 0.1);
    animation: decryptReveal 0.3s ease;
    transition: all 0.3s ease;
}


/* Apply gradient only after full animation completes */
.gradient-text.decrypt-complete .decrypt-char.revealed {
    background: linear-gradient(135deg, #D05214 0%, #FF6B35 50%, #D05214 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    transition: all 0.5s ease;
}

.space-char {
    display: inline-block;
    width: 0.25em;
}

@keyframes decryptReveal {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
        filter: blur(2px);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0px);
    }
}

/* Enhanced Shiny text effect with smooth shimmer sweep */
.shiny-text {
    color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    animation: shine 5s linear infinite;
}

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

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

.shiny-text.disabled {
    animation: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #D05214;
    border-radius: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, #D05214 0%, #FF6B35 50%, #D05214 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

/* Premium text styles */
.text-large {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.text-accent {
    color: #D05214;
    font-weight: 600;
}

/* ===== PREMIUM BUTTONS ===== */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.01em;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    min-width: 180px;
    height: 56px;
}

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

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

.btn-primary {
    background: #D05214;
    color: white;
    box-shadow: 0 4px 12px rgba(208, 82, 20, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #B8460F;
    box-shadow: 0 6px 20px rgba(208, 82, 20, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #1E1E1E;
    font-weight: 500;
}

.btn-secondary:hover {
    background: #1E1E1E;
    border-color: #1E1E1E;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #D05214;
    border: 1px solid #D05214;
    font-weight: 500;
}

.btn-outline:hover {
    background: #D05214;
    border-color: #D05214;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== PREMIUM NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.6), transparent);
    animation: navShimmer 3s ease-in-out infinite;
}

.nav-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(208, 82, 20, 0.03) 0%, transparent 70%);
    animation: navPulse 4s ease-in-out infinite;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: rgba(208, 82, 20, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    height: 72px;
    position: relative;
    z-index: 1001;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1002;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: filter 0.3s ease;
}

.nav-logo:hover .logo-image {
    filter: brightness(1.2) contrast(1.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1002;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Unused logo styles - keeping for reference
.logo-bloom-icon {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #D05214, #FFB74D);
    border-radius: 50%;
    animation: logoBloom 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(208, 82, 20, 0.6);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D05214 0%, #FFB74D 50%, #D05214 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1002;
    animation: logoGradient 3s ease-in-out infinite;
}

.logo-sparkle {
    width: 4px;
    height: 4px;
    background: #FFB74D;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 183, 77, 0.8);
}
*/

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(208, 82, 20, 0.3), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-text {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-arrow {
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
    position: relative;
    z-index: 2;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(208, 82, 20, 0.08);
    border-color: rgba(208, 82, 20, 0.2);
    box-shadow: 0 8px 25px rgba(208, 82, 20, 0.15);
}

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

.nav-link:hover .nav-arrow {
    transform: translateX(3px);
}

.nav-cta {
    background: transparent;
    border: 2px solid rgba(208, 82, 20, 0.85);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-left: 1rem;
    position: relative;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: constantGlow 3s ease-in-out infinite;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 20%,
        rgba(208, 82, 20, 0.3) 40%,
        rgba(255, 122, 61, 0.8) 50%,
        rgba(208, 82, 20, 0.3) 60%,
        transparent 80%,
        transparent 100%
    );
    animation: orangeShine 2.5s ease-in-out infinite;
    z-index: 1;
    border-radius: 8px;
}

/* Removed animated border pseudo-element */

@keyframes orangeShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        left: 100%;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes constantGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 0 rgba(208, 82, 20, 0),
            0 2px 8px rgba(208, 82, 20, 0.1);
        border-color: rgba(208, 82, 20, 0.85);
    }
    50% {
        box-shadow: 
            0 0 0 4px rgba(208, 82, 20, 0.2),
            0 4px 16px rgba(255, 122, 61, 0.3);
        border-color: rgba(255, 122, 61, 1);
    }
}

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

/* Removed invitingPulse animation with zoom effect */

/* Removed after pseudo-element */

.nav-cta:hover {
    background: rgba(208, 82, 20, 0.1);
    color: #ffffff;
    border-color: rgba(255, 122, 61, 1);
    transform: translateY(-2px);
    box-shadow: 
        0 0 0 6px rgba(208, 82, 20, 0.15),
        0 6px 20px rgba(255, 122, 61, 0.4);
}

/* Removed hover after effect */

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-toggle:hover {
    background: rgba(208, 82, 20, 0.1);
    border-color: rgba(208, 82, 20, 0.3);
    transform: scale(1.05);
}

.bar {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    margin: 2px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 5px);
    background: #D05214;
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -5px);
    background: #D05214;
}

/* Navigation Animations */
@keyframes navShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes navPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.05); }
}

@keyframes logoBloom {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(208, 82, 20, 0.6); }
    50% { transform: scale(1.3); box-shadow: 0 0 25px rgba(208, 82, 20, 0.8); }
}

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

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(1); 
        box-shadow: 0 0 8px rgba(255, 183, 77, 0.8); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5); 
        box-shadow: 0 0 15px rgba(255, 183, 77, 1); 
    }
}

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

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

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

/* ===== HERO SECTION - AWWWARDS QUALITY LIQUID BACKGROUND ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1200px 800px at 20% 120%, rgba(139, 48, 12, 0.35) 0%, rgba(139, 48, 12, 0.15) 30%, transparent 60%),
        radial-gradient(ellipse 1000px 600px at 80% -20%, rgba(30, 30, 30, 0.28) 0%, rgba(30, 30, 30, 0.12) 35%, transparent 70%),
        radial-gradient(ellipse 800px 1200px at -10% 50%, rgba(208, 82, 20, 0.25) 0%, rgba(208, 82, 20, 0.08) 40%, transparent 65%);
    filter: blur(80px) saturate(1.3);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 900px 1400px at 110% 30%, rgba(30, 30, 30, 0.25) 0%, rgba(30, 30, 30, 0.12) 25%, transparent 60%),
        radial-gradient(ellipse 1600px 400px at 50% 110%, rgba(139, 48, 12, 0.22) 0%, rgba(139, 48, 12, 0.08) 30%, transparent 55%),
        radial-gradient(ellipse 600px 800px at -20% 80%, rgba(255, 107, 53, 0.18) 0%, rgba(255, 107, 53, 0.06) 35%, transparent 65%);
    filter: blur(120px) saturate(1.2);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 700px 1000px at 70% 70%, rgba(139, 48, 12, 0.2) 0%, rgba(139, 48, 12, 0.08) 30%, transparent 70%),
        radial-gradient(ellipse 1200px 500px at 30% 30%, rgba(30, 30, 30, 0.15) 0%, rgba(30, 30, 30, 0.06) 25%, transparent 65%),
        radial-gradient(ellipse 500px 800px at 90% 10%, rgba(208, 82, 20, 0.12) 0%, rgba(208, 82, 20, 0.04) 40%, transparent 70%);
    filter: blur(60px) saturate(1.4);
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 1800px 600px at 10% 90%, rgba(30, 30, 30, 0.15) 0%, rgba(30, 30, 30, 0.05) 40%, transparent 75%),
        radial-gradient(ellipse 400px 1200px at 80% 120%, rgba(139, 48, 12, 0.18) 0%, rgba(139, 48, 12, 0.07) 35%, transparent 70%);
    filter: blur(100px) saturate(1.3);
    z-index: -2;
}

/* Enhanced Orange Nebula Animation */
.bloom-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 800px;
    background: 
        radial-gradient(ellipse 60% 40% at 40% 60%, rgba(208, 82, 20, 0.15) 0%, rgba(255, 122, 61, 0.08) 30%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 70% 30%, rgba(139, 48, 12, 0.12) 0%, rgba(208, 82, 20, 0.06) 40%, transparent 80%);
    filter: blur(100px);
    animation: smokyNebula 30s ease-in-out infinite;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    contain: layout style paint;
}

/* iPhone-specific bloom animation optimization */
@supports (-webkit-touch-callout: none) {
    .bloom-animation {
        animation: smokyNebulaMobile 45s ease-in-out infinite;
        will-change: auto;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.9) 0%, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 1) 0%, transparent 2px),
        radial-gradient(circle at 75% 85%, rgba(255, 255, 255, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.9) 0%, transparent 2px),
        radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 60% 10%, rgba(255, 255, 255, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 35% 90%, rgba(255, 255, 255, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 1px);
    background-size: 400px 400px;
    animation: slowStarDrift 120s linear infinite;
    z-index: 3;
    /* Isolate particles to prevent interference with other animations */
    isolation: isolate;
    contain: layout style paint;
    will-change: transform;
}


@keyframes smokyNebula {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
        opacity: 1;
    }
    25% {
        transform: translate(-48%, -52%) scale(1.1) rotate(1deg);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-52%, -48%) scale(1.2) rotate(0deg); 
        opacity: 1; 
    }
    75% {
        transform: translate(-48%, -52%) scale(1.1) rotate(-1deg);
        opacity: 0.8;
    }
}

/* Mobile-optimized animation with reduced complexity */
@keyframes smokyNebulaMobile {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(0deg); 
        opacity: 0.6;
    }
}

@keyframes slowStarDrift {
    0% {
        background-position: 0% 0%;
        transform: translateZ(0);
    }
    100% {
        background-position: 100% 100%;
        transform: translateZ(0);
    }
}

@keyframes bloom {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0.4; 
    }
    33% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 0.8; 
    }
    66% { 
        transform: translate(-50%, -50%) scale(0.9); 
        opacity: 0.6; 
    }
}

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

/* Removed particles - keeping clean iridescent effect only */

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-120px) translateX(60px); }
    50% { transform: translateY(-240px) translateX(0px); }
    75% { transform: translateY(-360px) translateX(-60px); }
    100% { transform: translateY(-480px) translateX(0px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

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

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
    color: #ffffff;
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: manual;
    word-break: normal;
    white-space: normal;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: manual;
    word-break: normal;
    white-space: normal;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Removed additional floating circles - clean iridescent background only */

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    25% { transform: translateY(-20px) scale(1.05) rotate(5deg); }
    50% { transform: translateY(-40px) scale(1.1) rotate(0deg); }
    75% { transform: translateY(-20px) scale(1.05) rotate(-5deg); }
}

/* ===== PREMIUM TRUST BAR ===== */
.trust-bar {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.3), transparent);
}

.trust-scroll {
    display: flex;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

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

.trust-item {
    padding: 0 4rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
}

.trust-item::before {
    content: '•';
    position: absolute;
    left: 2rem;
    color: #D05214;
    font-size: 1.2rem;
}

.trust-item:first-child::before {
    display: none;
}

/* Mobile optimizations for trust bar */
@media (max-width: 768px) {
    .trust-scroll {
        animation: scroll 15s linear infinite;
    }
    
    .trust-item {
        padding: 0 2.5rem;
        font-size: 0.9rem;
    }
    
    .trust-item::before {
        left: 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trust-scroll {
        animation: scroll 12s linear infinite;
    }
    
    .trust-item {
        padding: 0 2rem;
        font-size: 0.85rem;
    }
    
    .trust-item::before {
        left: 1.25rem;
        font-size: 0.9rem;
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .trust-scroll {
        animation: none;
        transform: translateX(0);
    }
}

/* ===== PREMIUM PROBLEM/SOLUTION SECTION ===== */
.problem-solution {
    padding: 8rem 0;
    background: 
        radial-gradient(ellipse at top left, rgba(208, 82, 20, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(30, 30, 30, 0.02) 0%, transparent 50%);
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

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

.problem-card {
    position: relative;
    border-radius: 1.5rem;
    border: 1px solid #222;
    background-color: #111;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-color: rgba(208, 82, 20, 0.15);
}

.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}


.problem-card:hover::before,
.problem-card:focus-within::before {
    opacity: 0.6;
}

.problem-card:hover::after {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(208, 82, 20, 0.4);
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(208, 82, 20, 0.3));
}

.problem-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #D05214;
    mix-blend-mode: overlay;
    pointer-events: none;
    border-radius: 50%;
}

.problem-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.problem-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.solution-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: rgba(30, 30, 30, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(208, 82, 20, 0.2);
    position: relative;
}



.solution-statement p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===== PREMIUM SERVICES SECTION ===== */
/* ===== AWARD-WORTHY SERVICES SECTION ===== */
.services {
    padding: 12rem 0 !important;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.99) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(208, 82, 20, 0.008) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 56, 62, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

/* Section Header */
.services .section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.services .section-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    line-height: 0.85;
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(208, 82, 20, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.5), transparent);
    border-radius: 1px;
}

.services .section-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
        rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    position: relative;
    cursor: pointer;
    padding: 4rem 3rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.15) 0%, rgba(6, 56, 62, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(208, 82, 20, 0.3);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(208, 82, 20, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.15) 0%, rgba(6, 56, 62, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 32px;
}

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

.service-card:hover {
    border-color: rgba(208, 82, 20, 0.3);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(208, 82, 20, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 3rem auto;
    background: 
        linear-gradient(135deg, rgba(208, 82, 20, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%),
        rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(208, 82, 20, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 16px 40px rgba(208, 82, 20, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #D05214;
    filter: drop-shadow(0 4px 12px rgba(208, 82, 20, 0.3));
    transition: all 0.3s ease;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: rgba(208, 82, 20, 0.4);
    box-shadow: 
        0 12px 48px rgba(208, 82, 20, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card:hover .service-icon svg {
    color: #FF6B35;
    filter: drop-shadow(0 6px 20px rgba(208, 82, 20, 0.5));
    transform: scale(1.05);
}

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

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.service-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.service-timeline {
    display: inline-block;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.15) 0%, rgba(30, 30, 30, 0.15) 100%);
    color: #D05214;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(208, 82, 20, 0.2);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.service-card:hover .service-timeline {
    color: #D05214;
    transform: scale(1.05);
}

/* Mobile optimizations for services section */
@media (max-width: 768px) {
    .services {
        padding: 8rem 0 !important;
    }
    
    .services .container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
    
    .service-card {
        margin: 0;
        padding: 2rem 1.5rem;
        border-radius: 24px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .service-icon {
        width: 4rem;
        height: 4rem;
        margin: 0 auto 2rem auto;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 6rem 0 !important;
    }
    
    .services .container {
        padding: 0 0.75rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .service-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 auto 1.5rem auto;
    }
    
    .service-timeline {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* ===== VALIDATION SECTION ===== */
/* ===== AWARD-WORTHY VALIDATION SECTION ===== */
.validation {
    padding: 12rem 0 !important;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.99) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.validation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(208, 82, 20, 0.008) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 56, 62, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.validation-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.4), transparent);
    z-index: 0;
}

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

.validation .section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.validation-text h2 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 3rem;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(208, 82, 20, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.validation-text h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.5), transparent);
    border-radius: 1px;
}

.validation .section-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 700px;
}

.validation-text .text-large {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.validation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: left;
    padding: 2rem 0;
    border-left: 3px solid rgba(208, 82, 20, 0.3);
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.stat:hover {
    border-left-color: #D05214;
    transform: translateX(8px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D05214;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #D05214 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.validation-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.validation-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.8), transparent);
    z-index: 0;
    box-shadow: 0 0 8px rgba(208, 82, 20, 0.4);
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}


.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    border-radius: 25px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(208, 82, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(30, 30, 30, 0.1) 0%, transparent 50%);
    border-radius: 25px;
}

.screen::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.screen:hover::after {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(-50%) scale(1.1);
}

@keyframes screenShimmer {
    0%, 100% {
        opacity: 0.2;
        width: 40%;
    }
    50% {
        opacity: 0.8;
        width: 80%;
    }
}


.validation-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.flow-step {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: all 0.8s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.flow-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.flow-step.active {
    background: rgba(208, 82, 20, 0.15);
    border-color: rgba(208, 82, 20, 0.4);
    box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
    transform: scale(1.05);
}

.flow-step.active::before {
    opacity: 1;
}

.flow-step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.8s ease;
}

.flow-step.active span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
}

/* Text animation for cycling steps */
.flow-step:nth-child(1) span {
    animation: textCycle1 6s infinite;
}

.flow-step:nth-child(3) span {
    animation: textCycle2 6s infinite;
}

.flow-step:nth-child(5) span {
    animation: textCycle3 6s infinite;
}

@keyframes textCycle1 {
    0% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
        opacity: 1;
    }
    28% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
        opacity: 1;
    }
    33.33% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
    95% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
    100% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
        opacity: 1;
    }
}

@keyframes textCycle2 {
    0% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
    28% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
    33.33% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
        opacity: 1;
    }
    61% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
        opacity: 1;
    }
    66.66% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
    100% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
}

@keyframes textCycle3 {
    0% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
    61% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
    66.66% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
        opacity: 1;
    }
    95% {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(208, 82, 20, 0.5);
        opacity: 1;
    }
    100% {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: none;
        opacity: 0.85;
    }
}

/* Auto-cycling animation for flow steps */
.flow-step:nth-child(1) {
    animation: flowCycle1 6s infinite;
}

.flow-step:nth-child(3) {
    animation: flowCycle2 6s infinite;
}

.flow-step:nth-child(5) {
    animation: flowCycle3 6s infinite;
}

@keyframes flowCycle1 {
    0% {
        background: rgba(208, 82, 20, 0.15);
        border-color: rgba(208, 82, 20, 0.4);
        box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
        transform: scale(1.05);
    }
    20% {
        background: rgba(208, 82, 20, 0.15);
        border-color: rgba(208, 82, 20, 0.4);
        box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
        transform: scale(1.05);
    }
    25% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
    95% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
    100% {
        background: rgba(208, 82, 20, 0.15);
        border-color: rgba(208, 82, 20, 0.4);
        box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
        transform: scale(1.05);
    }
}

@keyframes flowCycle2 {
    0% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
    30% {
        background: rgba(208, 82, 20, 0.15);
        border-color: rgba(208, 82, 20, 0.4);
        box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
        transform: scale(1.05);
    }
    50% {
        background: rgba(208, 82, 20, 0.15);
        border-color: rgba(208, 82, 20, 0.4);
        box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
        transform: scale(1.05);
    }
    55% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
    100% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
}

@keyframes flowCycle3 {
    0% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
    60% {
        background: rgba(208, 82, 20, 0.15);
        border-color: rgba(208, 82, 20, 0.4);
        box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
        transform: scale(1.05);
    }
    80% {
        background: rgba(208, 82, 20, 0.15);
        border-color: rgba(208, 82, 20, 0.4);
        box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
        transform: scale(1.05);
    }
    85% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
    100% {
        background: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: scale(1);
    }
}

.flow-arrow {
    font-size: 1.8rem;
    color: #D05214;
    text-align: center;
    font-weight: bold;
    transform: rotate(90deg);
    line-height: 1;
    transition: all 0.3s ease;
}

/* First arrow - activates when moving from Landing Page to User Testing */
.flow-arrow:nth-child(2) {
    animation: arrowCycle1 6s infinite;
}

/* Second arrow - activates when moving from User Testing to Pivot/Build */
.flow-arrow:nth-child(4) {
    animation: arrowCycle2 6s infinite;
}

@keyframes pulseDown {
    0%, 100% {
        opacity: 0.6;
        transform: rotate(90deg) scale(1) translateY(0);
    }
    50% {
        opacity: 1;
        transform: rotate(90deg) scale(1.2) translateY(2px);
    }
}

@keyframes arrowCycle1 {
    0% {
        opacity: 0.3;
        transform: rotate(90deg);
        color: rgba(208, 82, 20, 0.5);
    }
    20% {
        opacity: 1;
        transform: rotate(90deg) scale(1.1);
        color: #D05214;
        text-shadow: 0 0 15px rgba(208, 82, 20, 0.8);
    }
    30% {
        opacity: 1;
        transform: rotate(90deg) scale(1.1);
        color: #D05214;
        text-shadow: 0 0 15px rgba(208, 82, 20, 0.8);
    }
    35% {
        opacity: 0.3;
        transform: rotate(90deg);
        color: rgba(208, 82, 20, 0.5);
    }
    100% {
        opacity: 0.3;
        transform: rotate(90deg);
        color: rgba(208, 82, 20, 0.5);
    }
}

@keyframes arrowCycle2 {
    0% {
        opacity: 0.3;
        transform: rotate(90deg);
        color: rgba(208, 82, 20, 0.5);
    }
    50% {
        opacity: 1;
        transform: rotate(90deg) scale(1.1);
        color: #D05214;
        text-shadow: 0 0 15px rgba(208, 82, 20, 0.8);
    }
    60% {
        opacity: 1;
        transform: rotate(90deg) scale(1.1);
        color: #D05214;
        text-shadow: 0 0 15px rgba(208, 82, 20, 0.8);
    }
    65% {
        opacity: 0.3;
        transform: rotate(90deg);
        color: rgba(208, 82, 20, 0.5);
    }
    100% {
        opacity: 0.3;
        transform: rotate(90deg);
        color: rgba(208, 82, 20, 0.5);
    }
}

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

/* Responsive Design for Validation Section */
@media (max-width: 768px) {
    .validation-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .validation-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat {
        text-align: center;
        border-left: none;
        border-top: 3px solid rgba(208, 82, 20, 0.3);
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .stat:hover {
        transform: translate3d(0, -4px, 0);
        border-top-color: #D05214;
    }
    
    .phone-mockup {
        width: 280px;
        height: 500px;
    }
    
    .screen::after {
        width: 50px;
        height: 3px;
        bottom: 6px;
    }
    
    .screen {
        padding: 2rem 1.5rem;
    }
    
    .validation-flow {
        gap: 1.5rem;
    }
    
    .flow-step {
        padding: 1rem 0.8rem;
        border-radius: 10px;
    }
    
    .flow-step.active {
        transform: scale(1.03);
    }
    
    .flow-step span {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .flow-arrow {
        font-size: 1.4rem;
        margin: 0.4rem 0;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 240px;
        height: 420px;
    }
    
    .screen::after {
        width: 45px;
        height: 3px;
        bottom: 5px;
    }
    
    .screen {
        padding: 1.5rem 1rem;
    }
    
    .validation-flow {
        gap: 1.2rem;
    }
    
    .flow-step {
        padding: 0.8rem 0.6rem;
        border-radius: 8px;
    }
    
    .flow-step.active {
        transform: scale(1.02);
    }
    
    .flow-step span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .flow-arrow {
        font-size: 1.2rem;
        margin: 0.3rem 0;
    }
}

/* ===== PREMIUM PROCESS TIMELINE ===== */
/* ===== AWARD-WORTHY TIMELINE/PROCESS SECTION ===== */
.timeline {
    padding: 12rem 0 !important;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.99) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(208, 82, 20, 0.008) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 56, 62, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.timeline .section-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.04em;
    line-height: 0.85;
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(208, 82, 20, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.timeline .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.5), transparent);
    border-radius: 1px;
}

.timeline .section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.timeline .section-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(30, 30, 30, 0.2) 0%, 
        rgba(30, 30, 30, 0.8) 25%, 
        rgba(208, 82, 20, 0.8) 75%, 
        rgba(208, 82, 20, 0.2) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(208, 82, 20, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) {
    text-align: left;
    padding-right: calc(50% + 40px);
    padding-left: 3rem;
}

.timeline-item:nth-child(even) {
    text-align: right;
    padding-left: calc(50% + 40px);
    padding-right: 3rem;
}

.timeline-marker {
    position: absolute;
    top: 60px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    border-radius: 50%;
    border: 4px solid #000000;
    left: 50%;
    transform: translate(-50%, 0) scale(1);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 0 4px rgba(102, 102, 102, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Remove the individual positioning for odd/even items */

.timeline-item:hover .timeline-marker {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #D05214 0%, #FF6B35 100%);
    box-shadow: 
        0 0 0 8px rgba(208, 82, 20, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(208, 82, 20, 0.5);
    transform: translate(-50%, 0) scale(1.1);
}

.timeline-content {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
        rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    position: relative;
    cursor: pointer;
    padding: 3rem 2.5rem;
    max-width: 480px;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 32px;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    transform: translateY(-8px);
    border-color: rgba(208, 82, 20, 0.3);
    box-shadow: 
        0 48px 96px rgba(0, 0, 0, 0.3),
        0 24px 48px rgba(208, 82, 20, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.timeline-content > * {
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.timeline-content > p {
    font-size: 1rem;
    color: #D05214;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.timeline-item:hover .timeline-details {
    max-height: 400px;
    opacity: 1;
    margin-top: 1rem;
}

.timeline-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-details li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-details li:last-child {
    border-bottom: none;
}

.timeline-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D05214;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeline-details li:hover::before {
    color: #FF6B35;
    transform: translateX(4px);
}

.timeline-details li strong {
    color: #ffffff;
    font-weight: 600;
}

/* Timeline Hover Indicator */
.timeline-content::after {
    content: '▼';
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    color: rgba(208, 82, 20, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.timeline-item:hover .timeline-content::after {
    transform: rotate(180deg);
    color: #D05214;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 3rem;
    }
    
    .timeline-content {
        max-width: 100%;
        padding: 2.5rem 1.5rem 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        min-height: 280px;
        position: relative;
    }
    
    .timeline-marker {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        z-index: 10;
    }
    
    .timeline-content h3 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .timeline-content > p {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .timeline-details {
        margin-top: 1rem;
        width: 100%;
    }
    
    .timeline-content::after {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .timeline-container::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 2rem 1rem 2.5rem 1rem;
        min-height: 240px;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .timeline-content > p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .timeline-details {
        margin-top: 0.75rem;
    }
    
    .timeline-content::after {
        bottom: 1.25rem;
        right: 1rem;
    }
}

.testimonial-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
        rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    position: relative;
    cursor: pointer;
    padding: 4rem 3rem;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}


.testimonial-card:hover {
    border-color: rgba(208, 82, 20, 0.3);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(208, 82, 20, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.testimonial-card.active {
    display: block;
}

/* Fade transition effects for testimonial carousel */
.testimonial-card.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.testimonial-card.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

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

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D05214, #1E1E1E);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
}

.author-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

.rating {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    background: rgba(208, 82, 20, 0.7);
    transform: scale(1.1);
}

.indicator.active {
    background: #D05214;
    box-shadow: 0 0 0 4px rgba(208, 82, 20, 0.2);
}

/* ===== LEGAL DOCUMENT STYLES ===== */
.legal-document {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D05214;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(208, 82, 20, 0.2);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: #D05214;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #FF6B2B;
    text-decoration: underline;
}

/* Removed duplicate .contact-info - see main contact section styles */

/* Removed duplicate - see main contact styles */

.contact-info a {
    color: #D05214;
    font-weight: 500;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(208, 82, 20, 0.2);
    color: #FFFFFF;
    font-weight: 600;
}

.cookie-table td {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-controls {
    text-align: center;
    background: rgba(6, 56, 62, 0.2);
    border: 1px solid rgba(6, 56, 62, 0.4);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design for Legal Documents */
@media (max-width: 768px) {
    .legal-document {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-content h1 {
        font-size: 1.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

/* ===== WHY CHOOSE BLOOMWARE SECTION ===== */
.why-choose {
    padding: 12rem 0;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.99) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(208, 82, 20, 0.008) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 30, 30, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.why-choose .section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.why-choose .section-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    line-height: 0.85;
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(208, 82, 20, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.why-choose .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.5), transparent);
    border-radius: 1px;
}

.why-choose .section-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.differentiator-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
        rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    position: relative;
    cursor: pointer;
    padding: 4rem 3rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.15) 0%, rgba(6, 56, 62, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 32px;
}

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

.differentiator-card:hover {
    border-color: rgba(208, 82, 20, 0.3);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(208, 82, 20, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.differentiator-card > * {
    position: relative;
    z-index: 2;
}

.diff-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 3rem auto;
    background: 
        linear-gradient(135deg, rgba(208, 82, 20, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%),
        rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(208, 82, 20, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 16px 40px rgba(208, 82, 20, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.diff-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #D05214;
    filter: drop-shadow(0 4px 12px rgba(208, 82, 20, 0.3));
    transition: all 0.3s ease;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.differentiator-card:hover .diff-icon {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-color: rgba(208, 82, 20, 0.4);
    box-shadow: 
        0 12px 48px rgba(208, 82, 20, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.differentiator-card:hover .diff-icon svg {
    color: #FF6B35;
    filter: drop-shadow(0 6px 20px rgba(208, 82, 20, 0.5));
    transform: scale(1.05);
}

.differentiator-card:hover .diff-icon {
    transform: scale(1.1) rotate(5deg);
}

.differentiator-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.differentiator-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 2rem;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 768px) {
    .why-choose {
        padding: 8rem 0;
    }
    
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .differentiator-card {
        padding: 3rem 2rem;
    }
    
    .diff-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 2rem;
    }
    
    .diff-icon svg {
        width: 2rem;
        height: 2rem;
    }
    
    .differentiator-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .differentiator-card p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
}

/* ===== FAQ SECTION ===== */
/* ===== AWARD-WORTHY FAQ SECTION ===== */
.faq {
    padding: 12rem 0 !important;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.99) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(208, 82, 20, 0.008) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 56, 62, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.faq .section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.faq .section-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    line-height: 0.85;
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(208, 82, 20, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.faq .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.5), transparent);
    border-radius: 1px;
}

.faq .section-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list,
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
        rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    position: relative;
    cursor: pointer;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.15) 0%, rgba(6, 56, 62, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    border-color: rgba(208, 82, 20, 0.3);
    box-shadow: 
        0 16px 32px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(208, 82, 20, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #FFFFFF;
    padding: 2rem 2.5rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #D05214;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 0 0 12px 12px;
    border: 1px solid transparent;
    margin-top: -1px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    border-color: rgba(208, 82, 20, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-answer p {
    padding: 1.8rem 2rem 2rem 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
    position: relative;
}

.faq-answer p::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 1.8rem;
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.9) 0%, rgba(208, 82, 20, 0.6) 100%);
    border-radius: 2px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(208, 82, 20, 0.3);
    z-index: 1;
}

.faq-item.active .faq-answer p::before {
    opacity: 1;
    transform: translateX(0);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(208, 82, 20, 0.05) 0%, rgba(30, 30, 30, 0.05) 100%);
}

.cta-content {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #CCCCCC;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0;
    height: 100%;
}

.form-group {
    position: relative;
}

.mobile-app-type {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: -1.5rem;
}

.mobile-app-type[style*="block"] {
    opacity: 1;
    max-height: 80px;
    margin-top: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #0A0A0A;
    border: 1px solid #2A2A2A;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group select {
    width: 100%;
    padding: 1rem 3rem 1rem 1.25rem;
    background: #0A0A0A;
    border: 1px solid #2A2A2A;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1.25rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D05214;
    box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
    background: #111111;
}

.form-group select:focus {
    outline: none;
    border-color: #D05214;
    box-shadow: 0 0 20px rgba(208, 82, 20, 0.2);
    background: #111111;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1.25rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

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

.form-group select {
    cursor: pointer;
}

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

.contact-form .btn {
    margin-top: 1rem;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.trust-elements {
    text-align: center;
    margin-top: 2rem;
}

.trust-elements p {
    color: #999999;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* ===== CONTACT SECTION ===== */
/* ===== AWARD-WORTHY CONTACT SECTION ===== */
.contact {
    padding: 12rem 0 !important;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.99) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(208, 82, 20, 0.008) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 56, 62, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Blurry Sunrise Effect Background */
.contact::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    background: 
        radial-gradient(ellipse 120% 200px at center bottom, 
            rgba(255, 138, 58, 0.18) 0%,
            rgba(255, 165, 79, 0.14) 20%,
            rgba(251, 146, 60, 0.10) 40%,
            rgba(208, 82, 20, 0.06) 60%,
            rgba(255, 69, 0, 0.03) 80%,
            transparent 100%);
    filter: blur(25px);
    animation: sunriseGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

/* Moving Sun Rays */
.contact .container::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 250px;
    background: 
        conic-gradient(from 0deg at center 200px,
            transparent 0deg,
            rgba(255, 138, 58, 0.08) 10deg,
            transparent 15deg,
            rgba(255, 165, 79, 0.06) 25deg,
            transparent 30deg,
            rgba(251, 146, 60, 0.05) 40deg,
            transparent 45deg,
            rgba(255, 138, 58, 0.07) 55deg,
            transparent 60deg,
            rgba(208, 82, 20, 0.04) 70deg,
            transparent 75deg,
            rgba(255, 165, 79, 0.06) 85deg,
            transparent 90deg,
            rgba(255, 138, 58, 0.05) 100deg,
            transparent 105deg,
            rgba(251, 146, 60, 0.04) 115deg,
            transparent 120deg,
            rgba(255, 165, 79, 0.06) 130deg,
            transparent 135deg,
            rgba(255, 138, 58, 0.07) 145deg,
            transparent 150deg,
            rgba(208, 82, 20, 0.03) 160deg,
            transparent 165deg,
            rgba(255, 165, 79, 0.05) 175deg,
            transparent 180deg
        );
    filter: blur(30px);
    animation: rayRotation 20s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

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

.contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.contact .section-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    line-height: 0.9;
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(208, 82, 20, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.5), transparent);
    border-radius: 1px;
}

.contact .section-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
    margin-top: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    margin: 0;
    height: 100%;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #D05214, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.25rem;
    color: #CCCCCC;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature * {
    background: none !important;
    text-decoration: none !important;
}

.feature:hover {
    background: rgba(208, 82, 20, 0.1);
    border-color: rgba(208, 82, 20, 0.3);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.feature span:last-child {
    color: #E0E0E0;
    font-weight: 500;
    background: none !important;
    text-decoration: none !important;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A0D08 50%, #0A0A0A 100%);
    padding: 6rem 0 0;
    border-top: 1px solid rgba(208, 82, 20, 0.2);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.6), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.footer-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(208, 82, 20, 0.03) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.9) 0%, transparent 2px),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 1) 0%, transparent 2px),
        radial-gradient(circle at 75% 85%, rgba(255, 255, 255, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.6) 0%, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.9) 0%, transparent 2px),
        radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.5) 0%, transparent 1px),
        radial-gradient(circle at 60% 10%, rgba(255, 255, 255, 0.8) 0%, transparent 1.5px),
        radial-gradient(circle at 35% 90%, rgba(255, 255, 255, 0.7) 0%, transparent 1.5px),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 1px);
    background-size: 400px 400px;
    animation: slowStarDrift 120s linear infinite;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.logo-bloom {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #D05214, #FF6B35);
    border-radius: 50%;
    position: relative;
}

.logo-bloom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

.footer-brand p {
    color: #AAAAAA;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #D05214, #FF6B35);
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: #AAAAAA;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a:hover {
    color: #D05214;
    padding-left: 8px;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #D05214;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-social {
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #AAAAAA;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    color: #D05214;
    border-color: rgba(208, 82, 20, 0.5);
    background: rgba(208, 82, 20, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(208, 82, 20, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-info p {
    color: #AAAAAA;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom-left p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #AAAAAA;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #D05214;
}

.footer-legal span {
    color: #666666;
    font-size: 0.85rem;
}

.footer-bottom-right p {
    color: #AAAAAA;
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Footer Sunrise Effect */
/* Sunrise effect moved to contact section */

/* Sunrise Glow Animation */
@keyframes sunriseGlow {
    0% {
        opacity: 0.7;
        transform: scaleY(0.9) scaleX(0.98);
        filter: blur(30px);
    }
    50% {
        opacity: 0.9;
        transform: scaleY(1.1) scaleX(1.02);
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: scaleY(1.3) scaleX(1.05);
        filter: blur(25px);
    }
}

/* Rotating Sun Rays Animation */
@keyframes rayRotation {
    0% {
        transform: translateX(-50%) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        opacity: 0.7;
    }
    50% {
        transform: translateX(-50%) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
        opacity: 0.4;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 12rem 0;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(3, 3, 3, 0.99) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(208, 82, 20, 0.008) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 30, 30, 0.008) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.testimonials .section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out;
}

.testimonials .section-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    line-height: 0.85;
    text-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 50%, rgba(208, 82, 20, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(208, 82, 20, 0.5), transparent);
    border-radius: 1px;
}

.testimonials .section-subtitle {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    perspective: 1200px;
    perspective-origin: center center;
    transform-style: preserve-3d;
}

.testimonial-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 32px;
    overflow: hidden;
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    position: relative;
    cursor: pointer;
    padding: 4rem 3rem;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease, subtleFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(2deg) rotateY(-1deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}


.testimonial-card:hover {
    border-color: rgba(208, 82, 20, 0.3);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(208, 82, 20, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.testimonial-card.active {
    display: block;
}

/* Fade transition effects for testimonial carousel */
.testimonial-card.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.testimonial-card.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

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

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D05214, #1E1E1E);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
}

.author-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

.rating {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator:hover {
    background: rgba(208, 82, 20, 0.7);
    transform: scale(1.1);
}

.indicator.active {
    background: #D05214;
    box-shadow: 0 0 0 4px rgba(208, 82, 20, 0.2);
}

/* ===== LEGAL DOCUMENT STYLES ===== */
.legal-document {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D05214;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(208, 82, 20, 0.2);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: #D05214;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #FF6B2B;
    text-decoration: underline;
}

/* Removed duplicate .contact-info - see main contact section styles */

/* Removed duplicate - see main contact styles */

.contact-info a {
    color: #D05214;
    font-weight: 500;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(208, 82, 20, 0.2);
    color: #FFFFFF;
    font-weight: 600;
}

.cookie-table td {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-controls {
    text-align: center;
    background: rgba(6, 56, 62, 0.2);
    border: 1px solid rgba(6, 56, 62, 0.4);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design for Legal Documents */
@media (max-width: 768px) {
    .legal-document {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .legal-section h3 {
        font-size: 1.125rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-content h1 {
        font-size: 1.75rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

/* Diagonal shimmer effect for testimonial card transitions */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse 200px 60px at center,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.04) 30%,
        rgba(255, 255, 255, 0.02) 60%,
        transparent 100%
    );
    z-index: 1;
    opacity: 0;
    transform: translateX(-130%) translateY(130%) rotate(45deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    filter: blur(1px);
}

.testimonial-card.transitioning::before {
    opacity: 1;
    animation: diagonalShimmer 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(
        ellipse 200px 60px at center,
        rgba(208, 82, 20, 0.15) 0%,
        rgba(208, 82, 20, 0.08) 30%,
        rgba(208, 82, 20, 0.04) 60%,
        transparent 100%
    );
    z-index: 0;
    opacity: 0;
    transform: translateX(-130%) translateY(130%) rotate(45deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 34px;
    will-change: transform, opacity;
    filter: blur(1px);
}

.testimonial-card.transitioning::after {
    opacity: 1;
    animation: diagonalBorderShimmer 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes diagonalShimmer {
    0% {
        transform: translateX(-130%) translateY(130%) rotate(45deg);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(130%) translateY(-130%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes diagonalBorderShimmer {
    0% {
        transform: translateX(-130%) translateY(130%) rotate(45deg);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(130%) translateY(-130%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateZ(0) rotateX(2deg) rotateY(-1deg) translateY(0px);
    }
    25% {
        transform: translateZ(5px) rotateX(1deg) rotateY(-2deg) translateY(-2px);
    }
    50% {
        transform: translateZ(10px) rotateX(0deg) rotateY(0deg) translateY(-4px);
    }
    75% {
        transform: translateZ(5px) rotateX(-1deg) rotateY(2deg) translateY(-2px);
    }
}

.testimonial-card .testimonial-content,
.testimonial-card .testimonial-author {
    position: relative;
    z-index: 2;
}

/* ===== APPLE-LEVEL STATS ANIMATIONS ===== */

.validation-stats {
    position: relative;
}

.validation-stats .stat h3 {
    position: relative;
    display: inline-block;
}

/* Completion shine effect - only after counting finishes */
.stat-completion-shine {
    background: linear-gradient(135deg, #D05214 0%, #FF6B35 30%, rgba(255, 255, 255, 0.8) 50%, #FF6B35 70%, #D05214 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: completionShine 1.5s ease-out forwards;
}

/* Remove card movement - numbers stay static */
.validation-stats.animate .stat {
    /* No movement animations */
}

/* Keyframe animations */
@keyframes completionShine {
    0% {
        background-position: -300% 0;
    }
    100% {
        background-position: 300% 0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .validation-stats .stat h3::after,
    .stat-number-animated,
    .validation-stats.animate .stat {
        animation: none;
        transition: none;
    }
}

/* ===== APPLE-INSPIRED APP SHOWCASE CAROUSEL ===== */
/* Premium design inspired by Apple's App Store presentation */

/* Section Background */
.app-showcase {
    padding: 8rem 0 6rem 0 !important;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(208, 82, 20, 0.015) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(5, 5, 5, 0.99) 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.showcase-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(208, 82, 20, 0.08) 0%, rgba(6, 56, 62, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: showcaseGlow 8s ease-in-out infinite alternate;
}

@keyframes showcaseGlow {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.showcase-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(208, 82, 20, 0.015) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 56, 62, 0.015) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.005) 0%, transparent 30%);
    animation: particleFloat 12s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.app-showcase .container {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.app-showcase .section-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.app-showcase .section-title {
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    line-height: 0.8;
    text-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 40%, rgba(208, 82, 20, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleShine 3s ease-in-out infinite;
}

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

.app-showcase .section-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Carousel Container - Full Width Infinite Loop with Enhanced 3D */
.app-carousel-container {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    margin-bottom: 6rem;
    background: transparent;
    perspective: 1500px;
    perspective-origin: center center;
    padding: 2rem 0;
}

.app-carousel {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: visible;
    background: transparent;
}

.app-carousel-track {
    display: flex;
    height: 100%;
    gap: 3rem;
    padding: 3rem 4rem;
    align-items: center;
    width: fit-content;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 0.1s linear;
}

/* Cloned cards styling - ensure they're identical */
.app-card.cloned-card {
    /* Inherit all styles from .app-card */
}

/* Smooth performance optimizations */
.app-carousel-track * {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Enhanced hover effects for infinite carousel */
.app-carousel:hover .app-card {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Apple-inspired App Cards */
.app-card {
    flex: 0 0 360px;
    height: 420px;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 28px;
    z-index: 1;
}

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

/* Apple-style hover animation */
.app-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.25),
        0 16px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px) saturate(1.4);
    -webkit-backdrop-filter: blur(50px) saturate(1.4);
}

/* Modern Flat App Icon */
.app-icon, .tilted-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    position: relative;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateZ(0);
    border: none;
    background: transparent;
}

.app-card:hover .app-icon,
.app-card:hover .tilted-app-icon {
    transform: scale(1.03) translateZ(5px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.16),
        0 8px 16px rgba(0, 0, 0, 0.12);
}

.app-icon .icon-gradient,
.tilted-app-icon .icon-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.app-icon .icon-letter,
.tilted-app-icon .icon-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    z-index: 2;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}

/* Apple-style App Content */
.app-content, .tilted-app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
    height: 100%;
}

.app-title, .tilted-app-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
}

.app-category, .tilted-app-category {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    flex-shrink: 0;
    text-transform: uppercase;
    position: relative;
}

.app-description, .tilted-app-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: auto 0 1rem 0;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.01em;
    max-width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', sans-serif;
    flex-shrink: 0;
    word-wrap: break-word;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
}

.app-category::after, .tilted-app-category::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Status Badge */
.app-status {
    margin-top: auto;
}

.app-status {
    margin-top: auto;
}

.status-disclaimer {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    margin-bottom: 1rem;
}

/* Progress Circle Animation */
.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 1rem auto;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
}

.progress-animate {
    animation: progressDraw 2s ease-out;
}

@keyframes progressDraw {
    from {
        stroke-dashoffset: 283;
    }
    to {
        stroke-dashoffset: 70;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.percentage {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #7C3AED;
}

.label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.habit-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.habit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.75rem;
}

.habit.completed {
    background: rgba(124, 58, 237, 0.2);
}

.check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}

.habit.completed .check {
    background: #7C3AED;
    color: white;
}

.habit.pending .check {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Icon Gradients for App Icons */

.clothing-top {
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background: linear-gradient(135deg, #F59E0B, #F97316);
}

.clothing-bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.match-score {
    text-align: center;
}

.score {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #F59E0B;
}

.score-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* KIETO Theme */
.kieto-theme {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.kieto-theme .status {
    background: rgba(16, 185, 129, 0.3);
    color: #10B981;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.weight-progress {
    text-align: center;
    margin: 1rem 0;
    flex: 1;
}

.weight-loss {
    margin-bottom: 1rem;
}

.amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #10B981;
}

.period {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.progress-bar {
    height: 6px;
    background: rgba(16, 185, 129, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #059669);
    border-radius: 3px;
    transition: width 1s ease;
}

.progress-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.daily-goals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.goal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.75rem;
}

.goal.completed {
    background: rgba(16, 185, 129, 0.2);
}

.goal-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}

.goal.completed .goal-check {
    background: #10B981;
    color: white;
}

.goal.pending .goal-check {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Splittr Theme */
.splittr-theme {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.expense-info {
    background: rgba(79, 70, 229, 0.15);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin: 1rem 0;
}

.venue {
    font-size: 0.8rem;
    font-weight: 600;
    color: #F59E0B;
    margin-bottom: 0.3rem;
}

.total {
    font-size: 1.4rem;
    font-weight: 800;
    color: #F59E0B;
    margin-bottom: 0.3rem;
}

.date {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.split-info {
    margin: 1rem 0;
}

.split-header {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    text-align: center;
}

.participants {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.participant {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.75rem;
}

.participant.current {
    background: rgba(245, 158, 11, 0.15);
}

.avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #F59E0B;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
}

.name {
    flex: 1;
    font-weight: 500;
}

.amount {
    font-weight: 700;
    color: #F59E0B;
}

/* App Details Section */
.app-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.app-meta {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.app-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.icon-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Modern flat icon gradients - sophisticated with depth */
.bettr-gradient {
    background: linear-gradient(145deg, #8B5CF6 0%, #7C3AED 25%, #6366F1 75%, #5B21B6 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 6px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(139, 92, 246, 0.4);
}

.vantag3-gradient {
    background: linear-gradient(145deg, #3B82F6 0%, #2563EB 25%, #1D4ED8 75%, #1E40AF 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 6px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(59, 130, 246, 0.4);
}

.awear-gradient {
    background: linear-gradient(145deg, #F97316 0%, #FB923C 25%, #F59E0B 75%, #DC2626 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 6px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(249, 115, 22, 0.4);
}

.kieto-gradient {
    background: linear-gradient(145deg, #10B981 0%, #34D399 25%, #059669 75%, #047857 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 6px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(16, 185, 129, 0.4);
}

.mcoe-gradient {
    background: linear-gradient(145deg, #EC4899 0%, #DB2777 25%, #BE185D 75%, #9D174D 100%);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.3),
                inset 0 -2px 6px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(236, 72, 153, 0.4);
}

/* Add subtle texture overlay */
.icon-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    border-radius: 18px;
    pointer-events: none;
}

.icon-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2),
                 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
}

.app-info {
    flex: 1;
}

.app-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.app-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 500;
}

.app-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.stars {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #FFD700;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
}

.app-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    font-weight: 300;
    letter-spacing: -0.01em;
}

.app-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #D05214;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tech-tag.flutter {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    color: #A78BFA;
}

.tech-tag.firebase {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
    color: #FB923C;
}

.tech-tag.ml {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ADE80;
}

.tech-tag.react {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    color: #22D3EE;
}

.tech-tag.node {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ADE80;
}

.tech-tag.api {
    background: rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
    color: #0EA5E9;
}

.tech-tag.ai {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
    color: #FB923C;
}

.tech-tag.vision {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
    color: #FB923C;
}

.tech-tag.health {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ADE80;
}

.tech-tag.stripe {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #A78BFA;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* App Status Disclaimers */
.app-status {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.status-disclaimer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

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

.app-card:hover .status-disclaimer {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.app-card:hover .status-disclaimer::before {
    left: 100%;
}

/* Footer Button */
.showcase-footer {
    text-align: center;
    margin-top: 4rem;
}

.start-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #D05214 0%, #FF7A3D 100%);
    border: none;
    border-radius: 24px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 16px 48px rgba(208, 82, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.start-project-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;
}

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

.start-project-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 24px 64px rgba(208, 82, 20, 0.4);
    background: linear-gradient(135deg, #FF7A3D 0%, #D05214 100%);
}

.start-project-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.start-project-btn:hover svg {
    transform: translateX(6px);
}

/* Add subtle Apple-style ambient glow */
.app-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.app-card:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .app-card {
        flex: 0 0 320px;
        height: 380px;
        padding: 1.5rem;
    }
    
    .app-carousel {
        height: 520px;
    }
    
    .app-description, .tilted-app-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: auto 0 0.875rem 0;
    }
    
    /* Heights are now fixed in the main .app-card rules */
    
    .status-disclaimer {
        margin-bottom: 0.875rem;
    }
    
    .app-category, .tilted-app-category {
        margin: 0 0 1.75rem 0;
    }
    
    .app-icon, .tilted-app-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0.75rem;
    }
    
    .app-carousel-track {
        gap: 2.5rem;
        padding: 2.5rem 3rem;
    }
    
    .app-icon, .tilted-app-icon {
        width: 90px;
        height: 90px;
    }
    
    .app-icon .icon-letter,
    .tilted-app-icon .icon-letter {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .app-showcase {
        padding: 6rem 0 4rem 0 !important;
    }
    
    .app-showcase .container {
        padding: 0 1rem;
    }
    
    .app-showcase .section-header {
        margin-bottom: 4rem;
    }
    
    .app-carousel {
        height: 420px;
        overflow: visible;
    }
    
    .app-card {
        flex: 0 0 280px;
        height: 380px;
        padding: 1.25rem;
    }
    
    .app-icon, .tilted-app-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .app-description, .tilted-app-description {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: auto 0 0.75rem 0;
    }
    
    /* Heights are now fixed in the main .app-card rules */
    
    .status-disclaimer {
        margin-bottom: 0.75rem;
    }
    
    .app-category, .tilted-app-category {
        font-size: 0.75rem;
        margin: 0 0 1.5rem 0;
    }
    
    .status-disclaimer {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .app-carousel-track {
        gap: 2rem;
        padding: 2rem 1.5rem;
        align-items: center;
    }
    
    .app-icon, .tilted-app-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .app-icon .icon-letter,
    .tilted-app-icon .icon-letter {
        font-size: 32px;
    }
    
    .app-title, .tilted-app-title {
        font-size: 1.5rem;
    }
    
    .app-category, .tilted-app-category {
        font-size: 0.875rem;
    }
    
    .app-description, .tilted-app-description {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .app-title-section p {
        font-size: 0.75rem;
    }
    
    .app-device-mini {
        width: 70px;
        height: 120px;
    }
    
    .app-description-compact {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 0.75rem;
    }
    
    .app-stats-compact {
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number-compact {
        font-size: 1rem;
    }
    
    .stat-label-compact {
        font-size: 0.65rem;
    }
    
    .tech-tags-compact {
        gap: 0.4rem;
    }
    
    .tech-tag-compact {
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
    
    .status-disclaimer {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .app-showcase {
        padding: 4rem 0 3rem 0 !important;
    }
    
    .app-card {
        flex: 0 0 260px;
        height: 300px;
        padding: 1.5rem;
    }
    
    .app-carousel {
        height: 320px;
        overflow: visible;
    }
    
    .app-carousel-track {
        gap: 1.25rem;
        align-items: center;
        padding: 1.5rem 1rem;
    }
    
    .app-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0.75rem;
    }
    
    .app-icon .icon-letter {
        font-size: 20px;
    }
    
    .app-title {
        font-size: 1.125rem;
    }
    
    .app-category {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .app-description {
        font-size: 0.75rem;
        line-clamp: 2;
        -webkit-line-clamp: 2;
    }
    
    .status-disclaimer {
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
    }
}

/* Pause animation on hover */
.app-carousel:hover .app-carousel-track {
    animation-play-state: paused;
}

/* Hide old case studies */
.case-studies {
    display: none !important;
}

/* ===== STREAMLINED LEGAL DOCUMENT STYLES ===== */
/* Matches index.html styling exactly */

.legal-document {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: #000000;
    color: #FFFFFF;
    position: relative;
}

.legal-document::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    pointer-events: none;
    z-index: -1;
}

.legal-document::after {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(208, 82, 20, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 30, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Typography matching main site */
.legal-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    color: #D05214;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(208, 82, 20, 0.2);
    line-height: 1.3;
}

.legal-section h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    color: #FFFFFF;
    margin: 1.5rem 0 0.75rem 0;
    line-height: 1.4;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: #D05214;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #FF6B2B;
    text-decoration: underline;
}

/* Contact info styling */
/* Removed duplicate .contact-info - see main contact section styles */

/* Removed duplicate - see main contact styles */

.contact-info a {
    color: #D05214;
    font-weight: 500;
}

/* Cookie table styling */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(208, 82, 20, 0.2);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-table td {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Cookie controls */
.cookie-controls {
    text-align: center;
    background: rgba(6, 56, 62, 0.2);
    border: 1px solid rgba(6, 56, 62, 0.4);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.cookie-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Button styling to match main site */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #D05214 0%, #E85A1A 100%);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E85A1A 0%, #FF6B2B 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(208, 82, 20, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .legal-document {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .legal-section h2 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }
    
    .legal-section h3 {
        font-size: clamp(1rem, 3vw, 1.25rem);
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .cookie-controls {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
}

/* Focus states for accessibility */
.btn:focus,
.legal-section a:focus {
    outline: 2px solid #D05214;
    outline-offset: 2px;
}

/* ===== NAVBAR RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 16px 24px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .nav-cta {
        margin-left: 0.5rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 16px 20px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .nav-text {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1003;
        order: 3;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 120px 2rem 2rem;
        gap: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(208, 82, 20, 0.2);
        z-index: 1002;
    }
    
    .nav-menu.active {
        right: 0;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        margin: 0;
        border-radius: 12px;
        font-size: 1rem;
        border: 1px solid transparent;
        margin-bottom: 0.5rem;
        justify-content: flex-start;
        text-align: left;
    }
    
    .nav-link:hover {
        background: rgba(208, 82, 20, 0.1);
        border-color: rgba(208, 82, 20, 0.3);
        transform: translateX(8px);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        border: 2px solid #D05214;
        background: rgba(208, 82, 20, 0.1);
    }
    
    .nav-cta:hover {
        background: #D05214;
        transform: translateX(8px);
    }
    
    .language-switcher {
        position: absolute;
        top: 50%;
        right: 4.5rem;
        transform: translateY(-50%);
        z-index: 1003;
        order: 2;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
        height: 64px;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        width: 280px;
        padding: 100px 1.5rem 1.5rem;
    }
    
    .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .language-switcher {
        right: 4rem;
        top: 50%;
        transform: translateY(-50%);
        order: 2;
    }
    
    .nav-toggle {
        order: 3;
    }
}

/* ===== FOOTER MOBILE RESPONSIVENESS ===== */

/* Tablet and smaller screens */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 0;
    }
    
    .footer-content {
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo h3 {
        font-size: 1.375rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        justify-items: center;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul {
        align-items: center;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .footer-column ul li a:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }
    
    .footer-column ul li a::before {
        display: none;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-contact-info p {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    .footer-legal span {
        font-size: 0.8rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        gap: 2.5rem;
    }
    
    .footer-main {
        gap: 2.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-logo-image {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .footer-logo h3 {
        font-size: 1.25rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul {
        gap: 0.5rem;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    .footer-social {
        margin-top: 0.5rem;
    }
    
    .footer-contact-info p {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        padding-bottom: 2.5rem;
    }
    
    .footer-bottom-left p {
        font-size: 0.8rem;
    }
    
    .footer-legal {
        gap: 0.5rem;
    }
    
    .footer-legal a {
        font-size: 0.75rem;
    }
    
    .footer-legal span {
        font-size: 0.75rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-column {
        max-width: 260px;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
    
    .footer-contact-info p {
        font-size: 0.8rem;
    }
}

/* Disable footer animations on mobile for better performance */
@media (max-width: 768px) {
    .footer-glow,
    .footer-particles {
        display: none;
    }
    
    .footer::before {
        animation: none;
    }
}

/* Additional mobile touch optimizations */
@media (max-width: 768px) {
    .footer-column ul li a {
        min-height: 44px; /* iOS touch target minimum */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .footer-column ul li a:active {
        background: rgba(208, 82, 20, 0.1);
        transform: scale(0.98);
    }
    
    .footer-legal a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .footer-legal a:active {
        background: rgba(208, 82, 20, 0.1);
        transform: scale(0.98);
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-main {
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* High DPI mobile screens */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .footer-logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    .footer-column ul li a:focus-visible {
        outline: 2px solid #D05214;
        outline-offset: 2px;
        background: rgba(208, 82, 20, 0.1);
    }
    
    .footer-legal a:focus-visible {
        outline: 2px solid #D05214;
        outline-offset: 2px;
        background: rgba(208, 82, 20, 0.1);
    }
    
    /* Improve text contrast on mobile */
    .footer-column ul li a {
        color: #CCCCCC;
    }
    
    .footer-column ul li a:hover {
        color: #FFFFFF;
    }
    
    .footer-legal a {
        color: #CCCCCC;
    }
    
    .footer-legal a:hover {
        color: #FFFFFF;
    }
}

/* Reduce motion for users who prefer it */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .footer-column ul li a,
    .footer-legal a {
        transition: none;
    }
    
    .footer-column ul li a:active,
    .footer-legal a:active {
        transform: none;
    }
}

/* Print styles */
@media print {
    .legal-document::before,
    .legal-document::after {
        display: none;
    }
    
    .legal-content {
        background: white;
        color: black;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .legal-section h2 {
        color: #333;
        border-bottom-color: #333;
    }
    
    .legal-section a {
        color: #0066cc;
    }
}
EOF < /dev/null