/* ============================================
   Starlink Page Styles — Space-themed redesign
   ============================================ */

:root {
    --sl-dark: #0a0e1a;
    --sl-dark-2: #111827;
    --sl-accent: #3b82f6;
    --sl-accent-light: #60a5fa;
    --sl-accent-glow: rgba(59, 130, 246, 0.3);
    --sl-text: #1a1a1a;
    --sl-text-light: #6b7280;
    --sl-border: #e5e7eb;
    --sl-bg: #ffffff;
    --sl-bg-gray: #f8fafc;
    --sl-bg-dark: #0f172a;
    --sl-green: #10b981;
    --sl-radius: 12px;
    --sl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset for this page ---- */
.container-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(7) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(8) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(9) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(10) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(11) { transition-delay: 0.62s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(12) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(13) { transition-delay: 0.66s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(14) { transition-delay: 0.68s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(15) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.stagger-children.revealed > *:nth-child(16) { transition-delay: 0.72s; opacity: 1; transform: translateY(0); }

/* =====================
   HERO — DARK SPACE
   ===================== */
.hero-minimal {
    position: relative;
    padding: 0;
    margin-top: 0;
    background: var(--sl-dark);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#starfield-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-minimal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--sl-bg), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-minimal .container-minimal {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.hero-content-minimal {
    max-width: 800px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--sl-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.08);
    animation: hero-fade-in 0.8s ease forwards;
    opacity: 0;
}

.hero-minimal h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: hero-fade-in 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 560px;
    line-height: 1.7;
    animation: hero-fade-in 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: hero-fade-in 0.8s ease 0.45s forwards;
    opacity: 0;
}

.metric { text-align: left; }

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, var(--sl-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: hero-fade-in 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--sl-accent);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--sl-transition);
    box-shadow: 0 4px 20px var(--sl-accent-glow);
}
.btn-primary-minimal:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--sl-accent-glow);
}

.btn-secondary-minimal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--sl-transition);
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.05);
}
.btn-secondary-minimal:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes hero-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================
   SECTIONS — GENERAL
   ===================== */
.section-minimal {
    padding: 5rem 0;
    position: relative;
}

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

.section-title-minimal {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--sl-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--sl-text-light);
    margin: -0.5rem auto 3rem;
    max-width: 600px;
}

/* =====================
   CONNECTION OPTIONS
   ===================== */
.connection-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.connection-option-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 2rem 1.5rem;
    transition: all var(--sl-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.connection-option-card:hover {
    transform: translateY(-6px);
    border-color: var(--sl-accent);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.1);
}
.connection-option-card.featured {
    border-color: var(--sl-accent);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.08);
}

.option-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sl-accent), #6366f1);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.option-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    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-bottom: 1.25rem;
}
.option-icon svg {
    width: 26px;
    height: 26px;
    color: var(--sl-accent);
}

.option-distance {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sl-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
}

.option-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.option-description {
    font-size: 0.875rem;
    color: var(--sl-text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.option-features {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    flex: 1;
}
.option-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 0.85rem;
    color: var(--sl-text);
    position: relative;
    line-height: 1.5;
}
.option-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sl-green);
}

.btn-option {
    display: block;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1.5px solid var(--sl-accent);
    color: var(--sl-accent);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    transition: all var(--sl-transition);
    margin-top: auto;
}
.btn-option:hover {
    background: var(--sl-accent);
    color: white;
}
.btn-option.primary {
    background: var(--sl-accent);
    color: white;
}
.btn-option.primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.connection-note {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.note-icon-inline { flex-shrink: 0; }
.note-icon-inline svg { width: 22px; height: 22px; color: #f59e0b; }
.connection-note p { margin: 0; font-size: 0.9rem; color: var(--sl-text); line-height: 1.7; }

/* =====================
   CALCULATOR
   ===================== */
.calculator-section {
    background: var(--sl-bg);
    padding: 5rem 0;
}

.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--sl-bg-gray);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--sl-border);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.calculator-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--sl-text);
}
.calculator-header p {
    font-size: 1rem;
    color: var(--sl-text-light);
}

.calculator-inputs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sl-border);
}

.calculator-content { display: block; }

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.input-group label {
    font-weight: 600;
    color: var(--sl-text);
    font-size: 0.875rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.input-wrapper input[type="number"] {
    flex: 1;
    padding: 0.75rem 1rem;
    padding-right: 3.5rem;
    border: 1.5px solid var(--sl-border);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sl-text);
    background: var(--sl-bg);
    transition: all var(--sl-transition);
}
.input-wrapper input[type="number"]:focus {
    outline: none;
    border-color: var(--sl-accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.input-suffix {
    position: absolute;
    right: 1rem;
    font-weight: 600;
    color: var(--sl-text-light);
    font-size: 0.9rem;
}

.range-slider {
    flex: 1;
    height: 6px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--sl-accent) 0%, var(--sl-accent) 0%, #e5e7eb 0%, #e5e7eb 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sl-accent);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    transition: all 0.2s;
}
.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.5);
}
.range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sl-accent);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.range-value {
    min-width: 36px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sl-accent);
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.calculator-results > .comparison-with-image {
    grid-column: 1 / -1;
}

.result-card {
    background: var(--sl-bg);
    border-radius: var(--sl-radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--sl-border);
}
.result-primary {
    border-color: var(--sl-accent);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}
.result-secondary {
    border-color: var(--sl-green);
    background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%);
}
.result-label { font-size: 0.85rem; color: var(--sl-text-light); margin-bottom: 0.5rem; font-weight: 500; }
.result-value { font-size: 2.25rem; font-weight: 700; color: var(--sl-accent); margin-bottom: 0.25rem; }
.result-secondary .result-value { color: var(--sl-green); }
.result-description { font-size: 0.8rem; color: var(--sl-text-light); }

.result-info {
    background: var(--sl-bg);
    border-radius: var(--sl-radius);
    padding: 1.5rem;
    border: 1px solid var(--sl-border);
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--sl-bg-gray);
}
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 0.9rem; color: var(--sl-text-light); }
.info-value { font-size: 0.95rem; font-weight: 600; color: var(--sl-text); }

.comparison-with-image {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}
.comparison-image {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sl-bg-gray), var(--sl-bg));
    border-radius: var(--sl-radius);
    padding: 1.5rem;
    border: 1px solid var(--sl-border);
}
.comparison-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.comparison-card {
    flex: 1;
    background: var(--sl-bg);
    border-radius: var(--sl-radius);
    padding: 1.5rem;
    border: 1px solid var(--sl-border);
}
.comparison-card-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--sl-bg-gray);
}
.comparison-card-header h4 { margin: 0; font-size: 1rem; font-weight: 600; color: var(--sl-text); }

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.comparison-item {
    background: var(--sl-bg-gray);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: center;
}
.comparison-item.highlight {
    background: linear-gradient(135deg, #eff6ff, #e0f2fe);
    border: 1.5px solid var(--sl-accent);
}
.comparison-item-label { font-size: 0.8rem; color: var(--sl-text-light); margin-bottom: 0.5rem; font-weight: 500; }
.comparison-item-value { font-size: 1.35rem; font-weight: 700; color: var(--sl-text); }
.comparison-item.highlight .comparison-item-value { color: var(--sl-accent); }

.comparison-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sl-bg-gray);
}
.stat-item { text-align: center; }
.stat-label { font-size: 0.85rem; color: var(--sl-text-light); margin-bottom: 0.35rem; font-weight: 500; }
.stat-value { font-size: 1.2rem; font-weight: 700; color: #dc3545; }
.stat-item.positive .stat-value { color: var(--sl-green); }

.calculator-note {
    background: #eff6ff;
    border-left: 4px solid var(--sl-accent);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
}
.calculator-note p { margin: 0; font-size: 0.9rem; color: #1e40af; line-height: 1.6; }
.calculator-note strong { color: #1e3a8a; }

/* =====================
   PRICING
   ===================== */
.pricing-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.price-card {
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 2.5rem 2rem;
    background: var(--sl-bg);
    position: relative;
    transition: all var(--sl-transition);
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sl-border);
    transition: background var(--sl-transition);
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.price-card:hover::before {
    background: var(--sl-accent);
}

.price-featured {
    border-color: var(--sl-accent);
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.1);
}
.price-featured::before {
    background: linear-gradient(90deg, var(--sl-accent), #6366f1) !important;
    height: 3px;
}

.price-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sl-accent), #6366f1);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--sl-text);
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}
.price-amount {
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--sl-text);
}
.price-currency {
    font-size: 1.1rem;
    color: var(--sl-text-light);
    font-weight: 500;
}

.price-note {
    font-size: 0.8rem;
    color: var(--sl-text-light);
    margin-bottom: 1.5rem;
}

.price-monthly {
    padding: 0.875rem 1rem;
    background: var(--sl-bg-gray);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    color: var(--sl-accent);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}
.price-features li {
    padding: 0.65rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--sl-bg-gray);
    font-size: 0.875rem;
    position: relative;
    color: var(--sl-text);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sl-green);
}

.btn-price {
    display: block;
    width: 100%;
    padding: 0.875rem;
    text-align: center;
    background: var(--sl-dark);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--sl-transition);
}
.btn-price:hover {
    background: var(--sl-accent);
    transform: translateY(-1px);
}

.pricing-notes {
    text-align: center;
    color: var(--sl-text-light);
    font-size: 0.85rem;
}
.pricing-notes p { margin: 0.35rem 0; }

/* =====================
   EQUIPMENT
   ===================== */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.equipment-card {
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: all var(--sl-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--sl-accent);
}
.equipment-card.featured {
    border-color: var(--sl-accent);
}

.equipment-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--sl-accent);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 10;
}
.equipment-badge.secondary {
    background: var(--sl-text-light);
}

.equipment-image {
    width: 100%;
    height: 190px;
    background: var(--sl-bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}
.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.equipment-card:hover .equipment-image img {
    transform: scale(1.07);
}

.equipment-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.equipment-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--sl-text);
}

.equipment-desc {
    font-size: 0.8rem;
    color: var(--sl-text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.equipment-specs {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    flex: 1;
}
.equipment-specs li {
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--sl-bg-gray);
    font-size: 0.8rem;
    color: var(--sl-text);
    display: flex;
    justify-content: space-between;
}
.equipment-specs li:last-child { border-bottom: none; }
.equipment-specs li span { color: var(--sl-text-light); font-weight: 500; }

.equipment-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    background: #ecfdf5;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sl-green);
}
.equipment-delivery.secondary {
    background: #fffbeb;
    color: #b45309;
}
.equipment-delivery svg { flex-shrink: 0; }

.equipment-note {
    display: flex;
    gap: 1.25rem;
    align-items: start;
    background: #eff6ff;
    border-left: 4px solid var(--sl-accent);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    max-width: 900px;
    margin: 0 auto;
}
.note-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--sl-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.note-icon svg { width: 22px; height: 22px; }
.note-content { flex: 1; }
.note-content h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--sl-text); }
.note-content p { font-size: 0.875rem; color: var(--sl-text); line-height: 1.7; margin: 0; }
.note-content strong { color: var(--sl-accent); }

/* =====================
   PROCESS STEPS (redesigned)
   ===================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Subtle connecting line across card tops */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(12.5% + 1.5rem);
    right: calc(12.5% + 1.5rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sl-accent), transparent);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.process-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--sl-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
    transition: all var(--sl-transition);
    overflow: hidden;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sl-accent), #6366f1);
    opacity: 0;
    transition: opacity var(--sl-transition);
}

.process-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}
.process-card:hover::after { opacity: 1; }

.process-card-featured {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}
.process-card-featured::after { opacity: 1; }

.process-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.process-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--sl-transition);
}
.process-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: var(--sl-accent);
}
.process-card:hover .process-icon-wrap {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
}

.process-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sl-accent);
    opacity: 0.15;
    line-height: 1;
    letter-spacing: -0.02em;
}

.process-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--sl-border);
    font-size: 0.7rem;
    color: var(--sl-text-light);
    width: fit-content;
}
.process-time-badge svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}
.process-time-badge.accent {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--sl-accent);
}

.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sl-text);
    margin: 0;
}
.process-card > p {
    color: var(--sl-text-light);
    font-size: 0.83rem;
    line-height: 1.6;
    margin: 0;
}

.process-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.process-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: var(--sl-text-light);
    line-height: 1.45;
}
.process-details li::before {
    content: '→';
    color: var(--sl-accent);
    flex-shrink: 0;
    font-size: 0.72rem;
    margin-top: 0.08em;
}

.process-card-footer {
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--sl-border);
}
.process-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    background: var(--sl-accent);
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--sl-transition);
    text-align: center;
}
.process-action-btn:hover {
    background: #1d6dd8;
    transform: translateY(-1px);
}
.process-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--sl-border);
    font-size: 0.73rem;
    color: var(--sl-text-light);
    font-weight: 500;
}
.process-tag.accent {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--sl-accent);
}

/* Guarantee strip */
.process-guarantees {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 12px;
}
.process-guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    color: var(--sl-text-light);
}
.process-guarantee-item svg {
    width: 15px;
    height: 15px;
    color: #22c55e;
    flex-shrink: 0;
}

/* =====================
   CASE STUDIES
   ===================== */
.cases-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.case-minimal {
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 2rem;
    background: var(--sl-bg);
    transition: all var(--sl-transition);
    position: relative;
    overflow: hidden;
}
.case-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sl-accent), var(--sl-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.case-minimal:hover::before { transform: scaleX(1); }
.case-minimal:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.case-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}
.case-header-minimal h3 {
    font-size: 1.15rem;
    font-weight: 700;
}
.case-location {
    font-size: 0.7rem;
    color: var(--sl-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    background: var(--sl-bg-gray);
    border-radius: 4px;
}

.case-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--sl-border);
}
.case-stat { text-align: center; }
.stat-change {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--sl-accent);
}
.stat-desc {
    font-size: 0.7rem;
    color: var(--sl-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-result {
    color: var(--sl-text-light);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* =====================
   FAQ (redesigned)
   ===================== */

/* Layout: sidebar + content */
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left sidebar */
.faq-sidebar {
    position: sticky;
    top: 2rem;
}
.faq-sidebar-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--sl-text);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.faq-sidebar-sub {
    font-size: 0.88rem;
    color: var(--sl-text-light);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}
.faq-sidebar-stats {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.faq-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.faq-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--sl-accent);
    line-height: 1;
}
.faq-stat-label {
    font-size: 0.72rem;
    color: var(--sl-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.faq-sidebar-cta-label {
    font-size: 0.8rem;
    color: var(--sl-text-light);
    margin-bottom: 0.6rem;
}
.faq-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    color: var(--sl-accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--sl-transition);
}
.faq-call-btn:hover {
    background: rgba(59, 130, 246, 0.18);
    border-color: var(--sl-accent);
}
.faq-call-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Right: FAQ accordion items */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--sl-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--sl-transition);
}
.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}
.faq-item[open] {
    border-color: rgba(59, 130, 246, 0.35);
    background: rgba(59, 130, 246, 0.03);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
    color: var(--sl-text);
    transition: color var(--sl-transition);
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--sl-accent); }

/* Category icon */
.faq-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--sl-transition);
}
.faq-ico svg { width: 17px; height: 17px; }

.faq-ico-pay     { background: rgba(34, 197, 94, 0.1);  border: 1px solid rgba(34, 197, 94, 0.2);  }
.faq-ico-pay svg { color: #22c55e; }
.faq-ico-price   { background: rgba(251, 191, 36, 0.1); border: 1px solid rgba(251, 191, 36, 0.2); }
.faq-ico-price svg { color: #fbbf24; }
.faq-ico-share   { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.faq-ico-share svg { color: var(--sl-accent); }
.faq-ico-weather { background: rgba(99, 102, 241, 0.1); border: 1px solid rgba(99, 102, 241, 0.2); }
.faq-ico-weather svg { color: #6366f1; }
.faq-ico-doc     { background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.2); }
.faq-ico-doc svg { color: #a855f7; }
.faq-ico-clock   { background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2); }
.faq-ico-clock svg { color: #f97316; }
.faq-ico-router  { background: rgba(20, 184, 166, 0.1); border: 1px solid rgba(20, 184, 166, 0.2); }
.faq-ico-router svg { color: #14b8a6; }
.faq-ico-unlimited { background: rgba(236, 72, 153, 0.1); border: 1px solid rgba(236, 72, 153, 0.2); }
.faq-ico-unlimited svg { color: #ec4899; }

.faq-item[open] .faq-ico {
    opacity: 0.8;
}

/* Question text */
.faq-item summary > span {
    flex: 1;
    line-height: 1.45;
}

/* Toggle arrow */
.faq-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sl-text-light);
    transition: transform 0.25s ease, color 0.25s ease;
}
.faq-arrow svg { width: 16px; height: 16px; }
.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--sl-accent);
}

/* Answer */
.faq-item p {
    margin: 0;
    padding: 0 1.1rem 1.1rem calc(1.1rem + 36px + 0.85rem);
    color: var(--sl-text-light);
    line-height: 1.75;
    font-size: 0.875rem;
    animation: faq-open 0.25s ease;
}

@keyframes faq-open {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.cta-starlink-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cta-starlink-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.cta-starlink-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-starlink-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.cta-starlink-actions .btn-primary-minimal {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}
.cta-starlink-actions .btn-secondary-minimal {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

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

/* =====================
   SATELLITES BACKGROUND
   ===================== */
.satellites-background { display: none; }

/* =====================
   RESPONSIVE — TABLET
   ===================== */
@media (max-width: 1024px) {
    .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
    .faq-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: flex-start; }
    .faq-sidebar-title { width: 100%; margin-bottom: 0; }
    .faq-sidebar-sub { width: 100%; margin-bottom: 0; }
    .faq-sidebar-stats { margin-bottom: 0; }
    .faq-sidebar-cta-label { display: none; }

    .connection-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-minimal {
        grid-template-columns: repeat(3, 1fr);
    }
    .cases-minimal {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline::before { display: none; }
    .process-guarantees {
        grid-template-columns: repeat(2, 1fr);
    }

    .calculator-inputs-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .calculator-results {
        grid-template-columns: 1fr;
    }
    .comparison-image { width: 200px; }

    .hero-metrics { gap: 2.5rem; }
}

/* =====================
   RESPONSIVE — MOBILE LARGE
   ===================== */
@media (max-width: 768px) {
    .container-minimal { padding: 0 1rem; }
    .section-minimal { padding: 3rem 0; }

    /* Hero */
    .hero-minimal { min-height: auto; }
    .hero-minimal .container-minimal {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
    .hero-minimal h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }
    .hero-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    .hero-metrics {
        gap: 0;
        margin-bottom: 2rem;
        padding: 0;
        border: none;
        flex-direction: column;
    }
    .metric {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .metric:last-child { border-bottom: none; }
    .metric-value { font-size: 1.75rem; }
    .metric-label { font-size: 0.75rem; }
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    .btn-primary-minimal, .btn-secondary-minimal {
        text-align: center;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Section titles */
    .section-title-minimal {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin: 0 auto 2rem;
    }

    /* Connection Options */
    .connection-options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .connection-option-card {
        padding: 1.5rem 1.25rem;
    }
    .connection-option-card.featured {
        margin-top: 0.5rem;
    }
    .option-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    .option-icon svg { width: 22px; height: 22px; }
    .option-distance { font-size: 0.75rem; }
    .option-title { font-size: 1.1rem; margin-bottom: 0.35rem; }
    .option-description { font-size: 0.85rem; margin-bottom: 1rem; }
    .option-features { margin-bottom: 1rem; }
    .option-features li { padding: 0.4rem 0 0.4rem 1.35rem; font-size: 0.8rem; }
    .option-features li::before { top: 0.65rem; width: 6px; height: 6px; }
    .btn-option {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    .option-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        top: -10px;
    }
    .connection-note {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    .connection-note p { font-size: 0.85rem; line-height: 1.6; }
    .note-icon-inline svg { width: 18px; height: 18px; }

    /* Calculator */
    .calculator-section { padding: 3rem 0; }
    .calculator-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 14px;
    }
    .calculator-header { margin-bottom: 1.5rem; }
    .calculator-header h2 { font-size: 1.25rem; }
    .calculator-header p { font-size: 0.875rem; }
    .input-group label { font-size: 0.8rem; }
    .input-wrapper input[type="number"] {
        padding: 0.625rem 0.875rem;
        padding-right: 3rem;
        font-size: 0.9rem;
    }
    .range-value { font-size: 1.1rem; }
    .result-card { padding: 1.25rem; }
    .result-value { font-size: 1.75rem; }
    .result-label { font-size: 0.8rem; }
    .comparison-with-image { flex-direction: column; }
    .comparison-image {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    .comparison-card { padding: 1.25rem; }
    .comparison-card-header h4 { font-size: 0.9rem; }
    .comparison-item { padding: 1rem; }
    .comparison-item-label { font-size: 0.75rem; }
    .comparison-item-value { font-size: 1.15rem; }
    .comparison-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .comparison-stats { grid-template-columns: 1fr; gap: 0.75rem; }
    .stat-label { font-size: 0.8rem; }
    .stat-value { font-size: 1.05rem; }
    .calculator-note { padding: 1rem 1.25rem; margin-top: 1.25rem; }
    .calculator-note p { font-size: 0.85rem; }

    /* Pricing */
    .pricing-minimal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .price-card {
        padding: 1.75rem 1.25rem;
    }
    .price-featured { padding-top: 2.25rem; }
    .price-header h3 { font-size: 1.1rem; margin-bottom: 1rem; }
    .price-amount { font-size: 2.25rem; }
    .price-currency { font-size: 1rem; }
    .price-note { font-size: 0.75rem; margin-bottom: 1.25rem; }
    .price-monthly {
        padding: 0.75rem;
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    .price-features { margin-bottom: 1.5rem; }
    .price-features li { padding: 0.5rem 0 0.5rem 1.35rem; font-size: 0.825rem; }
    .price-features li::before { top: 0.75rem; width: 6px; height: 6px; }
    .btn-price {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    .price-badge { font-size: 0.65rem; padding: 0.3rem 0.75rem; }
    .pricing-notes { font-size: 0.8rem; }
    .pricing-notes p { margin: 0.25rem 0; }

    /* Equipment */
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .equipment-card {
        flex-direction: row;
        overflow: hidden;
    }
    .equipment-image {
        width: 120px;
        min-width: 120px;
        height: auto;
        padding: 1rem;
    }
    .equipment-content {
        padding: 1.25rem;
    }
    .equipment-content h3 { font-size: 1rem; }
    .equipment-desc { font-size: 0.75rem; margin-bottom: 0.75rem; }
    .equipment-specs li { font-size: 0.75rem; padding: 0.35rem 0; }
    .equipment-delivery { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
    .equipment-badge {
        top: 8px;
        right: 8px;
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    .equipment-note {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    .note-icon { width: 36px; height: 36px; }
    .note-icon svg { width: 18px; height: 18px; }
    .note-content h4 { font-size: 0.9rem; }
    .note-content p { font-size: 0.8rem; }

    /* Process */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .process-timeline::before { display: none; }
    .process-card { padding: 1.25rem; }
    .process-num { font-size: 2rem; }
    .process-card h3 { font-size: 0.95rem; }
    .process-card > p { font-size: 0.8rem; }
    .process-details li { font-size: 0.75rem; }
    .process-guarantees {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    .process-guarantee-item { font-size: 0.75rem; }

    /* Cases */
    .cases-minimal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .case-minimal { padding: 1.25rem; }
    .case-header-minimal { margin-bottom: 1rem; }
    .case-header-minimal h3 { font-size: 1rem; }
    .case-location { font-size: 0.65rem; padding: 0.15rem 0.5rem; }
    .case-stats { margin-bottom: 1rem; padding-bottom: 1rem; }
    .stat-change { font-size: 1.35rem; }
    .stat-desc { font-size: 0.65rem; }
    .case-result { font-size: 0.8rem; line-height: 1.55; }

    /* FAQ */
    .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
    .faq-sidebar { position: static; }
    .faq-sidebar-title { font-size: 1.5rem; }
    .faq-item summary { padding: 0.9rem 1rem; font-size: 0.85rem; gap: 0.7rem; }
    .faq-item p { font-size: 0.82rem; padding: 0 1rem 1rem calc(1rem + 36px + 0.7rem); }
    .faq-ico { width: 32px; height: 32px; border-radius: 8px; }
    .faq-ico svg { width: 15px; height: 15px; }

    /* CTA */
    .cta-starlink { padding: 3rem 0; }
    .cta-starlink-content h2 { margin-bottom: 0.75rem; }
    .cta-starlink-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .cta-starlink-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .cta-starlink-actions .btn-primary-minimal,
    .cta-starlink-actions .btn-secondary-minimal {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    .cta-starlink-note { font-size: 0.75rem; }
}

/* =====================
   RESPONSIVE — SMALL MOBILE
   ===================== */
@media (max-width: 420px) {
    .container-minimal { padding: 0 0.875rem; }
    .section-minimal { padding: 2.5rem 0; }

    .hero-minimal .container-minimal {
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }
    .hero-minimal h1 { font-size: 1.6rem; }
    .hero-description { font-size: 0.9rem; }

    .section-title-minimal { font-size: 1.3rem; }
    .section-subtitle { font-size: 0.875rem; margin-bottom: 1.5rem; }

    .connection-option-card { padding: 1.25rem 1rem; }
    .option-title { font-size: 1rem; }
    .option-description { font-size: 0.8rem; }

    .equipment-card { flex-direction: column; }
    .equipment-image {
        width: 100%;
        height: 150px;
        min-width: auto;
    }

    .price-card { padding: 1.5rem 1rem; }
    .price-amount { font-size: 2rem; }

    .calculator-wrapper { padding: 1.25rem 0.875rem; }
    .calculator-header h2 { font-size: 1.15rem; }

    .cta-starlink-content h2 { font-size: 1.35rem; }
    .cta-starlink-content p { font-size: 0.875rem; }
}

/* =====================
   HOVER / REDUCED MOTION
   ===================== */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .stagger-children > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-label, .hero-minimal h1, .hero-description,
    .hero-metrics, .hero-cta {
        opacity: 1;
        animation: none;
    }
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* ---- Buy Starlink Banner ---- */
.kupit-banner-wrap {
    padding: 0 0 1.5rem;
    background: var(--sl-bg);
}

.kupit-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .kupit-banner-grid { grid-template-columns: 1fr; }
}

.kupit-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.kupit-banner:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    transform: translateY(-1px);
}

.kupit-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sl-accent), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kupit-banner-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.kupit-banner-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.kupit-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.kupit-banner-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sl-text);
}

.kupit-banner-sub {
    font-size: 0.8rem;
    color: var(--sl-text-light);
}

.kupit-banner-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sl-accent);
    flex-shrink: 0;
    white-space: nowrap;
}

.kupit-banner-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.kupit-banner:hover .kupit-banner-cta svg {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .kupit-banner { flex-wrap: wrap; gap: 0.875rem; }
    .kupit-banner-cta { width: 100%; justify-content: flex-end; }
    .kupit-banner-title { font-size: 0.9rem; }
}

/* =====================
   BUSINESS SOLUTIONS GRID
   ===================== */
.biz-section {
    background: var(--sl-bg-gray);
}

.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

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

.biz-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--sl-bg);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    text-decoration: none;
    color: var(--sl-text);
    transition: border-color var(--sl-transition), box-shadow var(--sl-transition), transform var(--sl-transition);
    cursor: pointer;
}

.biz-card:hover {
    border-color: var(--sl-accent);
    box-shadow: 0 4px 24px var(--sl-accent-glow);
    transform: translateY(-2px);
    color: var(--sl-text);
}

.biz-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--sl-transition);
}

.biz-card:hover .biz-card-icon {
    background: rgba(59, 130, 246, 0.15);
}

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

.biz-card-body {
    flex: 1;
    min-width: 0;
}

.biz-card-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--sl-text);
    line-height: 1.3;
}

.biz-card-body p {
    font-size: 0.8rem;
    color: var(--sl-text-light);
    margin: 0;
    line-height: 1.5;
}

.biz-card-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    transition: opacity var(--sl-transition), transform var(--sl-transition);
}

.biz-card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--sl-accent);
}

.biz-card:hover .biz-card-arrow {
    opacity: 1;
    transform: translateX(3px);
}
