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

:root {
    --bg: #09090b;
    --bg-elevated: #111113;
    --surface: #1a1a1f;
    --border: #222228;
    --text: #ededef;
    --text-muted: #7e7e8a;
    --accent: #94b8ff;
    --accent-dim: rgba(148, 184, 255, 0.12);
    --font-main: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Scale-up reveal for showcase items */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85) translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ========================================
   SHOWCASE / EXAMPLES
   ======================================== */
#showcase {
    background: var(--bg);
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-visual {
    flex: 1 1 55%;
}

.showcase-text {
    flex: 1 1 45%;
}

.showcase-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--border);
    margin-bottom: 1rem;
    line-height: 1;
}

.showcase-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.showcase-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.showcase-tags span {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text);
}

.showcase-visual .project-img {
    aspect-ratio: 16 / 10;
    margin-bottom: 0;
}

.showcase-row:hover .project-img {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ========================================
   WIREFRAME COMPONENTS
   ======================================== */
.wire {
    width: 85%;
    max-width: 420px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
}

.wire-line {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

/* --- Dashboard --- */
.wire-dashboard {
    display: flex;
    min-height: 200px;
}

.wire-sidebar {
    width: 36px;
    background: rgba(255, 255, 255, 0.04);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 8px;
}

.wire-logo-sm {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(148, 184, 255, 0.3);
    margin-bottom: 6px;
}

.wire-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
}

.wire-nav-dot.active {
    background: rgba(148, 184, 255, 0.4);
}

.wire-nav-dot.bottom {
    margin-top: auto;
}

.wire-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    gap: 8px;
}

.wire-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wire-topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wire-pill {
    width: 40px;
    height: 14px;
    border-radius: 7px;
    background: rgba(148, 184, 255, 0.15);
    border: 1px solid rgba(148, 184, 255, 0.2);
}

.wire-pill.small {
    width: 30px;
    height: 12px;
    border-radius: 6px;
}

.wire-avatar-sm {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.wire-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.wire-kpi {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    padding: 6px;
}

.wire-kpi-val {
    width: 50%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin-bottom: 3px;
}

.wire-kpi-label {
    width: 70%;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 5px;
}

.wire-kpi-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.wire-kpi-fill {
    height: 100%;
    background: rgba(148, 184, 255, 0.4);
    border-radius: 2px;
}

.wire-chart-area {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 5px;
    padding: 6px;
    flex: 1;
    min-height: 50px;
}

.wire-chart-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wire-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wire-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.wire-table-row span {
    height: 4px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 2px;
}

.wire-table-row.head span {
    background: rgba(255, 255, 255, 0.12);
    height: 3px;
}

/* --- Mobile App --- */
.wire-mobile {
    display: flex;
    justify-content: center;
    background: none;
    border: none;
    width: auto;
}

.wire-phone-frame {
    width: 150px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 22px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    display: flex;
    flex-direction: column;
}

.wire-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px 6px;
}

.wire-time-dot {
    width: 18px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.wire-dynamic-island {
    width: 36px;
    height: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.wire-signal-dots {
    display: flex;
    gap: 2px;
}

.wire-signal-dots i {
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.wire-app-content {
    flex: 1;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wire-greeting {
    padding: 2px 0;
}

.wire-balance-card {
    background: rgba(148, 184, 255, 0.08);
    border: 1px solid rgba(148, 184, 255, 0.15);
    border-radius: 8px;
    padding: 8px;
}

.wire-action-row {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.wire-action-btn {
    width: 32px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wire-action-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.wire-tx-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wire-tx {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
}

.wire-tx-icon {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.wire-tx-info {
    flex: 1;
}

.wire-tab-bar {
    display: flex;
    justify-content: space-around;
    padding: 6px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.wire-tab {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.06);
}

.wire-tab.active {
    background: rgba(148, 184, 255, 0.4);
}

.wire-home-indicator {
    width: 35%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 8px auto 0;
}

/* --- E-commerce --- */
.wire-ecom {
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.wire-ecom-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wire-ecom-nav-links {
    display: flex;
    gap: 8px;
}

.wire-ecom-nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wire-ecom-hero {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wire-cta-btn {
    width: 50px;
    height: 14px;
    border-radius: 7px;
    background: rgba(148, 184, 255, 0.2);
    border: 1px solid rgba(148, 184, 255, 0.3);
    margin-top: 8px;
}

.wire-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    flex: 1;
}

.wire-product {
    display: flex;
    flex-direction: column;
}

.wire-product-img {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========================================
   NAVIGATION
   ======================================== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

#main-nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 2rem;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.nav-links a {
    position: relative;
    transition: color 0.3s;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--accent);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: #0a0a0a;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(148, 184, 255, 0.25);
}

/* ========================================
   HERO
   ======================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.word-rotator {
    display: inline-grid;
    grid-template-areas: "word";
    align-items: center;
    justify-items: start;
    color: var(--accent);
    font-style: italic;
    padding-left: 0.15em;
}

.word-rotator .word {
    grid-area: word;
    opacity: 0;
    transform: translateY(40%);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.word-rotator .word.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.word-rotator .word.out {
    opacity: 0;
    transform: translateY(-40%);
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2.25rem;
    border-radius: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(148, 184, 255, 0.2);
}

.btn-primary.large {
    font-size: 1.1rem;
    padding: 1.1rem 2.75rem;
}

.btn-ghost {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2.25rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: border-color 0.3s, color 0.3s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }
}

/* ========================================
   MARQUEE
   ======================================== */
#marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 1.25rem 0;
    background: var(--bg-elevated);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.marquee-content span {
    padding: 0 1rem;
}

.marquee-content .sep {
    color: var(--accent);
    padding: 0 0.5rem;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ========================================
   PROJECTS / WORK
   ======================================== */
#work {
    background: var(--bg);
}

.projects-grid {
    display: grid;
    gap: 3rem;
}

.project-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.project-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover .project-img {
    transform: scale(1.02);
}

/* Mockups inside project images */
.project-mock {
    width: 70%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.mock-bar {
    height: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    padding-left: 8px;
    gap: 4px;
}

.mock-bar::before,
.mock-bar::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mock-content {
    display: flex;
    padding: 12px;
    gap: 10px;
    min-height: 120px;
}

.mock-sidebar {
    width: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
}

.mock-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-main.full {
    width: 100%;
}

.mock-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.mock-line.w80 {
    width: 80%;
}

.mock-line.w60 {
    width: 60%;
}

.mock-line.w40 {
    width: 40%;
}

.mock-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    min-height: 50px;
}

.mock-hero-block {
    height: 50px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
}

/* Mobile mockup */
.mobile-mock {
    display: flex;
    justify-content: center;
}

.mock-phone {
    width: 140px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-notch {
    width: 50%;
    height: 14px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    margin: 0 auto 10px;
}

.mock-screen {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 10px 6px 20px;
}

.mock-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   SERVICES
   ======================================== */
#services {
    background: var(--bg-elevated);
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.4s;
}

.service-row:first-child {
    border-top: 1px solid var(--border);
}

.service-row:hover {
    background: rgba(148, 184, 255, 0.03);
}

.service-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    padding-top: 0.2rem;
}

.service-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.65;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.2rem;
}

.service-tags span {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-muted);
    white-space: nowrap;
    transition: border-color 0.3s, color 0.3s;
}

.service-row:hover .service-tags span {
    border-color: rgba(148, 184, 255, 0.3);
    color: var(--text);
}

/* ========================================
   STATS
   ======================================== */
#stats {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

/* ========================================
   SECTION TRANSITION
   ======================================== */
.section-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    width: 100%;
}

.connector-line {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom,
            rgba(148, 184, 255, 0),
            rgba(148, 184, 255, 0.4) 50%,
            rgba(148, 184, 255, 0));
    margin-bottom: -4px;
    transform-origin: top;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal:not(.visible) .connector-line {
    transform: scaleY(0);
}

.connector-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent-dim);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.4s;
}

.reveal:not(.visible) .connector-dot {
    opacity: 0;
}

/* ========================================
   PROCESS
   ======================================== */
#process {
    background: var(--bg-elevated);
}

.process-timeline {
    position: relative;
    padding-left: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.process-step {
    position: relative;
    padding: 2rem 0;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-marker {
    position: absolute;
    left: -40px;
    top: 2rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-marker span {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--accent);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.65;
}

/* ========================================
   TESTIMONIAL
   ======================================== */
#testimonial {
    background: var(--bg);
}

#testimonial .section-container {
    max-width: 800px;
}

blockquote {
    text-align: center;
}

blockquote p {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

blockquote footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

blockquote strong {
    font-size: 1rem;
    font-weight: 600;
}

blockquote footer span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   CONTACT
   ======================================== */
#contact {
    background: var(--bg-elevated);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-meta {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .service-row {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .service-tags {
        grid-column: 2;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .section-container {
        padding: 5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}