:root {
    --neuva-dark: #020202;
    --neuva-highlight: #94a3b8;
    --neuva-purple: #2e2a3d;
    --neuva-blue: #1e293b;
    --neuva-metallic: #334155;
}



html {
    scroll-behavior: smooth;
    /* Enable scroll snapping on the container */
    scroll-snap-type: y proximity;
}

body {
    background-color: var(--neuva-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body.is-loading {
    overflow: hidden;
}

body.is-loading>*:not(#page-loader):not(script) {
    opacity: 0;
    visibility: hidden;
}

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    overflow: hidden;
    pointer-events: auto;
    background: #020202;
    opacity: 1;
    transition: opacity 900ms ease;
}

body.is-loading #home {
    animation-play-state: paused !important;
}

body.is-loading #home .ray-rect,
body.is-loading #home .reveal {
    animation-play-state: paused !important;
}

.page-loader-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(220px, 34vw, 430px);
    height: auto;
    display: block;
    animation: pageLoaderPulse 1.8s ease-in-out infinite;
    transform-origin: center;
    transition: opacity 820ms ease;
    will-change: opacity, transform;
    z-index: 4;
}

@keyframes pageLoaderPulse {

    0%,
    100% {
        opacity: 0.68;
    }

    50% {
        opacity: 1;
    }
}

#page-loader.is-revealing {
    pointer-events: none;
    opacity: 0;
}

#page-loader.is-revealing .page-loader-logo {
    opacity: 0;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

[data-scroll-reveal] {
    opacity: 0;
    translate: 0 24px;
    transition:
        opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
        translate 820ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-order, 0) * var(--reveal-stagger-step, 70ms));
    will-change: opacity, translate;
}

[data-scroll-reveal].is-revealed {
    opacity: 1;
    translate: 0 0;
}

@media (prefers-reduced-motion: reduce) {
    [data-scroll-reveal] {
        opacity: 1;
        translate: 0 0;
        transition: none;
    }
}

/* Snap Section Logic */
section {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    scroll-margin-top: 0px;
}

html.smart-snap-active section[style*="scroll-snap-align"] {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal;
}

html.smart-snap-active section[style*="scroll-snap-align"].snap-ready {
    scroll-snap-align: center !important;
}

/* Branding: Bank Gothic style */
.company-name {
    font-family: 'Michroma', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Hero Content: Technical/Complementary style */
.hero-font {
    font-family: 'Chakra Petch', sans-serif;
}

/* Glass Navbar Effect */
.glass-nav {
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

#nav-items {
    transition-property: opacity;
    transition-duration: 0.85s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
}

#brand-logo {
    transition: opacity 0.95s ease, transform 0.95s ease, filter 0.95s ease;
    will-change: opacity;
}

#header-contact-btn {
    transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.95s ease, color 0.95s ease, border-color 0.95s ease, box-shadow 0.95s ease;
}

#contact-popup {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#contact-popup.open {
    opacity: 1;
    pointer-events: auto;
}

#contact-popup-panel {
    width: min(92vw, 620px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(4, 4, 4, 0.92);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    padding: 1.35rem;
    transform: translateY(16px) scale(0.985);
    transition: transform 0.25s ease;
}

#contact-popup.open #contact-popup-panel {
    transform: translateY(0) scale(1);
}

#works-popup {
    position: fixed;
    inset: 0;
    z-index: 122;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

#works-popup.open {
    opacity: 1;
    pointer-events: auto;
}

#works-popup-panel {
    width: min(92vw, 560px);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, rgba(7, 7, 7, 0.9) 0%, rgba(18, 22, 28, 0.9) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(24px) saturate(170%);
    -webkit-backdrop-filter: blur(24px) saturate(170%);
    padding: 1.2rem;
    transform: translateY(14px) scale(0.985);
    transition: transform 0.25s ease;
}

#works-popup.open #works-popup-panel {
    transform: translateY(0) scale(1);
}

.works-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.works-popup-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
}

.works-popup-kicker {
    display: block;
    color: rgba(226, 232, 240, 0.66);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.works-popup-title {
    margin: 0;
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.15;
}

.works-popup-copy {
    margin: 0;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.75;
    font-size: 0.96rem;
}

.works-popup-close {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    margin-left: auto;
}

.works-popup-close:hover,
.works-popup-close:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
}

.contact-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-popup-panel-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1rem;
}

.contact-popup-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.contact-popup-kicker {
    display: block;
    color: rgba(226, 232, 240, 0.64);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-popup-title {
    margin: 0;
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.05;
}

.contact-popup-copy {
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.7;
    font-size: 0.94rem;
}

.contact-popup-close {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.contact-popup-close:hover,
.contact-popup-close:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.contact-popup-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (max-width: 640px) {
    .contact-popup-options {
        grid-template-columns: 1fr;
    }
}

.contact-popup-option {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: flex-start;
    text-align: left;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(148, 163, 184, 0.06) 100%);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    min-height: 126px;
}

.contact-popup-option:hover,
.contact-popup-option:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.24);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.13) 0%, rgba(148, 163, 184, 0.09) 100%);
}

.contact-popup-option svg {
    width: 20px;
    height: 20px;
}

.contact-popup-option strong {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-popup-option span {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.82rem;
    line-height: 1.5;
}

.contact-popup-email-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 640px) {
    .contact-popup-email-box {
        grid-template-columns: 1fr;
    }
}

.contact-popup-email-label {
    display: block;
    color: rgba(226, 232, 240, 0.64);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.contact-popup-email-address {
    color: #ffffff;
    font-size: 0.98rem;
    word-break: break-word;
}

.contact-popup-copy-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.contact-popup-copy-btn:hover,
.contact-popup-copy-btn:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link .nav-icon {
    display: none;
}

.nav-link .nav-text {
    display: inline;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 2px;
    background-color: #fff;
    border-radius: 999px;
}

/* ANIMATION REUSABLE LOGIC */
.rays-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ray-rect {
    position: absolute;
    height: 300vh;
    transform: rotate(45deg);
    opacity: 0;
    filter: blur(60px);
    animation: moveRay 25s linear infinite;
}

@keyframes moveRay {
    0% {
        top: -150%;
        left: -50%;
        opacity: 0;
    }

    20% {
        opacity: 0.35;
    }

    80% {
        opacity: 0.35;
    }

    100% {
        top: 50%;
        left: 150%;
        opacity: 0;
    }
}

.ambient-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--neuva-dark) 85%);
    z-index: 2;
    pointer-events: none;
}

.metallic-text {
    background: linear-gradient(to bottom, #ffffff 30%, #94a3b8 70%, #475569 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.01em;
}

/* CTA BUTTONS */
.btn-primary {
    background: #ffffff;
    color: #000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 700;
}

.btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    animation: revealUp 2s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section entrance animation */
section {
    animation: sectionFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* STACKED SECTION: TOP BLACK ANIMATION / BOTTOM WHITE */
.stacked-section {
    position: relative;
    width: 100%;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .stacked-section {
        height: 100vh;
        min-height: 100vh;
    }
}

.stack-top {
    position: relative;
    height: 50vh;
    background-color: var(--neuva-dark);
    overflow: hidden;
}

.stack-bottom {
    height: 50vh;
    background-color: #ffffff;
}

/* FLOATING GLASS BOX */
.glass-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 10;
    background: linear-gradient(180deg, rgba(75, 85, 99, 0.28) 0%, rgba(17, 24, 39, 0.42) 100%);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    padding: 3rem 2rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.72);
}

@media (min-width: 768px) {
    .glass-box {
        padding: 5rem 4rem;
    }
}

/* Custom alignment for story content */
.story-header {
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(to bottom, #ffffff 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-section {
    position: relative;
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(5rem, 9vw, 7rem) 0;
    overflow: hidden;
}

.vision-ambient-light {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.42;
    z-index: 0;
    pointer-events: none;
    animation: visionFloat 20s ease-in-out infinite alternate;
}

.vision-ambient-light.is-left {
    width: min(56vw, 520px);
    height: min(56vw, 520px);
    top: -12%;
    left: -10%;
    background: rgba(224, 242, 254, 0.9);
}

.vision-ambient-light.is-right {
    width: min(62vw, 620px);
    height: min(62vw, 620px);
    right: -8%;
    bottom: -18%;
    background: rgba(226, 232, 240, 0.95);
    animation-delay: -5s;
}

@keyframes visionFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -50px) scale(1.1);
    }
}

.vision-shell {
    position: relative;
    z-index: 2;
    width: min(92vw, 1240px);
    padding-inline: clamp(0.5rem, 2vw, 1rem);
}

.vision-heading-wrap {
    text-align: center;
    margin-bottom: clamp(2.8rem, 7vw, 5.5rem);
}

.vision-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.34em;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
}

.vision-title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2rem, 5.4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.vision-gradient-text {
    background: linear-gradient(180deg, #0f172a 0%, #334155 60%, #64748b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.2vw, 1.5rem);
}

.vision-card {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    padding: clamp(1.7rem, 4vw, 3rem);
    background:
        linear-gradient(145deg, rgba(2, 6, 23, 0.86) 0%, rgba(15, 23, 42, 0.76) 58%, rgba(30, 41, 59, 0.66) 100%),
        radial-gradient(120% 90% at 15% 5%, rgba(226, 232, 240, 0.14) 0%, rgba(226, 232, 240, 0) 55%);
    border: 1px solid rgba(226, 232, 240, 0.28);
    backdrop-filter: blur(26px) saturate(140%);
    -webkit-backdrop-filter: blur(26px) saturate(140%);
    box-shadow: 0 26px 54px -18px rgba(2, 6, 23, 0.52);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease;
}

.vision-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(2rem - 1px);
    pointer-events: none;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(255, 255, 255, 0) 68%);
    mix-blend-mode: screen;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 72px -22px rgba(2, 6, 23, 0.64);
    border-color: rgba(148, 163, 184, 0.5);
}

.vision-card-highlight {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.42), transparent);
    border-radius: 24px 24px 0 0;
}

.vision-card-watermark {
    position: absolute;
    top: clamp(0.75rem, 1.9vw, 1.4rem);
    right: clamp(0.75rem, 1.9vw, 1.4rem);
    color: rgba(226, 232, 240, 0.12);
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(4.8rem, 9vw, 6.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.vision-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: clamp(250px, 38vw, 340px);
}

@media (min-width: 960px) {
    .vision-card-content {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
        gap: 2rem;
        min-height: auto;
    }

    .vision-card-head {
        margin-bottom: 0;
    }

    .vision-card-copy-wrap {
        margin-top: 0;
        padding-top: 0;
        padding-left: 1.6rem;
        border-top: 0;
        border-left: 0;
    }
}

.vision-card-head {
    border-left: 3px solid rgba(226, 232, 240, 0.88);
    padding-left: 1.2rem;
    margin-bottom: 1.8rem;
}

.vision-card-kicker {
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.33em;
    color: rgba(203, 213, 225, 0.88);
    margin-bottom: 0.8rem;
}

.vision-card .vision-gradient-text {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 58%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-card-title {
    margin: 0;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.35rem, 5.2vw, 4.1rem);
    line-height: 1.07;
    letter-spacing: -0.02em;
}

.vision-card-copy-wrap {
    margin-top: auto;
    padding-top: 1.3rem;
    border-top: 0;
}

.vision-card-copy {
    margin: 0;
    color: rgba(226, 232, 240, 0.9);
    font-size: clamp(0.98rem, 1.55vw, 1.1rem);
    line-height: 1.8;
    font-style: italic;
}

.vision-gradient-heading {
    background: linear-gradient(180deg, #ffffff 0%, #dbeafe 55%, #94a3b8 100%);
    background-size: 100% 200%;
    background-position: 0 0;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: visionGradientSweep 5s ease-in-out infinite alternate;
}

@keyframes visionGradientSweep {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 100%;
    }
}

.why-section {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(920px 480px at 10% 16%, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0) 60%),
        radial-gradient(860px 420px at 88% 84%, rgba(100, 116, 139, 0.15) 0%, rgba(100, 116, 139, 0) 66%),
        linear-gradient(145deg, #ffffff 0%, #f8fafc 52%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    overflow: hidden;
}

.why-section::before,
.why-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.78;
}

.why-section::before {
    width: min(42vw, 540px);
    height: min(42vw, 540px);
    top: -16%;
    left: -12%;
    background: radial-gradient(circle at 35% 35%, rgba(148, 163, 184, 0.24) 0%, rgba(148, 163, 184, 0.08) 42%, rgba(148, 163, 184, 0) 72%);
}

.why-section::after {
    width: min(38vw, 500px);
    height: min(38vw, 500px);
    right: -10%;
    bottom: -14%;
    background: radial-gradient(circle at 60% 45%, rgba(71, 85, 105, 0.22) 0%, rgba(71, 85, 105, 0.08) 42%, rgba(71, 85, 105, 0) 76%);
}

.why-glass-box {
    position: relative;
    isolation: isolate;
    z-index: 1;
    width: min(92vw, 1220px);
    border-radius: 28px;
    padding: clamp(1.35rem, 2.4vw, 2.2rem);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 24%, rgba(0, 0, 0, 0) 35%),
        linear-gradient(150deg, rgba(7, 9, 11, 0.96) 0%, rgba(19, 24, 30, 0.93) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 32px 84px rgba(0, 0, 0, 0.46);
    overflow: hidden;
}

.why-glass-box::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 24px),
        radial-gradient(860px 360px at 50% -10%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 68%);
    opacity: 0.85;
}

.why-intro {
    position: relative;
    display: grid;
    gap: 0.95rem;
    margin-bottom: 1.3rem;
    z-index: 1;
}

@media (min-width: 900px) {
    .why-intro {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
        align-items: end;
        gap: 2rem;
        margin-bottom: 1.8rem;
    }
}

.why-intro-title {
    border-left: 2px solid rgba(148, 163, 184, 0.3);
    padding-left: 1rem;
}

.why-heading {
    font-size: clamp(2rem, 3.6vw, 3.9rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    margin: 0;
}

.why-glass-box .vision-kicker {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.66rem;
    letter-spacing: 0.32em;
}

.why-intro-copy {
    color: rgba(226, 232, 240, 0.84);
    font-size: clamp(0.94rem, 1.04vw, 1.06rem);
    line-height: 1.78;
    margin: 0;
    max-width: 64ch;
}

.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.82rem;
}

@media (min-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.92rem;
    }
}

.why-card {
    position: relative;
    padding: 1.1rem 1.1rem 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.why-card::before {
    content: attr(data-number);
    position: absolute;
    right: 0.7rem;
    top: 0.2rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.6rem, 8vw, 6.2rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    user-select: none;
}

@media (max-width: 767px) {
    .why-card::before {
        content: none;
        display: none;
    }
}

.why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.why-card.panel-matte {
    background:
        radial-gradient(620px 260px at 12% 16%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 56%),
        linear-gradient(145deg, #070707 0%, #111315 48%, #080808 100%);
}

.why-card.panel-frosted {
    background:
        radial-gradient(620px 260px at 82% 22%, rgba(148, 163, 184, 0.2) 0%, rgba(148, 163, 184, 0) 60%),
        linear-gradient(150deg, rgba(7, 9, 11, 0.96) 0%, rgba(19, 24, 30, 0.93) 100%);
}

.why-card.panel-glossy {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 24%, rgba(0, 0, 0, 0) 35%),
        radial-gradient(620px 260px at 70% 84%, rgba(100, 116, 139, 0.2) 0%, rgba(100, 116, 139, 0) 62%),
        linear-gradient(145deg, #030303 0%, #0d1118 52%, #040404 100%);
}

.why-card-index {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.74);
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.why-card h4 {
    margin: 0 0 0.46rem;
    font-size: clamp(1.04rem, 1.22vw, 1.28rem);
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.why-card p {
    margin: 0;
    color: rgba(226, 232, 240, 0.84);
    line-height: 1.64;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.founders-section {
    position: relative;
    min-height: 120vh;
    background:
        radial-gradient(1000px 500px at 12% 18%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 58%),
        radial-gradient(850px 420px at 88% 82%, rgba(226, 232, 240, 0.26) 0%, rgba(226, 232, 240, 0) 62%),
        linear-gradient(180deg, #020202 0%, #04070c 55%, #020202 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
    overflow: hidden;
}

.founders-section::before,
.founders-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.75;
}

.founders-section::before {
    width: 34vw;
    height: 34vw;
    min-width: 260px;
    min-height: 260px;
    top: -8%;
    left: -10%;
    background: conic-gradient(from 225deg at 50% 50%, rgba(255, 255, 255, 0.18) 0deg, rgba(226, 232, 240, 0.04) 180deg, rgba(255, 255, 255, 0.18) 360deg);
}

.founders-section::after {
    width: 30vw;
    height: 30vw;
    min-width: 230px;
    min-height: 230px;
    right: -8%;
    bottom: -12%;
    background: conic-gradient(from 35deg at 50% 50%, rgba(255, 255, 255, 0.14) 0deg, rgba(203, 213, 225, 0.06) 180deg, rgba(255, 255, 255, 0.14) 360deg);
}

.founders-box {
    position: relative;
    z-index: 1;
    width: min(92vw, 1240px);
    border-radius: 34px;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(226, 232, 240, 0.08) 46%, rgba(15, 23, 42, 0.58) 100%);
    backdrop-filter: blur(34px) saturate(155%);
    -webkit-backdrop-filter: blur(34px) saturate(155%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 38px 110px -34px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.founders-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 34px;
    background:
        radial-gradient(900px 320px at 18% 0%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(120deg, rgba(226, 232, 240, 0.06) 0 1px, transparent 1px 22px);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

@media (min-width: 768px) {
    .founders-box {
        padding: 3rem 2.5rem;
    }
}

.founders-intro {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .founders-intro {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: end;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
}

.founders-intro-title {
    border-left: 2px solid rgba(255, 255, 255, 0.24);
    padding-left: 1.2rem;
}

.founders-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.34em;
    color: rgba(255, 255, 255, 0.82);
}

.founders-heading {
    margin: 0;
    font-size: clamp(2rem, 3.3vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.founders-copy {
    margin: 0;
    color: rgba(226, 232, 240, 0.84);
    font-size: clamp(0.92rem, 1vw, 1.05rem);
    line-height: 1.7;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

@media (min-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .founders-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.founder-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 0;
    height: 100%;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.16) 0%, rgba(226, 232, 240, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 16px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.founder-card:hover,
.founder-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 24px 72px rgba(0, 0, 0, 0.45);
}

.founder-card::before {
    content: attr(data-founder-index);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    color: rgba(255, 255, 255, 0.32);
    z-index: 2;
}

.founder-card::after {
    content: attr(data-watermark);
    position: absolute;
    bottom: -0.2rem;
    right: -0.8rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(226, 232, 240, 0.06);
    text-transform: uppercase;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    transform: rotate(-90deg);
    transform-origin: bottom right;
}

.founder-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 46%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(226, 232, 240, 0.04) 45%, rgba(2, 6, 23, 0.92) 100%);
}

.founder-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(18%) contrast(1.02) saturate(0.92);
    transform: scale(1.02);
}

.founder-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.26) 40%, rgba(2, 6, 23, 0.94) 100%);
}

.founder-card-body {
    position: relative;
    z-index: 1;
    padding: 1.25rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .founder-card-body {
        padding: 1.4rem 1.35rem 1.35rem;
    }
}

.founder-name {
    margin: 0;
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.2rem, 1.55vw, 1.7rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.founder-role {
    margin: 0;
    color: rgba(226, 232, 240, 0.84);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.45;
}

.founder-socials {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.55rem;
}

.founder-socials a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.founder-socials a:hover,
.founder-socials a:focus-visible {
    color: #ffffff;
    transform: translateX(2px);
}

.founder-socials svg {
    width: 12px;
    height: 12px;
}

.founder-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(226, 232, 240, 0.05) 100%);
}

.founder-card-placeholder span {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.22);
    text-transform: uppercase;
}

.contact-section {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(1200px 520px at 8% 16%, rgba(148, 163, 184, 0.26) 0%, rgba(148, 163, 184, 0) 60%),
        radial-gradient(980px 460px at 92% 88%, rgba(100, 116, 139, 0.2) 0%, rgba(100, 116, 139, 0) 66%),
        linear-gradient(135deg, #f8fafc 0%, #eef2f7 52%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 0;
    overflow: hidden;
}

.contact-section::before,
.contact-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.7;
}

.contact-section::before {
    width: 32vw;
    height: 32vw;
    min-width: 240px;
    min-height: 240px;
    top: -8%;
    left: -10%;
    background: conic-gradient(from 210deg at 50% 50%, rgba(255, 255, 255, 0.16) 0deg, rgba(226, 232, 240, 0.05) 180deg, rgba(255, 255, 255, 0.16) 360deg);
}

.contact-section::after {
    width: 28vw;
    height: 28vw;
    min-width: 220px;
    min-height: 220px;
    right: -8%;
    bottom: -12%;
    background: conic-gradient(from 30deg at 50% 50%, rgba(255, 255, 255, 0.12) 0deg, rgba(203, 213, 225, 0.05) 180deg, rgba(255, 255, 255, 0.12) 360deg);
}

.contact-shell {
    position: relative;
    z-index: 1;
    width: min(92vw, 1240px);
    border-radius: 34px;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.84) 0%, rgba(15, 23, 42, 0.78) 52%, rgba(2, 6, 23, 0.88) 100%);
    backdrop-filter: blur(34px) saturate(155%);
    -webkit-backdrop-filter: blur(34px) saturate(155%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 38px 110px -34px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.contact-shell::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 34px;
    background:
        radial-gradient(900px 320px at 18% 0%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(120deg, rgba(226, 232, 240, 0.08) 0 1px, transparent 1px 22px);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

@media (min-width: 768px) {
    .contact-shell {
        padding: 3rem 2.5rem;
    }
}

.contact-intro {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .contact-intro {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: end;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
}

.contact-intro-title {
    border-left: 2px solid rgba(255, 255, 255, 0.24);
    padding-left: 1.2rem;
}

.contact-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.34em;
    color: rgba(255, 255, 255, 0.82);
}

.contact-heading {
    margin: 0;
    font-size: clamp(2rem, 3.3vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: #ffffff;
}

.contact-copy {
    margin: 0;
    color: rgba(241, 245, 249, 0.92);
    font-size: clamp(0.92rem, 1vw, 1.05rem);
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 1rem;
    }
}

.contact-panel {
    border-radius: 26px;
    padding: 1.4rem;
    background: linear-gradient(155deg, rgba(15, 23, 42, 0.72) 0%, rgba(2, 6, 23, 0.78) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.contact-details {
    display: grid;
    gap: 0.9rem;
}

.contact-detail-card {
    border-radius: 18px;
    padding: 1rem 1.05rem;
    background: rgba(15, 23, 42, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-detail-label {
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.82);
    margin-bottom: 0.45rem;
}

.contact-detail-link {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.35;
}

.contact-detail-link:hover,
.contact-detail-link:focus-visible {
    text-decoration: underline;
}

.contact-phone-links {
    display: grid;
    gap: 0.35rem;
}

.contact-form {
    display: grid;
    gap: 0.9rem;
}

.contact-form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

@media (min-width: 768px) {
    .contact-form-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(2, 6, 23, 0.5);
    color: #ffffff;
    padding: 0.95rem 1rem;
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(226, 232, 240, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(2, 6, 23, 0.62);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.25rem;
}

.contact-submit {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: #020202;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease;
    cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    transform: translateY(-2px);
    background: #e2e8f0;
}

.contact-note {
    color: rgba(241, 245, 249, 0.82);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.contact-notification {
    display: none;
    align-items: center;
    gap: 0.75rem;
    border-radius: 20px;
    padding: 1rem 1.15rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.18);
    color: #e2e8f0;
    font-size: 0.94rem;
    line-height: 1.5;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0;
    transform: translateY(-6px);
}

.contact-notification.is-visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.contact-notification.success {
    border-color: rgba(34, 197, 94, 0.35);
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.14), rgba(15, 23, 42, 0.96));
    color: #d1fae5;
}

.contact-notification.error {
    border-color: rgba(248, 113, 113, 0.35);
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.14), rgba(15, 23, 42, 0.96));
    color: #fee2e2;
}

@media (max-width: 767px) {
    .founders-box {
        width: min(92vw, 560px);
        padding: 1.35rem 1rem;
    }

    .founders-intro {
        margin-bottom: 1.1rem;
    }

    .founders-heading {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }

    .founders-grid {
        gap: 0.8rem;
    }

    .founder-card {
        min-height: 0;
        height: 100%;
    }

    .founder-card-body {
        padding: 1rem 1rem 1.05rem;
    }
}

@media (max-width: 767px) {
    .contact-shell {
        width: min(92vw, 560px);
        padding: 1.35rem 1rem;
    }

    .contact-intro {
        margin-bottom: 1.1rem;
    }

    .contact-heading {
        font-size: clamp(1.85rem, 8vw, 2.6rem);
    }

    .contact-grid {
        gap: 0.8rem;
    }

    .contact-panel {
        padding: 1.1rem;
    }
}



.site-footer {
    margin-bottom: 1.5rem;
}

.footer-shell {
    width: min(100vw, 1550px);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.45rem;
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 52%),
        linear-gradient(160deg, rgba(22, 22, 22, 0.88) 0%, rgba(10, 10, 10, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

@media (min-width: 1024px) {
    .footer-shell {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
        gap: 1rem;
    }
}

.footer-card {
    border-radius: 0;
    padding: 1rem 0.75rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

@media (min-width: 1024px) {
    .footer-card {
        padding: 0.95rem 1rem;
    }

    .footer-card+.footer-card {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 1023px) {
    .footer-card+.footer-card {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.2rem;
    }
}

.footer-intro {
    display: grid;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.footer-brand img {
    width: 172px;
    height: auto;
    display: block;
}

.footer-description {
    margin: 0;
    color: rgba(241, 245, 249, 0.84);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 58ch;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

@media (min-width: 768px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.footer-link-card {
    border-radius: 0;
    padding: 0.2rem 0;
    background: transparent;
    border: 0;
}

.footer-link-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif;
}

.footer-link-card a {
    display: block;
    color: rgba(226, 232, 240, 0.88);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-link-card a:hover,
.footer-link-card a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.footer-kicker {
    display: block;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.66);
    margin-bottom: 0.5rem;
}

.footer-title {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.2rem, 1.6vw, 1.8rem);
    letter-spacing: -0.01em;
}

.footer-section-heading {
    margin: 0 0 0.7rem;
    color: #ffffff;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-address {
    margin: 0;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-meta-item {
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.7rem 0.8rem;
}

.footer-meta-item strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #ffffff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-meta-item a,
.footer-meta-item span {
    color: rgba(226, 232, 240, 0.86);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-socials {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.28);
}

.footer-socials svg {
    width: 12px;
    height: 12px;
}

.footer-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #0b0b0b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-contact-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .footer-contact-row {
        grid-template-columns: 1fr;
    }
}

.footer-contact-item {
    border-radius: 0;
    padding: 0.2rem 0;
    background: transparent;
    border: 0;
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(226, 232, 240, 0.88);
    text-decoration: none;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.footer-map-wrap iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

@media (min-width: 768px) {
    .footer-map-wrap iframe {
        height: 320px;
    }
}

.footer-bottom {
    width: min(92vw, 1240px);
    margin: 1rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(226, 232, 240, 0.62);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.custom-scrollbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 20px;
    height: 100vh;
    background: transparent;
    z-index: 80;
    pointer-events: none;
}

.custom-scrollbar-track {
    position: absolute;
    inset: 12px 7px 12px auto;
    width: 6px;
    height: calc(100% - 24px);
    background: transparent;
    border-radius: 999px;
    pointer-events: auto;
}

.custom-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 50%;
    width: 10px;
    min-height: 48px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.78) 0%, rgba(2, 6, 23, 0.55) 100%);
    border: 1px solid rgba(148, 163, 184, 0.34);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(203, 213, 225, 0.22);
    pointer-events: auto;
    cursor: pointer;
}

.custom-scrollbar-thumb::before {
    content: '';
    position: absolute;
    inset: 2px 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.3) 0%, rgba(15, 23, 42, 0.05) 100%);
    opacity: 0.65;
}

@media (max-width: 1024px) {
    .custom-scrollbar {
        display: none !important;
    }
}

/* =============================================
    SERVICES SECTION — GLASSMORPHIC AUTO-SCROLL
    Big Typography + Horizontal Marquee Cards
    ============================================= */

.services-section {
    position: relative;
    height: 110vh;
    background: var(--neuva-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .services-section {
        height: 100vh;
    }
}

/* ---- BIG KINETIC TYPOGRAPHY TICKER ---- */
.services-ticker-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
}

.services-ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: tickerScroll 22s linear infinite;
    will-change: transform;
}

.services-ticker-inner:hover {
    animation-play-state: paused;
}

.services-ticker-word {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: clamp(7rem, 14vw, 18rem);
    line-height: 0.88;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    text-transform: uppercase;
    user-select: none;
    padding: 0 3rem;
    white-space: nowrap;
}

.services-ticker-word.accent {
    -webkit-text-stroke: 1px rgba(148, 163, 184, 0.12);
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- SECTION LAYOUT ---- */
.services-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 0;
}

/* ---- HEADER ---- */
.services-header {
    text-align: center;
    padding: 3.5rem 5vw 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-direction: column;
    flex-wrap: wrap;
    z-index: 20;
}

.services-header-left {
    text-align: center;
}

.services-header span {
    font-size: 0.68rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    display: block;
    margin-bottom: 0.75rem;
    font-family: 'Chakra Petch', sans-serif;
}

.services-header h2 {
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.025em;
    line-height: 0.95;
    font-family: 'Chakra Petch', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 60%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-header-count {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    padding-bottom: 0;
    white-space: nowrap;
    text-align: center;
}

.services-footer-cta {
    position: relative;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.5rem 1.2rem 2.2rem;
}

.services-view-works-btn,
.services-view-services-btn {
    border: 1px solid rgba(226, 232, 240, 0.22);
    border-radius: 999px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.13) 0%, rgba(148, 163, 184, 0.08) 100%);
    color: #ffffff;
    padding: 0.9rem 1.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(14px) saturate(155%);
    -webkit-backdrop-filter: blur(14px) saturate(155%);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.services-view-works-btn:hover,
.services-view-works-btn:focus-visible,
.services-view-services-btn:hover,
.services-view-services-btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(226, 232, 240, 0.42);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.2) 0%, rgba(148, 163, 184, 0.12) 100%);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

/* ---- AUTO-SCROLL TRACK ---- */
.services-autoscroll-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 2rem;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Fade edges */
.services-autoscroll-outer::before,
.services-autoscroll-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8vw;
    z-index: 15;
    pointer-events: none;
}

.services-autoscroll-outer::before {
    left: 0;
    background: linear-gradient(to right, var(--neuva-dark) 0%, transparent 100%);
}

.services-autoscroll-outer::after {
    right: 0;
    background: linear-gradient(to left, var(--neuva-dark) 0%, transparent 100%);
}

.services-autoscroll-track {
    display: flex;
    gap: 1.25rem;
    animation: autoScrollCards 38s linear infinite;
    will-change: transform;
    width: max-content;
    --manual-offset: 0px;
}

.services-autoscroll-track:hover {
    animation-play-state: paused;
}

@keyframes autoScrollCards {
    0% {
        transform: translateX(var(--manual-offset));
    }

    100% {
        transform: translateX(calc(-50% + var(--manual-offset)));
    }
}

.services-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.services-scroll-btn:hover {
    background: rgba(15, 23, 42, 0.78);
    border-color: rgba(148, 163, 184, 0.55);
    transform: translateY(-50%) scale(1.04);
}

.services-scroll-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.services-scroll-btn svg {
    width: 16px;
    height: 16px;
}

.services-scroll-btn.left {
    left: max(0.85rem, 1.2vw);
}

.services-scroll-btn.right {
    right: max(0.85rem, 1.2vw);
}

/* ---- GLASS SERVICE CARD ---- */
.service-card {
    --card-collapsed-width: clamp(300px, 28vw, 420px);
    --card-compressed-width: clamp(250px, 22vw, 332px);
    --card-expanded-width: clamp(490px, 50vw, 640px);
    flex-shrink: 0;
    z-index: 999;
    width: var(--card-collapsed-width);
    flex-basis: var(--card-collapsed-width);
    min-height: clamp(400px, 57vh, 580px);
    border-radius: 24px;

    cursor: pointer;
    position: relative;

    /* Glassmorphism */
    background: linear-gradient(145deg,
            rgba(203, 213, 225, 0.2) 0%,
            rgba(148, 163, 184, 0.16) 50%,
            rgba(71, 85, 105, 0.24) 100%);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(226, 232, 240, 0.24);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(15, 23, 42, 0.14);

    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.52s cubic-bezier(0.22, 1, 0.36, 1),
        flex-basis 0.52s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.services-autoscroll-track.has-expanded .service-card:not(.expanded) {
    width: var(--card-compressed-width);
    flex-basis: var(--card-compressed-width);
}

.service-card:hover {
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(226, 232, 240, 0.42);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.service-card.expanded {
    width: var(--card-expanded-width);
    height: clamp(390px, 52vh, 520px);
    flex-basis: var(--card-expanded-width);
    border-color: rgba(226, 232, 240, 0.5);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* Glass inner shimmer */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.34) 40%, rgba(255, 255, 255, 0.12) 70%, transparent 100%);
    border-radius: 24px 24px 0 0;
}

.service-card::after {
    content: attr(data-watermark);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.35rem;
    display: flex;
    align-items: stretch;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(3rem, 6.8vh, 5.9rem);
    letter-spacing: 0.1em;
    font-weight: 800;
    color: rgba(226, 232, 240, 0.09);
    line-height: 0.86;
    text-transform: uppercase;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* Card index number */
.service-card-index {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.22);
    font-weight: 600;
    z-index: 3;
    pointer-events: none;
}

.service-card-header {
    padding: 2rem 2rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: none;
    position: relative;
    z-index: 2;
}

.service-card-icon {
    display: none;
}

.service-card-icon svg {
    display: none;
}

.service-card-title-wrapper {
    flex: 1;
    width: 100%;
    max-width: calc(100% - 4.25rem);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    padding-right: 0.25rem;
    text-align: right;
}

.service-card-title {
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Chakra Petch', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.06;
    text-wrap: balance;
    width: 100%;
    display: block;
    overflow: visible;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.service-card-summary {
    font-size: 0.62rem;
    color: rgba(226, 232, 240, 0.7);
    margin: 0;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    max-width: 100%;
    margin-left: auto;
    text-align: right;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

/* Expand toggle */
.service-card-toggle {
    display: inline-block;
    margin-top: 0.25rem;
    padding-top: 0.45rem;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif;
    color: rgba(226, 232, 240, 0.58);
    transition: color 0.25s ease, transform 0.3s ease;
    cursor: pointer;
    align-self: flex-end;
    text-align: right;
}

.service-card-toggle::before {
    content: 'Open Story';
}

.service-card.expanded .service-card-toggle::before {
    content: 'Close Story';
}

.service-card:hover .service-card-toggle,
.service-card.expanded .service-card-toggle {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(2px);
}

.service-card-toggle-icon {
    display: none;
}

.service-card.expanded .service-card-toggle-icon {
    display: none;
}

.service-card-toggle-icon svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* Accordion content */
.service-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.52s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, transform 0.45s ease;
    padding: 0 2rem;
    flex: 1;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(14px);
}

.service-card.expanded .service-card-content {
    padding: 0 2rem 1.35rem;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-card.expanded .service-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Divider above content */
.service-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(148, 163, 184, 0.18) 30%, rgba(148, 163, 184, 0.18) 70%, transparent 100%);
    margin: 0 2rem 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    position: relative;
    z-index: 2;
}

.service-card.expanded .service-card-divider {
    opacity: 1;
}

.service-card-description {
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.82);
    margin: 0;
    max-width: 100%;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.service-highlight-item {
    padding: 0.5rem 0.7rem;
    background: rgba(148, 163, 184, 0.07);
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.01em;
    transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-card-title {
    transform: translateY(-2px);
}

.service-card:hover .service-card-summary {
    transform: translateY(-1px);
}

.service-card:hover .service-highlight-item {
    transform: translateY(-2px);
    background: rgba(148, 163, 184, 0.12);
}

.service-highlight-item::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.55);
    flex-shrink: 0;
}

/* ---- MOBILE ---- */
@media (max-width: 767px) {
    .services-header {
        padding: 2.5rem 1.25rem 1rem;
    }

    .services-ticker-word {
        font-size: clamp(5rem, 22vw, 8rem);
    }

    .service-card {
        --card-collapsed-width: clamp(280px, 78vw, 340px);
        --card-compressed-width: clamp(250px, 68vw, 320px);
        --card-expanded-width: clamp(312px, 90vw, 396px);
        width: var(--card-collapsed-width);
        flex-basis: var(--card-collapsed-width);
        min-height: clamp(360px, 60vh, 470px);
    }

    .service-card-header {
        padding: 1.45rem 1.35rem 0.8rem;
        gap: 0.55rem;
    }

    .service-card-index {
        top: 1rem;
        right: 1rem;
    }

    .service-card-title-wrapper {
        max-width: calc(100% - 3.1rem);
        gap: 0.35rem;
    }

    .service-card-title {
        font-size: clamp(1.45rem, 7vw, 1.9rem);
    }

    .service-card-summary {
        max-width: 100%;
    }

    .service-card-content {
        padding: 0 1.35rem;
    }

    .service-card.expanded .service-card-content {
        padding: 0 1.35rem 1.1rem;
        gap: 0.7rem;
    }

    .service-card.expanded .service-highlights {
        grid-template-columns: 1fr;
    }

    .service-card-divider {
        margin: 0 1.5rem 1.25rem;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .services-header-count {
        display: none;
    }

    .services-scroll-btn {
        width: 38px;
        height: 38px;
    }

    .services-footer-cta {
        padding: 0.35rem 1rem 1.55rem;
    }

    .services-view-works-btn {
        width: min(100%, 320px);
    }
}
    