/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
}

.hero-text { flex: 1; max-width: 580px; }
.hero-image { flex: 1; text-align: right; }
.hero-image img { max-height: 380px; max-width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(249, 174, 0, 0.08);
    border: 1px solid rgba(249, 174, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 0 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.3s both;
    flex-wrap: wrap;
}

/* ═══ SECTIONS ═══ */
.section {
    padding: 100px 0;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 760px;
}

/* ═══ FEATURE CARDS ═══ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 174, 0, 0.35);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

.why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(249, 174, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.why-section {
    background: rgba(249, 174, 0, 0.02);
}

/* ═══ COMPARE BOX ═══ */
.compare-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    margin-top: 48px;
}

.compare-tabs-top {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plan-tab {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.plan-tab:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.plan-tab.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #000;
}

.compare-chart { display: flex; flex-direction: column; gap: 20px; }

.chart-row {
    display: grid;
    grid-template-columns: 120px 1fr 110px;
    align-items: center;
    gap: 20px;
}

.chart-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.chart-logo img {
    max-height: 28px;
    max-width: 110px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.9);
}

.chart-logo img.no-inv { filter: none; }

.chart-bar-wrap {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    height: 34px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    border-radius: 8px;
    transition: width 0.7s cubic-bezier(0.4,0,0.2,1);
    width: 0;
}

.bar-kuasar {
    background: linear-gradient(90deg, var(--accent-orange), #ffca28);
}

.bar-comp {
    background: rgba(255,255,255,0.15);
}

.chart-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: right;
}

.price-kuasar-val {
    color: var(--accent-orange);
}

.compare-disclaimer {
    margin-top: 32px;
    text-align: center;
    font-size: 12px;
    opacity: 0.45;
    line-height: 1.6;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(249,174,0,0.08) 0%, rgba(249,174,0,0.02) 100%);
    border: 1px solid rgba(249,174,0,0.2);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-image { display: none; }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .compare-box {
        padding: 28px 20px;
    }

    .chart-row {
        grid-template-columns: 90px 1fr 80px;
        gap: 12px;
    }

    .compare-tabs-top {
        gap: 8px;
    }

    .plan-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

    .cta-box {
        padding: 40px 24px;
    }
}
