:root {
    --scene-a: #1c1e23;
    --scene-b: #08090b;
    --bg: #08090b;
    --bg-alt: #0d0e11;
    --surface: #15171c;
    --surface-alt: #1b1e25;
    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.17);
    --text: #f4f3ef;
    --text-dim: #a7abb3;
    --text-faint: #71757d;
    --accent: #ff5722;
    --accent-2: #ffb020;
    --accent-rgb: 255, 87, 34;
    --metal: #8c9099;
    --radius-sm: 6px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --container: 1200px;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

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

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

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

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea {
    font: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--accent);
}

.chapter-tag {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 22px;
}

.chapter-tag span {
    color: var(--accent);
    margin: 0 8px;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-head h2 {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    margin-bottom: 18px;
}

.section-lead {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 540px;
}

section {
    position: relative;
    padding: 150px 0;
    z-index: 2;
}

/* ---------- Persistent 3D scene layer ---------- */

.scene-fixed {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(ellipse at 65% 25%, var(--scene-a, #1c1e23) 0%, var(--scene-b, #08090b) 68%);
}

#scene-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.scene-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(8, 9, 11, 0) 0%, rgba(8, 9, 11, 0.55) 78%),
        linear-gradient(180deg, rgba(8, 9, 11, 0.15) 0%, rgba(8, 9, 11, 0.05) 20%, rgba(8, 9, 11, 0.35) 70%, var(--bg) 100%),
        linear-gradient(90deg, rgba(8, 9, 11, 0.65) 0%, transparent 22%, transparent 78%, rgba(8, 9, 11, 0.65) 100%);
}

.scene-scanline {
    position: absolute;
    left: 15%;
    right: 15%;
    top: 50%;
    height: 2px;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 176, 32, 0.9), rgba(255, 87, 34, 0.9), transparent);
    box-shadow: 0 0 24px 4px rgba(255, 120, 40, 0.45);
    filter: blur(0.3px);
}

.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Custom cursor ---------- */

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s var(--ease);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}

.cursor-active .cursor-dot,
.cursor-active .cursor-ring {
    opacity: 1;
}

.cursor-ring.is-hover {
    width: 62px;
    height: 62px;
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
}

@media (hover: hover) and (pointer: fine) {
    body.cursor-active,
    body.cursor-active a,
    body.cursor-active button {
        cursor: none;
    }
}

/* ---------- Preloader ---------- */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.preloader-mark {
    color: var(--accent);
    animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.94); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.preloader-label {
    font-family: var(--font-head);
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--text-faint);
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ---------- Glass panel utility ---------- */

.glass-panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.25s var(--ease-soft), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
    white-space: nowrap;
    will-change: transform;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #d6431a);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(var(--accent-rgb), 0.55);
}

.btn-primary:hover {
    box-shadow: 0 16px 34px -10px rgba(var(--accent-rgb), 0.75);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--border-strong);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.32);
}

.btn-outline {
    border: 1px solid var(--border-strong);
    color: var(--text);
}

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

.btn-small {
    padding: 11px 22px;
    font-size: 12.5px;
}

.btn-full {
    width: 100%;
}

/* ---------- Header ---------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 22px 0;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    padding: 14px 0;
    background: rgba(8, 9, 11, 0.72);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}

.progress-rail {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: transparent;
}

.progress-rail span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.1s linear;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.logo-mark {
    color: var(--accent);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dim);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--text);
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s var(--ease);
}

.header-phone:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    padding: 6px 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 0;
}

.hero-content {
    position: relative;
    padding-top: 40px;
}

.hero-title {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.26em;
    row-gap: 0.08em;
    font-size: clamp(2.6rem, 6.6vw, 5.4rem);
    margin: 22px 0 30px;
    max-width: 16ch;
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.hero-title .word-inner {
    display: inline-block;
    transform: translateY(112%);
}

.hero-title .word:nth-child(3) .word-inner,
.hero-title .word:nth-child(4) .word-inner {
    color: var(--accent);
}

.hero-lead {
    max-width: 520px;
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-hint span {
    width: 1px;
    height: 46px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollpulse 2s ease-in-out infinite;
}

@keyframes scrollpulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---------- Marquee ---------- */

.marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    background: rgba(8, 9, 11, 0.32);
    backdrop-filter: blur(8px);
}

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

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-faint);
    padding: 0 30px;
    white-space: nowrap;
}

.marquee-item i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-left: 30px;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */

.stats {
    padding: 90px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    padding: 48px 32px;
}

.stat-value {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---------- Services ---------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    padding: 38px 32px;
    transition: transform 0.5s var(--ease-soft), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.4);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.22rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-dim);
    font-size: 0.96rem;
}

/* ---------- Process ---------- */

.process-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-step {
    position: relative;
    padding: 32px 30px;
}

.process-num {
    display: block;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-dim);
    font-size: 0.94rem;
}

/* ---------- Pricing ---------- */

.pricing-table {
    display: flex;
    flex-direction: column;
    padding: 12px 36px;
}

.pricing-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 4px;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s var(--ease), color 0.3s var(--ease);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    padding-left: 12px;
    color: var(--accent);
}

.pricing-service {
    font-size: 1.02rem;
    white-space: nowrap;
}

.pricing-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border-strong);
    transform: translateY(-4px);
}

.pricing-price {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--accent-2);
}

.pricing-note {
    margin-top: 22px;
    font-size: 0.85rem;
    color: var(--text-faint);
}

/* ---------- About ---------- */

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 420px;
}

.about-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--metal);
}

.about-panel:first-child {
    inset: 0 10% 12% 0;
}

.about-panel-small {
    right: 0;
    bottom: 0;
    left: auto;
    top: auto;
    width: 190px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent), #d6431a);
    border: none;
    border-radius: var(--radius-lg);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 20px 40px -14px rgba(var(--accent-rgb), 0.55);
    backdrop-filter: none;
}

.about-copy h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 22px;
}

.about-copy p {
    color: var(--text-dim);
    margin-bottom: 16px;
    max-width: 520px;
}

.about-copy .btn {
    margin-top: 14px;
}

/* ---------- Testimonials ---------- */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    padding: 34px 30px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.14);
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 600;
    margin-bottom: 22px;
}

.testimonial-text {
    color: var(--text-dim);
    font-size: 0.97rem;
    margin-bottom: 20px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-car {
    color: var(--text-faint);
    font-size: 0.85rem;
}

/* ---------- Contact ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-details {
    margin: 30px 0 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-details li {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-details a {
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s var(--ease);
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
}

.contact-map {
    overflow: hidden;
    filter: grayscale(0.45) contrast(1.1) brightness(0.9);
}

.contact-form-wrap {
    padding: 42px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-flash {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    margin-bottom: 22px;
}

.form-flash-success {
    background: rgba(60, 200, 130, 0.14);
    border: 1px solid rgba(60, 200, 130, 0.35);
    color: #6fe3a8;
}

.form-flash-error {
    background: rgba(var(--accent-rgb), 0.14);
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    color: #ff8a5c;
}

/* ---------- Footer ---------- */

.site-footer {
    position: relative;
    z-index: 2;
    padding: 90px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding: 56px;
    margin-bottom: 34px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.92rem;
    margin: 18px 0 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

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

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-dim);
    font-size: 0.92rem;
    transition: color 0.3s var(--ease);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-hours span:first-child {
    color: var(--text-faint);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
    font-size: 0.82rem;
    color: var(--text-faint);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 400;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease), visibility 0.35s;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ---------- Reveal animations ---------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-ready [data-reveal] {
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero [data-reveal] {
    transform: translateY(18px);
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .services-grid,
    .process-track,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
        padding: 40px;
    }

    .about-grid,
    .contact-grid {
        gap: 48px;
    }

    section {
        padding: 120px 0;
    }
}

@media (max-width: 860px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(340px, 84vw);
        background: rgba(13, 14, 17, 0.9);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        padding: 110px 36px 40px;
        transform: translateX(100%);
        transition: transform 0.45s var(--ease);
        z-index: 600;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.is-active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .header-phone span {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
        padding: 36px 24px;
    }

    .services-grid,
    .process-track,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 320px;
    }

    .footer-grid {
        padding: 32px;
    }

    section {
        padding: 96px 0;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 18px;
    }

    .form-row-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrap {
        padding: 26px;
    }

    .pricing-table {
        padding: 8px 22px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }

    .pricing-service {
        white-space: normal;
    }

    .glass-panel {
        backdrop-filter: blur(10px) saturate(120%);
        -webkit-backdrop-filter: blur(10px) saturate(120%);
    }
}

@media (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero-title .word-inner {
        transform: none;
    }

    .marquee-track {
        animation: none;
    }
}
