/* ── SECTIONS SHARED ── */
section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4A6080;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 48px;
}

/* ── ABOUT ── */
.about-section {
    background: var(--gray-light);
    padding: 32px 24px;
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto;
}

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

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-stat {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(10, 26, 47, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-stat-icon {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.about-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.about-stat-num span {
    color: var(--accent);
}

.about-stat-label {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 6px;
}

.about-stat-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-icon-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(10, 26, 47, 0.07);
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}

.about-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.about-icon-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(245, 176, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
}

.about-icon-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

/* ── CARDS ── */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cards-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(10, 26, 47, 0.08);
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--card-shadow-hover);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 176, 65, 0.12), rgba(245, 176, 65, 0.06));
    border: 1px solid rgba(245, 176, 65, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 18px;
}

.card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.card p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── MANAGE ── */
.manage-section {
    background: var(--white);
}

/* ── FEATURE ROWS (шахматный порядок) ── */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-top: 64px;
}

/* Мобильная версия: сначала описание, под ним картинка */
@media (max-width: 768px) {
    .manage-section .feature-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
    }
    .manage-section .feature-row .feature-body {
        order: 1;
    }
    .manage-section .feature-row .feature-visual {
        order: 2;
    }
}



.feature-visual {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.feature-screen-placeholder {
    font-size: 72px;
    color: #c5d4f0;
}

.feature-screen-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

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

.feature-title-accent {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.25;
    margin: 0;
}

.feature-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
}

.btn-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.btn-feature:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* ── AUTO ── */
.auto-section {
    background: var(--gray-light);
}

.strike-wrap {
    position: relative;
    display: inline-block;
}

.strike-wrong {
    text-decoration: line-through;
    text-decoration-color: #e53e3e;
    text-decoration-thickness: 2px;
    color: var(--text-light);
}

.strike-correction {
    position: absolute;
    bottom: 100%;
    left: 0;
    font-size: 1.05em;
    font-weight: 700;
    color: #e53e3e;
    white-space: nowrap;
    font-family: 'Caveat', cursive, sans-serif;
    transform: rotate(-2deg);
    line-height: 1.2;
}

/* ── SALES ── */
.sales-section {
    background: var(--white);
}

.sales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.sales-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sales-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(10, 26, 47, 0.07);
    transition: all 0.3s;
    cursor: default;
}

.sales-feature:hover {
    background: var(--gray-light);
    border-color: rgba(245, 176, 65, 0.3);
    transform: translateX(4px);
}

.sf-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(245, 176, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.sf-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.sf-body p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}

.sales-visual {
    background: var(--navy);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.sales-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(245, 176, 65, 0.08);
    pointer-events: none;
}

.sv-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.sv-clients {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sv-client {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sv-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.sv-info {
    flex: 1;
}

.sv-name {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--white);
}

.sv-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.sv-amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
}

/* ── PRODUCTION ── */
.prod-section {
    background: var(--gray-light);
}

.prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

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

.prod-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.prod-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
    margin-top: 2px;
}

.prod-item-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.prod-item-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.prod-big-stat {
    background: var(--navy);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.prod-big-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 176, 65, 0.1), transparent 70%);
}

.big-num {
    font-size: 80px;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    position: relative;
}

.big-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-weight: 500;
    position: relative;
}

.big-sublabel {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 6px;
    position: relative;
}

/* ── CTA ── */
.cta-section {
    background: var(--navy);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(245, 176, 65, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 176, 65, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 176, 65, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner h2 .accent {
    color: var(--accent);
    font-style: normal;
}

.cta-inner .section-tag {
    margin-bottom: 16px;
}

.cta-inner h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ── Блок формы внизу страницы ── */
.footer-form-section {
    background: var(--gray-light);
    padding: 24px 24px 60px;
}

.footer-form-section .contact-form-block {
    max-width: 600px;
    margin: 0 auto;
    min-height: 520px;
    position: relative;
}

.footer-form-section .contact-form-block::before {
    content: 'Загрузка формы...';
    display: block;
    text-align: center;
    color: rgba(10, 26, 47, 0.55);
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 28px 16px;
}

.footer-form-section .contact-form-block.is-loaded::before {
    content: '';
    display: none;
    padding: 0;
}

/* ── FOOTER ── */
footer {
    background: #060F1E;
    padding: 32px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        display: none;
    }

    .btn-outline-white {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
        gap: 48px;
    }

    .hero-visual {
        max-width: 100%;
        width: 100%;
    }

    .hero-pill2 {
        display: none;
    }

    .about-grid,
    .sales-grid,
    .prod-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-visual {
        order: -1;
    }

    .prod-big-stat {
        padding: 32px;
    }

    .big-num {
        font-size: 60px;
    }
}

@media (max-width: 680px) {
    section {
        padding: 60px 20px;
    }

    .cards-3 {
        grid-template-columns: 1fr;
    }

    .cards-2x2 {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cta-section {
        padding: 72px 20px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 28px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ── PRICING ── */
.pricing-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.pricing-trust {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-style: italic;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-more {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(10, 26, 47, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.pricing-card:hover {
    box-shadow: 0 12px 40px rgba(10, 26, 47, 0.1);
    transform: translateY(-3px);
}

.pricing-card.featured {
    background: var(--navy);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(245, 176, 65, 0.2);
}

.pricing-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 176, 65, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-card.featured .pricing-card-icon {
    background: rgba(245, 176, 65, 0.2);
}

.pricing-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.pricing-card.featured .pricing-card-title {
    color: var(--white);
}

.pricing-card-body {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.pricing-card.featured .pricing-card-body {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card-note {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border-top: 1px solid rgba(10, 26, 47, 0.07);
    padding-top: 14px;
    line-height: 1.5;
}

.pricing-card.featured .pricing-card-note {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-steps {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 48px;
    margin-bottom: 40px;
    border: 1px solid rgba(10, 26, 47, 0.07);
}

.pricing-steps h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 24px;
}

.pricing-step-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.pricing-step-num {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.pricing-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.pricing-video-note {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-steps {
        padding: 28px 24px;
    }
}

/* ── DEMO ── */
.demo-section {
    background: var(--white);
    padding: 100px 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    margin-top: 48px;
}

.demo-lead {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.demo-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 16px;
}

.demo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.demo-list li {
    font-size: 15px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.demo-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.demo-col--action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 60px;
}

.demo-note {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 360px;
}

@media (max-width: 768px) {
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .demo-col--action {
        padding-top: 0;
    }
}

/* ── DEMO OPTIMIZED ── */
.demo-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.demo-center {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.demo-heading {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin: 12px 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.demo-heading em {
    font-style: normal;
    color: var(--accent);
}

.demo-sub {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 48px;
    max-width: 600px;
}

.demo-steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

.demo-step {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid rgba(10, 26, 47, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.demo-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.demo-step-text {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}

.demo-step-arrow {
    color: var(--accent);
    font-size: 16px;
    padding-top: 30px;
    flex-shrink: 0;
    opacity: 0.5;
}

.btn-demo {
    font-size: 17px !important;
    padding: 18px 44px !important;
    display: inline-flex !important;
    margin-bottom: 14px;
}

.demo-note {
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .demo-steps {
        flex-direction: column;
    }

    .demo-step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
        align-self: center;
    }
}

.demo-form {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
    max-width: 520px;
}

.demo-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(10, 26, 47, 0.15);
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    background: var(--white);
}

.demo-input:focus {
    border-color: var(--accent);
}

.demo-input::placeholder {
    color: #a0aec0;
}

@media (max-width: 540px) {
    .demo-form {
        flex-direction: column;
    }

    .demo-input {
        width: 100%;
    }
}

.header-phone {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.header-phone:hover {
    opacity: 1;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-contacts {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-contact-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.footer-contact-item:hover {
    color: var(--accent);
}

/* ── PAINS ── */
.pains-section {
    background: var(--gray-light);
}

.pains-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.pains-intro h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25;
    margin-bottom: 12px;
}

.pains-intro p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.pain-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(10, 26, 47, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.pain-card:hover {
    box-shadow: 0 8px 32px rgba(10, 26, 47, 0.09);
    transform: translateY(-3px);
}

.pain-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(245, 176, 65, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.pain-problem {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.pain-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.pain-solution {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
}

.pain-solution-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
}

@media (max-width: 900px) {
    .pains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .pains-grid {
        grid-template-columns: 1fr;
    }
}

/* ── BRIDGE ── */
.bridge-block {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
}

.bridge-heading {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    margin-bottom: 16px;
}

.bridge-sub {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.75;
}

/* ── QUOTE ── */
.quote-section {
    background: var(--navy);
    padding: 40px 24px;
}

.quote-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-size: 40px;
    line-height: 0.6;
    color: var(--accent);
    font-family: Georgia, serif;
    margin-bottom: 16px;
    display: block;
    opacity: 0.6;
}

.quote-text {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quote-author-info {
    text-align: left;
}

.quote-author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.quote-author-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

.quote-ati {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}


.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0aec0;
    margin-bottom: 28px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 40px;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: opacity 0.2s, filter 0.2s;
}

.trust-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo-item img {
    max-height: 56px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

.trust-logo-item[data-title] {
    position: relative;
}

.trust-logo-item[data-title]::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(6, 15, 30, 0.92);
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 3;
    white-space: nowrap;
}

.trust-logo-item[data-title]:hover::after {
    opacity: 1;
}

/* ── TRUST MARQUEE ── */
.trust-section {
    background: var(--white);
    padding: 36px 0;
    border-bottom: 1px solid rgba(10, 26, 47, 0.06);
    overflow: hidden;
}

.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a0aec0;
    margin-bottom: 24px;
}

.trust-track-wrap {
    overflow: hidden;
    position: relative;
}

.trust-track-wrap::before,
.trust-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.trust-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.trust-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.trust-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.trust-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
    flex-shrink: 0;
}

.trust-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logo-item img {
    max-height: 48px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
}

/* ── AFTER ── */
.after-section {
    background: var(--navy);
    padding: 80px 24px;
}

.after-header {
    text-align: center;
    margin-bottom: 56px;
}

.after-header h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
    max-width: 680px;
    margin: 0 auto;
}

.after-header h2 em {
    font-style: normal;
    color: var(--accent);
}

.after-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.after-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.25s, border-color 0.25s;
}

.after-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 176, 65, 0.3);
}

.after-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 176, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.after-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.after-card-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .after-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .after-cards {
        grid-template-columns: 1fr;
    }
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--accent);
    padding: 40px 24px;
}

.stats-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

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

.stat-num {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(10, 26, 47, 0.7);
    line-height: 1.4;
    max-width: 140px;
}

@media (max-width: 700px) {
    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quote-result {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.quote-result-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.quote-result-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* ── FEATURES PAGE (tariffs & options) ── */
.page-features .accent {
    color: var(--accent);
}

.features-hero {
    padding: 100px 24px 48px;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.features-hero .section-inner {
    max-width: 800px;
}

.features-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 720px;
}

.features-page-section {
    padding: 56px 24px 64px;
    background: var(--white);
}

.features-page-section--alt {
    background: var(--gray-light);
}

.features-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin-bottom: 28px;
}

.features-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(10, 26, 47, 0.08);
    background: var(--white);
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.45;
}

.features-table thead th {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 14px 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.features-table--tariff thead th:first-child {
    text-align: left;
    min-width: 180px;
}

.features-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(10, 26, 47, 0.07);
    vertical-align: middle;
}

.features-table--tariff tbody td:first-child {
    font-weight: 600;
    color: var(--text);
}

.features-table--tariff tbody td:not(:first-child) {
    text-align: center;
    color: var(--text-light);
    font-variant-numeric: tabular-nums;
}

.features-table--tariff tbody tr:nth-child(even) td {
    background: rgba(247, 249, 252, 0.85);
}

.features-table--options thead th:first-child {
    width: 32%;
    min-width: 220px;
    text-align: left;
}

.features-table--options thead th:last-child {
    text-align: left;
}

.features-table--options tbody td:first-child {
    font-weight: 600;
    color: var(--text);
    vertical-align: top;
}

.features-table--options tbody td:last-child {
    color: var(--text-light);
    line-height: 1.65;
    vertical-align: top;
}

.features-table--options tbody tr:nth-child(even) td {
    background: rgba(247, 249, 252, 0.5);
}

.features-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .features-table--options thead {
        display: none;
    }

    .features-table--options tbody tr {
        display: block;
        padding: 14px 12px;
        border-bottom: 1px solid rgba(10, 26, 47, 0.08);
    }

    .features-table--options tbody td {
        display: block;
        padding: 4px 0;
        border: none;
        background: transparent !important;
    }

    .features-table--options tbody td:first-child {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .features-table--options tbody td:last-child {
        font-size: 14px;
    }
}
