*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #FF6B1A;
    --orange-dim: #cc5210;
    --dark: #FFFFFF;
    --dark2: #F5F5F5;
    --dark3: #EEEEEE;
    --dark4: #E8E8E8;
    --border: rgba(0, 0, 0, 0.08);
    --text: #1A1A1A;
    --muted: #666666;
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark2);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 70px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.logo {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--orange);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--orange-dim);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255, 107, 26, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255, 107, 26, 0.06) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 26, 0.12);
    border: 1px solid rgba(255, 107, 26, 0.3);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

h1 {
    font-family: var(--font-head);
    font-size: clamp(52px, 8vw, 88px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

h1 span {
    color: var(--orange);
}

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--orange-dim);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--orange);
    background: rgba(255, 107, 26, 0.06);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

/* ── SECTIONS ── */
section {
    padding: 100px 5%;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}

h2 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.section-head {
    max-width: 540px;
    margin-bottom: 60px;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 300;
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--orange);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-track {
    display: flex;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 32px;
}

.ticker-track span::after {
    content: '●';
    margin-left: 32px;
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── DEVICES ── */
#devices {
    background: var(--dark2);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.device-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    cursor: default;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 107, 26, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.device-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.device-card:hover::before {
    opacity: 1;
}

.device-card-body {
    padding: 22px 20px 28px;
}

.device-card h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.device-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* Device image galleries */
.device-gallery {
    position: relative;
}

.device-gallery-viewport {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 11px 11px 0 0;
    overflow: hidden;
    background: var(--dark4);
}

.device-gallery-track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 107, 26, 0.5) var(--dark4);
}

.device-gallery-track::-webkit-scrollbar {
    height: 4px;
}

.device-gallery-track::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 26, 0.45);
    border-radius: 4px;
}

.device-gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.device-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.device-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(13, 14, 17, 0.75);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    padding-bottom: 2px;
}

.device-card:hover .device-gallery-btn {
    opacity: 1;
}

.device-gallery-btn:hover {
    background: rgba(255, 107, 26, 0.9);
    color: #fff;
}

.device-gallery-btn:focus-visible {
    opacity: 1;
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.device-gallery-prev {
    left: 8px;
}

.device-gallery-next {
    right: 8px;
}

.device-gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px 8px 12px;
    background: linear-gradient(to top, var(--dark3), transparent);
    margin-top: -36px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.device-gallery-dots .device-gallery-dot {
    pointer-events: auto;
}

.device-gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.device-gallery-dot.is-active {
    background: var(--orange);
    transform: scale(1.2);
}

.device-gallery-dot:hover {
    background: rgba(255, 255, 255, 0.45);
}

.device-gallery-dot:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .device-gallery-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* ── SERVICES ── */
#services {
    background: var(--dark);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-layout--single {
    grid-template-columns: 1fr;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    display: flex;
    gap: 20px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 24px;
    transition: border-color 0.2s;
    cursor: default;
}

.service-item:hover {
    border-color: rgba(255, 107, 26, 0.4);
}

.service-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 107, 26, 0.12);
    border: 1px solid rgba(255, 107, 26, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-text h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.service-visual {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    position: sticky;
    top: 100px;
}

.service-visual--after-list {
    position: static;
    margin-top: 48px;
    max-width: 720px;
}

.service-visual--after-list .guarantee-badge {
    margin-top: 0;
}

.services-book-cta {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.price-card {
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span:last-child {
    color: var(--orange);
    font-weight: 600;
    font-family: var(--font-head);
    font-size: 18px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 107, 26, 0.08);
    border: 1px solid rgba(255, 107, 26, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

/* ── HOW IT WORKS ── */
#how-it-works {
    background: var(--dark2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
}

.step-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.step-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.step-num {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.step-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark4);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── WHY US ── */
#why-us {
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 18px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 8px;
}

.feature-item h4 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.trust-panel {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.trust-row:last-child {
    border-bottom: none;
}

.trust-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(255, 107, 26, 0.15);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--dark2);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s;
}

.testi-card:hover {
    border-color: rgba(255, 107, 26, 0.3);
}

.stars {
    color: var(--orange);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testi-text {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.testi-name {
    font-size: 14px;
    font-weight: 600;
}

.testi-device {
    font-size: 12px;
    color: var(--muted);
}

/* ── BOOK A REPAIR ── */
#book {
    background: var(--dark);
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.book-info {
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
}

.info-card h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.repair-form {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--dark3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 32px;
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}

.submit-btn:hover {
    background: var(--orange-dim);
    transform: translateY(-2px);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
}

/* ── SUCCESS STATE ── */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--muted);
    font-size: 15px;
}

/* ── FOOTER ── */
footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h5 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
}

.footer-contact-icon {
    color: var(--orange);
    font-size: 16px;
    margin-top: 1px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 24px 5%;
    z-index: 999;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

    .services-layout,
    .why-grid,
    .book-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 4%;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 70px 4%;
    }

    #hero {
        padding: 110px 4% 70px;
    }

    h1 {
        font-size: 52px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 32px;
    }

    .repair-form {
        padding: 28px 20px;
    }

    .trust-panel {
        padding: 24px 20px;
    }

    .book-info {
        position: static;
    }
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}