:root {
    /* Backgrounds */
    --bg: #050505;
    --surface: rgba(15, 15, 15, 0.4);
    --surface-hi: rgba(30, 30, 30, 0.6);
    --overlay: rgba(0, 0, 0, 0.7);
    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-hi: rgba(255, 255, 255, 0.15);
    /* Gold — Primary Accent */
    --gold: #C9A84C;
    --gold-gradient: linear-gradient(135deg, #F0D880 0%, #D4AF37 25%, #C9A84C 55%, #8B6914 80%, #C9A84C 100%);
    --gold-dim: #9B7A28;
    --gold-glow: rgba(201, 168, 76, 0.12);
    --gold-border: rgba(201, 168, 76, 0.22);
    /* Silver — Metallic Accent */
    --silver: #E0E0E0;
    --silver-gradient: linear-gradient(135deg, #878787 0%, #FFFFFF 50%, #B0B0B0 100%);
    --silver-glow: rgba(255, 255, 255, 0.1);
    /* Text */
    --text-primary: #f5f5f5;
    --text-muted: #a0a0a0;
    --text-faint: #606060;
    --text-gold: #C9A84C;
    /* Utility */
    --success-color: #10b981;
    --card-border: rgba(255, 255, 255, 0.08);
    --card-glass: rgba(15, 15, 15, 0.6);
    /* Typography — Max 2 Font Variations Used */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    /* Spacing */
    --page-x: 48px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Reveal — IntersectionObserver */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero Entrance Animations */
@media (prefers-reduced-motion: no-preference) {
    /* Typing cursor */
    .hero-cursor {
        display: inline-block;
        width: 3px;
        height: 0.85em;
        background: var(--gold);
        margin-left: 4px;
        vertical-align: baseline;
        animation: cursorBlink 0.6s steps(1) infinite;
    }
    .hero-cursor.done { animation: cursorFade 0.4s 0.5s ease forwards, cursorBlink 0.6s steps(1) infinite; }
    @keyframes cursorBlink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    @keyframes cursorFade {
        to { opacity: 0; }
    }

    .hero-fade-up {
        opacity: 0;
        transform: translateY(12px);
        animation: heroFadeUp 0.5s ease forwards;
    }
    @keyframes heroFadeUp {
        to { opacity: 1; transform: translateY(0); }
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-fade-up { opacity: 1; transform: none; animation: none; }
    .hero-cursor { display: none; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.floating-nav .nav-container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 2rem;
    border-radius: 0;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none;
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
}

.logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    letter-spacing: -0.07em;
    transform: scaleX(0.92);
    transform-origin: left center;
    padding-right: 2px;
}
.logo-up {
    background: linear-gradient(
        105deg,
        var(--gold) 0%,
        #e8d48b 40%,
        #fff5cc 50%,
        #e8d48b 60%,
        var(--gold) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-shine 3s ease-in-out infinite;
}
@keyframes logo-shine {
    0%, 100% { background-position: 100% 0; }
    50% { background-position: -100% 0; }
}

.logo-icon {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
    box-shadow: none;
}

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

.cta-button {
    background: var(--gold-gradient);
    color: #000;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: 200% auto;
}

.cta-button::before {
    display: none;
}

.cta-button:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gold-glow);
    background-position: right center;
}

.cta-button:hover::before {
    display: none;
}

/* Typography Utility */
.text-silver {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    background-size: 200% auto;
    animation: shineText 5s linear infinite;
}

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

@keyframes shineText {
    to { background-position: 200% center; }
}

/* Elite Hero Section */
.hero-elite {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    /* Removed padding to ensure true centering */
    background: var(--bg);
}

.hero-bg-shapes .shape { display: none; }
.threejs-container { display: none; }
.hero-gradient-overlay { display: none; }

/* Hero grid pattern */
.hero-elite::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
/* Hero gold glow */
.hero-elite::after {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 70%; height: 100%;
    background: radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gold-dim);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 6px 14px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    border-radius: 999px;
    margin-bottom: 2rem;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    box-shadow: none;
}

.badge-pill .dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6.5vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    text-align: center;
    min-height: 2.2em;
}
.hero-typed-line { display: block; }

.hero-arabic {
    font-family: var(--font-arabic);
    font-weight: 300;
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--text-faint);
    margin-bottom: 1.5rem;
    text-align: center;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.elite-btn {
    position: relative;
    overflow: hidden;
    padding: 14px 28px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold-gradient);
    background-size: 200% auto;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--gold-glow);
    border: none;
}

.elite-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 188, 90, 0.3);
    background-position: right center;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-glare {
    display: none;
}

.elite-btn:hover .btn-glare {
    left: 200%;
    transition: 0.7s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Elite Values Section - Accordion */
.values-elite {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.values-accordion {
    display: flex;
    height: 600px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    flex: 1;
    position: relative;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.accordion-item:hover {
    background: rgba(15, 15, 15, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.accordion-item.active {
    flex: 3.5;
    background: rgba(15, 15, 15, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    transition: all 0.5s ease;
}

.accordion-item.active .accordion-header {
    bottom: auto;
    top: 3rem;
    left: 3rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.accordion-item.active .icon-wrapper {
    background: var(--accent);
    box-shadow: 0 0 30px var(--accent);
    border-color: transparent;
}

.accordion-header i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header i {
    color: var(--text-primary);
}

.accordion-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    max-width: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-header h3 {
    opacity: 1;
    transform: translateX(0);
    max-width: 300px;
    /* Allow expansion */
}

/* Vertical text for inactive state */
.accordion-item:not(.active)::after {
    content: attr(data-title);
    /* We need to add data-title in HTML or just use fixed text if possible, but CSS content attr is limited. Let's use a different approach for vertical text or just hide it. */
}

/* Actually, let's keep the icon visible and maybe rotate it or something. 
   The previous design had the h3 hidden. Let's make the h3 visible but vertical? 
   No, vertical text is hard to read. Let's keep it hidden until expand.
*/

.accordion-content {
    position: absolute;
    top: 120px;
    /* Below the header when active */
    left: 0;
    width: 100%;
    height: calc(100% - 120px);
    padding: 0 3rem 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.accordion-item.active .accordion-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    pointer-events: all;
}

.accordion-content h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.accordion-content p {
    max-width: 500px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.accordion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent), transparent 60%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.6s ease;
}

.accordion-item.active .accordion-bg {
    opacity: 0.15;
}

/* Red Glass Section (Elite) */
.red-glass {
    padding: 150px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    color: var(--text-primary);
}

/* Background Effects */
.red-glass::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 10s infinite alternate;
}

.red-glass::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 15s infinite alternate-reverse;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.red-glass .container {
    position: relative;
    z-index: 1;
}

.red-glass-header {
    text-align: center;
    margin-bottom: 8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.red-glass-header h2 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.tagline {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.glass-cta {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
}

.glass-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Scroll Stack Container */
.scroll-stack-container {
    position: relative;
    padding-bottom: 150px;
}

.stack-card {
    position: sticky;
    top: 150px;
    background: rgba(8, 8, 8, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 5rem;
    margin-bottom: 5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease;
    overflow: hidden;
    transform-origin: center top;
}

/* Glow effect on card hover */
.stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.5;
}

/* Dynamic stacking offsets */
.stack-card:nth-child(1) {
    top: 150px;
    z-index: 1;
}

.stack-card:nth-child(2) {
    top: 170px;
    z-index: 2;
}

.stack-card:nth-child(3) {
    top: 190px;
    z-index: 3;
}

.stack-card:nth-child(4) {
    top: 210px;
    z-index: 4;
}

@media (max-width: 768px) {
    .scroll-stack-container { padding-bottom: 0; }
    .stack-card {
        position: relative;
        top: auto !important;
        padding: 2.5rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
}

.card-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.card-text {
    position: relative;
    z-index: 2;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-box i {
    font-size: 2rem;
    color: var(--gold);
}

.stack-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.card-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 500;
}

.feature-list li i {
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    padding: 6px;
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* Visuals - High Quality Animations */
.card-visual {
    background: var(--surface);
    /* Dark screen bg */
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Grid Background for Visuals */
.card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(-5deg);
    pointer-events: none;
}

/* Chat Visual Animation */
.chat-interface {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.chat-bubble {
    padding: 1.2rem 1.8rem;
    border-radius: 18px;
    max-width: 85%;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: messagePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.chat-bubble.ai {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.2));
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--text-primary);
    animation-delay: 0.2s;
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.08);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: var(--text-primary);
    animation-delay: 1.2s;
}

.chat-bubble.ai:last-child {
    animation-delay: 2.2s;
}

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

/* Transcription Visual Animation */
.visual-transcription {
    flex-direction: column;
    gap: 2.5rem;
}

.waveform {
    display: flex;
    gap: 6px;
    align-items: center;
    height: 60px;
}

.waveform span {
    width: 6px;
    background: var(--gold);
    border-radius: 4px;
    animation: soundWave 1.2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
}

.waveform span:nth-child(odd) {
    animation-duration: 0.8s;
    height: 20px;
}

.waveform span:nth-child(2n) {
    animation-duration: 1.1s;
    height: 30px;
}

.waveform span:nth-child(3n) {
    animation-duration: 1.4s;
    height: 40px;
}

.waveform span:nth-child(4n) {
    animation-duration: 0.9s;
    height: 25px;
}

@keyframes soundWave {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.6;
    }

    50% {
        transform: scaleY(2.5);
        opacity: 1;
        background: var(--gold);
    }
}

.transcription-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.transcription-text::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Workflow Visual Animation */
.visual-workflow {
    flex-direction: column;
    justify-content: center;
}

.workflow-node {
    background: rgba(15, 15, 15, 0.8);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 85%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.workflow-node:hover {
    transform: scale(1.05);
}

.workflow-node.trigger {
    border-color: #10b981;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.workflow-node.action {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.workflow-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #10b981, var(--gold));
    margin: 0;
    position: relative;
    overflow: hidden;
}

.workflow-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-primary);
    animation: flowLine 2s infinite;
}

@keyframes flowLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* MCP Visual Animation */
/* MCP Visual Animation */
.visual-mcp {
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.mcp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    /* Increased gap */
    position: relative;
    z-index: 2;
}

.mcp-icon {
    width: 90px;
    /* Slightly larger */
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(5px);
}

.mcp-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mcp-icon:hover {
    color: var(--text-primary);
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.mcp-icon:hover::before {
    opacity: 1;
}

.mcp-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.08);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.05);
    transition: all 0.3s ease;
}

.mcp-status:hover {
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

/* Footer Features */
.red-glass-footer {
    margin-top: 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 4rem;
}

.aesthetic-features {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.af-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.af-item:hover {
    color: var(--text-primary);
}

.af-item i {
    color: var(--gold);
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.4));
}

/* Minimalist Contact Section */
.contact-minimal {
    padding: 150px 0;
    background: var(--bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-minimal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.contact-content-minimal {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.email-display {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
}

.email-text {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.email-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--gold);
}

.email-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    filter: blur(20px);
}

.email-display:hover .email-text {
    -webkit-text-fill-color: var(--text-primary);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.email-display:hover .email-underline {
    width: 100%;
}

.email-display:hover .email-glow {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .email-text {
        font-size: 2rem;
    }

    .contact-title {
        font-size: 1rem;
    }
}

/* Elite Footer */
.footer-elite {
    background: var(--bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.footer-brand p {
    color: var(--text-muted);
}

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

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-faint);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    color: var(--text-faint);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-muted); }

/* Legal Pages */
.legal-page {
    padding: 160px 0 100px;
    background: var(--bg);
}
.legal-header {
    margin-bottom: 3rem;
}
.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.legal-updated {
    color: var(--text-faint);
    font-size: 0.9rem;
}
.legal-body {
    max-width: 760px;
}
.legal-body h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 0.8rem;
    letter-spacing: -0.02em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-body ul {
    color: var(--text-muted);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-body li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.3rem;
}
.legal-body strong { color: var(--text-primary); }

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-text h1 {
        font-size: 3.5rem;
        letter-spacing: -0.03em;
    }

    .values-accordion {
        flex-direction: column;
        height: auto;
    }

    .accordion-item {
        height: 80px;
    }

    .accordion-item.active {
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .stack-card {
        padding: 2rem;
    }

    .card-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        top: 1rem;
    }

    .nav-links {
        display: none;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -0.03em;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero,
.solutions,
.red-ai,
.about,
.contact {
    animation: fadeIn 1s ease-out;
}

/* Values Section */
.values {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dim));
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.values-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dim));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-description {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.value-details {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.value-details li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.value-details i {
    color: var(--gold);
    font-size: 1.1rem;
}

.value-quote {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
}

.value-quote i {
    position: absolute;
    top: -10px;
    left: 0;
    color: var(--gold);
    background: var(--surface);
    padding: 0 10px;
    font-size: 1.2rem;
}

.value-quote p {
    font-style: italic;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.commitment-statement {
    margin-bottom: 2.5rem;
}

.commitment-statement h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.commitment-statement p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .values-header h2 {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-cta {
        flex-direction: column;
        align-items: center;
    }

    .values-cta .primary-button,
    .values-cta .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Update responsive breakpoints */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* Update the values section secondary button for better contrast */
.values-cta .secondary-button {
    background: var(--text-primary);
    color: var(--text-primary);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.values-cta .secondary-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.red-ai-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gold);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(201, 168, 76, 0.2);
    text-align: center;
    cursor: pointer;
}

.red-ai-cta:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(201, 168, 76, 0.3);
}

@media (max-width: 768px) {
    .red-ai-cta {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* About Page Styles */

/* Story Section */
.about-story {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.story-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.glass-card-visual {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-card-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    animation: rotateBackground 15s linear infinite;
}

.visual-icon {
    font-size: 4rem;
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.4));
    z-index: 1;
}

.visual-stat {
    text-align: center;
    z-index: 1;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Timeline Section */
.timeline-section {
    padding: 120px 0;
    background: var(--surface);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.timeline-item {
    display: flex;
    justify-content: center;
    padding-bottom: 4rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--surface);
    border: 2px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px var(--gold);
}

.timeline-item.active .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 20px var(--gold);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.timeline-content .date {
    display: block;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Culture Section */
.culture-section {
    padding: 120px 0;
    background: var(--bg);
}

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

.culture-card {
    background: rgba(15, 15, 15, 0.4);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 15, 15, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.culture-card .icon-box {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
}

.culture-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.culture-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

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

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        text-align: left !important;
    }

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

/* Products Page Styles */

/* Hero Stats Grid */
.hero-stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Solutions Elite Section */
.solutions-elite {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

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

.solution-card-elite {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.solution-card-elite::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gold-gradient);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: none;
}

.solution-card-elite:hover::after {
    opacity: 1;
    transform: none;
}

.solution-card-elite:hover {
    background: rgba(25, 25, 25, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(237, 188, 90, 0.15);
}

.card-glow {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card-elite:hover .card-glow {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.solution-card-elite .icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--gold-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    border: 1px solid var(--gold-border);
}

.solution-card-elite .badge {
    background: var(--gold-glow);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--gold-border);
}

.solution-card-elite h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.solution-card-elite p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.metrics-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-item .value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.metric-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.feature-list-elite {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list-elite li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.feature-list-elite li i {
    color: #10b981;
}

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

.tech-tags span {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.card-cta:hover {
    gap: 1.2rem;
    color: var(--gold);
}

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

@media (max-width: 768px) {
    .hero-stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-box {
        width: 100%;
        max-width: 300px;
    }

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

/* ============================================
   NEW STYLES — Site Overhaul
   ============================================ */

/* Dropdown Navigation */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: flex; align-items: center; gap: 0.4rem; }
.nav-dropdown > .nav-link::after { content: ''; /* no underline effect for dropdown parent */ }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding-left: 1.4rem;
}
.dropdown-chevron { font-size: 0.7rem; transition: transform 0.3s ease; }
.nav-dropdown:hover .dropdown-chevron { transform: rotate(180deg); }

/* Mobile Menu */
.mobile-menu-btn { display: none; background: none; border: none; padding: 0.5rem; cursor: pointer; z-index: 101; }
.mobile-menu-btn .bar { width: 25px; height: 2px; background: white; margin: 5px 0; transition: all 0.3s ease; }
.mobile-menu-btn.active .bar:first-child { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active .bar:last-child { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #080808;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-top: none;
        gap: 0;
        z-index: 100;
    }
    .nav-links.active { display: flex; }
    .nav-links .nav-link, .nav-links .cta-button { width: 100%; padding: 1rem; text-align: left; }
    .nav-links .cta-button { margin-top: 0.5rem; text-align: center; }
    .nav-dropdown { width: 100%; }
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        box-shadow: none;
        padding: 0 0 0 1rem;
        min-width: auto;
    }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.open .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        border-radius: 0;
    }
    .nav-dropdown.open .dropdown-chevron { transform: rotate(180deg); }
    .dropdown-menu a { padding: 0.8rem 1rem; min-height: 44px; display: flex; align-items: center; }
    .mobile-menu-btn { display: block; }
}

/* New Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.footer-col a:hover { color: var(--text-primary); padding-left: 0.3rem; }
.footer-col p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.footer-col .footer-contact-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; color: var(--text-muted); font-size: 0.95rem; }
.footer-col .footer-contact-item i { color: var(--gold); width: 16px; }
.footer-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201, 168, 76, 0.1); border: 1px solid rgba(201, 168, 76, 0.2); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.85rem; color: var(--gold); margin-top: 1rem; }
.footer-social-row { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social-row a { color: var(--text-muted); font-size: 1.2rem; transition: all 0.3s ease; padding: 0; }
.footer-social-row a:hover { color: var(--gold); transform: translateY(-2px); padding-left: 0; }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    cursor: pointer;
}
.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-widget a:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2.5rem;
}
.trust-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    background: transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.trust-chip:hover {
    border-color: var(--gold-border);
    color: var(--text-primary);
}
.trust-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── How It Works — scroll-driven split-screen ───────────── */
.hiw-scroll {
    position: relative;
    height: 350vh;
    background: var(--surface);
}
.hiw-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
}

/* Left panel — big number + title */
.hiw-left {
    padding: 0 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
    height: 100%;
    position: relative;
}
.hiw-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hiw-big-num {
    font-family: var(--font-display);
    font-size: clamp(80px, 10vw, 140px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text-primary);
    opacity: 0.12;
    transition: opacity 0.4s ease;
    margin-bottom: 16px;
}
.hiw-big-num.hiw-num-active { opacity: 1; }

.hiw-big-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 8px;
    min-height: 1.2em;
}
.hiw-big-days {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 40px;
}

/* Progress bar */
.hiw-progress {
    width: 100%;
    max-width: 200px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 12px;
}
.hiw-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.15s linear;
}
.hiw-counter {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-faint);
}
.hiw-counter span { color: var(--gold); }

/* Right panel — description */
.hiw-right {
    padding: 0 6vw;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.hiw-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 6vw;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.hiw-panel.hiw-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.hiw-panel p {
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 440px;
}

/* Mobile — stack vertically */
@media (max-width: 768px) {
    .hiw-scroll { height: 400vh; }
    .hiw-sticky {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        padding: 0;
    }
    .hiw-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 24px 7vw;
        height: auto;
    }
    .hiw-big-num { font-size: 64px; margin-bottom: 8px; }
    .hiw-big-title { font-size: 22px; }
    .hiw-big-days { margin-bottom: 20px; }
    .hiw-right { padding: 0 7vw; }
    .hiw-panel { padding: 0 7vw; }
    .hiw-panel p { font-size: 16px; }
}

/* Comparison Table */
/* ── Comparison — 3-column with gold hero ────────────────── */
.comparison-section { padding: 120px 0; background: var(--bg); }

.cmp-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 0;
    margin-top: 4rem;
    align-items: start;
}

/* Shared column styles */
.cmp-col { padding: 32px 28px; border-radius: 12px; }

/* Dim competitor columns */
.cmp-other {
    background: var(--surface);
    border: 1px solid var(--border);
}

/* Gold hero column — CrankUp */
.cmp-hero {
    background: linear-gradient(165deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.04) 100%);
    border: 1px solid var(--gold-border);
    position: relative;
    z-index: 2;
    transform: scaleY(1.03);
    transform-origin: top center;
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.08), 0 0 0 1px var(--gold-border);
}

/* Column header */
.cmp-col-head {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.cmp-other .cmp-col-head { color: var(--text-muted); }
.cmp-hero .cmp-col-head {
    color: var(--gold);
    border-bottom-color: var(--gold-border);
}

/* Rows */
.cmp-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-hero .cmp-row { border-bottom-color: rgba(201, 168, 76, 0.1); }

.cmp-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.cmp-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.cmp-val i { font-size: 11px; }

/* Hero column values — gold tinted */
.cmp-hero .cmp-val {
    color: var(--text-primary);
    font-weight: 600;
}
.cmp-hero .cmp-val i { color: var(--gold); }

/* Bad values in competitor columns */
.cmp-bad { color: var(--text-faint); }
.cmp-bad i { color: var(--text-faint); }

/* Mobile — stack columns vertically, hero first */
@media (max-width: 768px) {
    .cmp-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .cmp-hero {
        order: -1;
        transform: none;
    }
    .cmp-col { padding: 24px 20px; }
}

/* ── Problem Section — scroll-driven word highlight ──────── */
.problem-scroll {
    position: relative;
    height: 300vh;
    background: var(--bg);
}
.problem-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 8vw;
    overflow: hidden;
}
.problem-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 48px;
    align-self: flex-start;
}
.problem-blocks {
    max-width: 820px;
    width: 100%;
}
.problem-block {
    margin-bottom: 48px;
    position: relative;
    padding-left: 48px;
}
.problem-block:last-child { margin-bottom: 0; }

.problem-num {
    position: absolute;
    left: 0;
    top: 2px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    transition: color 0.4s ease;
}
.problem-num.lit { color: var(--gold); }

.problem-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Each word is wrapped in a span.pw by JS */
.pw {
    color: var(--text-faint);
    transition: color 0.18s ease;
}
.pw.lit {
    color: var(--text-primary);
}

/* Progress track on the right edge */
.problem-progress-track {
    position: absolute;
    right: 3vw;
    top: 25%;
    height: 50%;
    width: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.problem-progress-bar {
    width: 100%;
    height: 0%;
    background: var(--gold);
    border-radius: 2px;
    transition: height 0.1s linear;
}

@media (max-width: 768px) {
    .problem-scroll { height: 350vh; }
    .problem-sticky { padding: 0 6vw; }
    .problem-block { padding-left: 36px; margin-bottom: 36px; }
    .problem-num { font-size: 11px; }
    .problem-progress-track { right: 2vw; }
}

/* Solution Section */
.solution-section { padding: 120px 0; background: var(--bg); }
.solution-content { max-width: 800px; margin: 0 auto; text-align: center; }
.solution-content p { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.5rem; }

/* ── Services Showcase — scroll-driven ──────────────────── */
.services-showcase { padding: 120px 0 80px; background: var(--bg); }

/* Scroll layout — sticky sidebar + scrolling stream */
.svc-scroll-wrap {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 64px;
    position: relative;
}

/* Sidebar */
.svc-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
    height: fit-content;
}
.svc-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 36px;
}
.svc-counter-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--gold);
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-counter-total {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-faint);
    letter-spacing: 0.04em;
}
.svc-dots {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.svc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-hi);
    transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.svc-dot.active {
    background: var(--gold);
    transform: scale(1.35);
    box-shadow: 0 0 8px var(--gold-glow);
}

/* Service stream */
.svc-stream { display: flex; flex-direction: column; }

/* Individual service item */
.svc-item {
    position: relative;
    padding: 56px 0 56px 32px;
    border-bottom: 1px solid var(--border);
}
.svc-item:last-child { border-bottom: none; }

/* Gold accent bar on left — grows when active */
.svc-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 2px;
    height: 0;
    background: var(--gold);
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-item.svc-active::before { height: 100%; }

/* Default state — dimmed + shifted */
.svc-item .svc-item-head,
.svc-item p,
.svc-item .svc-item-foot {
    opacity: 0.15;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.svc-item .svc-item-head { transition-delay: 0s; }
.svc-item p { transition-delay: 0.08s; }
.svc-item .svc-item-foot { transition-delay: 0.16s; }

/* Active state — bright + aligned */
.svc-item.svc-active .svc-item-head,
.svc-item.svc-active p,
.svc-item.svc-active .svc-item-foot {
    opacity: 1;
    transform: translateY(0);
}

/* Icon */
.svc-icon {
    font-size: 24px;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}

/* Head row */
.svc-item-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

/* Badge */
.svc-badge {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 4px;
}

/* Title — word-by-word highlight via JS */
.svc-item h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.svc-word {
    display: inline-block;
    color: var(--text-faint);
    transform: translateY(5px);
    transition: color 0.35s ease, transform 0.35s ease;
}
.svc-active .svc-word {
    color: var(--text-primary);
    transform: translateY(0);
}

/* Description */
.svc-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 28px;
}

/* Footer row */
.svc-item-foot {
    display: flex;
    align-items: center;
    gap: 32px;
}
.svc-price {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.svc-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.2s ease;
}
.svc-link:hover { color: var(--gold); gap: 10px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .svc-word { transform: none; color: var(--text-primary); transition: none; }
    .svc-item .svc-item-head,
    .svc-item p,
    .svc-item .svc-item-foot { opacity: 1; transform: none; transition: none; }
    .svc-item::before { height: 100%; transition: none; }
    .svc-counter-num { transition: none; }
    .svc-dot { transition: none; }
}

/* Responsive */
@media (max-width: 768px) {
    .svc-scroll-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .svc-sidebar {
        position: relative;
        top: auto;
        display: flex;
        align-items: center;
        gap: 24px;
        margin-bottom: 40px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border);
    }
    .svc-counter { margin-bottom: 0; }
    .svc-counter-num { font-size: 40px; }
    .svc-dots { flex-direction: row; }
    .svc-item { padding: 40px 0 40px 20px; }
    .svc-item h3 { font-size: 22px; }
    .services-showcase { padding: 80px 0 60px; }
}

/* Service Card Price */
.service-price { color: var(--gold); font-size: 13px; font-weight: 500; margin-bottom: 1.5rem; }

/* Industry Cards — gap-border grid */
.industries-section { padding: 120px 0; background: var(--surface); }
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 4rem;
}
.ind-card {
    background: var(--surface);
    padding: 36px 32px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
}
.ind-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ind-card:hover { background: var(--surface-hi); }
.ind-card:hover::after { transform: scaleX(1); }

.ind-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-faint);
    display: block;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.ind-card:hover .ind-num { color: var(--gold); }

.ind-icon {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.ind-card:hover .ind-icon { opacity: 1; }

.ind-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.ind-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
}
@media (max-width: 1024px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .industry-grid { grid-template-columns: 1fr; }
    .ind-card { padding: 28px 24px; }
}

/* Numbers Section */
.numbers-section {
    padding: 80px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.numbers-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 48px;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.number-card {
    background: var(--surface);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease;
}
.number-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.number-card:hover { background: var(--surface-hi); }
.number-card:hover::after { transform: scaleX(1); }
.number-value {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 12px;
}
.number-desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 200px;
}
@media (max-width: 768px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .number-card { padding: 28px 20px; }
}

/* Final CTA */
.final-cta { padding: 120px 0; background: var(--bg); text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta h2 { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-primary); }
.final-cta p { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.6; }
.final-cta .micro-copy { color: rgba(255, 255, 255, 0.3); font-size: 0.9rem; margin-top: 1rem; }

/* Secondary Button */
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: transparent;
}
.secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Founders */
.founders-section { padding: 120px 0; background: var(--bg); }
.founders-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 4rem; }
.founder-card {
    background: var(--card-glass);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}
.founder-card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.15); }
.founder-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.2));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.founder-card h3 { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.founder-card .founder-role { color: var(--gold); font-size: 0.95rem; font-weight: 600; margin-bottom: 1.5rem; }
.founder-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
@media (max-width: 768px) { .founders-grid { grid-template-columns: 1fr; } }

/* Values Cards */
.values-cards-section { padding: 120px 0; background: var(--surface); }
.values-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
.value-card-new {
    background: var(--card-glass);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}
.value-card-new:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.15); }
.value-card-new h3 { font-size: 1.3rem; color: var(--text-primary); margin-bottom: 1rem; font-weight: 700; }
.value-card-new p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
@media (max-width: 768px) { .values-cards-grid { grid-template-columns: 1fr; } }

/* Location */
.location-section { padding: 80px 0; background: var(--bg); }
.location-content { max-width: 700px; margin: 0 auto; text-align: center; }
.location-content h2 { font-size: 2rem; color: var(--text-primary); margin-bottom: 1rem; }
.location-content p { color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }
.location-badge { display: inline-flex; align-items: center; gap: 0.8rem; background: rgba(201, 168, 76, 0.1); border: 1px solid rgba(201, 168, 76, 0.2); padding: 0.8rem 1.5rem; border-radius: 50px; color: var(--gold); font-weight: 600; margin-top: 1.5rem; }
.location-badge i { font-size: 1.2rem; }

/* CTA Section */
.cta-section { padding: 120px 0; background: var(--bg); text-align: center; }
.cta-section h2 { font-size: 3rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-primary); }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* Page Hero (sub-pages without particles) */
.page-hero {
    padding: 180px 0 100px;
    background: var(--bg);
    text-align: center;
    position: relative;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.page-hero .subtitle { margin-bottom: 0; }
@media (max-width: 768px) {
    .page-hero { padding: 140px 0 80px; }
    .page-hero h1 { font-size: 2.2rem; }
}