/* ============================================================
   SIMTEK — UPDATED SECTIONS CSS
   Tambahkan ke file style.css Anda (atau buat file baru
   dan import ke <head>: <link rel="stylesheet" href="/css/sections.css">)

   Font yang digunakan: Plus Jakarta Sans
   Tambahkan di <head> sebelum stylesheet:
   <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
   ============================================================ */

/* ============================================================
   BASE / SHARED
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Eyebrow label */
.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff6b35;
    margin-bottom: 12px;
}

.section-eyebrow.light {
    color: rgba(255,255,255,0.7);
}

/* Shared heading */
.section-title-lg {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.25;
}

.section-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Centered header block */
.section-header-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

/* Spin animation for speed test */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* ============================================================
   1. TRUST BADGES
   ============================================================ */

.trust-section {
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-right: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item:hover {
    background: #fff9f7;
}

.trust-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff6b35;
}

.trust-icon-wrap svg {
    width: 22px;
    height: 22px;
}

.trust-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-number {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.trust-label {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 20px 16px;
    }
    .trust-item:nth-child(odd) {
        border-right: 1px solid #f0f0f0;
    }
}

@media (max-width: 420px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-item:nth-child(odd) {
        border-right: none;
    }
}


/* ============================================================
   2. ABOUT
   ============================================================ */

.about-section {
    padding: 100px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.about-heading {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 20px;
}

.about-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 40px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-feat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff6b35;
}

.about-feat-icon svg {
    width: 16px;
    height: 16px;
}

.about-feat-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.about-feat-sub {
    font-size: 12px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* Right column cards */
.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-stat-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #efefef;
}

.about-stat-card.accent {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: transparent;
}

.asc-num {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.about-stat-card.accent .asc-num {
    color: #fff;
}

.asc-unit {
    font-size: 18px;
    font-weight: 500;
    margin-left: 4px;
}

.asc-label {
    font-size: 13px;
    color: #888;
}

.about-stat-card.accent .asc-label {
    color: rgba(255,255,255,0.8);
}

.about-info-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    font-size: 13px;
    color: #555;
}

.about-info-strip svg {
    color: #ff6b35;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-card-stack {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .about-stat-card {
        flex: 1;
        min-width: 160px;
    }
}

@media (max-width: 540px) {
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   3. SPEED TEST
   ============================================================ */

.speed-test-section {
    padding: 80px 0;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.speed-test-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.speed-test-header {
    text-align: center;
    max-width: 520px;
}

.speed-test-heading {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.25;
}

.speed-test-sub {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.speed-test-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #efefef;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}

/* Gauge */
.speedometer-wrap {
    position: relative;
    width: 220px;
    height: 130px;
}

.speed-gauge {
    width: 100%;
    height: 100%;
}

.speed-readout {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1;
}

.speed-num {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.speed-mbps {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-top: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Metrics row */
.speed-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    background: #f8f8f8;
    border-radius: 14px;
    overflow: hidden;
}

.speed-metric-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
}

.speed-metric-divider {
    width: 1px;
    height: 40px;
    background: #e8e8e8;
    flex-shrink: 0;
}

.smi-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smi-icon.download { background: #e6f4ea; color: #2d8a4e; }
.smi-icon.upload   { background: #fff3ee; color: #ff6b35; }
.smi-icon.ping     { background: #e8f0fe; color: #1a73e8; }

.smi-label {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.smi-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Speed test button */
.speed-test-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.speed-test-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.speed-test-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.speed-test-note {
    font-size: 13px;
    color: #aaa;
    margin: 0;
    text-align: center;
}

.speed-test-note a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.speed-test-note a:hover {
    text-decoration: underline;
}

@media (max-width: 540px) {
    .speed-test-card {
        padding: 32px 20px;
    }
}


/* ============================================================
   4. PACKAGES / PRICING
   ============================================================ */

.packages-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.pricing-card--featured {
    border-color: #ff6b35;
    border-width: 2px;
    box-shadow: 0 8px 40px rgba(255,107,53,0.12);
}

.pricing-card--featured:hover {
    box-shadow: 0 12px 48px rgba(255,107,53,0.18);
}

.pricing-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ff6b35;
    background: #fff3ee;
    border: 1px solid #ffd5c2;
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 20px;
    width: fit-content;
}

.pricing-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.pricing-speed {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #ff6b35;
    background: #fff3ee;
    border-radius: 20px;
    padding: 5px 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-price-block {
    margin-bottom: 28px;
}

.pricing-original {
    display: block;
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-current {
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
}

.pricing-rp {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.pricing-amount {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
}

.pricing-period {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-top: 6px;
}

/* Divider */
.pricing-price-block::after {
    content: '';
    display: block;
    height: 1px;
    background: #f0f0f0;
    margin-top: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: #ff6b35;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature-iptv {
    background: #fff3ee;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 4px -4px 0;
}

.pricing-feature-iptv svg {
    color: #ff6b35;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #f8f8f8;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #efefef;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    margin-top: auto;
}

.pricing-cta:hover {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.pricing-cta--featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border-color: transparent;
}

.pricing-cta--featured:hover {
    opacity: 0.9;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: transparent;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 13px;
    color: #888;
    margin-top: 36px;
}

.pricing-note svg {
    color: #ff6b35;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .pricing-card {
        padding: 24px 20px;
    }
}


/* ============================================================
   5. CTA
   ============================================================ */

.cta-section {
    padding: 0 0 100px;
}

.cta-inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 24px;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Subtle decorative ring */
.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 60px solid rgba(255,107,53,0.08);
    pointer-events: none;
}

.cta-heading {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.25;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0 0 32px;
}

.cta-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.cta-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s, border-color 0.2s;
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
}

/* Right column guarantees */
.cta-guarantees {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.cta-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cgi-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,107,53,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    flex-shrink: 0;
}

.cgi-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 3px;
}

.cgi-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 32px;
    }
    .cta-guarantees {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    .cta-guarantee-item {
        flex: 1;
        min-width: 160px;
    }
}

@media (max-width: 540px) {
    .cta-inner {
        padding: 36px 24px;
        border-radius: 16px;
    }
    .cta-action-row {
        flex-direction: column;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
    }
    .cta-guarantees {
        flex-direction: column;
    }
}