/*
Theme Name: ISP Modern Theme
Theme URI: https://example.com/isp-modern
Author: AI Developer
Author URI: https://example.com
Description: Tema WordPress modern, bersih, dan berkecepatan tinggi yang dirancang khusus untuk perusahaan Internet Service Provider (ISP), Fiber Optic, dan Telekomunikasi.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isp-modern
*/

:root {
    --primary: #0052FF;
    --primary-hover: #003ED1;
    --secondary: #00F0FF;
    --dark: #0A0F24;
    --light: #F4F7FF;
    --gray: #64748B;
    --white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout & Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: #E2E8F0;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--secondary);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5);
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at top right, #1E293B, var(--dark));
    color: var(--white);
    padding: 100px 0 140px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to cubic-bezier(0.4, 0, 1, 1), transparent, var(--white));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(to right, #00F0FF, #0052FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 30px;
}

.hero-badge {
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
}

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

.price-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-card.popular {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 82, 255, 0.08);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price-card .speed {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.price-card .price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.price-card .price span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.price-features li {
    padding: 10px 0;
    color: var(--gray);
    font-size: 15px;
    border-bottom: 1px solid #F1F5F9;
}

.price-features li strong {
    color: var(--dark);
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background-color: var(--light);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

.price-card.popular .btn-plan {
    background-color: var(--primary);
    color: var(--white);
}

.price-card.popular .btn-plan:hover {
    background-color: var(--primary-hover);
}

.btn-plan:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: #94A3B8;
    padding: 60px 0 30px 0;
    font-size: 14px;
}

.footer-content {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-card.popular {
        transform: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
