/* JasaLive Reseller Template - Minimal CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF0000;
    --primary-dark: #CC0000;
    --primary-light: #FF4444;
    --primary-glow: rgba(255, 0, 0, 0.15);
    --secondary: #0f0f0f;
    --text: #1a1a1a;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --bg: #ffffff;
    --bg-light: #fafafa;
    --bg-dark: #f5f5f5;
    --border: #e5e5e5;
    --border-light: #f0f0f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(255, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    z-index: 1000;
    padding: 0.875rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--text);
}

.btn-large {
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
}

.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    background: var(--bg);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
    border: 1px solid var(--primary-glow);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 0.875rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 520px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.stat-item { text-align: center; }

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}


/* Features */
.features { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.premium {
    border-color: #E5C100;
    background: linear-gradient(135deg, #FFFDF5 0%, var(--bg) 100%);
}

.pricing-badge {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.popular-badge {
    background: var(--primary);
    color: white;
}

.premium-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--secondary);
}

.pricing-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.625rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9375rem;
}

.pricing-features li:last-child { border-bottom: none; }

.btn-pricing {
    width: 100%;
    text-align: center;
    background: var(--secondary);
    color: white;
    padding: 0.875rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.btn-pricing:hover {
    background: var(--text);
    transform: translateY(-1px);
}

.pricing-card.popular .btn-pricing { background: var(--primary); }
.pricing-card.popular .btn-pricing:hover { background: var(--primary-dark); }

/* FAQ */
.faq { padding: 100px 0; }

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-item.active { border-color: var(--primary); }

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover { background: var(--bg-light); }

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--secondary);
    color: white;
}

.contact-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-item div { text-align: left; }

.contact-item h4 {
    font-size: 0.8125rem;
    opacity: 0.6;
    margin-bottom: 0.125rem;
    text-transform: uppercase;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-cta { margin-top: 2rem; }

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    opacity: 0.5;
    font-size: 0.9375rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 0.875rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-column a:hover { opacity: 1; }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.875rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero { padding: 120px 0 80px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn-large { width: 100%; max-width: 280px; }
    .hero-stats { padding: 1.25rem 1rem; gap: 0.5rem; }
    .stat-number { font-size: 1.5rem; }
    .features, .pricing, .faq, .contact { padding: 80px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}
