/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --yellow: #FBB818;
    --yellow-light: #FFF3D0;
    --blue: #2AADE0;
    --blue-dark: #1B8EC2;
    --blue-light: #E8F6FD;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Navbar ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
}
.nav-logo { height: 80px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ===== Hero (index.html) ===== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(160deg, var(--blue-light) 0%, var(--white) 50%, var(--yellow-light) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42,173,224,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251,184,24,0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: var(--yellow-light);
    color: #b8860b;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--blue); }
.hero p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.btn-outline {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); box-shadow: var(--shadow); }
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}
.hero-card img { width: 100%; border-radius: 12px; margin-bottom: 16px; object-fit: cover; max-height: 260px; }
.hero-card p { color: var(--gray); font-weight: 600; font-size: 1.1rem; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--blue); }
.hero-stat-label { font-size: 0.8rem; color: var(--gray); }

/* ===== Features ===== */
.features { background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}
.feature-icon.blue { background: var(--blue-light); }
.feature-icon.yellow { background: var(--yellow-light); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.5; }

/* ===== Pricing ===== */
.pricing { background: var(--gray-light); }
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}
.pricing-tab {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #e5e7eb;
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: 0.3s;
}
.pricing-tab.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.pricing-group { display: none; }
.pricing-group.active { display: block; }
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-cards.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
    margin: 0 auto;
}
.price-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.popular {
    border: 2px solid var(--yellow);
}
.popular-badge {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--yellow);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
}
.price-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.price-card .price-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.price-table th {
    text-align: left;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    padding: 8px 0;
    border-bottom: 2px solid var(--gray-light);
}
.price-table td {
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-light);
}
.price-table .price-val { font-weight: 800; color: var(--blue); }
.price-table .duration { color: var(--gray); font-size: 0.85rem; }
.price-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 12px;
}

/* ===== Why Us ===== */
.why-us { background: var(--white); }
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.comparison-table thead th {
    padding: 20px;
    font-size: 1rem;
    font-weight: 700;
}
.comparison-table thead th:first-child { background: var(--gray-light); text-align: left; }
.comparison-table thead th:nth-child(2) { background: var(--blue); color: var(--white); }
.comparison-table thead th:nth-child(3) { background: var(--gray-light); color: var(--gray); }
.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}
.comparison-table td:first-child { font-weight: 600; background: #fafafa; }
.comparison-table td:nth-child(2) { text-align: center; background: var(--blue-light); }
.comparison-table td:nth-child(3) { text-align: center; color: var(--gray); }
.check { color: #22c55e; font-weight: bold; font-size: 1.2rem; }
.cross { color: #ef4444; font-weight: bold; font-size: 1.2rem; }

/* ===== Promo ===== */
.promo { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); color: var(--white); }
.promo h2 { color: var(--white); }
.promo .section-subtitle { color: rgba(255,255,255,0.8); }
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.promo-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s;
}
.promo-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.18); }
.promo-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.promo-card h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 700; }
.promo-card p { font-size: 0.9rem; opacity: 0.85; line-height: 1.5; }

/* ===== Location ===== */
.location { background: var(--gray-light); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 20px; }
.loc-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.loc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.loc-card .loc-type {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.loc-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 8px; }
.loc-card .loc-detail { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.loc-card .loc-detail span { font-size: 0.9rem; }
.location-map {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(160deg, var(--yellow-light) 0%, var(--white) 50%, var(--blue-light) 100%);
    text-align: center;
}
.cta h2 { font-size: 2.4rem; }
.cta p {
    color: var(--gray);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== Page Hero (subpages) ===== */
.page-hero { padding: 160px 0 80px; background: linear-gradient(160deg, var(--blue-light) 0%, var(--white) 100%); text-align: center; }
.page-hero h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 16px; }
.page-hero h1 span { color: var(--blue); }
.page-hero p { color: var(--gray); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ===== Content (subpages) ===== */
.content { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-block { margin-bottom: 48px; }
.content-block h2 { font-size: 1.5rem; font-weight: 800; text-align: left; margin-bottom: 16px; color: var(--dark); }
.content-block p { color: var(--gray); margin-bottom: 16px; font-size: 1rem; }
.content-block ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.content-block li { display: flex; align-items: start; gap: 12px; color: var(--gray); }
.content-block li::before { content: ''; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }

/* ===== Info Card (tentang-kami) ===== */
.info-card { background: var(--gray-light); border-radius: var(--radius); padding: 32px; }
.info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.info-card .info-row { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.95rem; }
.info-card .info-label { font-weight: 700; min-width: 140px; }
.info-card .info-val { color: var(--gray); }

/* ===== Values Grid (tentang-kami) ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: var(--white); border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 28px; text-align: center; }
.value-icon { font-size: 2.5rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--gray); }

/* ===== Contact (kontak) ===== */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.contact-card { background: var(--white); border: 1px solid #e5e7eb; border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; }
.contact-icon.green { background: #dcfce7; }
.contact-icon.pink { background: #fce7f3; }
.contact-icon.blue { background: var(--blue-light); }
.contact-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 0.95rem; color: var(--gray); margin-bottom: 16px; }
.contact-card a.contact-btn { display: inline-block; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: transform 0.2s; }
.contact-card a.contact-btn:hover { transform: translateY(-2px); }
.btn-green { background: #25D366; color: var(--white); }
.btn-purple { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }

/* ===== Info Section (kontak) ===== */
.info-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-block { background: var(--gray-light); border-radius: var(--radius); padding: 36px; }
.info-block h2 { font-size: 1.4rem; font-weight: 800; text-align: left; margin-bottom: 20px; }
.info-row { display: flex; gap: 16px; margin-bottom: 16px; align-items: start; }
.info-row .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.info-row .text { font-size: 0.95rem; }
.info-row .text strong { display: block; margin-bottom: 2px; }
.info-row .text span { color: var(--gray); }
.map-placeholder { background: var(--gray-light); border-radius: var(--radius); min-height: 360px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; padding: 40px; text-align: center; }
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder p { color: var(--gray); font-weight: 600; }
.map-placeholder a { display: inline-block; padding: 12px 28px; background: var(--blue); color: var(--white); border-radius: 50px; font-weight: 700; font-size: 0.95rem; }

/* ===== Legal Pages (syarat-ketentuan, kebijakan-privasi) ===== */
.legal { max-width: 800px; margin: 0 auto; }
.legal h2 { font-size: 1.3rem; font-weight: 800; text-align: left; margin: 40px 0 16px; color: var(--dark); }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--gray); margin-bottom: 12px; font-size: 0.95rem; }
.legal ol, .legal ul { margin: 0 0 16px 24px; color: var(--gray); }
.legal li { margin-bottom: 8px; font-size: 0.95rem; }
.legal strong { color: var(--dark); }
.update-date { color: var(--gray); font-size: 0.9rem; font-style: italic; margin-bottom: 32px; text-align: center; }

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand img { height: 120px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; list-style: none; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== Holiday Popup ===== */
.holiday-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn 0.3s ease;
}
.holiday-popup {
    background: #fff;
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}
.holiday-x {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.holiday-x:hover {
    background: #f0f0f0;
    color: #333;
}
.holiday-popup h2 {
    color: #1a73e8;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.holiday-popup .holiday-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}
.holiday-popup p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
.holiday-popup .holiday-dates {
    background: #f0f7ff;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    font-weight: 600;
    color: #1a73e8;
}
.holiday-popup .holiday-reopen {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.05rem;
}
.holiday-popup .holiday-close-btn {
    margin-top: 20px;
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.holiday-popup .holiday-close-btn:hover {
    background: #1557b0;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Floating WA ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-card { padding: 28px; }
    .hero-card img { width: 100%; max-height: 200px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-cards.two-col { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-table td, .comparison-table th { padding: 12px; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    nav .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 96px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 16px;
        align-items: center;
    }
    section { padding: 60px 0; }
    h2 { font-size: 1.7rem; }
    .page-hero h1 { font-size: 2rem; }
    .content-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 60px; }
    .info-section { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .pricing-tabs { flex-wrap: wrap; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stat-num { font-size: 1.2rem; }
}
