/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.6; color: #1a1a2e; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }
input { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.highlight { color: #0077cc; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 12px; transition: all .3s ease; text-transform: none; letter-spacing: 0; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-xl { padding: 20px 48px; font-size: 19px; }
.btn-primary { background: linear-gradient(135deg, #0077cc 0%, #00a3ff 100%); color: #fff;padding:10px; box-shadow: 0 4px 15px rgba(0,119,204,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,119,204,.45); }
.btn-accent { background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%); color: #fff; box-shadow: 0 4px 15px rgba(255,107,0,.35); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,.45); }
.btn-outline { background: transparent; border: 2px solid #0077cc; color: #0077cc; }
.btn-outline:hover { background: #0077cc; color: #fff; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(0,119,204,.35); }
    50% { box-shadow: 0 4px 30px rgba(0,119,204,.6); }
    100% { box-shadow: 0 4px 15px rgba(0,119,204,.35); }
}

/* ===== HEADER ===== */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(10px); box-shadow: 0 1px 10px rgba(0,0,0,.06); transition: box-shadow .3s; }
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo img { height: 44px; width: auto; }
.nav-desktop { display: flex; gap: 24px; }
.nav-desktop a { font-size: 14px; font-weight: 600; color: #333; transition: color .2s; }
.nav-desktop a:hover { color: #0077cc; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { text-align: right; }
.phone-number { font-size: 20px; font-weight: 800; color: #0077cc; display: block; line-height: 1.2; }
.phone-number:hover { color: #005fa3; }
.work-hours { font-size: 12px; color: #666; }
.burger { display: none; width: 32px; height: 24px; position: relative; background: none; }
.burger span { display: block; width: 100%; height: 3px; background: #333; border-radius: 2px; position: absolute; left: 0; transition: all .3s; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
.burger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
.nav-mobile { display: none; background: #fff; padding: 0 20px 20px; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.nav-mobile.open { display: flex; flex-direction: column; gap: 12px; }
.nav-mobile a { font-size: 16px; font-weight: 600; color: #333; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.mobile-phone { color: #0077cc; font-weight: 800; font-size: 20px; padding-top: 12px; }

/* ===== HERO ===== */
.hero { position: relative; padding: 120px 0 60px; min-height: 600px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url(../images/first-block-bg.jpg) no-repeat center center; background-size: cover; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,30,60,.85) 0%, rgba(0,60,120,.65) 100%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-content { color: #fff; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,.25); padding: 6px 18px; border-radius: 100px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: 48px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.hero h1 .highlight { color: #4dc3ff; }
.hero-sub { font-size: 20px; opacity: .9; margin-bottom: 32px; line-height: 1.4; }
.hero-features { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.hero-feature { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); padding: 10px 16px; border-radius: 10px; font-size: 15px; backdrop-filter: blur(5px); }
.hero-feature-icon { font-size: 20px; }
.hero-discount { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #ff6b00, #ff9500); padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 16px; }
.discount-badge { font-size: 24px; font-weight: 900; }

/* Hero form */
.hero-form-wrap { position: relative; }
.hero-form { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.form-urgency { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 14px; color: #16a34a; font-weight: 600; }
.pulse-dot { width: 10px; height: 10px; background: #16a34a; border-radius: 50%; animation: pulseDot 1.5s infinite; }
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); }
    50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}
.hero-form h2 { font-size: 24px; color: #1a1a2e; margin-bottom: 4px; }
.hero-form > p { font-size: 14px; color: #666; margin-bottom: 20px; }
.main-form input { width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 16px; margin-bottom: 12px; transition: border-color .2s; background: #f9fafb; }
.main-form input:focus { border-color: #0077cc; outline: none; background: #fff; }
.main-form button { width: 100%; }
.form-trust { display: flex; justify-content: space-between; margin-top: 16px; font-size: 12px; color: #888; }

/* ===== SOCIAL PROOF BAR ===== */
.social-proof { background: #0a1628; color: #fff; padding: 28px 0; }
.social-proof-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.proof-item strong { font-size: 36px; display: block; line-height: 1; margin-bottom: 4px; color: #4dc3ff; }
.proof-item span { font-size: 14px; opacity: .8; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-title { font-size: 36px; font-weight: 800; text-align: center; margin-bottom: 8px; }
.section-subtitle { text-align: center; color: #666; font-size: 17px; margin-bottom: 48px; }
.section-subtitle a { color: #0077cc; font-weight: 700; }

/* ===== ADVANTAGES ===== */
.advantages { background: #f8fafc; }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advantage-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; border: 1px solid #e8ecf0; transition: transform .3s, box-shadow .3s; }
.advantage-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.advantage-icon { font-size: 40px; margin-bottom: 16px; }
.advantage-card h3 { font-size: 20px; margin-bottom: 8px; color: #1a1a2e; }
.advantage-card p { font-size: 15px; color: #666; line-height: 1.5; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: #fff; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 12px; margin-bottom: 40px; }
.step { text-align: center; flex: 1; max-width: 220px; }
.step-number { width: 56px; height: 56px; background: linear-gradient(135deg, #0077cc, #00a3ff); color: #fff; border-radius: 50%; font-size: 24px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: #666; }
.step-arrow { font-size: 24px; color: #0077cc; margin-top: 16px; flex-shrink: 0; }
.steps-cta { text-align: center; }

/* ===== SERVICES ===== */
.services { background: #f8fafc; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #fff; border-radius: 16px; overflow: hidden; border: 2px solid #e8ecf0; transition: transform .3s, box-shadow .3s; position: relative; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.service-card-featured { border-color: #0077cc; }
.service-badge { position: absolute; top: 16px; right: 16px; background: #0077cc; color: #fff; padding: 4px 14px; border-radius: 100px; font-size: 13px; font-weight: 700; z-index: 2; }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-body { padding: 24px; text-align: center; }
.service-body h3 { font-size: 22px; margin-bottom: 8px; }
.service-price { font-size: 26px; color: #0077cc; font-weight: 800; margin-bottom: 12px; }
.service-note { font-size: 16px; color: #999; font-weight: 600; padding: 20px 0; text-transform: uppercase; }
.service-features { margin-bottom: 16px; }
.service-features li { padding: 4px 0; font-size: 15px; color: #555; }
.service-features li::before { content: '\2713 '; color: #16a34a; font-weight: 700; }

/* ===== PRICES ===== */
.prices { background: #fff; }
.prices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.price-card { background: #f8fafc; border-radius: 16px; overflow: hidden; text-align: center; border: 1px solid #e8ecf0; transition: transform .3s, box-shadow .3s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.price-card img { width: 100%; height: 180px; object-fit: cover; }
.price-card h3 { font-size: 16px; padding: 16px 16px 4px; color: #1a1a2e; }
.price-value { font-size: 20px; font-weight: 800; color: #0077cc; padding: 0 16px 20px; }
.prices-cta { text-align: center; margin-top: 40px; }

/* ===== CTA BANNER ===== */
.cta-banner { background: url(../images/bg2.jpg) no-repeat center center; background-size: cover; position: relative; padding: 60px 0; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,30,60,.9) 0%, rgba(0,80,160,.8) 100%); }
.cta-banner-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: center; }
.cta-text { color: #fff; }
.cta-text h2 { font-size: 36px; margin-bottom: 20px; line-height: 1.2; }
.cta-features { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-features span { font-size: 16px; background: rgba(255,255,255,.1); padding: 8px 16px; border-radius: 8px; }
.cta-form { background: #fff; border-radius: 20px; padding: 32px; text-align: center; }
.cta-form h3 { font-size: 22px; color: #1a1a2e; margin-bottom: 4px; }
.cta-urgency { font-size: 14px; color: #16a34a; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.cta-form input { width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 16px; margin-bottom: 12px; transition: border-color .2s; }
.cta-form input:focus { border-color: #ff6b00; outline: none; }
.cta-form button { width: 100%; }

/* ===== PROBLEMS ===== */
.problems { background: #f8fafc; }
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { display: flex; background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8ecf0; transition: transform .3s, box-shadow .3s; }
.problem-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.problem-card img { width: 140px; height: 120px; object-fit: cover; flex-shrink: 0; }
.problem-text { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; }
.problem-text h3 { font-size: 17px; margin-bottom: 4px; }
.problem-text p { font-size: 14px; color: #666; line-height: 1.4; }
.problems-cta { text-align: center; margin-top: 40px; }
.problems-cta p { color: #666; margin-bottom: 12px; }

/* ===== FAQ ===== */
.faq { background: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid #e8ecf0; border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: box-shadow .3s; }
.faq-item:hover { box-shadow: 0 4px 15px rgba(0,0,0,.05); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; font-size: 17px; font-weight: 600; text-align: left; background: #fff; color: #1a1a2e; transition: background .2s, color .2s; }
.faq-question:hover { background: #f8fafc; }
.faq-question.active { background: #0077cc; color: #fff; }
.faq-toggle { font-size: 24px; font-weight: 300; transition: transform .3s; width: 28px; text-align: center; flex-shrink: 0; }
.faq-question.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 20px 24px; color: #555; line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews { background: #f8fafc; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #e8ecf0; }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-header img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.review-header h4 { font-size: 17px; margin-bottom: 2px; }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.review-card p { font-size: 15px; color: #555; line-height: 1.6; }

/* ===== FINAL CTA ===== */
.final-cta { background: linear-gradient(135deg, #0a1628 0%, #0d2847 100%); color: #fff; text-align: center; padding: 80px 20px; }
.final-cta h2 { font-size: 36px; margin-bottom: 12px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.2; }
.final-cta p { font-size: 18px; opacity: .8; margin-bottom: 32px; }

/* ===== CONTACTS ===== */
.contacts { background: #fff; padding: 40px 0; }
.contacts-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.contacts-logo { height: 44px; width: auto; }
.contacts-info { flex: 1; text-align: center; }
.contacts-address { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.contacts-info p { font-size: 14px; color: #666; }
.contacts-phone { text-align: right; }
.contacts-phone a { font-size: 24px; font-weight: 800; color: #0077cc; display: block; }
.contacts-phone span { font-size: 13px; color: #666; }

/* ===== FOOTER ===== */
footer { background: #0a1628; color: rgba(255,255,255,.7); padding: 24px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; gap: 24px; font-size: 14px; }
.footer-right { display: flex; gap: 24px; }
.footer-right a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; }
.footer-right a:hover { color: #4dc3ff; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 80px; right: 20px; width: 48px; height: 48px; background: #0077cc; color: #fff; border-radius: 50%; font-size: 22px; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; box-shadow: 0 4px 15px rgba(0,0,0,.2); z-index: 900; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #005fa3; transform: translateY(-3px); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #fff; box-shadow: 0 -2px 15px rgba(0,0,0,.1); padding: 10px; gap: 10px; }
.mobile-sticky-call, .mobile-sticky-order { flex: 1; text-align: center; padding: 14px; border-radius: 10px; font-weight: 700; font-size: 15px; }
.mobile-sticky-call { background: #fff; border: 2px solid #0077cc; color: #0077cc; }
.mobile-sticky-order { background: #0077cc; color: #fff; }

/* ===== TOAST ===== */
.toast { position: fixed; top: 90px; left: 50%; transform: translateX(-50%) translateY(-20px); background: #16a34a; color: #fff; padding: 16px 32px; border-radius: 12px; font-weight: 600; z-index: 10000; transition: opacity .4s ease, transform .4s ease; box-shadow: 0 8px 30px rgba(0,0,0,.2); max-width: 90vw; opacity: 0; visibility: hidden; pointer-events: none; }
.toast.show { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }

/* ===== MODALS & OVERLAY ===== */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); z-index: 5000; display: none; align-items: center; justify-content: center; }
.overlay.active { display: flex; }
.modal-box { background: #fff; border-radius: 20px; padding: 40px; max-width: 420px; width: 90%; position: relative; animation: modalIn .3s ease; }
@keyframes modalIn { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; font-size: 28px; color: #999; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s; }
.modal-close:hover { background: #f0f0f0; color: #333; }
.modal-box h3 { font-size: 24px; margin-bottom: 4px; }
.modal-box p { font-size: 15px; color: #666; margin-bottom: 20px; }
.modal-box input { width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 16px; margin-bottom: 12px; transition: border-color .2s; }
.modal-box input:focus { border-color: #0077cc; outline: none; }
.modal-box button[type="submit"] { width: 100%; padding: 16px; background: linear-gradient(135deg, #0077cc 0%, #00a3ff 100%); color: #fff; font-size: 17px; font-weight: 700; border-radius: 10px; transition: all .3s; }
.modal-box button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,119,204,.4); }

/* ===== EXIT POPUP (lead magnet) ===== */
.popup { background: #fff; border-radius: 24px; padding: 48px 40px; max-width: 480px; width: 90%; text-align: center; position: relative; animation: modalIn .4s ease; }
.popup-close { position: absolute; top: 16px; right: 16px; background: none; font-size: 32px; color: #999; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s; }
.popup-close:hover { background: #f0f0f0; color: #333; }
.popup-icon { font-size: 48px; margin-bottom: 12px; }
.popup h3 { font-size: 26px; margin-bottom: 8px; color: #1a1a2e; }
.popup p { font-size: 16px; color: #555; margin-bottom: 20px; line-height: 1.5; }
.popup-timer { margin-bottom: 20px; }
.popup-timer span { font-size: 13px; color: #999; }
.countdown { font-size: 32px; font-weight: 900; color: #dc2626; font-variant-numeric: tabular-nums; }
.popup-form input { width: 100%; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 10px; font-size: 16px; margin-bottom: 12px; text-align: center; }
.popup-form input:focus { border-color: #ff6b00; outline: none; }
.popup-form button { width: 100%; padding: 16px; background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%); color: #fff; font-size: 18px; font-weight: 700; border-radius: 10px; transition: all .3s; }
.popup-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,0,.4); }
.popup-note { font-size: 12px; color: #999; display: block; margin-top: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-form-wrap { max-width: 480px; }
    .hero h1 { font-size: 36px; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
    .cta-text { text-align: center; }
    .cta-features { justify-content: center; }
    .cta-form { max-width: 420px; margin: 0 auto; }
    .prices-grid { grid-template-columns: repeat(2, 1fr); }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .header-right { display: none; }
    .burger { display: block; }
    .hero { padding: 100px 0 40px; min-height: auto; }
    .hero h1 { font-size: 28px; }
    .hero-sub { font-size: 16px; }
    .hero-features { gap: 8px; }
    .hero-feature { font-size: 13px; padding: 8px 12px; }
    .social-proof-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .proof-item strong { font-size: 28px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 26px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .prices-grid { grid-template-columns: 1fr 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .problem-card img { width: 100px; height: 100px; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    .contacts-inner { flex-direction: column; text-align: center; }
    .contacts-phone { text-align: center; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; gap: 4px; }
    .final-cta h2 { font-size: 26px; }
    .cta-text h2 { font-size: 26px; }
    .mobile-sticky-cta { display: flex; }
    .scroll-top { bottom: 80px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero-form { padding: 24px 20px; }
    .hero-form h2 { font-size: 20px; }
    .hero-discount { flex-wrap: wrap; font-size: 14px; }
    .form-trust { flex-direction: column; gap: 4px; align-items: center; }
    .prices-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .popup { padding: 32px 24px; }
    .popup h3 { font-size: 22px; }
    .countdown { font-size: 26px; }
}
