@font-face {
    font-family: 'NewYork';
    src: url('../assets/fonts/new-york.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-main: #FCF6D6;
    --surface: #FCF6D6;
    --surface-light: #F3ECCD;
    --text-main: #2D336B;
    --text-muted: #6B729C;
    --accent: #4249FA;
    --accent-hover: #191DF5;
    --border-color: #4249FA;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    font-size: clamp(14px, 1.2vw + 12px, 17.6px);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

::selection {
    background-color: var(--accent);
    color: var(--bg-main);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('../assets/cursor/CURSOR.png') 10 6, auto !important;
}

*, html, body {
    cursor: url('../assets/cursor/CURSOR.png') 10 6, auto !important;
}

a, a *, button, button *, [role="button"], [role="button"] *, 
.faq-item, .faq-item *, .copy-btn, .copy-btn *, 
input, textarea, select, .social-text, .social-text * {
    cursor: url('../assets/cursor/CURSOR SELECT.png') 10 6, pointer !important;
}

#work .work-item, #work .work-item *:not(a):not(a *), 
#work .work-mockup, #work .work-mockup * {
    cursor: url('../assets/cursor/CURSOR VIEW.png') 16 16, pointer !important;
}

html {
    overflow-x: hidden;
}

*:active {
    cursor: url('../assets/cursor/CURSOR SELECT.png') 10 6, pointer !important;
}

body {
    font-family: var(--font-body);
    font-size: 1.06rem;
    font-weight: 500;
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

#bg-canvas, .layout-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

body.site-loaded #bg-canvas, 
body.site-loaded .layout-wrapper {
    opacity: 1;
    visibility: visible;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

#bg-canvas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' xmlns='http://www.w3.org/2000/svg'%3E%3Ctext x='70' y='80' text-anchor='middle' font-family='sans-serif' font-size='18' fill='%232D336B' opacity='0.2'%3E*%3C/text%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 600;
}

h1, h2 {
    color: var(--accent);
}

h3, h4, h5, h6 {
    color: var(--text-main);
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; }
h5 { font-size: 1.05rem; font-weight: 500; }

p, a, span, div {
    font-family: var(--font-body);
}

.fixed-sidebar {
    position: fixed;
    top: 0;
    left: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.fixed-sidebar.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-logo {
    position: absolute;
    top: 2rem;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    text-decoration: none;
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    pointer-events: auto;
    letter-spacing: -0.02em;
}

.sidebar-logo img {
    height: 1.1em;
    width: auto;
    margin-bottom: -0.1em;
}

@media (max-width: 1320px) {
    .fixed-sidebar {
        display: none;
    }
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    pointer-events: auto;
}

.sidebar-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: var(--text-main);
}

.fixed-sidebar .reveal-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fixed-sidebar.visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.fixed-sidebar.visible .sidebar-logo { transition-delay: 0.1s; }
.fixed-sidebar.visible .sidebar-link:nth-child(1) { transition-delay: 0.2s; }
.fixed-sidebar.visible .sidebar-link:nth-child(2) { transition-delay: 0.25s; }
.fixed-sidebar.visible .sidebar-link:nth-child(3) { transition-delay: 0.3s; }
.fixed-sidebar.visible .sidebar-link:nth-child(4) { transition-delay: 0.35s; }
.fixed-sidebar.visible .sidebar-link:nth-child(5) { transition-delay: 0.4s; }

.layout-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.main-content {
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
    max-width: 1050px;
    width: 100%;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin-bottom: 8rem;
    padding: 2rem 5vw 2rem 5vw;
    box-sizing: border-box;
    width: 100%;
}

.hero h1 {
    font-size: clamp(3.5rem, 7.5vw, 6.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 3rem;
    color: var(--accent);
    align-self: flex-start;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: var(--font-body);
}

.hero-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 2rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.hero-desc-container {
    max-width: 480px;
}

.hero-logo {
    height: 0.9em;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.1rem;
    margin-top: -0.15em;
}

.hero-desc {
    font-size: 1.06rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-desc:last-child {
    margin-bottom: 0;
}

.social-icons-row {
    display: flex;
    gap: 2.5rem;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.social-icon:hover {
    color: var(--text-main);
}

.social-icon i {
    font-size: 28px;
    max-width: 50px;
    opacity: 1;
    display: inline-block;
    overflow: hidden;
    max-height: 50px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease, max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), font-size 0.4s ease, opacity 0.3s ease, margin 0.4s, padding 0.4s;
}

.social-icon:hover i {
    transform: translateY(-8px) rotate(8deg) scale(1.15);
    color: var(--accent);
}

.social-icon span {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
}

@media (min-width: 1025px) {
    .fixed-social-container {
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        z-index: 100;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        align-items: flex-start;
    }

    .fixed-social-container .social-text {
        font-size: 0.75rem;
        opacity: 0.7;
        line-height: 1;
        transition: opacity 0.3s ease;
        cursor: pointer;
        color: var(--text-muted);
    }

    .fixed-social-container .social-text:hover {
        opacity: 1;
        color: var(--text-main);
    }
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

#work {
    margin-bottom: 8rem;
}

.work-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.work-item {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.work-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.work-title h3 {
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.work-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--bg-main);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.explore-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent);
    border-radius: 9999px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateZ(0);
}

.explore-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--accent);
    left: -100%;
    top: 50%;
    transform: translateY(-50%) scale(1);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.explore-btn:hover {
    color: var(--bg-main);
    border-color: var(--accent);
}

.explore-btn:hover::before {
    left: 0;
    transform: translateY(-50%) scale(1.5);
}

.explore-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s linear;
    transform: rotate(45deg);
}

.explore-btn:hover .explore-icon-wrapper {
    transform: rotate(90deg);
    background: var(--bg-main);
    border-color: transparent;
}

.explore-icon-wrapper svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: var(--text-main);
    transition: fill 0.3s linear;
}

.explore-btn:hover .explore-icon-wrapper svg {
    fill: var(--text-main);
}

.work-mockup {
    width: 100%;
    border-radius: 24px;
    padding: 3rem;
    background: transparent;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-mockup img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.trusted-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 8rem;
}

.trusted-line {
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.trusted-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trusted-content span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

#experience {
    margin-bottom: 8rem;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.exp-item {
    display: grid;
    grid-template-columns: 64px 320px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.exp-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--surface-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent);
}

.exp-details h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.exp-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.exp-desc {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    max-width: 600px;
}

.figma-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    padding: 0;
}

.figma-title {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0 !important;
    padding: 0.2rem 1.5rem;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.figma-border {
    position: absolute;
    inset: 0;
    border: 1px solid #2B81F6;
    pointer-events: none;
    opacity: 0;
    animation: figmaReveal 4s infinite;
    z-index: 1;
}

.figma-node {
    position: absolute;
    width: 7px;
    height: 7px;
    background: white;
    border: 1px solid #2B81F6;
}

.figma-node.top-left { top: -4px; left: -4px; }
.figma-node.top-right { top: -4px; right: -4px; }
.figma-node.bottom-left { bottom: -4px; left: -4px; }
.figma-node.bottom-right { bottom: -4px; right: -4px; }

.figma-cursor-group {
    position: absolute;
    bottom: -15px;
    right: -25px;
    z-index: 10;
    pointer-events: none;
    transform: translate(50px, 50px);
    opacity: 0;
    animation: figmaCursorMove 4s infinite;
    display: flex;
    align-items: flex-start;
}

.figma-cursor-icon {
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.2));
    transform-origin: top left;
    animation: figmaCursorClick 4s infinite;
}

.figma-cursor-label {
    background: #2B81F6;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    border-top-left-radius: 2px;
    margin-left: 2px;
    margin-top: 14px;
    font-family: var(--font-body);
    white-space: nowrap;
}

@keyframes figmaCursorMove {
    0% { transform: translate(50px, 50px); opacity: 0; }
    10% { transform: translate(50px, 50px); opacity: 1; }
    30% { transform: translate(0, 0); opacity: 1; }
    85% { transform: translate(0, 0); opacity: 1; }
    95% { transform: translate(20px, 20px); opacity: 0; }
    100% { transform: translate(50px, 50px); opacity: 0; }
}

@keyframes figmaCursorClick {
    0%, 30% { transform: scale(1); }
    33% { transform: scale(0.85); }
    37%, 100% { transform: scale(1); }
}

@keyframes figmaReveal {
    0%, 35% { opacity: 0; }
    37%, 85% { opacity: 1; }
    95%, 100% { opacity: 0; }
}

#about {
    margin-bottom: 8rem;
}

.about-me-container {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.about-me-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.about-me-text p {
    color: var(--text-main);
    line-height: 1.5;
    font-family: var(--font-body);
    font-weight: 500;
}

.about-me-image {
    width: 360px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.about-me-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.contact-box {
    background-color: var(--surface);
    border-radius: 24px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.03);
}

.contact-box h3 {
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.contact-actions {
    display: flex;
    align-items: center;
    background: var(--surface-light);
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.email-display {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copy-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--surface);
    transform: scale(1.05);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.work-item.reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.92);
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center bottom;
}

.work-item.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.10s; }
.delay-3 { transition-delay: 0.15s; }

.hero-reveal, .hero-word {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), 
                transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-reveal.active, .reveal.active .hero-word {
    opacity: 1;
    transform: translateY(0);
}

.hero-reveal-1 { transition-delay: 0.1s; }
.hero-reveal-2 { transition-delay: 0.6s; }
.hero-reveal-3 { transition-delay: 0.75s; }
.hero-reveal-4 { transition-delay: 0.9s; }
.hero-reveal-5 { transition-delay: 1.05s; }

.mobile-only { display: none; }
.desktop-only { display: inline; }

@media (max-width: 900px) {
    .mobile-only { display: inline; }
    .desktop-only { display: none; }

    .hero {
        padding: 4rem 1.5rem 0 1.5rem;
        min-height: 85vh;
    }

    .main-content {
        padding: 0 1.5rem 4rem 1.5rem;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 3.5rem);
    }

    .hero-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .work-item {
        padding: 0;
    }

    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .work-mockup {
        padding: 1.5rem;
    }

    .btn-primary {
        width: 100%;
    }

    .trusted-section {
        flex-direction: row;
        gap: 1rem;
    }

    .trusted-line {
        flex: 1;
        height: 1px;
    }

    .exp-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .exp-logo {
        margin-bottom: 0.5rem;
    }

    @media (min-width: 769px) {
        .social-icons-row.is-fixed {
            position: fixed;
            bottom: 3rem;
            left: 3rem;
            z-index: 100;
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transform: translateZ(0);
            border: 1px solid rgba(255, 255, 255, 0.05);
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .social-icons-row.is-fixed .social-icon span {
            max-width: 200px;
            opacity: 1;
            font-size: 1.1rem;
        }

        .social-icons-row.is-fixed .social-icon i {
            max-width: 0px;
            opacity: 0;
            margin: 0;
            padding: 0;
            overflow: hidden;
        }
    }

    .social-icons-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        flex-shrink: 0;
    }

    .social-icon i {
        font-size: 24px;
    }

    .social-icon span {
        display: none;
    }

    .about-me-container {
        flex-direction: column;
    }

    .about-me-image {
        width: 100%;
        height: 450px;
        min-height: auto;
    }

    .contact-box {
        padding: 2.5rem 1.5rem;
        border-radius: 24px;
        width: 100%;
    }

    .contact-box h3 {
        margin-bottom: 2rem;
    }

    .contact-actions {
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 24px;
        gap: 1.5rem;
        width: 100%;
        background: transparent;
        border: none;
    }

    .email-display {
        margin-right: 0;
        background: var(--surface-light);
        padding: 0.75rem 1rem;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .email-display span {
        font-size: 0.95rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .book-call-btn {
        width: 100%;
        justify-content: center;
    }
}

.pricing-section, .faq-section {
    margin-bottom: 8rem;
}

.pricing-section .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-main);
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #bg-canvas::after {
        background-image: none !important;
        display: none !important;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    background: transparent;
    text-align: center;
}

.custom-solutions-box {
    grid-column: 1 / -1;
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
}

.custom-solutions-box i {
    font-size: 2rem;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.pricing-card .price-label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.pricing-card .price {
    font-size: clamp(2.8rem, 12vw, 3.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.faq-item {
    border: 2px solid var(--accent);
    border-radius: 24px;
    background: transparent;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(66, 73, 250, 0.05);
}

.faq-item.active {
    border-radius: 24px;
}

.faq-question {
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: text;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

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

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.6s cubic-bezier(0.19, 1, 0.22, 1), 
                opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-answer > * {
    overflow: hidden;
    padding: 0 2rem;
    margin: 0;
    transition: padding-bottom 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-item.open .faq-answer > * {
    padding-bottom: 1.5rem;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: fit-content;
    font-size: 17px;
    font-family: monospace;
    line-height: 1.4;
    font-weight: bold;
    padding: 30px 2px 50px;
    background: linear-gradient(var(--text-main) 0 0) 0 0/100% 100% content-box padding-box no-repeat;
    position: relative;
    overflow: hidden;
    animation: l10-0 2s infinite cubic-bezier(1,175,.5,175);
}

.loader::before {
    content: "Loading";
    display: inline-block;
    color: var(--bg-main);
    animation: l10-2 2s infinite;
}

.loader::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 28px;
    top: 110%;
    left: calc(50% - 16px);
    background:
        linear-gradient(90deg,#0000 12px,#f92033 0 22px,#0000 0 26px,#fdc98d 0 32px,#0000) bottom 26px left 50%,
        linear-gradient(90deg,#0000 10px,#f92033 0 28px,#fdc98d 0 32px,#0000 0) bottom 24px left 50%,
        linear-gradient(90deg,#0000 10px,#643700 0 16px,#fdc98d 0 20px,#000 0 22px,#fdc98d 0 24px,#000 0 26px,#f92033 0 32px,#0000 0) bottom 22px left 50%,
        linear-gradient(90deg,#0000 8px,#643700 0 10px,#fdc98d 0 12px,#643700 0 14px,#fdc98d 0 20px,#000 0 22px,#fdc98d 0 28px,#f92033 0 32px,#0000 0) bottom 20px left 50%,
        linear-gradient(90deg,#0000 8px,#643700 0 10px,#fdc98d 0 12px,#643700 0 16px,#fdc98d 0 22px,#000 0 24px,#fdc98d 0 30px,#f92033 0 32px,#0000 0) bottom 18px left 50%,
        linear-gradient(90deg,#0000 8px,#643700 0 12px,#fdc98d 0 20px,#000 0 28px,#f92033 0 30px,#0000 0) bottom 16px left 50%,
        linear-gradient(90deg,#0000 12px,#fdc98d 0 26px,#f92033 0 30px,#0000 0) bottom 14px left 50%,
        linear-gradient(90deg,#fdc98d 6px,#f92033 0 14px,#222a87 0 16px,#f92033 0 22px,#222a87 0 24px,#f92033 0 28px,#0000 0 32px,#643700 0) bottom 12px left 50%,
        linear-gradient(90deg,#fdc98d 6px,#f92033 0 16px,#222a87 0 18px,#f92033 0 24px,#f92033 0 26px,#0000 0 30px,#643700 0) bottom 10px left 50%,
        linear-gradient(90deg,#0000 10px,#f92033 0 16px,#222a87 0 24px,#feee49 0 26px,#222a87 0 30px, #643700 0) bottom 8px left 50%,
        linear-gradient(90deg,#0000 12px,#222a87 0 18px,#feee49 0 20px,#222a87 0 30px,#643700 0) bottom 6px left 50%,
        linear-gradient(90deg,#0000 8px,#643700 0 12px,#222a87 0 30px,#643700 0) bottom 4px left 50%,
        linear-gradient(90deg,#0000 6px,#643700 0 14px,#222a87 0 26px,#0000 0) bottom 2px left 50%,
        linear-gradient(90deg,#0000 6px,#643700 0 10px,#0000 0 ) bottom 0px left 50%;
    background-size: 34px 2px;
    background-repeat: no-repeat;
    animation: inherit;
    animation-name: l10-1;
}

@keyframes l10-0 {
    0%, 30% { background-position: 0 0px; }
    50%, 100% { background-position: 0 -0.1px; }
}

@keyframes l10-1 {
    50%, 100% { top: 109.5%; }
}

@keyframes l10-2 {
    0%, 30% { transform: translateY(0); }
    80%, 100% { transform: translateY(-260%); }
}

.services-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto 8rem auto;
}

.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.services-left {
    flex: 1;
}

.services-left p {
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-main);
}

.services-left h2 .highlight {
    color: var(--accent);
}

.scroll-highlight-text span {
    color: rgba(45, 51, 107, 0.15);
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-highlight-text span.active {
    color: var(--text-main);
}

.scroll-highlight-text span.highlight {
    color: rgba(66, 73, 250, 0.15);
}

.scroll-highlight-text span.highlight.active {
    color: var(--accent);
}

.services-right {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 0 1px rgba(66, 73, 250, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background-image: radial-gradient(
        300px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
        var(--accent),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.service-card.math-hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.08);
}

.service-card i {
    font-size: 1.2rem;
    color: var(--accent);
}

@media (max-width: 900px) {
    .services-content {
        flex-direction: column;
        gap: 3rem;
    }

    .services-right {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

.clients-section {
    padding: 4rem 0 0;
    max-width: 1200px;
    margin: 0 auto 8rem auto;
}

.clients-section .section-title {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 5%;
}

.who-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    user-select: none;
    -webkit-user-select: none;
}

.who-marquee-wrapper * {
    -webkit-user-drag: none;
    user-drag: none;
}

.who-marquee-wrapper img {
    pointer-events: none;
    draggable: false;
}

.who-marquee-wrapper.is-dragging {
    cursor: url('../assets/cursor/CURSOR SELECT.png') 10 6, grabbing !important;
}

.who-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.who-marquee-group {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

.who-card {
    position: relative;
    width: 320px;
    height: 420px;
    flex-shrink: 0;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(66, 73, 250, 0.05);
    border: 1px solid rgba(66, 73, 250, 0.2);
    overflow: hidden;
    box-sizing: border-box;
}

.who-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background-image: radial-gradient(
        250px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
        var(--accent),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.who-card-header {
    margin-bottom: 1rem;
}

.who-card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.who-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.who-card-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.who-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

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

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

.side-scroll-track {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 75px;
    background-color: rgba(66, 73, 250, 0.2);
    border-radius: 10px;
    z-index: 100;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.side-scroll-track.visible {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
}

.side-scroll-fill {
    width: 100%;
    height: 0%;
    background: var(--accent);
    border-radius: 10px;
    transition: height 0.15s cubic-bezier(0.2, 0, 0.2, 1);
}

.fixed-socials {
    position: fixed;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 100;
    pointer-events: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.5rem;
}

.fixed-socials.visible {
    pointer-events: all;
}

.fixed-socials a {
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0;
    display: block;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fixed-socials a:hover {
    color: var(--text-main);
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .side-scroll-track { display: none; }
    .fixed-socials { display: none; }
}

.sweep-reveal-container {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sweep-reveal-container .sweep-arrow {
    display: inline-block;
}

.sweep-reveal-container .sweep-arrow-straight {
    display: inline-block;
}

.sweep-reveal-container .sweep-text {
    display: inline-block;
}

.sweep-reveal-container.reveal .sweep-arrow,
.sweep-reveal-container.reveal .sweep-arrow-straight {
    transform: translateX(-150px);
    opacity: 0;
}

.sweep-reveal-container.reveal .sweep-text {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.sweep-reveal-container.reveal.active .sweep-arrow {
    animation: sweepEntranceArrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.sweep-reveal-container.reveal.active .sweep-arrow-straight {
    animation: sweepEntranceArrowStraight 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.sweep-reveal-container.reveal.active .sweep-text {
    animation: sweepEntranceText 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes sweepEntranceArrow {
    0% { transform: translateX(-150px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    85% { transform: translateX(0) rotate(0deg); opacity: 1; }
    100% { transform: translateX(0) rotate(-45deg); opacity: 1; }
}

@keyframes sweepEntranceArrowStraight {
    0% { transform: translateX(-150px) rotate(0deg); opacity: 0; }
    15% { opacity: 1; }
    100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

@keyframes sweepEntranceText {
    0% { clip-path: inset(0 100% 0 0); opacity: 0; }
    1% { opacity: 1; }
    100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

.site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 5% 4rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.giant-watermark {
    font-size: clamp(2rem, 11vw, 15rem);
    font-weight: 700;
    font-family: 'Outfit', sans-serif !important;
    color: rgba(45, 51, 107, 0.07);
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 4rem;
    pointer-events: none;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.book-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: #006aff;
    border: 8px solid #c0dfff;
    color: white;
    gap: 8px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.book-call-btn .text {
    font-size: 1.7em;
    font-weight: 700;
    letter-spacing: 1px;
}

.book-call-btn .svg {
    padding-top: 5px;
    height: 100%;
    width: fit-content;
}

.book-call-btn .svg svg {
    width: 50px;
    height: 30px;
}

.book-call-btn:hover {
    border: 8px solid #b1d8ff;
    background-color: #1b7aff;
}

.book-call-btn:active {
    border: 5px solid #c0dfff;
}

.book-call-btn:hover .svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

@keyframes jello-vertical {
    0% { transform: scale3d(1, 1, 1); }
    30% { transform: scale3d(0.75, 1.25, 1); }
    40% { transform: scale3d(1.25, 0.75, 1); }
    50% { transform: scale3d(0.85, 1.15, 1); }
    65% { transform: scale3d(1.05, 0.95, 1); }
    75% { transform: scale3d(0.95, 1.05, 1); }
    100% { transform: scale3d(1, 1, 1); }
}
