
:root {
    --bg-main: #050608;
    --bg-elevated: #0d0f13;
    --bg-elevated-soft: #11151b;
    --text-main: #f4f4f4;
    --text-muted: #a6abb8;
    --accent: #d4af37;
    --accent-soft: rgba(212, 175, 55, 0.15);
    --accent-strong: #f2c94c;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --error: #ff4d4f;
    --success: #52c41a;
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.9);
    --radius-lg: 18px;
    --radius-full: 999px;
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.35s ease-out;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #151820 0, #050608 48%, #020305 100%);
    color: var(--text-main);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 55%), rgba(5, 6, 8, 0.92);
    border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 20%, var(--accent-strong), var(--accent) 55%, #8a6b12 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #080808;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.03em;
}

.logo-text-main {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 14px;
}

.logo-text-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav {
    display: none;
    gap: 18px;
    font-size: 14px;
}

.nav a {
    position: relative;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    transition: width var(--transition-normal);
}

.nav a:hover {
    color: var(--text-main);
}

.nav a:hover::after {
    width: 100%;
}

.header-contact {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    white-space: nowrap;
}

.header-phone {
    font-weight: 600;
    font-size: 16px;
}

.header-tagline {
    font-size: 11px;
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.55);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.22), rgba(0, 0, 0, 0.7));
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.header-cta-btn span {
    font-size: 11px;
    opacity: 0.85;
}

.header-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
    background: radial-gradient(circle at top, rgba(242, 201, 76, 0.4), rgba(0, 0, 0, 0.8));
}

/* BURGER */
.burger {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(10, 12, 16, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.burger-line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    transition: transform var(--transition-fast), opacity var(--transition-fast), width var(--transition-fast);
}

.burger:hover {
    transform: translateY(-0.5px);
    background: rgba(16, 20, 27, 1);
}

.burger.open .burger-line:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
}

.burger.open .burger-line:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}

.burger.open .burger-line:nth-child(3) {
    opacity: 0;
    width: 0;
}

.mobile-menu {
    position: fixed;
    inset: 60px 10px auto 10px;
    border-radius: 18px;
    background: rgba(5, 7, 10, 0.98);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.95);
    padding: 14px 16px 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
    z-index: 40;
}

.mobile-menu.open {
    display: flex;
    animation: fadeDown var(--transition-normal);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-links a {
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
}

.mobile-menu-links a span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-strong);
}

.mobile-menu-links a:hover {
    color: var(--text-main);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.04));
}

.mobile-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}

.mobile-menu-phone {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 13px;
}

.mobile-menu-phone strong {
    font-size: 15px;
}

.badge-24-7 {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.65);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.25), rgba(10, 10, 10, 0.8));
}

/* HERO */
main {
    flex: 1;
}

.hero {
    padding: 42px 0 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr);
    gap: 28px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    background: radial-gradient(circle at left, rgba(212, 175, 55, 0.55), rgba(10, 10, 10, 0.9));
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #f4f4f4;
    align-self: flex-start;
}

.hero-kicker-pill {
    padding: 5px 9px;
    border-radius: 999px;
    background: #050608;
    color: var(--accent-strong);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: clamp(30px, 5vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-title span {
    background: linear-gradient(120deg, var(--accent-strong), var(--accent), #ffe08a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.hero-highlight {
    padding: 10px 12px;
    border-radius: 14px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.24), rgba(16, 20, 27, 1));
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px;
    line-height: 1.3;
}

.hero-highlight strong {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 6px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    border: none;
    background: radial-gradient(circle at 30% 0%, var(--accent-strong), var(--accent) 40%, #8a6b12 100%);
    color: #060608;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.95);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.05);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.96);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.8);
}

.btn-primary-sub {
    font-size: 11px;
    opacity: 0.85;
    letter-spacing: 0.18em;
}

.hero-cta-note {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 250px;
}

.hero-cta-note strong {
    color: var(--accent-strong);
}

.hero-right {
    position: relative;
    padding: 16px 16px 18px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), rgba(7, 9, 13, 1));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-mock {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.4), rgba(7, 7, 8, 1));
    min-height: 200px;
    padding: 14px 14px 10px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.hero-metric {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(4, 5, 6, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-metric strong {
    font-size: 18px;
}

.hero-car {
    align-self: center;
    justify-self: center;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 2 / 1;
    border-radius: 999px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.3);
    background:
        radial-gradient(circle at 20% 0%, rgba(242, 201, 76, 0.5), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(169, 132, 24, 0.8), transparent 60%),
        linear-gradient(135deg, #111215, #171920 40%, #1d2028 70%, #111215 100%);
    position: relative;
}

.hero-car::before,
.hero-car::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: inherit;
    border: 1px dashed rgba(0, 0, 0, 0.45);
    opacity: 0.7;
}

.hero-car::after {
    inset: 30%;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.18);
}

/* Иконка отмычки внутри капсулы */
.hero-key {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-28deg);
    transform-origin: center;
    width: 65%;
    max-width: 130px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f6e27a, #f2c94c, #d4af37);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(242, 201, 76, 0.5);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: keyFloat 2.8s ease-in-out infinite;
}

.hero-key::before {
    /* Ручка отмычки */
    content: "";
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, #ffffff, #ffeaa0 40%, #d9b64b 75%, #b08a21 100%);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(242, 201, 76, 0.55);
}

.hero-key::after {
    /* Изогнутый рабочий конец отмычки */
    content: "";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b48a1f, #f2c94c);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    clip-path: polygon(0 40%, 55% 0, 75% 25%, 100% 10%, 100% 40%, 82% 55%, 70% 70%, 55% 100%, 0 60%);
}

@keyframes keyFloat {
    0% {
        transform: translate(-50%, -50%) rotate(-18deg);
    }
    50% {
        transform: translate(-50%, -56%) rotate(-10deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-18deg);
    }
}
.hero-mock-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.hero-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(0, 0, 0, 0.5);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* SECTION BASE */
.section {
    padding: 32px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-strong);
}

.section-title {
    font-size: 22px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 540px;
}

/* METHODS */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.card {
    position: relative;
    padding: 16px 14px 14px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.16), rgba(12, 14, 20, 1));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-strong);
    margin-bottom: 6px;
}

.card-title {
    font-size: 16px;
    margin-bottom: 6px;
}

.card-text {
    font-size: 13px;
    color: var(--text-muted);
}

.card-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.09);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.card-list {
    margin: 10px 0 0;
    padding-left: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.card-list li + li {
    margin-top: 4px;
}

/* BENEFITS / ADDITIONAL SECTION */
.benefits-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
    align-items: flex-start;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.benefit-item {
    padding: 12px 12px 11px;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), rgba(11, 13, 18, 1));
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.benefit-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.benefits-aside {
    padding: 14px 14px 12px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(212, 175, 55, 0.6);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.16), rgba(8, 9, 12, 1));
    font-size: 12px;
    color: var(--text-muted);
}

.benefits-aside strong {
    color: var(--accent-strong);
}

/* CAR BRANDS */
.brands-strip {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.16), rgba(8, 8, 11, 1));
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.brand-pill {
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(7, 8, 10, 0.95);
}

.brands-note {
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.review {
    padding: 13px 13px 12px;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1), rgba(11, 13, 18, 1));
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.review-name {
    font-weight: 600;
}

.review-meta {
    font-size: 11px;
    color: var(--text-muted);
}

.review-text {
    color: var(--text-muted);
}

.stars {
    color: var(--accent-strong);
    font-size: 12px;
}

/* FORM */
.form-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 18px;
}

.form-card {
    padding: 16px 14px 14px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.14), rgba(10, 12, 16, 1));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 12px;
}

.field label {
    color: var(--text-muted);
}

.field label span {
    color: var(--accent-strong);
    margin-left: 4px;
}

.input,
.textarea {
    padding: 9px 11px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 7, 12, 0.96);
    color: var(--text-main);
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.input::placeholder,
.textarea::placeholder {
    color: rgba(166, 171, 184, 0.65);
}

.input:focus,
.textarea:focus {
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
    background: rgba(7, 9, 14, 0.98);
}

.textarea {
    min-height: 80px;
    resize: vertical;
}

.form-footer {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.policy {
    font-size: 11px;
    color: var(--text-muted);
    max-width: 270px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

.checkbox-row input {
    width: 15px;
    height: 15px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-aside {
    padding: 14px 14px 13px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.9), rgba(6, 7, 10, 1));
    border: 1px dashed var(--border-subtle);
    font-size: 13px;
    color: var(--text-muted);
}

.form-aside-list {
    margin: 8px 0 0;
    padding-left: 16px;
}

.form-aside-list li + li {
    margin-top: 4px;
}

/* CONTACTS / FOOTER */
.contacts {
    padding: 28px 0 20px;
    border-top: 1px solid var(--border-subtle);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), rgba(3, 4, 6, 1));
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 18px;
    font-size: 13px;
}

.contacts-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-item {
    padding: 10px 11px;
    border-radius: 14px;
    background: rgba(10, 11, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-main {
    font-size: 14px;
    font-weight: 500;
}

.contact-item-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
}

.contacts-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    justify-content: space-between;
}

.contacts-cta-text {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 260px;
    text-align: right;
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: underline dotted rgba(166, 171, 184, 0.6);
    text-underline-offset: 3px;
}

/* ANIMATIONS & SCROLL */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .header-inner {
        padding-inline: 20px;
    }

    .nav {
        display: flex;
    }

    .header-contact {
        display: flex;
    }

    .burger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .hero {
        padding: 54px 0 40px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        align-items: center;
    }

    .section {
        padding: 38px 0;
    }

    .methods-grid,
    .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .benefits-grid {
        grid-template-columns: 1.4fr 1fr;
    }

    .benefits-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 30px;
    }

    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-mock {
        grid-template-columns: minmax(0, 1fr);
    }

    .methods-grid,
    .benefits-list,
    .reviews-grid,
    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .benefits-grid,
    .form-layout,
    .contacts-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contacts-block {
        grid-template-columns: minmax(0, 1fr);
    }

    .contacts-cta {
        align-items: flex-start;
        text-align: left;
    }

    .contacts-cta-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 25px;
    }

    .hero-highlights {
        grid-template-columns: minmax(0, 1fr);
    }

    .header-cta-btn {
        display: none;
    }

    .brands-row {
        gap: 8px;
    }
}
