/* ─── HERO NEW STYLE ─── */
.hero {
    background: #f8f9ff;
    padding: 52px 20px 56px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e8eaf6;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;}

/* тонкая полоска сверху — акцент */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a3a8f, #2196F3, #f5c518);
}
.section-title {
  margin-bottom: 40px;
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
}

.hero-left {
    text-align: left;
    margin-left: 40px;
}
.hero-left h2 span {color: var(--color19);}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color2);
    color: var(--color7);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.hero-badge img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-form .error {
    display: block;
    color: #dc3545;
    margin-top: 3px;
    font-size: 0.875rem;
}

.hero h1 {
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    color: #0d1b4b;
    line-height: 1.18;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: #2196F3;
}

.hero-sub {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-line {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-line img {
    width: 16px;
    opacity: 0.6;
}

/* Hero right — форма */
.hero-right {
    background: #fff;
    border: 1px solid #e3eaf8;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(21, 101, 192, 0.1);
    margin-right: 40px;
}

.hero-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.hero-form-header img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hero-form-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color2);
    margin-left: 20px;
}

.hero-form-sub {
    font-size: 13px;
    color: var(--color3);
    margin-bottom: 24px;
    margin-left: 20px;
}

.hero-form input {
    width: 100%;
    padding: 27px 16px;
    border-radius: 12px;
    border: 1.5px solid #e3eaf8;
    background: #f8f9ff;
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    outline: none;
    transition: border 0.2s, background 0.2s;
}

.hero-form input::placeholder {
    color: #aaa;
}

.hero-form input:focus {
    border-color: var(--color2);
    background: #fff;
}

.hero-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--color2), var(--color18) );
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-form button img {
    width: 20px;
    filter: brightness(10);
}

.hero-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.45);
}

.hero-form-note {
    margin-top: 12px;
    font-size: 11px;
    color: #bbb;
    text-align: center;
}

.hero-form-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    color: #ccc;
    font-size: 11px;
}

.hero-form-divider::before,
.hero-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8eaf0;
}

.hero-form-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.hero-form-phone a {
    color: var(--color2);
    font-weight: 700;
    text-decoration: none;
}

.hero-form-phone a:hover {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-left {
        text-align: center;
        margin: 40px;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .trust-line {
        justify-content: center;
    }

    .hero-right {
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ─── SIGNS GRID ─── */
.signs-section {
    background: #fff;
}

.signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sign-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.sign-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.15);
    border-color: var(--color7);
}

.sign-emoji {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
    color: var(--color2);
}

.sign-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0d1b4b;
    margin-bottom: 10px;
}

.sign-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ─── WHAT'S INCLUDED ─── */
.included-section {
    background: var(--color15);
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.included-list {
    list-style: none;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #e8ecf0;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.included-list li:last-child {
    border-bottom: none;
}

.results-block {
    background: linear-gradient(135deg, #1a3a8f, #2196F3);
    border-radius: 20px;
    padding: 48px 40px;
    color: #fff;
    text-align: center;
}

.results-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 36px;
    opacity: 0.9;
}

.results-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.result-item {}

.result-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--color7);
    line-height: 1;
    margin-bottom: 6px;
}

.result-label {
    font-size: 14px;
    opacity: 0.85;
}

/* ─── STEPS ─── */
.steps-section {
    background: linear-gradient(135deg, #1a3a8f 0%, #1565c0 50%, #2196F3 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    transition: background 0.25s, transform 0.25s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.step-number {
    font-size: 42px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

.step-emoji {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 10px;
}

.step-days {
    display: inline-block;
    background: rgba(245, 197, 24, 0.25);
    color: var(--color7);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--color7);
}

.step-arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 22px;
    z-index: 1;
}

.step-card:last-child .step-arrow {
    display: none;
}

/* ─── PRICING ─── */
.pricing-section {
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.price-card {
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
}

.price-card.standard {
    background: linear-gradient(145deg, #1a3a8f, #2196F3);
    color: #fff;
    transform: scale(1.04);
}

.price-card.standard:hover {
    transform: scale(1.04) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color7);
    color: #0d1b4b;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.price-tier {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2196F3;
    margin-bottom: 12px;
}

.price-card.standard .price-tier {
    color: rgba(255, 255, 255, 0.7);
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
    color: #0d1b4b;
    margin-bottom: 6px;
    line-height: 1;
}

.price-card.standard .price-amount {
    color: var(--color7);
}

.price-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 28px;
}

.price-card.standard .price-note {
    color: rgba(255, 255, 255, 0.6);
}

.price-divider {
    height: 1px;
    background: #e8ecf0;
    margin-bottom: 24px;
}

.price-card.standard .price-divider {
    background: rgba(255, 255, 255, 0.2);
}

.price-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.price-card.standard .price-features li {
    color: rgba(255, 255, 255, 0.9);
}

.price-features li::before {
    content: '✓';
    color: #2196F3;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-card.standard .price-features li::before {
    color: var(--color7);
}

.btn-price {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s;
    cursor: pointer;
    border: 2px solid #1a3a8f;
    color: #1a3a8f;
}

.btn-price:hover {
    background: #1a3a8f;
    color: #fff;
}

.price-card.standard .btn-price {
    background: #f5c518;
    border-color: #f5c518;
    color: #0d1b4b;
}

.price-card.standard .btn-price:hover {
    background: var(--color7);
    border-color: var(--color7);
}

/* ─── FORM ─── */
.form-section {
    background: linear-gradient(135deg, #1a3a8f 0%, #1565c0 50%, #2196F3 100%);
    text-align: center;
}

.form-box {
    max-width: 540px;
    margin: 0 auto;
}

.form-title {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 22px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    outline: none;
    transition: background 0.2s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.22);
}

.btn-submit {
    width: 100%;
    padding: 17px;
    background: #f5c518;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #0d1b4b;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #ffdd57;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
}

.form-privacy {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.form-privacy a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}



/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-arrow {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .price-card.standard {
        transform: none;
    }

    .price-card.standard:hover {
        transform: translateY(-6px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    nav {
        display: none;
    }

    .signs-grid {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}