:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F0F;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: #F5F5DC;
    --text-cream: #F5F5DC;
    --text-secondary: rgba(245, 245, 220, 0.7);
    --text-tertiary: rgba(245, 245, 220, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-glow: rgba(139, 92, 246, 0.3);
    --gradient-1: #8B5CF6;
    --gradient-2: #3B82F6;
    --gradient-3: #22D3EE;
}

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

html {
    scroll-behavior: smooth;
    /* Prevent layout shift on mobile browsers */
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Prevent bounce/overscroll on mobile */
    overscroll-behavior-y: none;
    /* Fixed height to prevent layout shifts - uses JS-calculated --vh for stability */
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-cream);
}

.nav-menu {
    display: flex;
    gap: 50px;
}

.nav-link {
    color: var(--text-cream);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-cream);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-cream);
    opacity: 0.8;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100); /* JS-calculated height for stable mobile layout */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
    /* Prevent mobile browser UI from affecting layout */
    touch-action: pan-y;
}

.hero-decorative-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.decorative-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--text-cream);
    opacity: 0.4;
}

.decorative-line-left {
    left: 60px;
}

.decorative-line-right {
    right: 60px;
}

.hero-content {
    max-width: 1400px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-top-label {
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    font-size: clamp(16px, 2.2vw, 24px);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 40px;
    z-index: 10;
    opacity: 0;
    animation: heroReveal 1s ease-out 0.1s forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    line-height: 1.4;
    pointer-events: none;
    white-space: normal;
    overflow: visible;
}

.hero-titles-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.hero-title-fragmented {
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--text-cream);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    position: relative;
    opacity: 0.3;
    -webkit-text-stroke: 2px var(--text-cream);
    -webkit-text-fill-color: transparent;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            var(--text-cream) 2px,
            var(--text-cream) 4px
        );
    background-size: 100% 4px;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat-y;
}

.hero-title-top {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s ease-out 0.2s forwards;
}

.hero-title-bottom {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-30px);
    animation: heroReveal 1s ease-out 0.4s forwards;
}

.hero-title {
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -3px;
    color: var(--text-cream);
    margin: 0;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s ease-out 0.3s forwards;
    position: relative;
    z-index: 1;
}

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

.hero-subtitle-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s ease-out 0.6s forwards;
}

.hero-subtitle-line {
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: 400;
    color: var(--text-cream);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.6;
}

.hero-description {
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 40px auto 0;
    line-height: 1.8;
    text-align: center;
}

/* Section Styles */
.section {
    padding: 150px 0;
    position: relative;
}

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

.section-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 80px;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
        opacity: 1;
    transform: translateY(0);
}

/* Who Section */
.who-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #0F0F0F 50%, #0A0A0A 100%);
    position: relative;
}

.who-section-title {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 100px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.who-section-title.visible {
    opacity: 1;
        transform: translateY(0);
    }

.who-title-main {
    display: block;
    color: var(--text-cream);
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
}

.who-title-sub {
    display: block;
    font-size: 0.7em;
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    opacity: 0;
}

.cards-grid.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.who-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.who-card.visible {
    animation: cardReveal 0.6s ease forwards;
}

.who-card:nth-child(1).visible { animation-delay: 0.1s; }
.who-card:nth-child(2).visible { animation-delay: 0.2s; }
.who-card:nth-child(3).visible { animation-delay: 0.3s; }
.who-card:nth-child(4).visible { animation-delay: 0.4s; }
.who-card:nth-child(4).visible { animation-delay: 0.4s; }

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

.who-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.8);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(139, 92, 246, 0.4),
        0 0 60px rgba(139, 92, 246, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.who-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-cream);
    font-family: 'Inter', sans-serif;
}

.who-card-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.who-card-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-cream);
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
    align-self: flex-start;
}

.who-card-link:hover {
    opacity: 0.7;
}

/* Approach Section */
.approach-section {
    padding: 200px 0;
    position: relative;
    background: var(--bg-primary);
}

.approach-section .section-title {
    text-align: center;
}

.approach-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-text-content {
    max-width: 100%;
    text-align: center;
}

.approach-text {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.approach-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-text:nth-child(2).visible {
    transition-delay: 0.2s;
}


/* Benefits Section */
.benefits-section {
    background: var(--bg-secondary);
}

.benefits-list {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-text {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

/* Process Section */
.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    color: var(--text-tertiary);
    min-width: 100px;
    letter-spacing: -2px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-text {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Why Section */
.why-section {
    background: var(--bg-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-item {
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.why-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Section */
.contact-section {
    padding: 200px 0;
}

.contact-description {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
        opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--gradient-3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-form input,
.contact-form textarea {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 25px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-tertiary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 12px;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 40px;
    }
    
    .nav-menu {
    gap: 30px;
}

    .container {
        padding: 0 40px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
}

    .who-section-title {
    text-align: center;
}

    .who-title-main {
        margin-bottom: 15px;
    }
    
    .approach-container {
        gap: 60px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
}
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 0;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 25px;
}

    .nav-link {
        font-size: 14px;
}

    .hero {
        padding: 0;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
        position: relative;
}

    .hero-content {
        display: flex;
        flex-direction: column;
    align-items: center;
        text-align: center;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        padding: 0;
    justify-content: center;
    position: relative;
}

    .hero-top-label {
    position: absolute;
        top: calc(50vh - 280px);
        top: calc(var(--vh, 1vh) * 50 - 280px);
        left: 0;
        right: 0;
        transform: none;
        font-size: clamp(14px, 3vw, 20px);
        font-weight: 500;
        color: var(--text-secondary);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-align: center;
    width: 100%;
        padding: 0 20px;
        z-index: 10;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
        line-height: 1.4;
        margin: 0 auto;
        white-space: normal;
        overflow: visible;
        box-sizing: border-box;
        line-height: 1.4;
        overflow: visible;
    }
    
    .hero-titles-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        position: absolute;
        top: 50vh;
        top: calc(var(--vh, 1vh) * 50);
    left: 50%;
    transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        z-index: 1;
    }
    
    .hero-bottom-text {
        position: absolute;
        bottom: 80px;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .hero-title-fragmented {
        font-size: clamp(60px, 13vw, 100px);
        line-height: 0.85;
        opacity: 0.3;
        margin-bottom: 5px;
        width: 100%;
        padding: 0 10px;
        letter-spacing: -3px;
}

    .hero-title-top {
        margin-bottom: 5px;
    }
    
    .hero-title {
        font-size: clamp(80px, 17vw, 120px);
        margin: 5px 0;
        letter-spacing: -4px;
    width: 100%;
        padding: 0 10px;
        line-height: 0.85;
}

    .hero-title-bottom {
        margin-top: 5px;
        margin-bottom: 0;
    width: 100%;
        padding: 0 10px;
        letter-spacing: -3px;
    }
    
    .hero-subtitle-container {
        margin: 0 0 10px 0;
        text-align: center;
    width: 100%;
    }
    
    .hero-subtitle-line {
        font-size: clamp(18px, 4.5vw, 24px);
        padding: 0 20px;
        margin: 0;
        font-weight: 600;
        text-shadow: 
            0 0 10px rgba(139, 92, 246, 0.5),
            0 0 20px rgba(139, 92, 246, 0.4),
            0 0 30px rgba(139, 92, 246, 0.3),
            0 0 40px rgba(139, 92, 246, 0.2),
            0 0 2px rgba(139, 92, 246, 0.7),
            0 0 4px rgba(139, 92, 246, 0.5),
            0 0 6px rgba(139, 92, 246, 0.4);
        color: var(--text-cream);
}

    .hero-description {
        font-size: clamp(14px, 3.2vw, 17px);
        margin: 0;
        padding: 0 20px;
}

    .hero-decorative-lines {
        height: 120px;
}

    .decorative-line-left {
        left: 20px;
    }
    
    .decorative-line-right {
        right: 20px;
    }
    
    .section {
        padding: 100px 0;
    }

    .who-section {
        padding: 80px 0 40px 0;
}

    .who-section-title {
        margin-bottom: 60px;
    }

    .approach-section {
        padding: 40px 0 80px 0;
    }

    .approach-text {
        font-size: clamp(18px, 2.5vw, 22px);
        line-height: 2;
    }
    
    .container {
        padding: 0 30px;
}

    .section-title {
        margin-bottom: 50px;
    }

    .who-card {
    padding: 40px 30px;
    }

    .process-step {
        flex-direction: column;
    gap: 20px;
        padding: 40px 0;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .approach-container {
        gap: 40px;
    }

    .approach-glow {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .hero {
        padding: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    }
    
    .hero-content {
        padding: 0;
        max-width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        justify-content: center;
        position: relative;
}

    .hero-top-label {
        top: calc(50vh - 260px);
        top: calc(var(--vh, 1vh) * 50 - 260px);
        left: 0;
        right: 0;
        transform: none;
        font-size: clamp(12px, 3vw, 18px);
        padding: 0 15px;
        letter-spacing: 1px;
        font-weight: 500;
        z-index: 10;
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
        line-height: 1.4;
        margin: 0 auto;
        white-space: normal;
        overflow: visible;
    }
    
    .hero-titles-group {
    display: flex;
    flex-direction: column;
        align-items: center;
        justify-content: center;
    width: 100%;
    position: absolute;
        top: 50vh;
        top: calc(var(--vh, 1vh) * 50);
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        padding: 0;
        z-index: 1;
    }
    
    .hero-bottom-text {
        position: absolute;
        bottom: 70px;
    left: 0;
        right: 0;
    width: 100%;
    }
    
    .hero-title-fragmented {
        font-size: clamp(55px, 15vw, 90px);
        margin-bottom: 3px;
        width: 100%;
        padding: 0 5px;
        letter-spacing: -3px;
        line-height: 0.85;
}

    .hero-title {
        font-size: clamp(70px, 20vw, 120px);
        margin: 3px 0;
        width: 100%;
        padding: 0 5px;
        letter-spacing: -4px;
        line-height: 0.85;
}

    .hero-title-bottom {
        margin-top: 3px;
        margin-bottom: 0;
    width: 100%;
        padding: 0 5px;
        letter-spacing: -3px;
}

    .hero-subtitle-container {
        margin: 0 0 8px 0;
    }
    
    .hero-subtitle-line {
        font-size: clamp(16px, 4vw, 22px);
        padding: 0 20px;
        margin: 0;
    font-weight: 600;
        text-shadow: 
            0 0 10px rgba(139, 92, 246, 0.5),
            0 0 20px rgba(139, 92, 246, 0.4),
            0 0 30px rgba(139, 92, 246, 0.3),
            0 0 40px rgba(139, 92, 246, 0.2),
            0 0 2px rgba(139, 92, 246, 0.7),
            0 0 4px rgba(139, 92, 246, 0.5),
            0 0 6px rgba(139, 92, 246, 0.4);
        color: var(--text-cream);
}

    .hero-description {
        font-size: clamp(13px, 3.5vw, 16px);
        margin: 0;
        padding: 0 20px;
    }
    
    .hero-decorative-lines {
        height: 100px;
    }
    
    .decorative-line-left {
        left: 15px;
    }
    
    .decorative-line-right {
        right: 15px;
    }
    
    .section {
        padding: 80px 0;
    }

    .who-section {
        padding: 60px 0 30px 0;
}

    .who-section-title {
        margin-bottom: 40px;
    }

    .approach-section {
        padding: 30px 0 60px 0;
    }

    .approach-text {
        font-size: clamp(17px, 2.5vw, 21px);
        line-height: 2;
        margin-bottom: 25px;
    }

    .container {
        padding: 0 20px;
    }

    .who-card {
        padding: 30px 25px;
    }

    .benefit-item {
        padding: 30px 0;
    }
    
    .process-step {
        padding: 30px 0;
    }
}

/* Footer */
.footer {
    position: relative;
    background: var(--bg-primary);
    padding: 80px 0 40px;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
        opacity: 0;
    animation: footerGlow 2s ease-out 0.3s forwards;
    }

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

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

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
        opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 1s ease-out 0.5s forwards;
    }

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

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-cream);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 350px;
    font-family: 'Inter', sans-serif;
}

/* Navigation Section */
.footer-nav-title,
.footer-contact-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-cream);
    margin-bottom: 20px;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav-title::after,
.footer-contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-link {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

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

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-email {
    color: var(--text-cream) !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-email::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.footer-email:hover {
    color: var(--gradient-1);
    transform: translateX(5px);
}

.footer-email:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.footer-social-link svg {
    flex-shrink: 0;
}

.footer-telegram-username {
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.footer-social-link:hover {
    border-color: var(--gradient-1);
    color: var(--gradient-1);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Legal Information */
.footer-legal {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    opacity: 0;
    animation: footerFadeIn 1s ease-out 0.6s forwards;
}

.legal-info {
    margin-bottom: 20px;
    }

.legal-title {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-cream);
    margin-bottom: 10px;
    text-align: center;
    }

.legal-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-item {
    white-space: nowrap;
    }

.legal-item a {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    }

.legal-item a:hover {
    color: var(--gradient-1);
}

.legal-separator {
    color: var(--text-tertiary);
    }

.legal-rights {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    color: var(--text-tertiary);
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Copyright */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    }

.footer-copyright {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-tertiary);
    opacity: 0;
    animation: footerFadeIn 1s ease-out 0.8s forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-brand,
    .footer-nav,
    .footer-contact {
        align-items: center;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid var(--border-color);
    }

    .footer-brand {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    }

    .footer-logo {
        font-size: 36px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .footer-tagline {
        max-width: 100%;
        line-height: 1.7;
        color: var(--text-secondary);
    }

    .footer-nav-title,
    .footer-contact-title {
        font-size: 12px;
        letter-spacing: 2px;
        color: var(--gradient-1);
        margin-bottom: 18px;
        font-weight: 600;
    }

    .footer-nav-title::after,
    .footer-contact-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav-list {
        align-items: center;
        gap: 14px;
    }

    .footer-nav-link {
        padding: 8px 0;
        font-size: 15px;
    }

    .footer-email {
        font-size: 15px;
        margin-top: 10px;
    }

    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-bottom {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 25px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        gap: 35px;
        margin-bottom: 30px;
    }

    .footer-brand,
    .footer-nav,
    .footer-contact {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .footer-logo {
        font-size: 42px;
        letter-spacing: 5px;
        text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    }

    .footer-tagline {
        font-size: 13px;
        line-height: 1.7;
        opacity: 0.9;
    }

    .footer-nav-title,
    .footer-contact-title {
        font-size: 11px;
        letter-spacing: 2.5px;
        text-transform: uppercase;
    }

    .footer-nav-link {
        font-size: 15px;
        padding: 6px 0;
    }

    .footer-email {
        font-size: 14px;
        word-break: break-word;
}

    .footer-social-link {
        padding: 10px 16px;
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
}

    .footer-telegram-username {
        font-size: 14px;
        font-weight: 500;
    }

    .footer-legal {
        margin-top: 35px;
        padding-top: 30px;
        padding: 30px 15px 0;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        border: 1px solid var(--border-color);
    }

    .legal-title {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .legal-details {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        line-height: 1.6;
    }

    .legal-separator {
        display: none;
}

    .legal-rights {
        font-size: 11px;
        padding: 0 5px;
        line-height: 1.6;
        margin-top: 15px;
        padding-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 12px;
        opacity: 0.7;
    }
}
