@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors (Exact Pixel Holiday Match) */
    --color-primary: hsl(195, 90%, 50%);
    --color-primary-rgb: 0, 174, 239;
    --color-secondary: hsl(230, 25%, 15%);
    
    /* Light Theme (Now Default like Pixel Holiday) */
    --bg-deep: #FFFFFF;
    --bg-surface: #F8FAFC;
    --bg-surface-elevated: #F1F5F9;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    
    --border-color: #E2E8F0;
    --glass-bg: rgba(255, 255, 255, 1.0);
    --glass-border: rgba(15, 23, 42, 0.1);
    
    /* Spacing */
    --space-base: 4px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
    
    --radius: 1.5rem;
    --radius-sm: 0.75rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 3rem;
    --text-5xl: 4.5rem;
    
    /* Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-pro: 0 20px 50px rgba(0, 174, 239, 0.15);
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-spring: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    --glow-primary: 0 0 30px rgba(0, 174, 239, 0.3);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(4deg); }
    50% { transform: translateY(12px) rotate(4deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 174, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}

@keyframes slide-in-right {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

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

.float-anim { animation: float 6s ease-in-out infinite; }
.pulse-anim { animation: pulse-glow 2s infinite; }

/* DEI Global Signature Reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), 
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Utilities */
.mobile-hide { display: block; }
@media (max-width: 991px) {
    .mobile-hide { display: none; }
    :root {
        --text-5xl: 3rem;
        --text-4xl: 2.25rem;
        --text-3xl: 1.75rem;
    }
}

/* Hover States (Subtle & Pro) */
.hover-lift { transition: var(--transition-smooth); }
.hover-lift:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.15);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Infinite Image Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 3rem 0;
    position: relative;
    background: var(--bg-surface);
}

/* Partner Marquee */
.partner-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partner-marquee-track {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: max-content;
    animation: partner-scroll 30s linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
    animation-play-state: paused;
}

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

.partner-logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-body), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-body), transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-block;
    width: 350px;
    height: 250px;
    margin: 0 1.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    cursor: pointer;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.marquee-item:hover img {
    transform: scale(1.15) rotate(-2deg);
}

.img-parallax-container {
    overflow: hidden;
    position: relative;
    border-radius: 1.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.mobile-only-cluster {
    display: none !important;
}

/* Hero Image Cluster */
.hero-image-cluster {
    position: relative;
    height: 600px;
    width: 100%;
}

.cluster-img {
    position: absolute;
    border-radius: 1.5rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 6px solid var(--bg-surface);
}

.cluster-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cluster-img-1 {
    width: 60%;
    height: 400px;
    top: 20px;
    right: 0;
    z-index: 2;
    animation: float-1 8s ease-in-out infinite;
}

.cluster-img-2 {
    width: 50%;
    height: 320px;
    bottom: 40px;
    left: 10px;
    z-index: 1;
    animation: float-2 7s ease-in-out infinite;
}

.cluster-img-3 {
    width: 45%;
    height: 260px;
    bottom: 80px;
    right: 30px;
    z-index: 3;
    animation: float-3 9s ease-in-out infinite;
}

.cluster-img-4 {
    width: 40%;
    height: 240px;
    top: 50px;
    left: 20px;
    z-index: 4;
    animation: float-4 7.5s ease-in-out infinite;
}

@media (max-width: 991px) {
    .hero-image-cluster {
        height: 400px;
        margin-top: 3rem;
    }
    .cluster-img-1 { width: 70%; height: 280px; top: 0; right: 0; }
    .cluster-img-2 { width: 60%; height: 220px; bottom: 20px; left: 0; }
    .cluster-img-3 { display: none; }
    .cluster-img-4 { display: none; }
}

@media (max-width: 768px) {
    .hero-image-cluster {
        height: 300px;
    }
    .cluster-img-1 { width: 80%; height: 200px; }
    .cluster-img-2 { width: 70%; height: 160px; }
}

.img-parallax {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100vw;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Dotted Grid Overlay (Subtle) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

@media (max-width: 1200px) {
    .container { padding: 0 var(--space-6); }
}

@media (max-width: 768px) {
    .container { padding: 0 2rem !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem !important; }
    
    .logo-text {
        font-size: 1.2rem !important;
    }
    
    .logo-tagline {
        font-size: 0.35rem;
        max-width: 180px;
    }
}

/* Responsive Grids (Replacing Inline Styles) */
.grid-auto {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

/* JOURNEY CARDS */
.grid-journey {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.journey-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.journey-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 174, 239, 0.1);
}

.journey-media {
    position: relative;
    height: auto;
    overflow: hidden;
    background: #f1f5f9;
}

.journey-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: none;
}

.journey-card:hover .journey-media img {
    transform: none;
}

.journey-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3);
}

.journey-body {
    padding: 2.5rem;
}

.journey-tag {
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.journey-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.journey-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

@media (max-width: 991px) {
    .grid-stats { grid-template-columns: repeat(2, 1fr); }
    .grid-journey { grid-template-columns: 1fr; }
    .grid-2-col { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
    .grid-stats { grid-template-columns: 1fr; }
    .grid-auto { grid-template-columns: 1fr !important; gap: 2rem; }
}

/* Custom Cursor (Pro UX) */
.cursor {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.08s ease-out;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(0, 174, 239, 0.05);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .hero-btns .btn {
        margin-left: 0 !important;
        width: 100%;
        padding: 1.25rem;
    }
    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }
    .hero p {
        text-align: center;
    }
    header {
        padding: 0.85rem 0 !important;
        background: #FFFFFF;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Center the header logo on mobile */
    nav {
        position: relative;
        justify-content: flex-start;
        padding-right: 60px;
    }
    .mobile-menu-btn {
        position: absolute !important;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .logo {
        align-items: flex-start !important;
        text-align: left;
        max-width: 100%;
        position: relative;
        z-index: 1001 !important;
        padding-top: 4px;
    }
    
    .logo-text {
        display: block !important;
        font-size: 2.4rem !important;
        margin-bottom: 4px;
    }

    .logo-tagline {
        display: block !important;
        white-space: normal;
        max-width: 220px;
        line-height: 1.3;
        margin-top: 10px;
        font-size: 0.65rem;
    }

    .hero h1, .hero p, .hero-content {
        text-align: center !important;
        align-items: center !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-6) 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: var(--space-4) 0;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    line-height: 1;
}

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

.logo-tagline {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 800;
    white-space: nowrap;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.nav-links {
    display: flex;
    gap: var(--space-8);
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.desktop-only {
    display: flex;
}

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

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 8px;
        border-radius: 8px;
        transition: background 0.3s;
    }
    
    .mobile-menu-btn:hover {
        background: var(--bg-surface-elevated);
    }
}

/* MOBILE OVERLAY STYLES */
.mobile-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-overlay.active {
    transform: translateX(-100%);
}

.mobile-overlay-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.mobile-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.mobile-close-btn {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s;
}

.mobile-close-btn:hover {
    background: var(--border-color);
    transform: rotate(90deg);
}

.mobile-nav-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 2rem;
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 1rem;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav-links li.active a {
    background: #e0f2fe;
    color: #0ea5e9;
}

.mobile-nav-links a:hover {
    background: #f8fafc;
    transform: translateX(10px);
}

.mobile-nav-links i {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #00aeef;
    color: white;
    text-decoration: none;
    padding: 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.3);
    transition: all 0.3s;
}

.mobile-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.4);
}

.mobile-cta-btn i {
    width: 22px;
    height: 22px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at top right, rgba(0, 174, 239, 0.05), transparent);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
}

@media (max-width: 991px) {
    .hero-bg { width: 100%; opacity: 0.2; mask-image: radial-gradient(circle, black, transparent); }
}

.hero-bg .logo {
    display: none;
}

@media (max-width: 991px) {
    .hero-bg .logo {
        display: block;
    }
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
}

.hero-tagline {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: var(--text-xs);
    margin-bottom: var(--space-4);
    display: block;
}

/* SECTION TITLES */
.section-title-large {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(15, 23, 42, 0.1);
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

/* BRANDING SECTION */
.branding-section {
    position: relative;
}

.brand-glow {
    position: absolute;
    top: 50%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(195, 100%, 50%, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -50%);
    pointer-events: none;
}

.badge-white-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 174, 239, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.2);
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
}

.brand-features {
    list-style: none;
    padding: 0;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.brand-features i {
    color: var(--color-primary);
}

/* IPHONE MOCKUP */
.mockup-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-width: 1200px;
    margin: 0 auto;
}

.mockup-outline {
    display: none;
}

.realistic-phone {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 40px 100px rgba(0,0,0,0.5));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.realistic-phone:hover {
    transform: translateY(-10px) rotate(1deg);
}

.realistic-phone-mini {
    width: 180px;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.star-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 3rem;
    color: var(--color-primary);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: var(--space-8);
    color: var(--text-primary);
}

/* Services */
.service-card {
    background: var(--bg-surface);
    padding: var(--space-8);
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Matrix Cards */
.matrix-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.matrix-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    transition: none;
    image-rendering: -webkit-optimize-contrast;
}

.matrix-card:hover img {
    transform: none;
}

.matrix-overlay {
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    color: var(--text-primary);
    transition: none;
    backdrop-filter: none;
}

.matrix-card:hover .matrix-overlay {
    background: white;
    backdrop-filter: none;
}

.matrix-overlay h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-shadow: none;
    transform: none;
    transition: none;
    color: var(--text-primary);
}

.matrix-card:hover .matrix-overlay h3 {
    transform: none;
    color: var(--color-primary);
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Mobile Optimization & Responsive Architecture */
@media (max-width: 991px) {
    :root {
        --text-5xl: 3.5rem;
        --text-4xl: 2.75rem;
        --text-3xl: 2.25rem;
    }
    
    .grid-4-col, .grid-3-col, .grid-2-col {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero {
        padding-top: 130px;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero-text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .desktop-only-cluster {
        display: none !important;
    }

    .mobile-only-cluster {
        display: block !important;
        position: relative;
        height: 320px;
        width: 100%;
        margin: 1.5rem 0 3rem;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --text-5xl: 2.75rem;
        --text-4xl: 2.25rem;
        --text-3xl: 1.75rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-title-large {
        font-size: 4rem;
        top: 40px;
    }

    /* Header Mobile */
    header {
        padding: 1rem 0;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem;
    }

    .footer-grid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-grid {
        justify-content: center;
        grid-template-columns: repeat(4, 44px) !important;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
    }

    /* Partners & Grid Stacking */
    .partner-grid, .grid-stats, .grid-auto {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }

    .partner-logo-item {
        margin: 0 auto;
    }

    /* Contact section mobile */
    .glass.p-16,
    .glass[style*="padding: 4rem"] {
        padding: 2rem 1.25rem !important;
    }

    /* Stats mobile */
    .grid-stats {
        text-align: center;
    }

    .grid-stats > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .grid-stats h2 {
        font-size: 2.5rem !important;
    }

    /* Partners section mobile */
    #partners {
        padding: 5rem 0 4rem !important;
    }
}

@media (max-width: 480px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.85rem;
    }

    .logo-text {
        font-size: 1.75rem;
    }

    .i-special::after {
        width: 5px;
        height: 5px;
        top: -2px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-btns .btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .social-grid {
        grid-template-columns: repeat(4, 44px) !important;
    }
}

/* Footer Classes */
.footer-main {
    background: #020617;
    padding: 8rem 0 4rem;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 44px);
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3);
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Cookie Consent Banner - Elegant & Compact */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 2rem;
    z-index: 10000;
    max-width: 400px; /* Smaller width */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 1rem; /* Slightly tighter corners */
    padding: 1rem 1.25rem; /* Reduced padding */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s;
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateY(-2rem);
    opacity: 1;
    pointer-events: all;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem; /* Reduced gap */
}

.cookie-icon {
    flex-shrink: 0;
    width: 32px; /* Smaller icon */
    height: 32px;
    background: rgba(0, 174, 239, 0.05);
    color: var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon svg {
    width: 18px;
    height: 18px;
}

.cookie-text {
    flex-grow: 1;
}

.cookie-text h3 {
    font-size: 0.9rem; /* Smaller text */
    font-weight: 800;
    margin-bottom: 0.1rem;
    color: var(--text-primary);
}

.cookie-text p {
    font-size: 0.75rem; /* Smaller text */
    color: var(--text-secondary);
    line-height: 1.4;
}

.cookie-actions {
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.5rem 1rem; /* Smaller button */
    font-size: 0.7rem;
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        max-width: none;
        border-radius: 0.75rem;
    }
}
