/* ===================================================
   DESIGN SYSTEM — Washing Machine Repair Landing
   Modern, minimalist, high-converting
   =================================================== */
:root {
    --primary: #1a56db;
    --primary-dark: #1342a8;
    --primary-light: #e8f0fe;
    --accent: #f97316;
    --accent-hover: #ea580c;
    --accent-light: #fff7ed;
    --green: #16a34a;
    --green-light: #dcfce7;
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', 'Gilroy-Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

ul, ol {
    list-style: none;
}

/* ===================================================
   LAYOUT
   =================================================== */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section--alt {
    background: var(--white);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 640px;
}

.section-subtitle--center {
    text-align: center;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    transition: all var(--transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--secondary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.btn--white {
    background: var(--white);
    color: var(--accent);
    font-weight: 800;
}

.btn--white:hover {
    background: #f8f8f8;
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 20px;
}

.btn--ghost:hover {
    background: var(--bg);
    color: var(--text);
}

.btn--full {
    width: 100%;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: var(--radius-lg);
}

/* Messenger buttons */
.btn--telegram {
    background: var(--white);
    color: #0088cc;
    border: 2px solid #0088cc;
}

.btn--telegram:hover {
    background: #f0f9ff;
    transform: translateY(-1px);
}

.btn--max {
    background: var(--white);
    color: #7B2FF7;
    border: 2px solid #7B2FF7;
}

.btn--max:hover {
    background: #faf5ff;
    transform: translateY(-1px);
}

.telegram-icon {
    width: 20px;
    height: 20px;
    background-color: #0088cc;
    -webkit-mask: url('../images/telegram.png') no-repeat center / contain;
    mask: url('../images/telegram.png') no-repeat center / contain;
    display: inline-block;
    flex-shrink: 0;
}

.max-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #7B2FF7, #C966F5);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.max-icon::after {
    content: 'M';
}

/* ===================================================
   HEADER
   =================================================== */
.header {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo__img {
    width: 40px;
    height: auto;
    object-fit: contain;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.logo__subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.header__nav {
    display: flex;
    gap: 28px;
}

.header__nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.header__nav a:hover {
    color: var(--primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Phone reveal */
.phone-reveal-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none !important;
    transition: transform var(--transition);
}

.phone-reveal-container:not(.is-revealed):hover {
    transform: scale(1.03);
}

.phone-hidden-part {
    display: inline-block;
    filter: blur(3px);
    opacity: 0.32;
    transition: filter 0.5s ease, opacity 0.5s ease;
    user-select: none;
    pointer-events: none;
    margin-left: -2px;
}

.phone-hint {
    font-size: 20px !important;
    opacity: 0.6;
    transition: opacity 0.4s ease, max-width 0.4s ease, padding 0.4s ease;
    max-width: 36px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    padding-left: 4px;
    color: var(--text-light);
}

.phone-reveal-container:not(.is-revealed):hover .phone-hint {
    color: var(--accent);
    opacity: 1;
}

.phone-reveal-container.phone-hint-visible:not(.is-revealed)::after {
    content: 'Нажми, чтобы увидеть номер полностью';
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    width: max-content;
    max-width: min(280px, calc(100vw - 32px));
    padding: 9px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.94);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    pointer-events: none;
    animation: phoneHintFade 0.25s ease;
}

.phone-reveal-container.phone-hint-visible:not(.is-revealed)::before {
    content: '';
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1201;
    border: 6px solid transparent;
    border-bottom-color: rgba(15, 23, 42, 0.94);
    pointer-events: none;
}

@keyframes phoneHintFade {
    from { opacity: 0; transform: translate(-50%, -4px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

.phone-reveal-container.is-revealed .phone-hidden-part {
    filter: blur(0);
    opacity: 1;
    user-select: auto;
    pointer-events: auto;
}

.phone-reveal-container.is-revealed .phone-hint {
    opacity: 0;
    max-width: 0;
    padding-left: 0;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero__title span {
    color: var(--primary);
}

.hero__desc {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero__stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    min-width: 140px;
}

.hero-stat__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.hero-stat__label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.hero-feature__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Hero form card */
.hero__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    position: relative;
}

.hero__form-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hero__form-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
    margin-top: 8px;
}

.hero__form-subtitle {
    font-size: 14px;
    color: var(--green);
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero__form-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg);
    padding: 14px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.hero__form-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.hero__form-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.messenger-btns {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.messenger-btns .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 14px;
}

/* ===================================================
   HOOKS BANNER
   =================================================== */
.hooks {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.hook-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.hook-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.hook-card__icon {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    line-height: 1;
}

.hook-card__text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

/* ===================================================
   BENEFITS
   =================================================== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: transparent;
}

.benefit-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-size: 24px;
}

.benefit-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.benefit-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===================================================
   PROBLEMS / FAULTS
   =================================================== */
.problems__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.problem-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.problem-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.problem-card__icon {
    font-size: 28px;
    color: var(--accent);
    flex-shrink: 0;
}

.problem-card__content {
    flex: 1;
}

.problem-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.problem-card__price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.problem-card__arrow {
    color: var(--text-light);
    font-size: 20px;
    transition: transform var(--transition);
}

.problem-card:hover .problem-card__arrow {
    transform: translateX(4px);
    color: var(--primary);
}

/* ===================================================
   DIAGNOSTICS
   =================================================== */
.diagnostics {
    background: linear-gradient(135deg, #0f2b6e 0%, #1a56db 100%);
    color: var(--white);
}

.diagnostics .section-title {
    color: var(--white);
}

.diagnostics .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.diag__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.diag__symptoms {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.diag__symptom-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
    width: 100%;
}

.diag__symptom-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.diag__symptom-btn.active {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.diag__symptom-btn .material-symbols-outlined {
    font-size: 22px;
    flex-shrink: 0;
}

.diag__result {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    display: none;
}

.diag__result.active {
    display: block;
    animation: diagFadeIn 0.4s ease;
}

@keyframes diagFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.diag__result-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.diag__result-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.diag__result-row:last-of-type {
    border-bottom: none;
}

.diag__result-label {
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 120px;
}

.diag__result-value {
    font-weight: 700;
    color: var(--text);
}

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

.diag__result-value--green {
    color: var(--green);
}

.diag__result-value--red {
    color: #ef4444;
}

.diag__result-advice {
    margin-top: 16px;
    padding: 14px;
    background: var(--bg);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.diag__result-cta {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.diag__placeholder {
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.diag__placeholder-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.diag__placeholder-text {
    font-size: 16px;
    font-weight: 600;
}

/* ===================================================
   PRICING
   =================================================== */
.pricing__table {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.pricing__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.pricing__row:last-child {
    border-bottom: none;
}

.pricing__row:hover {
    background: var(--bg);
}

.pricing__row--header {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
}

.pricing__row--header:hover {
    background: var(--primary);
}

.pricing__row--highlight {
    background: var(--green-light);
}

.pricing__service {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.pricing__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.pricing__price--free {
    color: var(--green);
}

.pricing__note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===================================================
   STEPS (HOW WE WORK)
   =================================================== */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.step-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.step-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 46px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--border);
}

/* ===================================================
   TRUST
   =================================================== */
.trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.trust-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.trust-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.trust-card__icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
    color: var(--primary);
}

.trust-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.trust-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===================================================
   BRANDS
   =================================================== */
.brands__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.brand-pill {
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    transition: all var(--transition);
}

.brand-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* ===================================================
   MAP / SERVICE AREA
   =================================================== */
.area__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.area__districts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}

.district-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
}

.district-tag__check {
    color: var(--green);
    font-size: 16px;
    flex-shrink: 0;
}

.area__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.area__map img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===================================================
   REVIEWS
   =================================================== */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-card__author {
    font-weight: 700;
    font-size: 16px;
}

.review-card__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* ===================================================
   FAQ
   =================================================== */
.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: color var(--transition);
    gap: 16px;
}

.faq-item.active .faq-item__question {
    color: var(--primary);
}

.faq-item__icon {
    font-size: 20px;
    color: var(--text-light);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

.faq-item__answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================================
   FINAL CTA
   =================================================== */
.final-cta {
    background: linear-gradient(135deg, #0f2b6e 0%, #1a56db 100%);
    color: var(--white);
    padding: 80px 0;
}

.final-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.final-cta__title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.final-cta__desc {
    font-size: 17px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 24px;
}

.final-cta__phone {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.final-cta__phone:hover {
    opacity: 0.9;
}

.final-cta__messengers {
    display: flex;
    gap: 10px;
}

.final-cta__messengers .btn {
    border-color: transparent;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.final-cta__messengers .btn--telegram {
    background: #0088cc;
}

.final-cta__messengers .btn--max {
    background: linear-gradient(135deg, #7B2FF7, #C966F5);
}

.final-cta__messengers .telegram-icon {
    background-color: var(--white) !important;
}

.final-cta__messengers .max-icon {
    background: var(--white);
    color: #7B2FF7;
}

.final-cta__messengers .btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/* Form */
.final-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.final-form__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.form__group {
    margin-bottom: 14px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--bg);
    color: var(--text);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
}

.form__policy {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

.form__policy a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    padding: 32px 0;
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    font-size: 14px;
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer a {
    color: #94a3b8;
    text-decoration: underline;
    transition: color var(--transition);
}

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

/* ===================================================
   FLOATING ACTION BUTTON
   =================================================== */
.fab-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fab-messengers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fab-messenger {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.fab-messenger:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
    filter: brightness(1.06);
}

.fab-messenger--telegram {
    background: #0088cc;
}

.fab-messenger--max {
    background: linear-gradient(135deg, #7B2FF7, #C966F5);
}

.fab-messenger .telegram-icon {
    width: 22px;
    height: 22px;
    background-color: var(--white) !important;
}

.fab-messenger .max-icon {
    width: 24px;
    height: 24px;
    background: var(--white);
    color: #7B2FF7;
    border-radius: 8px;
    font-size: 13px;
}

.fab {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
    animation: fabPulse 2.5s infinite;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
    animation: none;
}

.fab .material-symbols-outlined {
    font-size: 22px;
}

.fab__text {
    font-size: 14px;
    font-weight: 700;
}

@keyframes fabPulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* ===================================================
   CALLBACK MODAL
   =================================================== */
.callback-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.callback-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.callback-modal {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.callback-overlay.is-open .callback-modal {
    transform: scale(1);
}

.callback-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.callback-close:hover {
    color: var(--text);
}

.callback-modal__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.callback-modal__subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* ===================================================
   QUIZ MODAL
   =================================================== */
.quiz-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quiz-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.quiz-modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quiz-overlay.is-open .quiz-modal {
    transform: translateY(0) scale(1);
}

.quiz-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #fbbf24);
    border-radius: var(--radius-xl);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20%;
}

.quiz-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    border-radius: 50%;
    transition: all var(--transition);
}

.quiz-close:hover {
    color: var(--text);
    background: var(--bg);
}

.quiz-step-indicator {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quiz-step {
    display: none;
    animation: quizSlide 0.35s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes quizSlide {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.quiz-step__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Quiz option types */
.quiz-options--cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.quiz-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

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

.quiz-option-card.selected {
    border-color: var(--accent);
    background: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.quiz-option-card__icon {
    font-size: 36px;
    color: var(--primary);
}

.quiz-option-card.selected .quiz-option-card__icon {
    color: var(--accent);
}

.quiz-option-card__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.quiz-options--list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.quiz-option-item {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}

.quiz-option-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.quiz-option-item.selected {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
}

.quiz-options--grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.quiz-option-pill {
    padding: 10px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}

.quiz-option-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quiz-option-pill.selected {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
}

.quiz-next-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.quiz-next-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.quiz-result-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #0f2b6e, #1a56db);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    margin-bottom: 8px;
}

.quiz-result-banner__icon {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
}

.quiz-result-banner__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
}

.quiz-result-banner__text strong {
    font-size: 17px;
}

.quiz-promo-label {
    color: #fbbf24;
    font-weight: 800;
}

.quiz-promo-code {
    display: inline-block;
    background: #fbbf24;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 2px;
    margin-top: 4px;
}

.quiz-final-cta {
    margin-top: 20px;
    text-align: center;
}

.quiz-final-cta__title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
}

.quiz-final-cta__sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.quiz-final-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.quiz-final-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.quiz-final-btn:hover {
    transform: translateY(-2px);
}

.quiz-final-btn--call {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.quiz-final-btn--callback {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.quiz-final-btn--tg {
    background: var(--white);
    color: #0088cc;
    border: 2px solid #0088cc;
}

.quiz-final-btn--max {
    background: var(--white);
    color: #7B2FF7;
    border: 2px solid #7B2FF7;
}

.quiz-messenger-row {
    display: flex;
    gap: 10px;
}

.quiz-final-btn--small {
    flex: 1;
    padding: 12px;
    font-size: 14px;
}

.quiz-close-link {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 8px;
    font-family: inherit;
}

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

/* ===================================================
   GUARANTEE PROMO
   =================================================== */
.guarantee-promo {
    background: linear-gradient(135deg, #0f2b6e, #1a56db);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
}

.guarantee-promo__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.guarantee-promo__desc {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.5;
}

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

.fade-in.is-visible {
    opacity: 1;
    transform: none;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__form-card {
        max-width: 460px;
        margin: 0 auto;
    }

    .hooks__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .final-cta__inner {
        grid-template-columns: 1fr;
    }

    .final-form {
        max-width: 460px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 8px 0;
    }

    .header__inner {
        flex-wrap: wrap;
        gap: 8px;
    }

    .header__logo {
        flex: 1 1 100%;
        justify-content: center;
        min-width: 0;
    }

    .logo__img {
        width: 34px;
    }

    .header__nav {
        display: none;
    }

    .header__actions {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 8px;
    }

    .header__phone {
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 10px 12px;
        border: 1px solid var(--border);
        border-radius: var(--radius-full);
        background: var(--white);
        font-size: 14px;
        line-height: 1;
        white-space: nowrap;
        overflow: hidden;
    }

    .header__actions .btn {
        min-width: 136px;
        padding: 11px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__desc {
        font-size: 16px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 10px;
    }

    .hero-stat {
        min-width: auto;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

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

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

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

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

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

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

    .final-cta {
        padding: 60px 0;
    }

    .final-cta__title {
        font-size: 28px;
    }

    .final-cta__phone {
        font-size: 22px;
    }

    .guarantee-promo {
        padding: 32px 20px;
    }

    .guarantee-promo__title {
        font-size: 22px;
    }

    .pricing__row {
        padding: 14px 16px;
    }
}

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

    .hero__title {
        font-size: 28px;
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .hero__features {
        flex-direction: column;
    }

    .header__actions {
        grid-template-columns: minmax(0, 1fr) minmax(118px, auto);
        gap: 6px;
    }

    .header__actions .btn {
        width: 100%;
        min-width: 0;
        padding: 10px 10px;
        font-size: 12px;
    }

    .header__phone {
        padding: 10px 8px;
        font-size: 12px;
    }

    .phone-hint {
        font-size: 18px !important;
        max-width: 28px;
    }

    .logo__title {
        font-size: 15px;
    }

    .logo__subtitle {
        font-size: 11px;
    }

    .fab-widget {
        left: 50%;
        right: auto;
        bottom: 14px;
        width: min(320px, calc(100vw - 28px));
        align-items: center;
        gap: 8px;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .fab-messengers {
        order: -1;
        width: 100%;
        justify-content: center;
        gap: 12px;
        pointer-events: auto;
    }

    .fab-messenger {
        width: 42px;
        height: 42px;
    }

    .fab {
        width: 100%;
        justify-content: center;
        padding: 13px 16px;
        border-radius: var(--radius-full);
        pointer-events: auto;
    }

    .fab__text {
        display: inline;
        font-size: 13px;
    }

    .final-cta__messengers {
        flex-direction: column;
    }

    .messenger-btns {
        flex-direction: column;
    }

    .quiz-messenger-row {
        flex-direction: column;
    }
}

/* SEO text hidden on mobile */
.seo-text {
    max-width: 800px;
    margin: 32px auto 0;
    text-align: center;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}