/* ============================================
   SIMULATION SMS MODULE STYLES
   Isolated from existing CSS — all prefixed with .sim-
   ============================================ */

/* ── Hero ── */
.sim-hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f2744 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sim-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(59,130,246,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(16,185,129,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.sim-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}
.sim-hero-split {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}
.sim-hero-text {
    flex: 1;
    min-width: 0;
}
.sim-hero-graphic {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.sim-hero-phone {
    width: 220px;
    height: 380px;
    background: #1a2332;
    border-radius: 32px;
    border: 3px solid #334155;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.sim-hero-phone-notch {
    width: 80px;
    height: 20px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.sim-hero-phone-screen {
    padding: 20px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sim-hero-msg {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    animation: sim-heroFloat 3s ease-in-out infinite;
}
.sim-hero-msg-1 { animation-delay: 0s; }
.sim-hero-msg-2 { animation-delay: 1s; }
.sim-hero-msg-3 { animation-delay: 2s; }
@keyframes sim-heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.sim-hero-msg-dot {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    opacity: 0.9;
}
.sim-hero-msg-lines {
    flex: 1;
    min-width: 0;
}
.sim-hero-msg-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 2px;
}
.sim-hero-msg-body {
    font-size: 0.75rem;
    color: #cbd5e1;
    line-height: 1.3;
}
.sim-hero-msg-body span {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    color: #60a5fa;
    font-weight: 700;
    background: rgba(96,165,250,0.1);
    padding: 1px 4px;
    border-radius: 4px;
}
.sim-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(34,197,94,0.12);
    color: #4ade80;
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.sim-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.sim-hero-highlight {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sim-hero-desc {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.sim-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.sim-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}
.sim-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.4);
    color: #fff;
    text-decoration: none;
}
.sim-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.06);
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.sim-hero-btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
}

/* ── Stats Bar ── */
.sim-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0 20px;
    max-width: 800px;
    margin: -30px auto 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    border: 1px solid #e2e8f0;
}
.sim-stat {
    flex: 1;
    text-align: center;
    padding: 24px 16px;
}
.sim-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.3px;
}
.sim-stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 500;
}
.sim-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    flex-shrink: 0;
}

/* ── Section Layout ── */
.sim-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.sim-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 12px;
}
.sim-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
}
.sim-section-subtitle {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.95rem;
}
.sim-active-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 600;
    background: rgba(34,197,94,0.08);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(34,197,94,0.15);
}

/* ── Country Search ── */
.sim-search-box {
    position: relative;
    max-width: 480px;
    margin-bottom: 24px;
}
.sim-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
}
.sim-search-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #fff;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.sim-search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.sim-search-input::placeholder {
    color: #94a3b8;
}
.sim-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}
.sim-no-results i {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}
.sim-no-results p {
    margin: 0;
    font-size: 0.95rem;
}

/* ── Country Grid ── */
.sim-country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}
.sim-country-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}
.sim-country-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
    color: inherit;
    text-decoration: none;
}
.sim-country-card:hover .sim-card-arrow {
    opacity: 1;
    transform: translateX(0);
}
.sim-country-flag-img {
    flex-shrink: 0;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.sim-country-info {
    flex: 1;
    min-width: 0;
}
.sim-country-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1px;
}
.sim-country-number {
    font-size: 0.8rem;
    color: #64748b;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sim-country-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.sim-card-arrow {
    font-size: 0.9rem;
    color: #94a3b8;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}
.sim-live-dot {
    width: 8px;
    height: 8px;
    background: #12b39f;
    border-radius: 50%;
    animation: sim-pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes sim-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.sim-msg-count {
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: nowrap;
}

/* ── How It Works ── */
.sim-how-it-works {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.sim-how-it-works .sim-section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.sim-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 40px;
}
.sim-step {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    flex: 1;
    max-width: 300px;
    position: relative;
}
.sim-step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #3b82f6;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.sim-step-number {
    width: 28px;
    height: 28px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 14px;
}
.sim-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}
.sim-step p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}
.sim-step-connector {
    display: flex;
    align-items: center;
    padding: 0 8px;
    margin-top: 60px;
    color: #cbd5e1;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ── Supported Services ── */
.sim-services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
.sim-service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.2s ease;
}
.sim-service-badge:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transform: translateY(-1px);
}
.sim-service-badge img {
    border-radius: 4px;
}

/* ── Premium CTA Section ── */
.sim-cta-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sim-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.sim-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.sim-cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.3px;
}
.sim-cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
.sim-cta-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}
.sim-cta-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sim-cta-features i {
    color: #86efac;
}
.sim-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #fff;
    color: #1e40af;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.sim-cta-btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #1e40af;
}

/* ============================================
   COUNTRY PAGE STYLES
   ============================================ */

.sim-country-hero {
    text-align: center;
    padding: 90px 20px 40px;
    background: #08201e;
    color: #fff;
    border-bottom: 2px solid #12b39f;
}
.sim-country-hero .sim-country-flag {
    font-size: 4rem;
    display: block;
    margin-bottom: 12px;
}
.sim-country-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.sim-phone-display {
    font-size: 1.75rem;
    font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
    font-weight: 500;
    color: #4fd8c6;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.sim-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: rgba(18, 179, 159, 0.14);
    border: 1px solid rgba(18, 179, 159, 0.3);
    color: #4fd8c6;
    border-radius: 20px;
    font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
    font-size: 0.688rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.sim-live-badge .sim-live-dot {
    width: 6px;
    height: 6px;
}

/* Message Stream */
.sim-messages-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}
.sim-messages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.sim-messages-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}
.sim-stream-indicator {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
    font-size: 0.688rem;
    letter-spacing: 0.14em;
    color: #07665b;
    font-weight: 500;
}
.sim-message-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sim-message-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e4e1d8;
    border-radius: 14px;
    animation: sim-fadeIn 0.4s ease;
    transition: border-color 0.2s;
}
.sim-message-card:hover {
    border-color: #c9c4b6;
}
.sim-message-card.sim-new {
    border-color: #12b39f;
    box-shadow: 0 0 0 3px rgba(18, 179, 159, 0.12);
}
@keyframes sim-fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.sim-message-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
    background: #f8fafc;
    padding: 4px;
}
.sim-message-body {
    flex: 1;
    min-width: 0;
}
.sim-message-service {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 4px;
}
.sim-message-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.5;
    word-break: break-word;
}
.sim-message-code {
    font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;
    font-weight: 700;
    color: #07665b;
    background: #e8f7f4;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}
.sim-message-time {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 6px;
}

/* Premium Banner (floating) */
.sim-premium-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
    padding: 20px;
    z-index: 999;
    display: none;
    animation: sim-slideUp 0.4s ease;
}
@keyframes sim-slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.sim-premium-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.sim-premium-banner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}
.sim-premium-banner p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 14px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.sim-premium-btn {
    display: inline-block;
    padding: 13px 32px;
    background: #07665b;
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.sim-premium-btn:hover {
    transform: translateY(-2px);
    background: #12b39f;
    box-shadow: 0 12px 28px -12px rgba(7, 102, 91, 0.8);
    text-decoration: none;
    color: #fff;
}
.sim-premium-dismiss {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.sim-unavailable {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}
.sim-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 16px;
    transition: color 0.2s;
}
.sim-back-link:hover {
    color: #fff;
    text-decoration: none;
}
.sim-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: sim-shimmer 1.5s infinite;
    border-radius: 8px;
}
@keyframes sim-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Message Fade Out ── */
.sim-fade-out {
    animation: sim-fadeOut 0.4s ease forwards;
}
@keyframes sim-fadeOut {
    from { opacity: 1; transform: translateY(0); max-height: 120px; margin-bottom: 12px; }
    to { opacity: 0; transform: translateY(8px); max-height: 0; margin-bottom: 0; overflow: hidden; }
}

/* ── Disclaimer Footer ── */
.sim-disclaimer {
    background: #f3f1eb;
    border-top: 1px solid #e4e1d8;
    padding: 50px 20px;
}
.sim-disclaimer-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.sim-disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.sim-disclaimer-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid #e4e1d8;
    border-radius: 12px;
}
.sim-disclaimer-item > i {
    font-size: 1.3rem;
    color: #94a3b8;
    flex-shrink: 0;
    margin-top: 2px;
}
.sim-disclaimer-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px;
}
.sim-disclaimer-item p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
}
.sim-disclaimer-item a {
    color: #07665b;
    text-decoration: none;
    font-weight: 600;
}
.sim-disclaimer-item a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media screen and (max-width: 768px) {
    .sim-hero { padding: 60px 20px 50px; }
    .sim-hero-split { flex-direction: column; gap: 40px; text-align: center; }
    .sim-hero-actions { justify-content: center; }
    .sim-hero-phone { width: 180px; height: 310px; }
    .sim-hero-msg { padding: 10px; gap: 8px; }
    .sim-hero-msg-dot { width: 26px; height: 26px; }
    .sim-hero h1 { font-size: 2rem; }
    .sim-hero-desc { font-size: 1rem; margin-left: auto; margin-right: auto; }
    .sim-stats-bar { flex-wrap: wrap; margin: -20px 16px 0; gap: 0; }
    .sim-stat { min-width: 45%; padding: 18px 12px; }
    .sim-stat-value { font-size: 1.25rem; }
    .sim-stat-divider { display: none; }
    .sim-country-grid { grid-template-columns: 1fr; }
    .sim-country-hero h1 { font-size: 1.5rem; }
    .sim-phone-display { font-size: 1.25rem; }
    .sim-section { padding: 40px 16px; }
    .sim-section-header { flex-direction: column; align-items: flex-start; }
    .sim-messages-section { padding: 20px 16px 80px; }
    .sim-premium-banner { padding: 16px; }
    .sim-cta-section h2 { font-size: 1.5rem; }
    .sim-steps { flex-direction: column; align-items: center; }
    .sim-step { max-width: 100%; width: 100%; }
    .sim-step-connector { transform: rotate(90deg); padding: 4px 0; margin: 0; }
    .sim-cta-features { flex-direction: column; gap: 8px; }
    .sim-disclaimer-grid { grid-template-columns: 1fr; }
    .sim-disclaimer { padding: 40px 16px; }
}
@media screen and (max-width: 480px) {
    .sim-hero { padding: 50px 16px 40px; }
    .sim-hero h1 { font-size: 1.75rem; }
    .sim-hero-graphic { display: none; }
    .sim-hero-split { text-align: center; }
    .sim-hero-actions { flex-direction: column; align-items: center; }
    .sim-hero-btn-primary, .sim-hero-btn-outline { width: 100%; justify-content: center; }
    .sim-country-card { padding: 14px 16px; gap: 12px; }
    .sim-services-row { gap: 8px; }
    .sim-service-badge { padding: 8px 12px; font-size: 0.8rem; }
}
