/* SiteCountry Suspension Page — design system */
:root {
    --sc-navy: #0F2A47;
    --sc-navy-2: #0A1F36;
    --sc-cyan: #06B6D4;
    --sc-cyan-light: #CFFAFE;
    --sc-success: #10B981;
    --sc-warning: #F59E0B;
    --sc-danger: #EF4444;
    --sc-bg: #F8FAFC;
    --sc-card: #FFFFFF;
    --sc-text: #1F2937;
    --sc-muted: #6B7280;
    --sc-border: #E5E7EB;
    --sc-radius: 14px;
    --sc-shadow: 0 4px 32px rgba(15, 42, 71, 0.08);
    --sc-shadow-hover: 0 8px 24px rgba(15, 42, 71, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--sc-bg);
    color: var(--sc-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 64px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--sc-cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 640px;
    width: 100%;
}

.card {
    background: var(--sc-card);
    border-radius: var(--sc-radius);
    box-shadow: var(--sc-shadow);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

/* === Card Header === */
.card-header {
    padding: 48px 40px 36px;
    text-align: center;
    border-bottom: 1px solid var(--sc-border);
    position: relative;
}

.icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E0F2FE, #BAE6FD);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
}

.icon-wrap svg {
    width: 40px;
    height: 40px;
    color: var(--sc-cyan);
}

.card-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sc-navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.card-header .lede {
    font-size: 16px;
    color: var(--sc-muted);
    max-width: 460px;
    margin: 0 auto;
}

/* === Card Body === */
.card-body {
    padding: 32px 40px 40px;
}

.section { margin-bottom: 28px; }
.section:last-child { margin-bottom: 0; }

.section h2 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sc-muted);
    margin-bottom: 12px;
}

.section p {
    font-size: 15px;
    color: var(--sc-text);
    margin-bottom: 10px;
}

.section p:last-child { margin-bottom: 0; }

.section ul {
    list-style: none;
    padding: 0;
}

.section li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
}

.section li:last-child { margin-bottom: 0; }

.section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background: var(--sc-success);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
}

.section li.dash::before {
    background: var(--sc-warning);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* === Buttons === */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    line-height: 1;
}

.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--sc-navy);
    color: white;
}

.btn-primary:hover {
    background: var(--sc-navy-2);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(15, 42, 71, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--sc-navy);
    border: 1.5px solid var(--sc-border);
}

.btn-secondary:hover {
    border-color: var(--sc-navy);
    background: #F9FAFB;
}

.btn svg { width: 18px; height: 18px; }

/* === Reference Box === */
.reference {
    background: #F1F5F9;
    border: 1px solid var(--sc-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 28px;
    font-family: 'JetBrains Mono', 'SF Mono', 'Menlo', 'Courier New', monospace;
    font-size: 13px;
}

.reference .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    gap: 12px;
}

.reference .row + .row { border-top: 1px dashed var(--sc-border); margin-top: 3px; padding-top: 7px; }

.reference .label {
    color: var(--sc-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reference .value {
    color: var(--sc-text);
    font-weight: 500;
    font-size: 13px;
    word-break: break-all;
    text-align: right;
}

.reference .value.copyable {
    cursor: pointer;
    transition: color 0.15s ease;
}

.reference .value.copyable:hover {
    color: var(--sc-cyan);
}

/* === FAQ === */
.faq { margin-top: 8px; }

.faq-item {
    border: 1px solid var(--sc-border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background: white;
    transition: border-color 0.15s ease;
}

.faq-item:hover { border-color: #CBD5E1; }

.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--sc-text);
}

.faq-toggle::after {
    content: '';
    width: 18px;
    height: 18px;
    background: var(--sc-muted);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center / contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-toggle::after {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0 20px;
    color: var(--sc-muted);
    font-size: 14px;
    line-height: 1.6;
}

.faq-item.open .faq-content {
    max-height: 400px;
    padding: 0 20px 16px;
}

/* === Page Footer (below card) === */
.page-footer {
    margin-top: 32px;
    text-align: center;
}

.brand {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.brand:hover { text-decoration: none; opacity: 0.85; }

.brand-logo {
    height: 36px;
    width: auto;
    display: block;
}

.brand-tag {
    color: var(--sc-muted);
    font-size: 13px;
    margin-top: 10px;
}

.footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    border: 1.5px solid var(--sc-border);
    color: var(--sc-text);
    background: white;
}

.footer-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-link:hover {
    text-decoration: none;
    border-color: var(--sc-navy);
    transform: translateY(-1px);
}

.footer-link.primary {
    background: var(--sc-navy);
    color: white;
    border-color: var(--sc-navy);
}

.footer-link.primary:hover {
    background: var(--sc-navy-2);
}

.footer-link.whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.footer-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

.footer-link.telegram {
    color: #229ED9;
    border-color: #229ED9;
}

.footer-link.telegram:hover {
    background: #229ED9;
    color: white;
}

.footer-meta {
    margin-top: 18px;
    font-size: 11px;
    color: var(--sc-muted);
    opacity: 0.8;
    letter-spacing: 0.02em;
}

/* ========================================
   RENEWAL VARIANT — distinct urgency treatment
   ======================================== */
.renewal .card-header {
    background: linear-gradient(135deg, #FEF3C7 0%, #FED7AA 50%, #FECACA 100%);
    border-bottom: none;
    padding: 48px 40px 32px;
}

.renewal .card-header h1 {
    color: var(--sc-navy);
}

.renewal .icon-wrap {
    background: linear-gradient(135deg, #FBBF24, #F87171);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.renewal .icon-wrap svg {
    color: white;
}

.renewal .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sc-danger);
    color: white;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.renewal .badge svg { width: 12px; height: 12px; }

.renewal .countdown {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 14px 20px;
    margin: 20px auto 0;
    max-width: 360px;
    font-size: 13px;
    font-weight: 500;
    color: var(--sc-navy);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.renewal .countdown-label {
    display: block;
    font-size: 12px;
    color: var(--sc-navy);
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.renewal .countdown-timer {
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    font-weight: 700;
    color: var(--sc-danger);
    font-size: 22px;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

/* Plan comparison cards */
.plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 4px;
}

.plan {
    border: 1.5px solid var(--sc-border);
    border-radius: 12px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.15s ease;
    cursor: pointer;
    background: white;
    position: relative;
}

.plan:hover {
    border-color: var(--sc-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.12);
}

.plan.featured {
    border-color: var(--sc-cyan);
    background: linear-gradient(135deg, #ECFEFF, #F0F9FF);
}

.plan.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--sc-cyan);
    color: white;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.plan-info { flex: 1; }
.plan-name { font-weight: 700; font-size: 15px; color: var(--sc-navy); }
.plan-desc { font-size: 13px; color: var(--sc-muted); margin-top: 3px; }
.plan-price {
    font-weight: 800;
    font-size: 18px;
    color: var(--sc-navy);
    white-space: nowrap;
}

.plan-price .old {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--sc-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--sc-muted);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item svg { width: 14px; height: 14px; color: var(--sc-success); flex-shrink: 0; }

/* ========================================
   ABUSE / SPAM variants — formal accent
   ======================================== */
.abuse .icon-wrap,
.spam .icon-wrap {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.2);
}

.abuse .icon-wrap svg,
.spam .icon-wrap svg {
    color: var(--sc-danger);
}

.alert-box {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    border-left: 4px solid var(--sc-danger);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    color: #7F1D1D;
    font-size: 14px;
}

.alert-box strong { color: #991B1B; }

/* ========================================
   QUOTA / BANDWIDTH variants — informational
   ======================================== */
.quota .icon-wrap,
.bandwidth .icon-wrap {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.quota .icon-wrap svg,
.bandwidth .icon-wrap svg {
    color: #2563EB;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--sc-border);
    font-size: 14px;
}

.stat-row:last-child { border-bottom: none; }

.stat-row .stat-label {
    color: var(--sc-muted);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.stat-row .stat-value {
    font-weight: 700;
    color: var(--sc-navy);
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
}

.stat-row .stat-value.over {
    color: var(--sc-danger);
}

/* ========================================
   INACTIVE variant — gentle reactivation
   ======================================== */
.inactive .icon-wrap {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.inactive .icon-wrap svg { color: #4F46E5; }

/* === Mobile === */
@media (max-width: 540px) {
    body { padding: 16px 12px 48px; }
    .card-header { padding: 32px 24px 24px; }
    .card-body { padding: 24px; }
    .card-header h1 { font-size: 22px; }
    .card-header .lede { font-size: 15px; }
    .icon-wrap { width: 64px; height: 64px; margin-bottom: 18px; }
    .icon-wrap svg { width: 32px; height: 32px; }
    .plan { padding: 14px 18px; }
    .plan-price { font-size: 16px; }
    .renewal .countdown-timer { font-size: 18px; }
}

/* Dark mode intentionally disabled — SiteCountry is a light-only brand */
