/* Páginas de solução e segmento — HeroPrice */

.page-hero {
    position: relative;
    padding: calc(var(--header-height) + 64px) 0 64px;
    background:
        radial-gradient(ellipse at 12% 0%, rgba(0, 70, 254, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 100%, rgba(255, 138, 101, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.page-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.page-hero__breadcrumb a {
    color: var(--primary-color);
    font-weight: 500;
}

.page-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero__breadcrumb span[aria-hidden="true"] {
    opacity: 0.45;
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(0, 70, 254, 0.08);
    border: 1px solid rgba(0, 70, 254, 0.18);
    border-radius: 999px;
}

.page-hero__title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 18px;
    max-width: 780px;
}

.page-hero__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 640px;
    margin-bottom: 32px;
}

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

.page-section {
    padding: 80px 0;
}

.page-section--gray {
    background: var(--bg-gray);
}

.page-section--navy {
    background: radial-gradient(ellipse at 50% 0%, #1a5276 0%, #16213e 45%, #0f3460 80%, #0a2647 100%);
    color: #fff;
}

.page-section--navy .section__title,
.page-section--navy .section__description {
    color: #fff;
}

.page-section--navy .section__description {
    opacity: 0.85;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.page-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.page-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: #fff;
}

.page-card__icon svg {
    width: 24px;
    height: 24px;
}

.page-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.page-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-gray);
}

.page-list {
    display: grid;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
}

.page-list__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.page-list__bullet {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(0, 70, 254, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}

.page-list__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.page-list__item strong {
    color: var(--text-dark);
}

.page-cta {
    text-align: center;
    padding: 72px 0;
}

.page-cta__title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.page-cta__text {
    font-size: 17px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 28px;
    opacity: 0.9;
}

.page-related {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.page-related__link {
    display: block;
    padding: 20px 18px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.page-related__link:hover {
    border-color: rgba(0, 70, 254, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.page-related__link strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 6px;
}

.page-related__link span {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.page-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    align-items: center;
}

.page-logos img {
    width: 88px;
    height: 48px;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(0.15);
}

.solution-card--link {
    display: block;
    color: inherit;
    height: 100%;
}

.solution-card--link:hover .solution-card__title {
    color: var(--primary-color);
}

.solution-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.coverage-sector__title a {
    color: inherit;
}

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

@media (max-width: 768px) {
    .page-hero {
        padding: calc(var(--header-height) + 40px) 0 48px;
    }

    .page-section {
        padding: 56px 0;
    }

    .page-hero__lead {
        font-size: 16px;
    }
}
