:root {
    --bg: #0a0c0f;
    --surface: #111418;
    --surface2: #181c22;
    --border: #1e2430;
    --accent: #e85d1a;
    --accent2: #f5a623;
    --text: #e8eaf0;
    --muted: #6b7485;
    --white: #ffffff;
    --danger: #ff5b5b;
    --success: #1fd18b;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    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: 72px;
    background: rgba(10, 12, 15, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: height 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
    height: 60px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-dot {
    color: var(--accent);
}

.logo-flags {
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    letter-spacing: 1px;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
    background: #ff6b2b !important;
    transform: translateY(-1px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.lang-btn.active {
    background: var(--accent);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    color: var(--text);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface2);
    padding: 0;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.hamburger span:nth-child(1) {
    transform: translateY(-6px);
}

.hamburger span:nth-child(2) {
    transform: translateY(0);
}

.hamburger span:nth-child(3) {
    transform: translateY(6px);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ── HERO ─────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5% 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232, 93, 26, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 50% 80% at 10% 80%, rgba(0, 48, 135, 0.1) 0%, transparent 60%),
            linear-gradient(135deg, #0a0c0f 0%, #111418 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(30, 36, 48, 0.4) 1px, transparent 1px),
            linear-gradient(90deg, rgba(30, 36, 48, 0.4) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    opacity: 0.5;
}

@keyframes gridMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 60px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 93, 26, 0.15);
    border: 1px solid rgba(232, 93, 26, 0.35);
    color: var(--accent2);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: "●";
    font-size: 8px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(56px, 9vw, 110px);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--white);
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-title .line2 {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.hero-sub {
    margin-top: 28px;
    font-size: 17px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.8s 0.4s ease both;
}

.stat-num {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    color: var(--white);
    line-height: 1;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-visual {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    pointer-events: none;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-visual svg {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(232, 93, 26, 0.15));
}

.route-line {
    position: absolute;
    bottom: 80px;
    left: 5%;
    right: 5%;
    display: flex;
    align-items: center;
    z-index: 2;
    animation: fadeUp 0.8s 0.5s ease both;
}

.route-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.route-flag {
    font-size: 22px;
}

.route-city {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.route-dash {
    flex: 1;
    height: 1px;
    margin: 0 20px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), rgba(255, 255, 255, 0.1));
    position: relative;
}

.route-truck {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translateY(-50%);
    font-size: 18px;
    animation: driveTruck 4s ease-in-out infinite;
}

@keyframes driveTruck {
    0%,
    100% {
        left: 10%;
    }
    50% {
        left: 80%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── BUTTONS ──────────────────────────── */
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    border-radius: 6px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary:hover {
    background: #ff6b2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 93, 26, 0.4);
}

.btn-primary svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 16px 28px;
    font-weight: 500;
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-full {
    width: 100%;
}

/* ── TICKER ───────────────────────────── */
.ticker-wrap {
    background: var(--accent);
    overflow: hidden;
    padding: 14px 0;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.ticker-item .sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 20px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ── SECTION BASE ─────────────────────── */
section {
    padding: 100px 5%;
}

.section-label {
    font-family: "Space Mono", monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
}

.section-sub {
    color: var(--muted);
    font-size: 16px;
    margin-top: 16px;
    max-width: 520px;
}

/* ── WHY ──────────────────────────────── */
#why {
    background: var(--surface);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 64px;
}

.why-card {
    background: var(--bg);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    background: var(--surface2);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 93, 26, 0.12);
    border: 1px solid rgba(232, 93, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}

.why-num {
    font-family: "Space Mono", monospace;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── HOW ──────────────────────────────── */
#how {
    background: var(--bg);
}

.how-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 64px;
    position: relative;
    gap: 0;
}

.steps::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--border));
}

.step {
    text-align: center;
    padding: 0 20px;
}

.step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--surface2);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    color: var(--white);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step:hover .step-num {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 6px rgba(232, 93, 26, 0.1);
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* ── GALLERY ──────────────────────────── */
#gallery {
    background: var(--surface);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.03);
}

.gallery-img-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: var(--surface2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    background: var(--surface2);
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: transform 0.4s ease;
}

.gallery-placeholder .ph-icon {
    font-size: 36px;
    opacity: 0.55;
}

.gallery-placeholder .ph-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.45;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 52%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-caption {
    color: var(--white);
}

.gallery-caption strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-caption span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.66);
}

.gallery-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

/* ── LIGHTBOX ─────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    position: relative;
    max-width: 860px;
    width: 90%;
}

.lightbox-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.lightbox-caption {
    margin-top: 16px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

/* ── CATEGORIES ───────────────────────── */
#categories {
    background: var(--bg);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 56px;
}

.cat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232, 93, 26, 0.15);
}

.cat-card:hover .cat-icon {
    transform: scale(1.15) rotate(-5deg);
}

.cat-icon {
    font-size: 32px;
    transition: transform 0.3s ease;
    display: block;
}

.cat-card span {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* ── PRICING ──────────────────────────── */
#pricing {
    background: var(--surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.pricing-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 36px;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 24px 64px rgba(232, 93, 26, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.pricing-price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 54px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-price sup {
    font-size: 24px;
    vertical-align: super;
}

.pricing-price sub {
    font-size: 18px;
    color: var(--muted);
    font-family: "DM Sans", sans-serif;
    font-weight: 300;
}

.pricing-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.pricing-features li {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* ── CONTACT ──────────────────────────── */
#contact {
    background: var(--bg);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
    align-items: start;
}

.contact-info h3 {
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(232, 93, 26, 0.12);
    border: 1px solid rgba(232, 93, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-val {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}

.contact-val a:hover {
    color: var(--accent);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--text);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 93, 26, 0.12);
}

.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(255, 91, 91, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--surface);
}

.form-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── SEO ──────────────────────────────── */
.seo-section {
    padding: 60px 5%;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.seo-title {
    font-size: clamp(28px, 4vw, 44px);
}

.seo-sub {
    max-width: 760px;
}

.seo-details {
    margin-top: 22px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
}

.seo-details summary {
    cursor: pointer;
    color: var(--white);
    font-weight: 600;
}

.seo-text {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    word-break: break-word;
}

/* ── FOOTER ───────────────────────────── */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 60px 5% 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 22px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.65;
}

.footer-col h4 {
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--muted);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

.footer-flags {
    font-size: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-flags span {
    font-size: 13px;
    color: var(--muted);
}

/* ── TOAST ────────────────────────────── */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--surface2);
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--white);
    z-index: 3000;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    max-width: min(92vw, 420px);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.error {
    border-color: var(--danger);
}

.toast.success {
    border-color: var(--success);
}

.toast-icon {
    font-size: 20px;
}

/* ── COOKIES ──────────────────────────── */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(92vw, 520px);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    z-index: 4000;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-actions .btn-primary,
.cookie-actions .btn-ghost {
    padding: 12px 18px;
}

/* ── TABLET ───────────────────────────── */
@media (max-width: 1024px) {
    #hero {
        min-height: auto;
        padding: 120px 5% 60px;
    }

    .hero-visual {
        display: none;
    }

    .hero-content,
    .hero-sub {
        max-width: 100%;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 48px;
        padding-top: 28px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .contact-wrap {
        gap: 56px;
    }
}

/* ── MOBILE ───────────────────────────── */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
    }

    nav {
        height: 64px;
        padding: 0 16px;
    }

    nav.scrolled {
        height: 58px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 2px;
        gap: 8px;
    }

    .logo-flags {
        font-size: 15px;
    }

    .nav-right {
        gap: 12px;
        margin-left: auto;
    }

    .lang-switch {
        padding: 2px;
        flex-shrink: 0;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #0a0c0f;
        padding: 18px 16px 28px;
        gap: 12px;
        z-index: 1000;
        overflow-y: auto;
        border-top: 1px solid var(--border);
        align-items: stretch;
    }

    .nav-links.open li {
        list-style: none;
        width: 100%;
    }

    .nav-links.open a {
        display: block;
        width: 100%;
        min-height: 56px;
        padding: 16px 18px;
        border-radius: 14px;
        background: var(--surface2);
        border: 1px solid var(--border);
        color: var(--white) !important;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.2px;
        text-transform: none;
        text-align: left;
        transition: all 0.2s ease;
    }

    .nav-links.open a:hover,
    .nav-links.open a:focus {
        background: rgba(232, 93, 26, 0.12);
        border-color: var(--accent);
        color: var(--white) !important;
    }

    .nav-links.open .nav-cta {
        background: var(--accent) !important;
        border-color: var(--accent) !important;
        color: var(--white) !important;
        text-align: center;
        margin-top: 4px;
        padding: 16px 18px;
    }

    .nav-links.open .nav-cta:hover,
    .nav-links.open .nav-cta:focus {
        background: #ff6b2b !important;
        color: var(--white) !important;
    }

    #hero {
        padding: 108px 16px 48px;
        min-height: auto;
    }

    .hero-badge {
        margin-bottom: 20px;
        font-size: 10px;
        letter-spacing: 1.4px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: clamp(42px, 16vw, 72px);
        line-height: 0.95;
        letter-spacing: 1px;
    }

    .hero-sub {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
        max-width: 100%;
    }

    .hero-actions {
        margin-top: 28px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        min-height: 52px;
        padding: 14px 18px;
    }

    .hero-stats {
        margin-top: 36px;
        padding-top: 24px;
        gap: 20px;
        flex-direction: column;
    }

    .stat-num {
        font-size: 34px;
    }

    .stat-label {
        font-size: 11px;
        line-height: 1.4;
    }

    .route-line {
        display: none;
    }

    .ticker-wrap {
        padding: 10px 0;
    }

    .ticker-track {
        gap: 36px;
    }

    .ticker-item {
        font-size: 14px;
        letter-spacing: 2px;
    }

    section {
        padding: 72px 16px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(30px, 12vw, 44px);
        line-height: 1;
    }

    .section-sub {
        font-size: 15px;
        line-height: 1.65;
        max-width: 100%;
        margin-top: 12px;
    }

    .why-grid {
        margin-top: 36px;
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 28px 20px;
        border: 1px solid var(--border);
        border-radius: 10px;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 18px;
    }

    .how-header,
    .gallery-header {
        gap: 14px;
    }

    .steps {
        margin-top: 36px;
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .step {
        text-align: left;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 22px 18px;
    }

    .step-num {
        margin: 0 0 18px 0;
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .gallery-filters {
        gap: 8px;
        margin-bottom: 22px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-caption strong {
        font-size: 14px;
    }

    .gallery-caption span {
        font-size: 11px;
    }

    .cat-grid {
        margin-top: 32px;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cat-card {
        padding: 22px 14px;
        min-height: 120px;
    }

    .cat-icon {
        font-size: 28px;
    }

    .cat-card span {
        font-size: 12px;
        line-height: 1.45;
    }

    .pricing-grid {
        margin-top: 32px;
        gap: 16px;
    }

    .pricing-card {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .pricing-price {
        font-size: 44px;
    }

    .pricing-price sup {
        font-size: 20px;
    }

    .pricing-price sub {
        font-size: 15px;
    }

    .pricing-desc {
        margin-bottom: 24px;
    }

    .pricing-features {
        gap: 10px;
        margin-bottom: 26px;
    }

    .pricing-features li {
        font-size: 13px;
        line-height: 1.5;
        align-items: flex-start;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        margin-top: 36px;
        gap: 36px;
    }

    .contact-info p {
        margin-bottom: 24px;
    }

    .contact-item {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .contact-label {
        font-size: 10px;
    }

    .contact-val {
        font-size: 14px;
        line-height: 1.5;
        word-break: break-word;
    }

    .form {
        gap: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .seo-section {
        padding: 48px 16px;
    }

    .seo-details {
        padding: 16px;
        border-radius: 10px;
    }

    .seo-text {
        font-size: 13px;
        line-height: 1.75;
    }

    footer {
        padding: 44px 16px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 28px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-col ul {
        gap: 10px;
    }

    .footer-bottom {
        padding-top: 20px;
        align-items: flex-start;
    }

    .footer-flags {
        font-size: 18px;
    }

    .lightbox-inner {
        width: 94%;
    }

    .lightbox-close {
        top: -40px;
        font-size: 28px;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        padding: 14px 16px;
        font-size: 13px;
        border-radius: 10px;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        transform: none;
        width: auto;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn-primary,
    .cookie-actions .btn-ghost {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(38px, 15vw, 58px);
    }

    .section-title {
        font-size: clamp(28px, 11vw, 38px);
    }

    .pricing-badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .gallery-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-content p {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    nav {
        padding: 0 12px;
    }

    #hero,
    section,
    .seo-section,
    footer {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo {
        font-size: 21px;
    }

    .logo-flags {
        display: none;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 5px 10px;
    }

    .pricing-card,
    .why-card,
    .step,
    .cat-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-links.open {
        top: 64px;
        padding: 14px 12px 24px;
    }

    .nav-links.open a {
        min-height: 54px;
        padding: 15px 16px;
        font-size: 15px;
        border-radius: 12px;
    }
}