:root {
    --bg: #050810;
    --surface: #0a0e1a;
    --card: #0d1220;
    --accent: #00e5ff;
    --accent2: #7c3aed;
    --accent3: #f97316;
    --text: #f0f4ff;
    --muted: #6b7a99;
    --border: rgba(255, 255, 255, 0.07);
    --glow: rgba(0, 229, 255, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Instrument Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
#cursor {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: screen;
}

#cursor-trail {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: #000;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.nav-cta:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#three-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 800px;
    margin-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.05);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

h1 .line {
    display: block;
    overflow: hidden;
}

h1 .accent {
    color: var(--accent);
}

h1 .stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 48px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.3);
}

.btn-secondary {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.btn-secondary:hover {
    opacity: 1;
}

.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 80px;
    display: flex;
    gap: 48px;
    z-index: 2;
}

.stat {
    text-align: right;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* MARQUEE */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    background: var(--surface);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 2px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 16px;
}

.marquee-item::after {
    content: '◆';
    color: var(--accent);
    font-size: 8px;
}

/* SECTIONS */
section {
    padding: 120px 60px;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* SERVICES */
#services {
    background: var(--surface);
}

.services-header {
    max-width: 600px;
    margin-bottom: 64px;
}

.services-header p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--card);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    cursor: none;
}

.service-card:hover {
    background: #111828;
    z-index: 1;
    transform: scale(1.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
}

.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-tag {
    display: inline-block;
    margin-top: 20px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 1px;
}

/* PROCESS — CARD HIERARCHY */
#process {
    background: var(--bg);
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.process-header p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
}

.process-tree {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Phase row */
.phase-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}

.phase-row:nth-child(even) {
    direction: rtl;
}

.phase-row:nth-child(even)>* {
    direction: ltr;
}

.phase-card {
    padding: 36px 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
    position: relative;
    transition: all 0.35s;
}

.phase-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: #0f1626;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 229, 255, 0.05);
}

.phase-num {
    font-family: 'Syne', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    user-select: none;
}

.phase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.phase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.phase-badge span {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.phase-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.phase-card>p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sub-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s;
}

.sub-card:hover {
    background: rgba(0, 229, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.15);
}

.sub-card-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sub-card-content {}

.sub-card-content strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.sub-card-content span {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.phase-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.4), transparent);
}

.connector-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.connector-line.bottom {
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.4));
}

/* Add vertical line between rows */
.process-vline {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.2), rgba(124, 58, 237, 0.2));
    margin: 0 auto;
}

/* WORKS (scroll-pause) */
#works {
    background: var(--surface);
    overflow: hidden;
    padding: 120px 0;
}

.works-header {
    padding: 0 60px;
    max-width: 700px;
    margin-bottom: 60px;
}

.works-header p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 16px;
}

.works-scroll-wrapper {
    position: relative;
    padding: 20px;
}

.works-track {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.works-track::-webkit-scrollbar {
    display: none;
}

.work-card {
    flex: 0 0 420px;
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: all 0.3s;
    position: relative;
}

.work-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.work-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.work-img-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.work-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(13, 18, 32, 0.95));
}

.work-info {
    padding: 24px 28px;
}

.work-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.work-tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid;
    text-transform: uppercase;
}

.work-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.work-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s;
}

.work-link:hover {
    gap: 10px;
}

/* Pause scroll indicator */
.scroll-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px 0;
}

.scroll-hint {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scroll-arrows {
    display: flex;
    gap: 12px;
}

.scroll-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-size: 18px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.scroll-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 255, 0.05);
}

/* pause on hover indicator */
.pause-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: 100px;
}

.pause-icon {
    font-size: 10px;
}

/* WHY US */
#why {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-visual {
    position: relative;
    height: 500px;
}

#three-canvas-2 {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.why-content {}

.why-content .section-title {
    margin-bottom: 20px;
}

.why-content>p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    transition: all 0.25s;
}

.why-point:hover {
    border-color: rgba(0, 229, 255, 0.25);
    background: #0f1626;
}

.why-point-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.why-point-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-point-text span {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* TECH STACK */
#tech {
    background: var(--surface);
    padding: 80px 60px;
}

.tech-inner {
    text-align: center;
}

.tech-inner .section-title {
    margin-bottom: 48px;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.tech-pill {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--muted);
    background: var(--card);
    transition: all 0.2s;
    cursor: none;
}

.tech-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 255, 0.05);
}

/* TESTIMONIALS */
/* Testimonials Carousel */
#testimonials {
    background: var(--bg);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.t-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.t-carousel-track {
    display: flex;
    gap: 24px;
    padding: 20px 60px 20px;
    animation: tScroll 30s linear infinite;
    width: max-content;
}

.t-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes tScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    flex: 0 0 380px;
    cursor: default;
}

.testimonial-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.t-fade-left,
.t-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 2;
}

.t-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.t-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.t-dots {
    display: none;
    /* optional dot indicators */
}

.t-quote {
    font-size: 32px;
    color: var(--accent);
    font-family: 'Syne', sans-serif;
    line-height: 1;
    margin-bottom: 16px;
}

.t-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
}

.t-name {
    font-size: 14px;
    font-weight: 600;
}

.t-role {
    font-size: 12px;
    color: var(--muted);
}

.stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 4px;
}

/* CTA */
#cta {
    background: var(--bg);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
}

#three-canvas-3 {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-content .section-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
}

.cta-form-full {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
    text-align: left;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-field label {
    font-size: 12px;
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
}

.cta-field input,
.cta-field textarea {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: 'Instrument Sans', sans-serif;
    outline: none;
    transition: border 0.2s;
    resize: vertical;
}

.cta-field input::placeholder,
.cta-field textarea::placeholder {
    color: var(--muted);
}

.cta-field input:focus,
.cta-field textarea:focus {
    border-color: rgba(0, 229, 255, 0.4);
}

.cta-form-full button {
    background: var(--accent);
    color: #000;
    padding: 16px 28px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: none;
    font-family: 'Instrument Sans', sans-serif;
    transition: all 0.2s;
    width: 100%;
    letter-spacing: 0.3px;
}

.cta-form-full button:hover {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
}

.cta-trust-item::before {
    content: '✓';
    color: var(--accent);
}

/* FOOTER */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    font-size: 20px;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
}

.footer-col a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    transition: all 0.2s;
}

.social-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 229, 255, 0.05);
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 80px 24px;
    }

    h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-stats {
        right: 24px;
        bottom: 40px;
        gap: 24px;
    }

    .stat-num {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .phase-row {
        grid-template-columns: 1fr;
    }

    .phase-connector {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-form-row {
        grid-template-columns: 1fr;
    }

    .works-header {
        padding: 0 24px;
    }

    .works-track {
        padding: 0 24px;
    }

    .scroll-controls {
        padding: 24px 24px 0;
    }

    .work-card {
        flex: 0 0 320px;
    }
}