/* ============================================
   Starlink Subpages — Shared Styles
   Pages: nearby-houses, multiple-streets,
          neighboring-village, remote-areas
   ============================================ */

/* ---- Breadcrumb ---- */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}
.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-nav a:hover { color: var(--sl-accent-light); }
.breadcrumb-nav span:not(:last-child) { color: rgba(255, 255, 255, 0.3); }
.breadcrumb-nav span:last-child { color: rgba(255, 255, 255, 0.8); }

/* ---- Hero ---- */
.solution-hero {
    background: linear-gradient(135deg, #020617 0%, #0c1a3a 40%, #0f172a 70%, #030a1a 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Animated grid pattern */
.solution-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: sh-grid-drift 20s linear infinite;
    pointer-events: none;
}

/* Bottom fade */
.solution-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--sl-bg), transparent);
    pointer-events: none;
    z-index: 2;
}

/* Glowing orbs */
.solution-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.sh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: sh-orb-pulse 8s ease-in-out infinite;
}
.sh-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
}
.sh-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
    bottom: -10%;
    left: -8%;
    animation-delay: 3s;
}
.sh-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent 70%);
    top: 40%;
    right: 30%;
    animation-delay: 5s;
}

/* Floating particles */
.sh-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.sh-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    animation: sh-particle-float 12s ease-in-out infinite;
}
.sh-particle::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(3px);
}
.sh-particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 10s; animation-delay: 0s; }
.sh-particle:nth-child(2) { left: 25%; top: 60%; animation-duration: 14s; animation-delay: 2s; width: 2px; height: 2px; }
.sh-particle:nth-child(3) { left: 45%; top: 15%; animation-duration: 11s; animation-delay: 4s; }
.sh-particle:nth-child(4) { left: 65%; top: 45%; animation-duration: 13s; animation-delay: 1s; width: 4px; height: 4px; }
.sh-particle:nth-child(5) { left: 80%; top: 25%; animation-duration: 9s; animation-delay: 3s; width: 2px; height: 2px; }
.sh-particle:nth-child(6) { left: 90%; top: 70%; animation-duration: 15s; animation-delay: 5s; }
.sh-particle:nth-child(7) { left: 35%; top: 80%; animation-duration: 12s; animation-delay: 2.5s; width: 2px; height: 2px; }
.sh-particle:nth-child(8) { left: 55%; top: 75%; animation-duration: 11s; animation-delay: 6s; }

/* Signal wave rings */
.sh-signal {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.08);
    animation: sh-signal-expand 6s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}
.sh-signal-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}
.sh-signal-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}
.sh-signal-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    animation-delay: 4s;
}

/* Connecting line */
.sh-connect-line {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1) 20%, rgba(99, 102, 241, 0.15) 50%, rgba(59, 130, 246, 0.1) 80%, transparent);
    animation: sh-line-shimmer 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Keyframes */
@keyframes sh-grid-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes sh-orb-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes sh-particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(15px, -25px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-10px, -40px) scale(0.8); opacity: 0.5; }
    75% { transform: translate(20px, -15px) scale(1.1); opacity: 0.9; }
}

@keyframes sh-signal-expand {
    0% { transform: scale(0.3); opacity: 0.6; border-color: rgba(59, 130, 246, 0.2); }
    100% { transform: scale(3); opacity: 0; border-color: rgba(59, 130, 246, 0); }
}

@keyframes sh-line-shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}
.solution-hero .container-minimal {
    position: relative;
    z-index: 3;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.solution-hero-content {
    max-width: 720px;
}

/* Hero entrance animation */
@keyframes sh-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.solution-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--sl-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.1);
    margin-bottom: 1.25rem;
    animation: sh-fade-in 0.7s ease forwards;
    opacity: 0;
}
.solution-badge.popular {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
}
.solution-badge.premium {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
    color: #c4b5fd;
}

.solution-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1rem;
    animation: sh-fade-in 0.7s ease 0.12s forwards;
    opacity: 0;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: sh-fade-in 0.7s ease 0.24s forwards;
    opacity: 0;
}

/* ---- Hero Metrics ---- */
.solution-metrics {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    animation: sh-fade-in 0.7s ease 0.36s forwards;
    opacity: 0;
}
.solution-metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.metric-icon svg {
    width: 20px;
    height: 20px;
    color: var(--sl-accent-light);
}
.metric-info .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, var(--sl-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.metric-info .metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- Hero CTA ---- */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    animation: sh-fade-in 0.7s ease 0.48s forwards;
    opacity: 0;
}

/* ---- Section Titles (inherits from starlink-styles.css) ---- */

/* ---- How It Works Grid ---- */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.how-step {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}
.how-step:hover {
    border-color: var(--sl-accent);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
    transform: translateY(-4px);
}
.step-visual {
    margin-bottom: 1.25rem;
}
.step-number-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sl-accent), #6366f1);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
}
.how-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 0.5rem;
}
.how-step p {
    font-size: 0.85rem;
    color: var(--sl-text-light);
    line-height: 1.65;
}

/* ---- Info Callout ---- */
.info-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #eff6ff;
    border-left: 4px solid var(--sl-accent);
    border-radius: 0 var(--sl-radius) var(--sl-radius) 0;
    padding: 1.25rem 1.5rem;
}
.callout-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sl-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.callout-icon svg { width: 20px; height: 20px; }
.callout-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 0.25rem;
}
.callout-content p {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* ---- What's Included / Services List ---- */
.services-included {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.service-include-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}
.service-include-card:hover {
    border-color: var(--sl-accent);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.06);
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-icon svg { width: 22px; height: 22px; color: var(--sl-accent); }
.service-include-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 0.35rem;
}
.service-include-card p {
    font-size: 0.85rem;
    color: var(--sl-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ---- Use Cases Grid ---- */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.use-case-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--sl-accent);
}
.use-case-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(99, 102, 241, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.use-case-icon svg { width: 28px; height: 28px; color: var(--sl-accent); }
.use-case-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 0.5rem;
}
.use-case-card p {
    font-size: 0.85rem;
    color: var(--sl-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ---- Advantages List ---- */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--sl-bg);
    border-radius: 10px;
    border: 1px solid var(--sl-border);
}
.advantage-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ecfdf5;
    color: var(--sl-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.advantage-check svg { width: 14px; height: 14px; }
.advantage-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sl-text);
    margin-bottom: 0.15rem;
}
.advantage-item p {
    font-size: 0.8rem;
    color: var(--sl-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ---- CTA Section ---- */
.section-dark {
    background: linear-gradient(135deg, var(--sl-dark) 0%, #1e293b 50%, var(--sl-dark) 100%);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.cta-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.cta-actions .btn-primary-minimal.large,
.cta-actions .btn-secondary-minimal.large {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.cta-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---- Tech Specs List ---- */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.tech-spec-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.tech-spec-card:hover {
    border-color: var(--sl-accent);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.06);
}
.tech-spec-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--sl-accent);
    margin-bottom: 0.35rem;
    line-height: 1;
}
.tech-spec-value span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--sl-text-light);
}
.tech-spec-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 0.35rem;
}
.tech-spec-card p {
    font-size: 0.8rem;
    color: var(--sl-text-light);
    line-height: 1.5;
    margin: 0;
}

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (max-width: 1024px) {
    .how-it-works-grid { grid-template-columns: repeat(2, 1fr); }
    .use-cases-grid { grid-template-columns: repeat(3, 1fr); }
    .tech-specs { grid-template-columns: repeat(3, 1fr); }
    .solution-metrics { gap: 2rem; }
}

/* =====================
   RESPONSIVE — MOBILE
   ===================== */
@media (max-width: 768px) {
    .solution-hero .container-minimal {
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }
    .breadcrumb-nav {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    .solution-hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }
    .hero-lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .solution-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
        margin-bottom: 1rem;
    }
    .solution-metrics {
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: none;
        margin-bottom: 2rem;
    }
    .solution-metric {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .solution-metric:last-child { border-bottom: none; }
    .metric-icon { width: 36px; height: 36px; }
    .metric-icon svg { width: 18px; height: 18px; }
    .metric-info .metric-value { font-size: 1.25rem; }
    .metric-info .metric-label { font-size: 0.7rem; }
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-cta-buttons .btn-primary-minimal,
    .hero-cta-buttons .btn-secondary-minimal {
        text-align: center;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .how-step {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        text-align: left;
        padding: 1.25rem;
    }
    .step-visual { margin-bottom: 0; flex-shrink: 0; }
    .step-number-large { width: 40px; height: 40px; font-size: 1rem; }
    .how-step h3 { font-size: 0.95rem; }
    .how-step p { font-size: 0.8rem; }

    .info-callout {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    .callout-icon { width: 36px; height: 36px; }
    .callout-icon svg { width: 18px; height: 18px; }
    .callout-content h4 { font-size: 0.9rem; }
    .callout-content p { font-size: 0.8rem; }

    .services-included {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .service-include-card { padding: 1.25rem; }
    .service-icon { width: 38px; height: 38px; }
    .service-icon svg { width: 20px; height: 20px; }
    .service-include-card h3 { font-size: 0.95rem; }
    .service-include-card p { font-size: 0.8rem; }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .use-case-card { padding: 1.5rem 1.25rem; }
    .use-case-icon { width: 48px; height: 48px; border-radius: 12px; }
    .use-case-icon svg { width: 24px; height: 24px; }

    .advantages-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .advantage-item { padding: 0.875rem; }
    .advantage-item h4 { font-size: 0.85rem; }
    .advantage-item p { font-size: 0.75rem; }

    .tech-specs { grid-template-columns: 1fr; gap: 1rem; }
    .tech-spec-card { padding: 1.25rem; }
    .tech-spec-value { font-size: 1.5rem; }
    .tech-spec-card h4 { font-size: 0.9rem; }

    .cta-box h2 { font-size: 1.35rem; }
    .cta-box p { font-size: 0.9rem; margin-bottom: 1.5rem; }
    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .cta-actions .btn-primary-minimal.large,
    .cta-actions .btn-secondary-minimal.large {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    .cta-note { font-size: 0.75rem; }
}

@media (max-width: 768px) {
    .sh-orb-3 { display: none; }
    .sh-signal-1, .sh-signal-2, .sh-signal-3 {
        top: 10%;
        right: 5%;
    }
    .sh-connect-line { top: 50%; }
}

@media (max-width: 420px) {
    .solution-hero .container-minimal {
        padding-top: 5rem;
        padding-bottom: 2.5rem;
    }
    .solution-hero h1 { font-size: 1.5rem; }
    .hero-lead { font-size: 0.9rem; }
    .how-step { padding: 1rem; }
    .cta-box h2 { font-size: 1.2rem; }
    .sh-signal-1, .sh-signal-2, .sh-signal-3 { display: none; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .sh-orb, .sh-particle, .sh-signal,
    .sh-connect-line, .solution-hero::before,
    .solution-badge, .solution-hero h1,
    .hero-lead, .solution-metrics, .hero-cta-buttons {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* ============================================
   KUPIT PAGE — Model Cards & FAQ Minimal
   ============================================ */

/* ---- Models Grid ---- */
.kupit-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.kupit-model-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.kupit-model-card:hover {
    border-color: var(--sl-accent);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

/* Featured card */
.kupit-model-featured {
    border-color: var(--sl-accent);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.12);
    transform: translateY(-6px);
}

.kupit-model-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.18);
}

/* Top badge (Популярный) */
.kupit-model-badge-top {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sl-accent), #6366f1);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 1rem;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
    z-index: 2;
}

/* Image area */
.kupit-model-image {
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    min-height: 180px;
}

.kupit-model-image img {
    max-width: 160px;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.kupit-model-card:hover .kupit-model-image img {
    transform: scale(1.05);
}

/* Body */
.kupit-model-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badge inside body */
.kupit-model-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.875rem;
    width: fit-content;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.kupit-model-badge.secondary {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.2);
}

.kupit-model-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.kupit-model-desc {
    font-size: 0.875rem;
    color: var(--sl-text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Specs list */
.kupit-model-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.kupit-model-specs li {
    font-size: 0.83rem;
    color: var(--sl-text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--sl-border);
}

.kupit-model-specs li:last-child {
    border-bottom: none;
}

.kupit-model-specs li span {
    color: var(--sl-text);
    font-weight: 600;
    flex-shrink: 0;
}

/* Price */
.kupit-model-price {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
    margin-top: auto;
}

.kupit-price-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sl-text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.kupit-model-featured .kupit-price-val {
    background: linear-gradient(135deg, var(--sl-accent) 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kupit-price-cur {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sl-text-light);
}

.kupit-monthly {
    font-size: 0.78rem;
    color: var(--sl-text-light);
    margin-bottom: 1.25rem;
}

/* Order button */
.kupit-order-btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(59, 130, 246, 0.08);
    color: var(--sl-accent);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.kupit-order-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--sl-accent);
}

.kupit-order-btn.primary {
    background: linear-gradient(135deg, var(--sl-accent) 0%, #6366f1 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.kupit-order-btn.primary:hover {
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.45);
    transform: translateY(-1px);
}

/* Installment note */
.kupit-installment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--sl-text-light);
    padding: 1rem;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 10px;
}

.kupit-installment svg {
    width: 18px;
    height: 18px;
    color: var(--sl-accent);
    flex-shrink: 0;
}

/* ---- FAQ Minimal (for kupit page) ---- */
.faq-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 820px;
    margin: 0 auto;
}

.faq-minimal .faq-item {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-minimal .faq-item[open] {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-minimal .faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sl-text);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
    user-select: none;
}

.faq-minimal .faq-item summary::-webkit-details-marker { display: none; }

.faq-minimal .faq-item summary::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s ease;
}

.faq-minimal .faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-minimal .faq-item p {
    padding: 0 1.4rem 1.1rem;
    font-size: 0.875rem;
    color: var(--sl-text-light);
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid var(--sl-border);
}

/* =====================
   KUPIT RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .kupit-models {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .kupit-model-featured {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .kupit-models {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .kupit-model-featured {
        transform: translateY(0);
        order: -1;
    }
    .kupit-model-featured:hover {
        transform: translateY(-4px);
    }
    .kupit-model-image {
        min-height: 140px;
        padding: 1.5rem;
    }
    .kupit-model-image img {
        max-width: 120px;
        max-height: 100px;
    }
    .kupit-model-body {
        padding: 1.25rem;
    }
    .kupit-price-val {
        font-size: 1.6rem;
    }
    .faq-minimal .faq-item summary {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }
    .faq-minimal .faq-item p {
        padding: 0 1.25rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 420px) {
    .kupit-model-body h3 { font-size: 1.2rem; }
    .kupit-price-val { font-size: 1.4rem; }
    .kupit-installment { font-size: 0.8rem; }
}

/* ============================================
   OPLATA PAGE — Payment Plans & Methods
   ============================================ */

/* Featured method card highlight */
.oplata-method-featured {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, var(--sl-bg) 100%);
}

/* ---- Plans Grid ---- */
.oplata-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.oplata-plan-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.oplata-plan-card:hover {
    border-color: var(--sl-accent);
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.08);
    transform: translateY(-3px);
}

.oplata-plan-featured {
    border-color: var(--sl-accent);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-4px);
}

.oplata-plan-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.15);
}

.oplata-plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.28rem 0.875rem;
    border-radius: 0 0 10px 10px;
    white-space: nowrap;
}

.oplata-plan-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.oplata-plan-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oplata-plan-icon svg {
    width: 20px;
    height: 20px;
    color: var(--sl-accent);
}

.oplata-plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sl-text);
    line-height: 1.2;
}

.oplata-plan-for {
    font-size: 0.78rem;
    color: var(--sl-text-light);
    margin-top: 0.1rem;
}

.oplata-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--sl-border);
}

.oplata-price-from {
    font-size: 0.85rem;
    color: var(--sl-text-light);
}

.oplata-price-val {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--sl-text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.oplata-plan-featured .oplata-price-val {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oplata-price-cur {
    font-size: 0.82rem;
    color: var(--sl-text-light);
    font-weight: 500;
}

.oplata-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.oplata-plan-features li {
    font-size: 0.85rem;
    color: var(--sl-text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.oplata-plan-features li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sl-accent);
    flex-shrink: 0;
}

/* =====================
   OPLATA RESPONSIVE
   ===================== */
@media (max-width: 768px) {
    .oplata-plans {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .oplata-plan-featured {
        transform: translateY(0);
        order: -1;
    }
    .oplata-plan-featured:hover {
        transform: translateY(-4px);
    }
    .oplata-price-val { font-size: 1.6rem; }
}

@media (max-width: 420px) {
    .oplata-plan-card { padding: 1.25rem; }
    .oplata-price-val { font-size: 1.4rem; }
}

/* =====================
   BUSINESS PAGES STYLES
   ===================== */

/* Pricing Grid — Modern Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--sl-accent);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.pricing-card:hover::before {
    background: linear-gradient(90deg, transparent, var(--sl-accent), transparent);
}

/* Featured Card */
.pricing-card.featured {
    border-color: var(--sl-accent);
    background: linear-gradient(165deg, rgba(59, 130, 246, 0.04) 0%, var(--sl-bg) 100%);
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.1);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #6366f1, #3b82f6, #06b6d4);
    height: 3px;
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
}

/* Badge */
.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 0.35rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    z-index: 2;
}

/* Header */
.pricing-header {
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--sl-border);
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--sl-text);
    letter-spacing: -0.02em;
}

.pricing-desc {
    color: var(--sl-text-light);
    font-size: 0.85rem;
    font-weight: 400;
}

/* Features List */
.pricing-features {
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
}

.feature-item {
    color: var(--sl-text-light);
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item:hover {
    background: rgba(59, 130, 246, 0.04);
}

/* Footer with Price */
.pricing-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sl-border);
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
}

.pricing-card.featured .price-tag {
    font-size: 2.5rem;
}

.pricing-footer .btn-primary-minimal,
.pricing-footer .btn-secondary-minimal {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
}

/* Services Included — Card Grid */
.services-included {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-include-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-include-card:hover {
    border-color: var(--sl-accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.08);
}

.service-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--sl-accent);
}

/* Responsive — Business Pages */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 16px;
    }

    .pricing-card.featured {
        max-width: 100%;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .price-tag {
        font-size: 1.8rem;
    }

    .pricing-card.featured .price-tag {
        font-size: 2rem;
    }

    .feature-item {
        font-size: 0.84rem;
        padding: 0.3rem 0.4rem;
    }

    .services-included {
        grid-template-columns: 1fr;
    }

    .service-include-card {
        padding: 1.25rem;
    }

    .faq-item summary {
        padding: 1rem 1.25rem;
        font-size: 0.92rem;
    }

    .faq-item p {
        padding: 0 1.25rem 1rem 3.5rem;
        font-size: 0.88rem;
    }
}
