:root {
    --bg: #1a1a1a;
    --bg-elevated: #222222;
    --bg-card: #2a2a2a;
    --bg-card-hover: #303030;
    --accent: #fade00;
    --accent-dim: rgba(250,222,0,0.10);
    --accent-hover: #fff34a;
    --text: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.12);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Unbounded', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --max-w: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: #000;
}

/* ===== LAYOUT ===== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ===== TYPOGRAPHY ===== */
.label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.heading-xl {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.heading-lg {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-md {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
}

.heading-sm {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.body-lg {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.body {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.1s; }
.d3 { transition-delay: 0.15s; }
.d4 { transition-delay: 0.2s; }
.d5 { transition-delay: 0.25s; }
.d6 { transition-delay: 0.3s; }
.d7 { transition-delay: 0.35s; }
.d8 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 14px 32px;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    padding: 14px 32px;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-text {
    background: none;
    color: var(--accent);
    padding: 0;
    font-weight: 500;
    gap: 6px;
}

.btn-text:hover { opacity: 0.8; }

.btn-text svg { transition: transform 0.3s var(--ease); }
.btn-text:hover svg { transform: translateX(3px); }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: baseline;
    text-decoration: none;
    gap: 1px;
}

.logo-5 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

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

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

.header-phone {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s var(--ease);
    border-radius: 1px;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-overlay.open { display: flex; }

.mobile-overlay a {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
}

.mobile-overlay a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.07;
}

.hero-glow-1 {
    background: var(--accent);
    top: -20%;
    right: -5%;
}

.hero-glow-2 {
    background: #ffffff;
    bottom: -30%;
    left: -10%;
    opacity: 0.03;
}

.hero-content { position: relative; z-index: 1; }

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(250,222,0,0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 28px;
}

.hero-dot {
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-title { margin-bottom: 24px; }
.hero-title .accent { color: var(--accent); }

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-features { display: flex; gap: 32px; flex-wrap: wrap; }

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-feature-icon {
    width: 32px; height: 32px;
    background: var(--bg-card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.5s var(--ease-out);
}

.hero-stat-card:hover { transform: translateX(8px); }

.hero-stat-icon {
    width: 48px; height: 48px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== STATS STRIP ===== */
.stats-strip {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat { text-align: center; }

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===== SERVICES ===== */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px;
}

.services-header .body-lg { max-width: 440px; }

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px 24px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
    width: 44px; height: 44px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== QUIZ ===== */
.quiz-section { background: var(--bg-elevated); }

.quiz-container {
    max-width: 640px;
    margin: 0 auto;
}

.quiz-progress-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
}

.quiz-progress-dot {
    flex: 1;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    transition: background 0.4s var(--ease);
}

.quiz-progress-dot.done,
.quiz-progress-dot.active { background: var(--accent); }

.quiz-step-info {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.quiz-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.2;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.quiz-opt {
    padding: 20px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.quiz-opt:hover {
    border-color: var(--border-light);
    background: var(--bg-card-hover);
}

.quiz-opt.picked {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent);
}

.quiz-opt-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.quiz-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.quiz-input::placeholder { color: var(--text-muted); }
.quiz-input:focus { border-color: var(--accent); }
.quiz-input option { background: var(--bg-elevated); }

.quiz-form-wrap { display: grid; gap: 12px; }

.quiz-nav-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.quiz-done {
    text-align: center;
    padding: 32px 0;
}

.quiz-done-check {
    width: 56px; height: 56px;
    background: var(--accent-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
}

/* ===== PRICES ===== */
.price-tabs-row {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 32px;
    margin-top: 48px;
}

.price-tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.price-tab-btn.on {
    background: var(--accent);
    color: #000;
}

.price-list {
    width: 100%;
    border-collapse: collapse;
}

.price-list th {
    text-align: left;
    padding: 10px 0;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--border);
}

.price-list td {
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.price-list tr:last-child td { border-bottom: none; }
.price-list tr { transition: background 0.2s; }
.price-list tbody tr:hover { background: rgba(255,255,255,0.02); }

.price-list td:first-child {
    color: var(--text);
    font-weight: 500;
    padding-right: 24px;
}

.price-list td:last-child {
    font-family: var(--font-mono);
    color: var(--accent);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.price-note-box {
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-note-box svg { color: var(--accent); flex-shrink: 0; }

/* ===== PROCESS ===== */
.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.process-item {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.process-item:hover { border-color: var(--border-light); }

.process-num {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
}

.process-item h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.process-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== ABOUT ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 56px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-secondary);
}

.about-badge svg { color: var(--accent); flex-shrink: 0; }

.about-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-visual-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.about-visual-placeholder svg { opacity: 0.3; margin-bottom: 12px; }

/* ===== REVIEWS ===== */
.reviews-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 48px -32px 0;
    padding: 0 32px 8px;
}

.reviews-scroll::-webkit-scrollbar { display: none; }

.review {
    min-width: 340px;
    max-width: 340px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-av {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.review-name {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.review-device {
    font-size: 12px;
    color: var(--text-muted);
}

.review-stars {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    flex-wrap: wrap;
}

.reviews-big-score {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.reviews-meta { flex: 1; }

.reviews-stars-row {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.reviews-count {
    font-size: 13px;
    color: var(--text-muted);
}

.reviews-links { display: flex; gap: 8px; }

.reviews-link {
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.reviews-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== FAQ ===== */
.faq-wrap {
    max-width: 720px;
    margin: 48px auto 0;
}

.faq-row { border-bottom: 1px solid var(--border); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-q:hover { color: var(--accent); }

.faq-q-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: transform 0.4s var(--ease-out), color 0.3s;
}

.faq-row.open .faq-q-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

.faq-row.open .faq-a { max-height: 300px; }

.faq-a-inner {
    padding-bottom: 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CONTACTS ===== */
.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-w {
    width: 44px; height: 44px;
    background: var(--accent-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-extra {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.contact-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.map-placeholder {
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
}

.map-pin {
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.map-pin svg { transform: rotate(45deg); color: #000; }

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
    background: var(--bg-elevated);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-about p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-socials a {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.3s;
    text-decoration: none;
}

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

.footer-col-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ===== FLOATERS ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px; height: 52px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(250,222,0,0.30);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(250,222,0,0.45);
}

.to-top {
    position: fixed;
    bottom: 24px;
    right: 88px;
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 90;
    transition: all 0.3s var(--ease);
    opacity: 0;
    pointer-events: none;
}

.to-top.show {
    opacity: 1;
    pointer-events: all;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav, .header-phone { display: none; }
    .burger { display: block; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-row { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; }
    .contacts-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .services-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .section-sm { padding: 56px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .process-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-features { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .price-tabs-row { width: 100%; overflow-x: auto; }
    .review { min-width: 280px; max-width: 280px; }
    .reviews-summary { flex-direction: column; align-items: flex-start; }
    .reviews-links { width: 100%; }
    .contact-btns { flex-direction: column; }
    .contact-btns .btn { width: 100%; }
    .quiz-options-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== DUETLY CREDIT ===== */
@keyframes float-up {
    0%   { opacity: 1; transform: translate(-50%, 0) scale(1); }
    65%  { opacity: 1; transform: translate(-50%, -18px) scale(1.1); }
    100% { opacity: 0; transform: translate(-50%, -32px) scale(0.9); }
}

.duetly-plus-one {
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 11px;
    font-weight: 700;
    color: #f87171;
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
    animation: float-up 1.2s ease-out forwards;
}

.duetly-made-with {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.duetly-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.duetly-link:hover { color: var(--text); }

.duetly-heart-btn {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    line-height: 0;
    cursor: pointer;
    color: #f87171;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    transition: transform 0.2s ease;
    will-change: transform;
}

.duetly-heart-btn:hover { transform: scale(1.25); }

.duetly-heart-btn svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: transparent;
    stroke: currentColor;
    transition: fill 0.2s ease, stroke 0.2s ease;
}

.duetly-heart-btn.is-liked svg {
    fill: #f87171;
    stroke: #f87171;
}
