/* =========================================
   CORE BODY & HERO SECTION
   ========================================= */

body {
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
}

/* Hero Wrapper */
.hero-wrapper {
    padding: 100px 0 80px 0;
    overflow: hidden;
    background: radial-gradient(circle at 90% 10%, #fff5f0 0%, #ffffff 40%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 60px;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Typography Hero */
.hero-h1 {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-h1 {
        font-size: 64px;
    }
}

.hero-h1 .text-orange-600 {
    color: #ff6600;
}

.hero-p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-p strong {
    color: #0f172a;
    font-weight: 700;
}

/* Hero Actions */
.hero-action {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    background-color: #ff6600;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(255, 102, 0, 0.4);
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

/* Hero Image Placeholder */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-box {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 40px;
    border: 1px solid #e2e8f0;
    position: relative;
}

/* Efek dekorasi di belakang image box */
.image-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff6600;
    opacity: 0.05;
    border-radius: 40px;
    top: 20px;
    right: -20px;
    z-index: -1;
}
/* =========================================
   \\FITUR MNET HOSTING (REFINED SPACING + EFFECTS)
   ========================================= */

.features-section {
    padding: 60px 0; /* Spacing rapat */
    background-color: #ffffff;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.features-subtitle {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Card - Slim dengan Efek Lengkap */
.feature-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 32px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    border-color: #ff6600;
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.05);
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af; /* Warna Biru Deep */
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Efek Ikon saat Hover */
.feature-card:hover .feature-icon-wrapper {
    background-color: #ff6600;
    color: #ffffff;
    transform: rotate(10deg);
}

.feature-name {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Garis Orange di Bawah saat Hover */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6600;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}
/* =========================================
   \\LAYANAN & NOTICE (SAMPEL WARNA MNET)
   ========================================= */

.services-section {
    padding: 60px 0 80px 0; /* Padding bawah diatur agar tidak terlalu jauh ke footer */
    background-color: #ffffff;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.services-subtitle {
    font-size: 15px;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 32px; /* Jarak ke notice box dibuat rapat */
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card Styling */
.service-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ff6600; /* Warna Orange MNET */
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
}

.service-card.featured {
    border: 2px solid #ff6600; /* Highlight warna Orange */
    transform: scale(1.02);
}

.service-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.service-tagline {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

.service-price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    color: #0f172a;
}

.service-price .amount {
    font-size: 38px;
    font-weight: 900;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features .check {
    color: #ff6600;
    font-weight: bold;
}

/* Button */
.btn-service {
    display: block;
    text-align: center;
    padding: 12px;
    border: 2px solid #ff6600;
    color: #ff6600;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.3s;
}

.btn-service:hover, .featured-btn {
    background-color: #ff6600;
    color: #ffffff;
}

/* NOTICE BOX - Terintegrasi rapat */
.services-notice {
    background-color: #f8fafc;
    border-radius: 12px;
    display: flex;
    max-width: 100%;
}

.notice-line {
    width: 5px;
    background-color: #ff6600; /* Garis orange agar senada */
    flex-shrink: 0;
}

.notice-content {
    padding: 20px 24px;
}

.notice-content p {
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
    line-height: 1.6;
}
/* =========================================
   \\FAQ SECTION (INTERACTIVE ACCORDION)
   ========================================= */

.faq-section {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 850px; /* Lebih kecil agar fokus ke tengah sesuai foto */
    margin: 0 auto;
    padding: 0 24px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.faq-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* FAQ Item Styling */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item:hover {
    border-color: #ff6600; /* Orange MNET */
}

/* Input Trick untuk Accordion Murni CSS */
.faq-input {
    display: none;
}

.faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-weight: 800;
    font-size: 16px;
    color: #0f172a;
    cursor: pointer;
    user-select: none;
}

.faq-icon {
    font-size: 20px;
    color: #64748b;
    transition: transform 0.3s ease, color 0.3s ease;
    transform: rotate(45deg); /* Plus sign (+) */
}

/* Styling saat FAQ Terbuka */
.faq-content {
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: #f8fafc;
}

.faq-content p {
    padding-bottom: 24px;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
}

/* Logic Buka-Tutup */
.faq-input:checked ~ .faq-content {
    max-height: 500px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-input:checked ~ .faq-label {
    background-color: #f8fafc;
    color: #ff6600;
}

.faq-input:checked ~ .faq-label .faq-icon {
    transform: rotate(0deg); /* Menjadi (x) */
    color: #ff6600;
}

/* FAQ CTA Button */
.faq-footer {
    margin-top: 40px;
    text-align: center;
}

.btn-faq-cta {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2563eb; /* Biru Deep sesuai foto namun serasi */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-faq-cta:hover {
    background-color: #ff6600; /* Berubah Orange saat hover agar sinkron logo */
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 102, 0, 0.3);
}

@media (max-width: 768px) {
    .faq-title { font-size: 22px; }
    .faq-label { padding: 18px; font-size: 14px; }
}
/* =========================================
   \\PRICING & HERO PAGE
   ========================================= */

.hero-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 140px 0;
    text-align: center;
    color: #ffffff;
}

.hero-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.badge-server {
    background: rgba(255, 102, 0, 0.2);
    color: #ff6600;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-page-title .text-orange { color: #ff6600; }

.hero-page-p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
}

/* Pricing Cards */
.pricing-section {
    margin-top: -80px;
    padding-bottom: 100px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.price-card:hover { transform: translateY(-10px); }

.price-card.popular {
    border: 2px solid #ff6600;
    transform: scale(1.05);
    z-index: 10;
}

.price-header {
    background: #f8fafc;
    padding: 30px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.price-box { text-align: right; }

.price-box .price {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
}

.price-box .duration {
    font-size: 13px;
    color: #64748b;
}

.price-features {
    list-style: none;
    padding: 30px;
    margin: 0;
    flex-grow: 1;
}

.price-features li {
    font-size: 14px;
    color: #475569;
    padding: 10px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.price-features li:last-child { border-bottom: none; }

.btn-order {
    margin: 0 30px 30px 30px;
    background: #22c55e; /* Hijau sesuai gambar yang kamu kirim */
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s;
}

.btn-order:hover { opacity: 0.9; }

.btn-orange { background: #ff6600; } /* Untuk membedakan paket favorit */

/* =========================================
   \\VALUE & HELP BANNER
   ========================================= */

.value-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.value-item {
    text-align: center;
}

.v-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Help Banner */
.help-banner {
    background: #0f172a;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #ffffff;
}

.help-text h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.help-text p {
    color: #94a3b8;
    font-size: 15px;
}

.btn-help-wa {
    background-color: #25d366; /* Warna Hijau WA asli */
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-help-wa:hover {
    transform: scale(1.05);
    background-color: #128c7e;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 768px) {
    .help-banner {
        text-align: center;
        justify-content: center;
    }
}
/* =========================================
   \\TOS STYLE
   ========================================= */
.tos-section h2 {
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    margin-top: 40px;
}

.tos-section p {
    margin-bottom: 15px;
    font-size: 15px;
}

.tos-section ul li {
    font-size: 14.5px;
}

/* Transisi halus untuk gambar promo */
.transition-duration-500 {
    transition-duration: 500ms;
}

.font-inter {
    font-family: 'Inter', sans-serif; /* Pastikan font ini terload */
}

/* Memastikan teks orange sesuai brand MNET */
.text-orange {
    color: #f37021; 
}

.bg-orange {
    background-color: #f37021;
}