/* ============================================
   Кърти Чисти Извозва
   Light theme, blue accents, clean layout
   ============================================ */

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #eff6ff;
    --blue-50: #f0f5ff;
    --viber: #7360f2;
    --viber-dark: #5a48c9;
    --text: #1a1a2e;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-gray: #f8fafc;
    --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 8px 30px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --font: 'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.text-blue { color: var(--blue); }

/* ============================================
   ANNOUNCEMENT BAR (legacy — replaced by top-bar)
   ============================================ */
.announcement-bar { display: none; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.header__logo-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

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

.header__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s;
}
.header__link:hover { color: var(--blue); }

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

.header__viber {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--viber);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
}
.header__viber:hover { background: var(--viber-dark); transform: translateY(-1px); }

.header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
}
.header__phone:hover { background: var(--blue-dark); transform: translateY(-1px); }

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 80px 0 60px;
    background: var(--bg-gray);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 480px;
}

.hero__trust {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero__trust span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

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

.hero__urgency {
    text-align: center;
    margin-top: 40px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    display: inline-block;
    width: 100%;
}

.hero__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn--primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.btn--green {
    background: #16a34a;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}
.btn--green:hover {
    background: #15803d;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.btn--viber {
    background: var(--viber);
    color: #fff;
    box-shadow: 0 4px 14px rgba(115, 96, 242, 0.3);
}
.btn--viber:hover {
    background: var(--viber-dark);
    box-shadow: 0 6px 20px rgba(115, 96, 242, 0.35);
    transform: translateY(-1px);
}

.btn--viber-cta {
    background: var(--viber);
    color: #fff;
    font-size: 1.05rem;
    padding: 16px 32px;
    box-shadow: var(--shadow-md);
}
.btn--viber-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--viber-dark); }

.btn--outline {
    background: #fff;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }

.btn--white {
    background: #fff;
    color: var(--blue);
    font-size: 1.05rem;
    padding: 16px 32px;
    box-shadow: var(--shadow-md);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--full { width: 100%; justify-content: center; }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header { text-align: center; margin-bottom: 48px; }

.section-header__title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-header__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 80px 0; }

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

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}
.service-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__image {
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -32px -28px 0;
    margin-bottom: 20px;
}
.service-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}
.service-card:hover .service-card__image img {
    transform: scale(1.05);
}
.service-card__body {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.service-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 16px;
}

.service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.service-card__list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.service-card__cta {
    display: block;
    margin-top: 20px;
    padding: 12px 20px;
    text-align: center;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 50px;
    transition: all 0.2s;
}
.service-card__cta:hover {
    background: var(--blue);
    color: #fff;
}

/* ============================================
   PRICING TABLES
   ============================================ */
.pricing {
    padding: 80px 0;
    background: var(--bg-gray);
}

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

.pricing__table {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.pricing__table:hover { box-shadow: var(--shadow-md); }

.pricing__table-header {
    background: var(--blue);
    color: #fff;
    padding: 16px 24px;
}
.pricing__table-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.pricing__table table {
    width: 100%;
    border-collapse: collapse;
}
.pricing__table th,
.pricing__table td {
    padding: 10px 16px;
    text-align: left;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.pricing__table th {
    background: var(--bg-gray);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.pricing__table td:last-child {
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}
.pricing__table tbody tr:last-child td { border-bottom: none; }
.pricing__table tbody tr:hover { background: var(--blue-50); }

.pricing__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.pricing__note svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__author strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-card__author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   WHY US
   ============================================ */
.why-us { padding: 0; }

.why-us__inner {
    background: var(--blue);
    padding: 64px 0;
    color: #fff;
}

.why-us__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

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

.why-us__item {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.why-us__item:hover { background: rgba(255,255,255,0.18); }

.why-us__icon {
    margin-bottom: 12px;
    opacity: 0.9;
}

.why-us__number {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.why-us__label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 80px 0;
    background: var(--bg-gray);
}

.process__grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.process__step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.process__number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.process__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process__arrow {
    flex-shrink: 0;
    color: var(--border);
    margin-top: 12px;
}

/* ============================================
   CTA
   ============================================ */
.cta { padding: 0; }

.cta__inner {
    background: var(--blue);
    border-radius: var(--radius);
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 64px auto;
    max-width: 1140px;
}

.cta__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.cta__subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-top: 6px;
}

.cta__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 0 0 80px; }

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

.contact__info { display: flex; flex-direction: column; gap: 16px; }

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    transition: box-shadow 0.2s;
}
.contact__card:hover { box-shadow: var(--shadow-sm); }

.contact__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    color: var(--blue);
    border-radius: var(--radius-sm);
}

.contact__card-icon--viber {
    background: rgba(115, 96, 242, 0.1);
    color: var(--viber);
}

.contact__card-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact__card-value { font-weight: 700; font-size: 1rem; }
a.contact__card-value:hover { color: var(--blue); }
.contact__card-extra { font-size: 0.88rem; color: var(--text-muted); margin-top: 2px; }

.contact__urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
}

/* FORM */
.form-confidence {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
}

.contact__form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 32px;
    position: relative;
}

.contact__form-wrapper .contact__form {
    border-radius: 0 0 var(--radius) var(--radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group { margin-bottom: 12px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-gray);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-status {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}
.form-status.success {
    display: block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.form-status.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}
.btn--loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form success big state */
.form-success-big {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: var(--radius);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 2;
}
.form-success-big.active {
    display: flex;
}
.form-success-big__icon {
    width: 72px;
    height: 72px;
    background: #f0fdf4;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    border: 3px solid #bbf7d0;
}
.form-success-big h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.form-success-big p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 20px 0 16px;
    border-top: 1px solid var(--border);
}

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

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.footer__brand {
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.footer__copy { font-size: 0.75rem; color: var(--text-muted); }
.footer__phone { font-weight: 700; color: var(--blue); font-size: 0.95rem; }

.footer__legal {
    display: flex;
    gap: 16px;
}
.footer__legal a {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer__legal a:hover { color: var(--blue); }

/* COOKIE BAR */
.cookie-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 101;
    padding: 10px 20px;
    background: var(--text);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.cookie-bar.visible { display: flex; }
.cookie-bar p { margin: 0; }
.cookie-bar a { color: #fff; text-decoration: underline; }
.cookie-bar__btn {
    padding: 4px 14px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

/* ============================================
   MOBILE STICKY BAR (2 buttons)
   ============================================ */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    gap: 10px;
}

.mobile-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 14px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 50px;
    color: #fff;
}

.mobile-bar__btn--phone {
    background: var(--blue);
}

.mobile-bar__btn--viber {
    background: var(--viber);
}

/* ============================================
   FLOATING CTA (desktop)
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}
.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.floating-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    transition: all 0.2s;
}
.floating-cta__btn:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

/* ============================================
   EXIT-INTENT POPUP
   ============================================ */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
}
.exit-popup.active {
    display: flex;
}

.exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.exit-popup__content {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.exit-popup__close:hover { color: var(--text); }

.exit-popup__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.exit-popup__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.exit-popup__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exit-popup__form input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-gray);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.exit-popup__form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.exit-popup__note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    html { scroll-padding-top: 80px; }

    .announcement-bar { font-size: 0.78rem; padding: 6px 0; }

    .header__logo-img { width: 32px; height: 32px; }
    .header__logo-text { font-size: 0.82rem; }

    .header__nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .header__nav.open { display: flex; }
    .header__actions { display: none; }
    .header__burger { display: flex; }
    .header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .header__burger.active span:nth-child(2) { opacity: 0; }
    .header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero { padding: 48px 0 40px; }
    .hero__grid { grid-template-columns: 1fr; gap: 32px; }
    .hero__title { font-size: 2rem; }
    .hero__image { order: -1; }
    .hero__trust { gap: 12px; }
    .hero__trust span { font-size: 0.82rem; }

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

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

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

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

    .process__grid { flex-wrap: wrap; }
    .process__arrow { display: none; }
    .process__step { min-width: calc(50% - 12px); }

    .cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        margin: 48px 24px;
    }
    .cta__buttons { flex-direction: column; width: 100%; }
    .cta__buttons .btn { width: 100%; justify-content: center; }

    .contact__grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer__top { flex-direction: column; text-align: center; gap: 8px; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
    .footer__brand { justify-content: center; }
    .footer__legal { justify-content: center; }

    .mobile-bar { display: flex; }
    .footer { padding-bottom: 80px; }
    .contact { padding-bottom: 100px; }

    .floating-cta { display: none !important; }
    .exit-popup { /* now works on mobile too */ }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .why-us__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .why-us__number { font-size: 1.3rem; }

    .pricing__table th,
    .pricing__table td { padding: 8px 10px; font-size: 0.78rem; }
}
