/* Core Variables */
:root {
    /* Colors */
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --secondary: #8B5CF6;
    --accent: #EC4899;
    --black: #000000;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, 
        var(--primary) 0%, 
        var(--secondary) 50%, 
        var(--accent) 100%
    );
    --gradient-hover: linear-gradient(135deg, 
        var(--primary-dark) 0%, 
        #7C3AED 50%, 
        #DB2777 100%
    );

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-stroke: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.12);

    /* Text Colors */
    --text-primary: rgba(255, 255, 255, 0.95);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Animation */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-bounce: cubic-bezier(0.37, 1.4, 0.64, 1);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    will-change: transform;
    transition: transform 0.3s var(--ease-out);
}

.header__wrapper {
    position: relative;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-stroke);
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo__symbol {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 24px;
    position: relative;
    transition: transform 0.3s var(--ease-bounce);
}

.logo__symbol::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--black);
    border-radius: 11px;
}

.logo__symbol span {
    position: relative;
}

.logo:hover .logo__symbol {
    transform: scale(1.05) rotate(-4deg);
}

.logo__text {
    font-weight: 600;
    font-size: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s var(--ease-out);
}

.nav__link:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px;
    background: var(--glass-bg);
    border-radius: 100px;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.2s var(--ease-out);
}

.lang-indicator {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.lang-name {
    font-size: 14px;
    color: var(--text-tertiary);
    display: none;
}

.lang-link:hover {
    background: var(--glass-hover);
}

.lang-link:hover .lang-name {
    display: inline;
}

.lang-divider {
    width: 1px;
    height: 16px;
    background: var(--glass-stroke);
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    overflow: hidden;
}

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

.btn--gradient::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--black);
    border-radius: 11px;
    opacity: 0.9;
    transition: opacity 0.3s var(--ease-out);
}

.btn__glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-hover);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.btn--gradient:hover .btn__glow {
    opacity: 1;
}

.btn--outline {
    background: var(--glass-bg);
    border: 1px solid var(--glass-stroke);
    color: var(--text-primary);
}

.btn--outline:hover {
    background: var(--glass-hover);
    border-color: var(--glass-hover);
}

.btn__text {
    position: relative;
    z-index: 1;
}

.btn__icon {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__icon {
    transform: translateX(4px);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px);
}

/* Mobile Menu Button */
.menu-trigger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.menu-trigger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s var(--ease-out);
}

.menu-trigger.active .menu-trigger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-trigger.active .menu-trigger__line:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active .menu-trigger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
}

/* Background */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--glass-stroke) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-stroke) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black 40%, transparent);
    opacity: 0.2;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.glow--primary {
    top: -20%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    animation: float 20s infinite;
}

.glow--accent {
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation: float 15s infinite reverse;
}

/* Content Layout */
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero__content {
    max-width: 580px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-stroke);
    border-radius: 100px;
    position: relative;
    margin-bottom: 32px;
    overflow: hidden;
}

.badge__glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.badge:hover .badge__glow {
    opacity: 0.1;
}

.badge__icon {
    position: relative;
    font-size: 18px;
    animation: pulse 2s infinite;
}

.badge__text {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Title */
.hero__title {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.hero__text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-stroke);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out);
}

.stat:hover {
    transform: translateY(-2px);
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat__value {
    font-size: 36px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.stat__label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Video Section */
.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-stroke);
    box-shadow: var(--shadow-lg);
}

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

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: none;
    background: none;
    cursor: pointer;
}

.play-button__ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}

/* Play Button Continued */
.play-button:hover .play-button__ring {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.play-button__icon {
    position: relative;
    width: 32px;
    height: 32px;
    color: var(--white);
    margin: 24px;
    transition: transform 0.3s var(--ease-out);
}

.play-button:hover .play-button__icon {
    transform: scale(1.1);
}

/* Video Loading */
.video__loading {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
}

.video__loading.active {
    opacity: 1;
    visibility: visible;
}

.loading__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading__text {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    padding: 24px;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal__content {
    width: 100%;
    max-width: 1000px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease-out);
}

.video-modal.active .video-modal__content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--glass-bg);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease-out);
}

.modal-close:hover {
    background: var(--glass-hover);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-video {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background: var(--black);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out);
    z-index: 999;
}

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

.mobile-menu__content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.mobile-nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.2s var(--ease-out);
}

.mobile-nav__link:hover {
    color: var(--text-primary);
}

.mobile-langs {
    margin-top: auto;
    padding: 24px 0;
    border-top: 1px solid var(--glass-stroke);
}

.mobile-langs__title {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 16px;
}

.mobile-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s var(--ease-out);
}

.mobile-lang__indicator {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.mobile-lang__name {
    color: var(--text-secondary);
}

.mobile-lang:hover {
    background: var(--glass-bg);
}

.mobile-lang.active {
    background: var(--glass-hover);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(5%, 5%) rotate(180deg);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero__content {
        margin: 0 auto;
    }

    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav__links,
    .lang-switcher {
        display: none;
    }

    .menu-trigger {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button__icon {
        width: 24px;
        height: 24px;
        margin: 18px;
    }
}

/* Print Styles */
@media print {
    .header {
        position: static;
        border-bottom: 1px solid #eee;
    }

    .hero {
        padding: 40px 0;
    }

    .hero__bg,
    .hero__video,
    .btn {
        display: none;
    }

    .gradient-text {
        color: #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
/* Leonardo Section Styles */
.leonardo-section {
    position: relative;
    padding: 6rem 0;
    background: #000000;
    min-height: 100vh;
    overflow: hidden;
}

/* Optimized Dot Pattern */
.leo-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.leo-dots::before,
.leo-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(
            circle at center,
            var(--dot-color) 1px,
            transparent 1.2px
        );
    background-size: 20px 20px;
    opacity: 0.12;
}

.leo-dots::before {
    --dot-color: rgba(236, 72, 153, 0.7);
    transform: translateX(-0.5px);
}

.leo-dots::after {
    --dot-color: rgba(99, 102, 241, 0.7);
    transform: translateX(0.5px);
}

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

/* Refined Header with Icon */
.leo-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.leo-title {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.leo-title span:first-child {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.toolkit-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

/* Enhanced Navigation */
.leo-nav {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.leo-tab {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.leo-tab.active {
    color: #fff;
}

.leo-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #EC4899, #8B5CF6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.leo-tab.active::after {
    transform: scaleX(1);
}

/* Refined Content Layout */
.leo-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    min-height: 400px;
}

/* Enhanced Text Content */
.content-left {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-left.active {
    opacity: 1;
    transform: translateY(0);
}

.content-label {
    color: #EC4899;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.content-title {
    font-size: 2.75rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Polished Preview Section */
.preview-right {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.preview-right.active {
    opacity: 1;
    transform: translateY(0);
}

.preview-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16/10;
    transition: transform 0.3s ease;
}

.preview-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1),
        rgba(139, 92, 246, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.preview-frame:hover::before {
    opacity: 1;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-frame:hover .preview-image {
    transform: scale(1.02);
}

/* Refined Gradient Frame */
.gradient-frame {
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    z-index: -1;
    opacity: 0.3;
}

/* Optimized Responsive Design */
@media (max-width: 1024px) {
    .leo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .preview-right {
        order: -1;
    }

    .content-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .leo-nav {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .leo-nav::-webkit-scrollbar {
        display: none;
    }

    .leo-tab {
        white-space: nowrap;
        font-size: 0.9375rem;
    }

    .content-description {
        font-size: 1rem;
    }
}
/* Metrics Section */
.metrics-section {
    position: relative;
    padding: 7rem 0;
    background: #000000;
    overflow: hidden;
}

/* Dot Pattern */
.leo-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.leo-dots::before,
.leo-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(
            circle at center,
            var(--dot-color) 1px,
            transparent 1.2px
        );
    background-size: 20px 20px;
    opacity: 0.12;
}

.leo-dots::before {
    --dot-color: rgba(236, 72, 153, 0.8);
    transform: translateX(-0.5px);
}

.leo-dots::after {
    --dot-color: rgba(99, 102, 241, 0.8);
    transform: translateX(0.5px);
}

/* Container */
.leo-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
.leo-header {
    text-align: center;
    margin-bottom: 5rem;
}

.leo-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.leo-description {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Metrics Grid */
.leo-metrics {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 8vw, 8rem);
    margin-bottom: 5rem;
}

.metric {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease-out forwards;
}

.metric:nth-child(1) { animation-delay: 0.1s; }
.metric:nth-child(2) { animation-delay: 0.2s; }
.metric:nth-child(3) { animation-delay: 0.3s; }

.metric-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.metric-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 150px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Feature Cards */
.leo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.leo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease-out;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease-out forwards;
}

.leo-card:nth-child(1) { animation-delay: 0.2s; }
.leo-card:nth-child(2) { animation-delay: 0.3s; }

.leo-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Card Icon */
.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 2rem;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: #000000;
    border-radius: 11px;
}

.card-icon span {
    position: relative;
    z-index: 1;
}

/* Card Content */
.card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Card Features List */
.card-features {
    list-style: none;
    display: grid;
    gap: 1rem;
    padding: 0;
}

.card-feature {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.card-feature::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #EC4899;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .metrics-section {
        padding: 5rem 0;
    }

    .leo-metrics {
        flex-direction: column;
        gap: 3rem;
    }

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

    .metric-label {
        max-width: none;
    }

    .leo-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .metrics-section {
        padding: 4rem 0;
    }

    .leo-card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
}
/* Timeline Section */
.timeline-section {
    position: relative;
    padding: 7rem 0;
    background: #000000;
    overflow: hidden;
}

/* Dot Pattern */
.timeline-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.timeline-dots::before,
.timeline-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle at center,
        var(--dot-color) 1px,
        transparent 1.2px
    );
    background-size: 20px 20px;
    opacity: 0.12;
}

.timeline-dots::before {
    --dot-color: rgba(236, 72, 153, 0.8);
    transform: translateX(-0.5px);
}

.timeline-dots::after {
    --dot-color: rgba(99, 102, 241, 0.8);
    transform: translateX(0.5px);
}

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

/* Header */
.timeline-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.header-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #fff;
    font-weight: 600;
}

.header-title span {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Content Layout */
.timeline-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 4rem;
    align-items: start;
}

/* Steps Area */
.timeline-steps {
    padding-right: 2rem;
}

.timeline-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Progress Line */
.timeline-line {
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-progress {
    position: absolute;
    left: 2.5rem;
    top: 0;
    width: 1px;
    background: linear-gradient(to bottom, #EC4899, #8B5CF6);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease;
}

/* Step Items */
.step-item {
    position: relative;
    padding-left: 6rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.step-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Step Elements */
.step-number {
    position: absolute;
    left: 0;
    top: -0.25rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-point {
    position: absolute;
    left: 2rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.step-item.active .step-point {
    border-color: #EC4899;
}

.step-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 600;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Content */
.visual-content {
    position: sticky;
    top: 120px;
}

.gif-container {
    width: 340px;
    height: 340px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.gif-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline-steps {
        padding-right: 0;
    }

    .visual-content {
        position: relative;
        top: 0;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 5rem 0;
    }

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

    .step-item {
        padding-left: 4rem;
    }

    .step-point {
        left: 1.5rem;
    }

    .timeline-line,
    .timeline-progress {
        left: 2rem;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 4rem 0;
    }

    .gif-container {
        width: 300px;
        height: 300px;
    }

    .header-title {
        font-size: 1.75rem;
    }
}
/* Isolated CTA Section Styles */
.cta-v2 {
    position: relative;
    padding: 8rem 0;
    background: #000000;
    overflow: hidden;
    margin: 0;
    z-index: 1;
}

/* Background */
.cta-v2__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-v2__dots {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(
            rgba(236, 72, 153, 0.7) 1px,
            transparent 1.2px
        ),
        radial-gradient(
            rgba(99, 102, 241, 0.7) 1px,
            transparent 1.2px
        );
    background-position: 0 0, 0.5px 0.5px;
    background-size: 20px 20px;
    opacity: 0.12;
}

/* Container */
.cta-v2__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

/* Wrapper & Box */
.cta-v2__wrapper {
    width: 100%;
    max-width: 580px;
    position: relative;
}

.cta-v2__box {
    position: relative;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(236, 72, 153, 0.15),
        rgba(99, 102, 241, 0.15)
    );
}

/* Border */
.cta-v2__border {
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        135deg,
        rgba(236, 72, 153, 0.5),
        rgba(99, 102, 241, 0.5)
    );
    border-radius: 33px;
    opacity: 0.2;
    filter: blur(8px);
}

/* Content */
.cta-v2__content {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    border-radius: 31px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 3rem;
    text-align: center;
}

/* Badge */
.cta-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.cta-v2__badge-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1) 50%,
        transparent
    );
    transform: translateX(-100%);
    animation: cta-v2-shine 3s infinite;
}

.cta-v2__badge-icon {
    font-size: 1rem;
}

.cta-v2__badge-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Title */
.cta-v2__title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 2.5rem 0;
    font-weight: 600;
}

.cta-v2__gradient-text {
    display: block;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Original Button Styles - In Root Scope */
:root {
    --shiny-cta-bg: #000000;
    --shiny-cta-bg-subtle: #1a1818;
    --shiny-cta-fg: #ffffff;
    --shiny-cta-highlight: blue;
    --shiny-cta-highlight-subtle: #8484ff;
}

/* Button Properties */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
}

@property --gradient-shine {
    syntax: "<color>";
    initial-value: white;
    inherits: false;
}

/* Exact Button Styles */
.shiny-cta {
    --animation: gradient-angle linear infinite;
    --duration: 3s;
    --shadow-size: 2px;
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline-offset: 4px;
    padding: 1.25rem 2.5rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.2;
    border: 1px solid transparent;
    border-radius: 360px;
    color: var(--shiny-cta-fg);
    background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
        padding-box,
        conic-gradient(
            from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
            transparent,
            var(--shiny-cta-highlight) var(--gradient-percent),
            var(--gradient-shine) calc(var(--gradient-percent) * 2),
            var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
            transparent calc(var(--gradient-percent) * 4)
        )
        border-box;
    box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);
}

.shiny-cta::before,
.shiny-cta::after,
.shiny-cta span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
}

.shiny-cta:active {
    translate: 0 1px;
}

.shiny-cta::before {
    --size: calc(100% - var(--shadow-size) * 3);
    --position: 2px;
    --space: calc(var(--position) * 2);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(
        circle at var(--position) var(--position),
        white calc(var(--position) / 4),
        transparent 0
    )
    padding-box;
    background-size: var(--space) var(--space);
    background-repeat: space;
    mask-image: conic-gradient(
        from calc(var(--gradient-angle) + 45deg),
        black,
        transparent 10% 90%,
        black
    );
    border-radius: inherit;
    opacity: 0.4;
    z-index: -1;
}

.shiny-cta::after {
    --animation: shimmer linear infinite;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(
        -50deg,
        transparent,
        var(--shiny-cta-highlight),
        transparent
    );
    mask-image: radial-gradient(circle at bottom, transparent 40%, black);
    opacity: 0.6;
}

.shiny-cta span {
    z-index: 1;
}

.shiny-cta span::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
}

.shiny-cta {
    --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: var(--transition);
    transition-property: --gradient-angle-offset, --gradient-percent,
        --gradient-shine;
}

.shiny-cta,
.shiny-cta::before,
.shiny-cta::after {
    animation: var(--animation) var(--duration),
        var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
}

.shiny-cta span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
}

.shiny-cta:is(:hover, :focus-visible) {
    --gradient-percent: 20%;
    --gradient-angle-offset: 95deg;
    --gradient-shine: var(--shiny-cta-highlight-subtle);
}

.shiny-cta:is(:hover, :focus-visible),
.shiny-cta:is(:hover, :focus-visible)::before,
.shiny-cta:is(:hover, :focus-visible)::after {
    animation-play-state: running;
}

.shiny-cta:is(:hover, :focus-visible) span::before {
    opacity: 1;
}

/* Section-specific Animations */
@keyframes cta-v2-shine {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 360deg;
    }
}

@keyframes shimmer {
    to {
        rotate: 360deg;
    }
}

@keyframes breathe {
    from,
    to {
        scale: 1;
    }
    50% {
        scale: 1.2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-v2 {
        padding: 6rem 0;
    }

    .cta-v2__content {
        padding: 2.5rem 2rem;
    }
}

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

    .cta-v2__badge {
        padding: 0.375rem 0.75rem;
    }
}
/* FAQ Section Styles */
.faq-section {
    position: relative;
    padding: 8rem 0;
    background: #000000;
    overflow: hidden;
}

/* Enhanced Dot Pattern */
.faq-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.faq-dots::before,
.faq-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(
            circle at center,
            var(--dot-color) 1px,
            transparent 1.2px
        );
    background-size: 20px 20px;
    opacity: 0.12;
}

.faq-dots::before {
    --dot-color: rgba(236, 72, 153, 0.8);
    transform: translateX(-0.5px);
}

.faq-dots::after {
    --dot-color: rgba(99, 102, 241, 0.8);
    transform: translateX(0.5px);
}

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

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-label {
    color: #EC4899;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.faq-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.faq-description {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Question Button */
.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-top: 0.25rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
    transform-origin: center;
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
    transform: scaleY(0);
}

/* Answer Panel */
.faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    height: auto;
    opacity: 1;
}

.answer-content {
    padding: 0 2rem 2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contact CTA */
.faq-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
}

.cta-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: #000;
    border-radius: 11px;
    opacity: 0.9;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .answer-content {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-grid {
        gap: 1rem;
    }
}
/* Footer Core Styles */
.footer-section {
    position: relative;
    padding: 6rem 0 3rem;
    background: #000000;
    overflow: hidden;
}

/* Dot Pattern */
.footer-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.footer-dots::before,
.footer-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(
            circle at center,
            var(--dot-color) 1px,
            transparent 1.2px
        );
    background-size: 20px 20px;
    opacity: 0.12;
}

.footer-dots::before {
    --dot-color: rgba(236, 72, 153, 0.7);
    transform: translateX(-0.5px);
}

.footer-dots::after {
    --dot-color: rgba(99, 102, 241, 0.7);
    transform: translateX(0.5px);
}

/* Container */
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Tagline */
.footer-tagline {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.tagline-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.tagline-text span {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}

/* Divider */
.elegant-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    margin: 2rem 0;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

/* Footer Left: Brand & Social */
.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Brand */
.brand-signature {
    display: flex;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: #000000;
    border-radius: 13px;
}

.logo-icon span {
    position: relative;
    z-index: 1;
}

.brand-name {
    font-weight: 500;
    font-size: 1.125rem;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

/* Legal Links */
.legal-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.legal-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Modal System (unchanged) */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: linear-gradient(180deg, 
        rgba(20, 20, 25, 0.95), 
        rgba(18, 18, 23, 0.95)
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    overflow-y: auto;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 4rem 0 2rem;
    }

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

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

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-section {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
}

/* Print Styles */
@media print {
    .footer-section {
        background: white;
        padding: 2rem 0;
    }

    .footer-dots,
    .social-links {
        display: none;
    }
}
/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 640px;
    max-height: 90vh;
    background: linear-gradient(180deg, 
        rgba(20, 20, 25, 0.95), 
        rgba(18, 18, 23, 0.95)
    );
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    overflow-y: auto;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-modal.active .modal-content {
    transform: translateY(0);
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.2);
    color: #fff;
}

/* Tabs Content */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.form-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

/* Direct Contact Styles */
.direct-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.direct-title {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.direct-subtitle {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-methods {
    display: grid;
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.whatsapp .method-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.email .method-icon {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.method-content {
    flex: 1;
}

.method-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.method-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-method:hover .method-arrow {
    transform: translateX(4px);
    color: rgba(255, 255, 255, 0.6);
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: linear-gradient(180deg, 
        rgba(20, 20, 25, 0.95), 
        rgba(18, 18, 23, 0.95)
    );
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-width: 400px;
    margin: 1rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 32px;
    margin: 0 auto 1.5rem;
}

.success-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
/* Complete Why Me Section Styles 2024 */
.about-me-section {
    position: relative;
    padding: 6rem 0;
    background: #000000;
    overflow: hidden;
}

/* Container */
.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
}

/* Dots Background */
.about-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-dots::before,
.about-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(
            circle at center,
            var(--dot-color) 1px,
            transparent 1.2px
        );
    background-size: 20px 20px;
    opacity: 0.12;
}

.about-dots::before {
    --dot-color: rgba(236, 72, 153, 0.8);
    transform: translateX(-0.5px);
}

.about-dots::after {
    --dot-color: rgba(99, 102, 241, 0.8);
    transform: translateX(0.5px);
}

/* Profile Area with Frame */
.profile-area {
    position: relative;
}

.photo-container {
    position: relative;
    width: 400px;
}

.photo-frame {
    position: relative;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1),
        rgba(139, 92, 246, 0.1)
    );
}

.frame-border {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.2),
        rgba(139, 92, 246, 0.2)
    );
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.photo-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: rgba(255, 255, 255, 0.03);
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-wrapper:hover .profile-photo {
    transform: scale(1.05);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 1.25rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 2;
}

.photo-wrapper:hover .experience-badge {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.exp-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* LinkedIn Link */
.linkedin-link {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    z-index: 2;
}

.linkedin-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: #fff;
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

/* Content Area */
.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.badge-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Value Cards */
.value-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.1);
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Animations */
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .photo-container {
        margin: 0 auto;
    }

    .content-area {
        text-align: center;
    }

    .value-grid {
        margin-left: auto;
        margin-right: auto;
    }

    .about-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .photo-container {
        width: 100%;
        max-width: 300px;
    }

    .about-me-section {
        padding: 4rem 0;
    }

    .about-container {
        padding: 0 1rem;
    }

    .value-card {
        padding: 1rem;
    }

    .experience-badge {
        padding: 0.375rem 0.625rem;
    }

    .linkedin-link {
        width: 32px;
        height: 32px;
        bottom: 1rem;
        left: 1rem;
    }

    .linkedin-icon {
        width: 16px;
        height: 16px;
    }
}
/* Premium Expertise Showcase Styles */
.expertise-bar {
    display: flex;
    align-items: center;
    height: 56px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.01)
    );
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Expert Label */
.expertise-label {
    padding: 0 24px;
    font-size: 15px;
    font-weight: 500;
    color: #EC4899;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Scroll Container */
.expertise-scroll {
    flex: 1;
    overflow: hidden;
    margin-left: 24px;
}

/* Track Animation */
.scroll-track {
    display: flex;
    animation: scrollExpertise 30s linear infinite;
    will-change: transform;
}

/* Expertise Group */
.expertise-group {
    display: flex;
    gap: 32px;
    padding: 0 16px;
}

/* Technology Items */
.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 450;
}

.tech-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Animations */
@keyframes scrollExpertise {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Edge Fade Effect */
.expertise-scroll::before,
.expertise-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 2;
}

.expertise-scroll::before {
    left: 0;
    background: linear-gradient(90deg, rgb(0, 0, 0), transparent);
}

.expertise-scroll::after {
    right: 0;
    background: linear-gradient(-90deg, rgb(0, 0, 0), transparent);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .expertise-bar {
        height: 48px;
    }

    .expertise-label {
        padding: 0 16px;
        font-size: 13px;
    }

    .expertise-scroll {
        margin-left: 16px;
    }

    .tech-item {
        padding: 4px 12px;
    }

    .tech-role,
    .tech-name {
        font-size: 13px;
    }

    .expertise-group {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .expertise-bar {
        height: 40px;
    }

    .expertise-label {
        padding: 0 12px;
        font-size: 12px;
    }

    .tech-role,
    .tech-name {
        font-size: 12px;
    }

    .expertise-group {
        gap: 16px;
    }

    .tech-item {
        padding: 3px 10px;
    }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .tech-name {
        color: #fff;
    }

    .tech-role {
        color: rgba(255, 255, 255, 0.8);
    }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
    .tech-item {
        background: rgba(255, 255, 255, 0.03);
    }
}