/* ═══════════════════════════════════════════
   CONTENTRY LAB — ULTIMATE CSS v2
   Apple-style elements + text animations
   ═══════════════════════════════════════════ */

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #000;
    --surface: #0a0a0a;
    --surface2: #111;
    --text: #f5f5f7;
    --text2: #86868b;
    --blue: #2997ff;
    --purple: #8b5cf6;
    --radius: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

ul {
    list-style: none
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    width: 0%;
    z-index: 10000;
    transition: width 0.05s linear;
}

/* --- PARTICLES --- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1
}

.section-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 16px;
}

.section-h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 24px
}

.text-blue {
    color: var(--blue)
}

/* --- ANIMATION CLASSES --- */
/* Generic slide up */
.anim-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.16, 1, .3, 1), transform 0.8s cubic-bezier(.16, 1, .3, 1);
}

.anim-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero line reveal (Apple-style — CSS keyframe, no JS timing dependency) */
.line-reveal {
    display: block;
    overflow: hidden;
}

.line-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.9s cubic-bezier(.16, 1, .3, 1);
}

.line-inner.revealed {
    transform: translateY(0);
}

/* Character reveal */
.char-reveal .char {
    display: inline-block;
    vertical-align: baseline;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.char-reveal .char.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero badge + buttons fade */
.anim-fade {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.anim-fade.visible {
    opacity: 1;
}

/* Split text word reveal */
.split-text .word {
    display: inline-block;
    vertical-align: top;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    transition: opacity 0.6s, transform 0.6s, filter 0.6s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

.split-text .word.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Blur reveal */
.blur-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 1s, filter 1s, transform 1s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
}

.blur-reveal.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Image clip-path reveal */
.img-reveal {
    overflow: hidden;
    border-radius: 20px
}

.img-reveal img {
    transform: scale(1.2);
    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.img-reveal.revealed img {
    transform: scale(1)
}

.img-reveal-scroll {
    overflow: hidden;
    border-radius: 20px
}

.img-reveal-scroll img {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.2s cubic-bezier(.16, 1, .3, 1), transform 0.5s;
}

.img-reveal-scroll.revealed img {
    clip-path: inset(0 0 0 0)
}

.img-reveal-scroll.revealed img:hover {
    transform: scale(1.03)
}

/* Glow card (gradient border on hover) */
.glow-card {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: var(--radius);
    transition: transform 0.4s cubic-bezier(.16, 1, .3, 1), box-shadow 0.4s;
    z-index: 1; /* safe stacking context */
}

.glow-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: conic-gradient(from 180deg at 50% 50%, var(--blue), var(--purple), var(--blue));
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: -1;
}

.glow-card:hover::before {
    opacity: 1
}

.glow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(41, 151, 255, .1);
}

/* Magnetic button */
.magnetic-btn {
    position: relative;
    transition: transform 0.2s cubic-bezier(.1, .7, 1, .1)
}

.magnetic-btn .btn-text {
    pointer-events: none;
    position: relative;
    z-index: 2
}

/* --- NAVBAR --- */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    transition: .3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.5px;
    z-index: 1001
}

.nav-logo span {
    color: var(--text2);
    font-weight: 400
}

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

.nav-menu a {
    font-size: .88rem;
    color: var(--text2);
    transition: color .3s;
    position: relative
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width .3s;
}

.nav-menu a:hover {
    color: var(--text)
}

.nav-menu a:hover::after {
    width: 100%
}

.nav-cta {
    font-size: .88rem;
    font-weight: 600;
    background: var(--blue);
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    transition: transform .3s, box-shadow .3s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(41, 151, 255, .4)
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s
}

.hamburger.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px)
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all
}

.mobile-overlay-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.mobile-overlay-inner a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: .4s
}

.mobile-overlay.active a {
    opacity: 1;
    transform: translateY(0)
}

.mobile-overlay-inner a:nth-child(1) {
    transition-delay: .1s
}

.mobile-overlay-inner a:nth-child(2) {
    transition-delay: .15s
}

.mobile-overlay-inner a:nth-child(3) {
    transition-delay: .2s
}

.mobile-overlay-inner a:nth-child(4) {
    transition-delay: .25s
}

.mobile-overlay-inner a:nth-child(5) {
    transition-delay: .3s
}

.mobile-overlay-inner a:nth-child(6) {
    transition-delay: .35s
}

.mobile-cta {
    color: var(--blue) !important;
    font-size: 1.4rem !important
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.hero-badge {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    border: 1px solid rgba(41, 151, 255, .25);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 32px;
    background: rgba(41, 151, 255, .05);
}

.hero-h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-h1 em {
    font-style: normal;
    color: var(--text2)
}

.hero-bold {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text2);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.btn-fill {
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    background: #fff;
    color: #000;
    transition: .3s;
    display: inline-block;
}

.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, .15)
}

.btn-fill.big {
    font-size: 1.2rem;
    padding: 20px 48px
}

.btn-outline {
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    transition: .3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .3)
}

.hero-img-wrap {
    position: relative;
    margin-top: 60px;
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
}

.hero-img {
    width: 100%;
    position: relative;
    z-index: 2
}

.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(41, 151, 255, .15), transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(60px);
}

.cinematic-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(41, 151, 255, 0.1) 40%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { filter: blur(50px); opacity: 0.7; }
    100% { filter: blur(70px); opacity: 1; }
}

.cs-logo-3d {
    transform-style: preserve-3d;
    will-change: transform;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}

/* Apple scroll mouse indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--blue);
    border-radius: 4px;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateY(12px)
    }
}

.hero-scroll-hint span {
    font-size: .7rem;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 2px
}

/* --- TICKER --- */
.ticker {
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 20px 0;
    overflow: hidden;
    background: var(--surface);
    position: relative;
    z-index: 2;
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 30px;
    animation: tickerScroll 20s linear infinite;
}

.ticker-track span {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text2);
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* --- ABOUT --- */
.about {
    padding: 160px 24px;
    position: relative;
    z-index: 2;
    background: var(--bg)
}

.about-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

.about-h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.about-p {
    font-size: 1.15rem;
    color: var(--text2);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 60px
}

.about-p strong {
    color: #fff
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap
}

.stat {
    text-align: center
}

.stat-num {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1
}

.stat-num small {
    font-size: .5em;
    color: var(--blue)
}

.stat p {
    color: var(--text2);
    margin-top: 8px;
    font-size: .95rem
}

/* --- SERVICES --- */
.services {
    padding: 100px 24px 140px;
    background: var(--surface);
    position: relative;
    z-index: 2
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto
}

.services-header {
    text-align: center;
    margin-bottom: 80px
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px
}

.service-row.reverse {
    flex-direction: row-reverse
}

.service-text {
    flex: 1
}

.service-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .05);
    line-height: 1;
    margin-bottom: 16px
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 16px
}

.service-text p {
    color: var(--text2);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.service-list li {
    color: var(--text2);
    font-size: .95rem;
    padding-left: 20px;
    position: relative
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue)
}

.service-img-wrap {
    flex: 1;
    position: relative
}

.service-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

/* --- BIG QUOTE (Apple-style pinned) --- */
.big-quote-wrapper {
    height: 350vh;
    position: relative;
    z-index: 2;
    background: var(--bg)
}

.big-quote-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.big-quote {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    text-align: center;
    max-width: 1000px;
    line-height: 1.2;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, .1);
    font-style: normal;
}

.big-quote .char {
    display: inline-block;
    vertical-align: baseline;
    transition: color 0.05s;
}

/* Mobile: keep sticky+scrub, only adjust visuals */
@media (max-width: 768px) {
    .big-quote {
        font-size: clamp(1.5rem, 5.5vw, 2.2rem);
        letter-spacing: -0.5px;
        line-height: 1.35;
    }
    .big-quote-sticky {
        padding: 0 24px;
    }
}


/* --- PROCESS --- */
.process {
    padding: 140px 24px;
    background: var(--surface);
    position: relative;
    z-index: 2
}

.process-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    text-align: left;
}

.process-step {
    background: linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, transparent 100%);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    z-index: 1;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

/* Force hardware rendering on text inside to prevent webkit background-clip opacity fade bug */
.process-step h4, .process-step p {
    transform: translateZ(0); 
    will-change: transform;
}

.process-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    transition: width .5s cubic-bezier(.16, 1, .3, 1);
}

.process-step:hover::after {
    width: 100%
}

.step-icon {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 12px
}

.process-step p {
    color: var(--text2);
    font-size: .95rem;
    line-height: 1.6
}

/* process-step, testimonial-card, founder-card, cta-inner
   are animated by GSAP ScrollTrigger — no CSS initial state needed */

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 140px 24px;
    background: var(--bg);
    position: relative;
    z-index: 2
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    text-align: left
}

.testimonial-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.testimonial-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.t-a1 {
    background: linear-gradient(135deg, #1a1a2e, #16213e)
}

.t-a2 {
    background: linear-gradient(135deg, #2d1b4e, #1a1a2e)
}

.t-a3 {
    background: linear-gradient(135deg, #16213e, #0a3d62)
}

.testimonial-author strong {
    display: block;
    font-size: .95rem
}

.testimonial-author span {
    color: var(--text2);
    font-size: .8rem
}

/* --- FOUNDERS --- */
.founders {
    padding: 140px 24px;
    background: var(--surface);
    position: relative;
    z-index: 2
}

.founders-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

.founders-subtitle {
    color: var(--text2);
    font-size: 1.15rem;
    margin-bottom: 60px
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.founder-card {
    background: var(--bg);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    color: #fff;
}

.a1 {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid rgba(41, 151, 255, .2)
}

.a2 {
    background: linear-gradient(135deg, #1a1a2e, #2d1b4e);
    border: 1px solid rgba(139, 92, 246, .2)
}

.founder-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px
}

.founder-role {
    color: var(--blue);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px
}

.founder-bio {
    color: var(--text2);
    font-size: .95rem;
    line-height: 1.7
}

/* --- PARTNERS --- */
.partners {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
    z-index: 2;
    overflow: hidden
}

.partners-inner {
    text-align: center
}

.partners-inner .section-tag,
.partners-inner .section-h2 {
    padding: 0 24px
}

.partners-marquee {
    margin-top: 50px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.partner-name {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: rgba(255, 255, 255, .08);
    white-space: nowrap;
    padding: 0 30px;
    transition: color .4s;
    letter-spacing: -2px;
}

.partner-name:hover {
    color: rgba(255, 255, 255, .5)
}

.partner-sep {
    font-size: 1rem;
    color: rgba(255, 255, 255, .1);
    padding: 0 10px
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* --- CTA --- */
.cta {
    padding: 160px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg), #050510);
    position: relative;
    z-index: 2;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto
}

.cta-h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px
}

.cta-p {
    color: var(--text2);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding: 60px 24px 30px;
    background: #050505;
    position: relative;
    z-index: 2;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px
}

.footer-logo span {
    color: var(--text2);
    font-weight: 400
}

.footer-desc {
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.6
}

.footer-col h5 {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff
}

.footer-col a {
    display: block;
    color: var(--text2);
    font-size: .88rem;
    margin-bottom: 10px;
    transition: color .3s
}

.footer-col a:hover {
    color: var(--blue)
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 20px;
    color: var(--text2);
    font-size: .8rem;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media(max-width:900px) {

    .nav-menu,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 40px
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .founders-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .big-quote {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
        letter-spacing: -1px
    }
}

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

    .about-stats {
        flex-direction: column;
        gap: 40px
    }

    .footer-inner {
        grid-template-columns: 1fr
    }

    .founder-card {
        padding: 40px 24px
    }

    .ticker-track {
        gap: 20px
    }

    .ticker-track span {
        font-size: .7rem;
        letter-spacing: 2px
    }
}