:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-text-muted: #a1a1a1;
    --color-accent: #ffffff;
    --color-border: #333333;
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.5s;
    --spacing-container: 1200px;
    --section-padding: 7rem 2rem;
    --panel-radius: 16px;
    --panel-blur: 14px;
    --panel-bg: rgba(16, 16, 16, 0.55);
    --panel-border: rgba(255, 255, 255, 0.08);
    --panel-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.45);
    --divider-color: rgba(255,255,255,0.08);
    --divider-gradient: linear-gradient(90deg, transparent, rgba(255,255,255,0.12) 20%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.12) 80%, transparent);
    --mouse-x: 0;
    --mouse-y: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

video {
  transform: translateZ(0);
  will-change: transform;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    margin-bottom: 1.75rem;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 60ch;
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #c9c9c9;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-accent);
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.78);
    z-index: -1;
}


.panel {
    position: relative;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: var(--panel-radius);
    backdrop-filter: blur(var(--panel-blur));
    box-shadow: var(--panel-shadow);
    padding: 2.5rem;
    transform-style: preserve-3d;
}

.panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(1200px 400px at 10% -20%, rgba(255,255,255,0.08), transparent 40%), radial-gradient(600px 300px at 90% 120%, rgba(255,255,255,0.06), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* --- Layout & Existing Styles (Preserved) --- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    backdrop-filter: blur(2px);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}
.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--section-padding);
    scroll-margin-top: 88px;
}

.content-wrapper {
    width: 100%;
    max-width: var(--spacing-container);
    margin: 0 auto;
    z-index: 1;
}

.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    padding-top: 9rem;
}

.hero .content-wrapper.hero-grid {
    max-width: var(--spacing-container);
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-3d-container {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: visible;
    transition: opacity 0.4s ease;
    cursor: grab;
}
.hero-3d-canvas {
    position: absolute;
    width: 115%;
    height: 115%;
    left: -7.5%;
    top: -7.5%;
    display: block;
}
.hero-3d-container.dragging {
    cursor: grabbing;
}
.hero-copy {
    text-align: left;
}

.hero h1 {
    text-wrap: balance;
    margin-bottom: 1rem;
}

.hero .subheadline {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: start;
    flex-wrap: wrap;
}

.cta-group .btn {
    min-width: 180px;
}

.cta-panel {
    max-width: 900px;
    padding: 3rem;
    text-align: center;
}

.approach-panel {
    max-width: 900px;
    padding: 3rem;
    text-align: center;
}
.approach-3d-container {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: visible;
    margin: 0 auto 1rem;
    transition: opacity 0.4s ease;
    cursor: grab;
}
.approach-3d-container.dragging { cursor: grabbing; }
.approach-3d-canvas {
    position: absolute;
    width: 115%;
    height: 115%;
    left: -7.5%;
    top: -7.5%;
    display: block;
}

.signature {
    margin-top: 0.75rem;
    color: var(--color-text-muted);
}

.section#final-cta {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

#final-cta .cta-panel h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

#final-cta .cta-panel p {
    margin: 0 auto 1.25rem;
    max-width: 60ch;
}

.cta-panel .cta-actions {
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.cta-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    padding: 0;
    margin-top: 0.75rem;
}

.cta-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text);
}

.cta-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.6);
}

.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta:hover {
    background: rgba(255,255,255,0.16);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Removed WebGL/3D overlay-specific styles */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.8);
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.get-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) 1fr;
    gap: 2rem;
    align-items: start;
}

.get-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 1rem;
}

.checklist {
    display: grid;
    gap: 0.75rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text);
}

.check-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    flex: 0 0 28px;
    margin-top: 2px;
}

.check-icon i {
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
}

.mock-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.mock-sub {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.mock-card .mock-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    margin-bottom: 0.75rem;
}

.mock-card .mock-icon i {
    font-size: 22px;
    color: #fff;
    opacity: 0.9;
}

.mock-card:hover {
    transform: translateY(-4px);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    transform-style: preserve-3d;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(600px 300px at 0% -20%, rgba(255,255,255,0.12), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.package-card .package-title {
    margin-bottom: 0.25rem;
}

.package-card .package-desc {
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.package-card .mini-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ddd;
}

.package-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.package-card ul li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text);
}

.package-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255,255,255,0.6);
}

.package-card .best-for {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

.package-note {
    color: var(--color-text-muted);
    margin-top: 1.25rem;
}

.help-card {
    padding: 2rem;
}

.help-card .help-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    margin-bottom: 1rem;
}

.help-card .help-icon i {
    font-size: 22px;
    color: #fff;
    opacity: 0.9;
}

.help-title {
    margin-bottom: 0.25rem;
}

.help-outcome {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.help-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    padding: 2rem;
    border-radius: var(--panel-radius);
    backdrop-filter: blur(var(--panel-blur));
    box-shadow: var(--panel-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.section-intro {
    color: var(--color-text-muted);
    max-width: 70ch;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.service-card {
    transform-style: preserve-3d;
    animation: none;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(600px 300px at 0% -20%, rgba(255,255,255,0.12), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 14px 50px rgba(0,0,0,0.55);
}

.service-card .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    margin-bottom: 1rem;
}

.service-card .service-icon i {
    font-size: 22px;
    color: #fff;
    opacity: 0.9;
}

.service-card .service-title {
    margin-bottom: 0.25rem;
}

.service-card .best-for {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.service-card .service-body {
    display: grid;
    gap: 1rem;
}

.service-card .mini-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ddd;
}

.service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.service-card ul li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text);
}

.service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255,255,255,0.6);
}

.service-card.delay-1 { animation-delay: 0.5s; }
.service-card.delay-2 { animation-delay: 1s; }

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 12px 40px rgba(0,0,0,0.5);
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%), radial-gradient(600px 300px at 90% 10%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding: 1.5rem 1.5rem 1.25rem;
    border-top: 1px solid var(--color-border);
    background: rgba(20,20,20,0.4);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.step-number {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

/* --- Timeline (Process) --- */
.timeline {
    position: relative;
    margin-top: 2.5rem;
}

.timeline-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.25), rgba(255,255,255,0.05));
    border-radius: 999px;
}

.timeline-nodes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.node-card {
    position: relative;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    backdrop-filter: blur(var(--panel-blur));
    box-shadow: var(--panel-shadow);
    padding: 1.25rem 1.25rem 1rem;
    transform-style: preserve-3d;
}

.node-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(400px 200px at 0% -20%, rgba(255,255,255,0.12), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.06), transparent 40%);
    pointer-events: none;
}

.node-card .step-number {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.35rem;
}

.node-card .step-title {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.node-card .step-copy {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 42ch;
}

/* Connector activation */
.node-card.link-next-on::after {
    width: 4rem;
}
@media (min-width: 1024px) {
    .node-card.link-next-on::after {
        width: 6rem;
    }
    .node-card.link-next-on::after {
        height: 2.75rem;
    }
}
/* Connectors between steps */
.node-card::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -1rem;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.3), rgba(255,255,255,0.08));
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
    transition: width 0.6s cubic-bezier(.22,.61,.36,1);
}

.node-card:last-child::after {
    display: none;
}

/* Reveal sequencing */
.timeline .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Extra delay */
.delay-4 { transition-delay: 0.4s; }

/* Mobile: vertical timeline */
@media (max-width: 768px) {
    .timeline-track {
        left: 50%;
        right: auto;
        top: 0;
        bottom: 0;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.25), rgba(255,255,255,0.05));
    }
    .timeline-nodes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .node-card {
        margin-left: 2.25rem;
    }
    .node-card::after {
        left: -1.25rem;
        right: auto;
        width: 2px;
        height: 0;
        transition: height 0.6s cubic-bezier(.22,.61,.36,1);
    }
}
/* New Vertical Process Timeline */
.process-timeline {
    position: relative;
    margin-top: 2.5rem;
    --process-icon-size: 140px;
    --process-icon-offset: clamp(280px, 24vw, 420px);
}

.timeline-axis {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.28), rgba(255,255,255,0.06));
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(255,255,255,0.12);
}

.timeline-steps {
    position: relative;
}

.timeline-step {
    position: relative;
    padding-left: calc(50% + 2.75rem);
    margin: 3rem 0;
}

.timeline-step.left {
    padding-left: 0;
    padding-right: calc(50% + 2.75rem);
}

.timeline-step.left .step-card {
    margin-left: auto;
}
.marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.24);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.55);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.marker-number {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 700;
}

.step-card {
    max-width: 640px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    position: absolute;
    top: 0;
    width: var(--process-icon-size);
    height: var(--process-icon-size);
    border-radius: 14px;
    background:
        radial-gradient(100% 100% at 20% 10%, rgba(255,255,255,0.10), transparent 40%),
        radial-gradient(80% 80% at 90% 90%, rgba(255,255,255,0.06), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 28px 70px rgba(0,0,0,0.6), 0 10px 30px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    z-index: 2;
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1), box-shadow 0.7s cubic-bezier(.22,.61,.36,1);
}
.step-icon::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background:
        radial-gradient(60% 40% at 20% -10%, rgba(255,255,255,0.12), transparent 40%),
        radial-gradient(40% 60% at 110% 110%, rgba(255,255,255,0.08), transparent 50%);
    pointer-events: none;
}
.step-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 12px rgba(255,255,255,0.10);
    pointer-events: none;
}
.step-icon i {
    font-size: 56px;
    color: #fff;
    opacity: 0.9;
}
.timeline-step.right .step-icon {
    left: calc(50% - var(--process-icon-offset));
}
.timeline-step.left .step-icon {
    left: calc(50% + var(--process-icon-offset));
}
.step-icon.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
.timeline-step:hover .step-icon {
    transform: translate(-50%, 0) scale(1.08) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 36px 90px rgba(0,0,0,0.65), 0 16px 40px rgba(0,0,0,0.55);
}
.timeline-step:hover .step-icon::after {
    box-shadow: inset 0 1px 16px rgba(255,255,255,0.14);
}
.step-title {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}
.step-copy {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 48ch;
}

.connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 44px;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.28), rgba(255,255,255,0.08));
    box-shadow: 0 0 12px rgba(255,255,255,0.12);
    border-radius: 999px;
    transition: height 0.7s cubic-bezier(.22,.61,.36,1);
}
.connector.drawn {
    height: 80px;
}

@media (max-width: 768px) {
    .process-timeline {
        --process-icon-size: 64px;
        --process-icon-offset: clamp(160px, 30vw, 240px);
    }
    .timeline-axis { display: none; }
    .timeline-steps { padding: 0; }
    .timeline-step {
        padding: 0;
        margin: 1.5rem 0;
    }
    .timeline-step.left,
    .timeline-step.right {
        padding: 0;
    }
    .timeline-step .step-icon { display: none; }
    .timeline-step .connector { display: none; }
    .marker {
        position: relative;
        left: 0;
        transform: none;
        margin: 0 auto 0.75rem auto;
    }
    .step-card { 
        max-width: 100%; 
        width: 100%;
        margin: 0;
    }
    .timeline-step.left .step-card,
    .timeline-step.right .step-card {
        margin: 0;
    }
    .connector.drawn { height: 0; }
}
/* Metrics */
.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.metric {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.metric .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.metric .label {
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.clean-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Proof Section Upgrades --- */
.proof-panel {
    position: relative;
    overflow: hidden;
}

.proof-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(1200px 400px at 10% -20%, rgba(255,255,255,0.05), transparent 40%),
        radial-gradient(600px 300px at 90% 120%, rgba(255,255,255,0.04), transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 24px);
    pointer-events: none;
}

.proof-layout {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) 1fr;
    gap: 2.5rem;
    align-items: start;
}

.proof-story .story-title {
    margin-bottom: 0.75rem;
}

.proof-story .story-copy {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    max-width: 60ch;
}

.mini-cases {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    padding: 0;
}

.mini-cases li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text);
}

.mini-cases li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.6);
}

.mini-cases .case-client {
    color: #ddd;
    font-weight: 600;
}

.proof-panel .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0;
}

.metric-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
    backdrop-filter: blur(var(--panel-blur));
    box-shadow: var(--panel-shadow);
    padding: 1.25rem 1.5rem;
    transform-style: preserve-3d;
}

.metric-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(400px 200px at 0% -20%, rgba(255,255,255,0.1), transparent 40%), linear-gradient(180deg, rgba(255,255,255,0.06), transparent 40%);
    pointer-events: none;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.metric-label {
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .proof-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
/* FAQ */
.faq-container {
    max-width: 800px;
    margin-top: 2rem;
}

.faq-item {
    border-bottom: none;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    backdrop-filter: blur(var(--panel-blur));
    box-shadow: var(--panel-shadow);
    margin-bottom: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--color-text);
    padding: 1.25rem 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    opacity: 1;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 14px 50px rgba(0,0,0,0.55);
}

.faq-question .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    transition: transform 0.25s ease, background 0.25s ease;
}

/* Footer */
.footer {
    position: relative;
    padding: 4rem 2rem;
    background: #000;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: var(--divider-gradient);
    opacity: 0.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: #555;
    text-align: center;
    padding-top: 1.5rem;
}

.footer-panel {
    padding: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
}
.footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.footer-tagline {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.footer-email {
    color: #fff;
    text-decoration: underline;
}

.footer-heading {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-link-list {
    display: grid;
    gap: 0.35rem;
}

.footer-link-list a {
    color: var(--color-text-muted);
    transition: color 0.25s ease, text-decoration-color 0.25s ease;
    text-decoration: none;
    text-underline-offset: 3px;
}

.footer-link-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.12);
}

.footer-callout {
    margin-top: 0.75rem;
    color: var(--color-text-muted);
}

/* Form */
.apply-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}
.apply-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.apply-form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ddd;
}
.apply-form .input,
.apply-form .select,
.apply-form .textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
    color: var(--color-text);
    outline: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.apply-form .input::placeholder,
.apply-form .textarea::placeholder {
    color: rgba(255,255,255,0.6);
}
.apply-form .input:focus,
.apply-form .select:focus,
.apply-form .textarea:focus {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
}
.apply-form .select option {
    color: #000;
    background: #fff;
}
.apply-form .checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--color-text);
}
.apply-form .form-actions {
    margin-top: 1rem;
}
.apply-form .form-actions .btn {
    width: 100%;
}
@media (max-width: 768px) {
    .apply-form .form-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Reveals */
.reveal, .fade-in-up {
    opacity: 0;
    will-change: transform, opacity, filter;
}
.reveal.visible, .fade-in-up.visible {
    opacity: 1;
}

.reveal-up {
    transform: translateY(20px);
    transition: transform 0.75s cubic-bezier(.22,.61,.36,1), opacity 0.75s cubic-bezier(.22,.61,.36,1);
}
.reveal-up.visible {
    transform: translateY(0);
}

.reveal-blur {
    filter: blur(8px);
    transition: filter 0.8s cubic-bezier(.22,.61,.36,1), opacity 0.8s cubic-bezier(.22,.61,.36,1);
}
.reveal-blur.visible {
    filter: blur(0);
}

.reveal-tilt {
    transform: translateY(16px) rotateX(2deg) rotateY(-2deg) scale(0.995);
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1), opacity 0.8s cubic-bezier(.22,.61,.36,1);
}
.reveal-tilt.visible {
    transform: translateY(0) rotateX(0) rotateY(0) scale(1);
}

.reveal-flip-x {
    transform: perspective(800px) rotateX(8deg) translateY(10px);
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1), opacity 0.8s cubic-bezier(.22,.61,.36,1);
}
.reveal-flip-x.visible {
    transform: perspective(800px) rotateX(0deg) translateY(0);
}

.reveal-slow {
    transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), filter 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
    filter: blur(4px);
}
.reveal-slow.visible {
    filter: blur(0);
}

.cta-panel::after {
    content: "";
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 0;
    height: 1px;
    background: var(--divider-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.cta-panel.visible::after {
    transform: scaleX(1);
}

.cta-actions.visible .btn-primary.btn-large {
    animation: cta-glow 1.2s ease-out 0.2s 1 both;
}

@keyframes cta-glow {
    0% { box-shadow: 0 0 0 rgba(255,255,255,0); }
    40% { box-shadow: 0 20px 50px rgba(255,255,255,0.15); }
    100% { box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
}
.reveal-scale {
    transform: scale(0.98);
    transition: transform 0.75s cubic-bezier(.22,.61,.36,1), opacity 0.75s cubic-bezier(.22,.61,.36,1);
}
.reveal-scale.visible {
    transform: scale(1);
}

.reveal-line {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.reveal-line.visible {
    transform: scaleX(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    will-change: transform;
    background: rgba(255,255,255,0.06);
    color: var(--color-text);
    backdrop-filter: blur(10px);
}

.btn-small {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    color: var(--color-text);
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--color-text);
    border: 1px solid rgba(255,255,255,0.25);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.btn-large {
    padding: 1.1rem 2.75rem;
    font-size: 1.25rem;
}

/* Section dividers */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--section-padding);
}

.section {
    transition: transform 0.7s cubic-bezier(.22,.61,.36,1), filter 0.7s cubic-bezier(.22,.61,.36,1);
}
.section:not(.entered) {
    transform: translateY(6px);
    filter: blur(1.5px);
}
.section.entered {
    transform: translateY(0);
    filter: blur(0);
}

.section::after {
    content: "";
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 0;
    height: 1px;
    background: var(--divider-gradient);
    opacity: 0.5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}
.section.entered::after {
    transform: scaleX(1);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-stars {
    color: var(--color-text);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.1rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.mini-proof-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 1rem;
}

.mini-proof-strip .separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2em;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .mini-proof-strip {
        flex-direction: column;
        gap: 0.75rem;
    }
    .mini-proof-strip .separator {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section { scroll-margin-top: 72px; }
    
    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary { margin-left: 0; }
    
    .navbar { padding: 1rem; }
    
    .panel {
        padding: 1.5rem;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    .hero .content-wrapper.hero-grid {
        padding-top: 4rem;
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: start;
    }
    .hero-copy {
        text-align: left;
    }
    .hero-3d-container {
        max-width: 300px;
    }
    .get-grid { 
        grid-template-columns: 1fr; 
        gap: 1.25rem; 
    }
    .get-right { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 480px) {
    .hero .content-wrapper.hero-grid {
        gap: 0.75rem;
    }
    .hero-3d-container {
        max-width: 260px;
    }
    .process-timeline {
        --process-icon-size: 52px;
        --process-icon-offset: 120px;
    }
    .timeline-step {
        margin: 1.75rem 0;
    }
    .connector.drawn {
        height: 52px;
    }
    .step-card {
        padding: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .fade-in-up, .reveal-up, .reveal-blur, .reveal-scale, .reveal-line {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    .section {
        transform: none !important;
        filter: none !important;
    }
    .section::after {
        transform: none !important;
    }
}
