@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --cyan: #3cbccb;
    --purple: #544ae6;
    --magenta: #e01692;
    --gradient: linear-gradient(135deg, #3cbccb 0%, #544ae6 50%, #e01692 100%);
    --dark: #0f0e17;
    --dark-2: #1a1a2e;
    --dark-3: #16213e;
    --white: #ffffff;
    --light: #f8f9fc;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    padding: 14px 28px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(84,74,230,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84,74,230,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
}
.btn-outline:hover {
    background: var(--purple);
    color: white;
}
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* === HEADER === */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}
header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}
.logo img { height: 38px; }
.logo b { color: var(--purple); }

nav { display:flex; gap: 8px; }
nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    border-radius: 8px;
    transition: 0.2s;
}
nav a:hover { color: var(--purple); background: rgba(84,74,230,0.05); }

.btn-wa-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}
.btn-wa-header:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(84,74,230,0.3); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* === HERO === */
.hero {
    padding: 120px 0 80px;
    background: var(--light);
    overflow: hidden;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-content { flex: 1; }
.badge {
    display: inline-block;
    background: rgba(84,74,230,0.08);
    color: var(--purple);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}
.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content > p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; }
.hero-mockup { flex: 1; }
.hero-mockup img {
    border-radius: 20px;
    animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* === SECTIONS COMMON === */
.section-head {
    text-align: center;
    margin-bottom: 50px;
}
.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.section-head p {
    color: var(--gray);
    font-size: 1rem;
}

/* === FITUR === */
.section-fitur {
    padding: 100px 0;
    background: white;
}
.fitur-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.fitur-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    border-radius: var(--radius);
    background: var(--light);
    border: 1px solid var(--gray-light);
    text-align: center;
    transition: 0.3s;
}
.fitur-item:hover {
    border-color: var(--purple);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(84,74,230,0.1);
}
.fitur-item i {
    font-size: 1.6rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fitur-item span { font-size: 0.82rem; font-weight: 500; color: var(--dark); }

/* === KATALOG === */
.section-katalog {
    padding: 100px 0;
    background: var(--light);
}
.katalog-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    background: white;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}
.tab-btn:hover, .tab-btn.active {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(84,74,230,0.05);
}
.katalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tema-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}
.tema-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.tema-card.hidden { display: none; }
.tema-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.tema-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.tema-card:hover .tema-img img { transform: scale(1.05); }
.tema-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gradient);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}
.tema-badge.new {
    background: linear-gradient(135deg, #10b981, #059669);
}
.tema-info { padding: 20px; }
.tema-info h4 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.tema-cat { font-size: 0.82rem; color: var(--gray); margin-bottom: 14px; }
.tema-actions { display: flex; gap: 8px; }

/* === CARA ORDER === */
.section-order {
    padding: 100px 0;
    background: white;
}
.order-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.step {
    text-align: center;
    flex: 1;
    max-width: 220px;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.step h4 { font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.step p { font-size: 0.85rem; color: var(--gray); }
.step-line {
    width: 60px;
    height: 2px;
    background: var(--gray-light);
    margin-top: 28px;
    flex-shrink: 0;
}

/* === TESTIMONIAL === */
.section-testi {
    padding: 100px 0;
    background: var(--light);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.testi-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testi-card p {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}
.testi-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
}
.testi-author span {
    font-size: 0.78rem;
    color: var(--gray);
}

/* === FAQ === */
.section-faq {
    padding: 100px 0;
    background: white;
}
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--gray-light);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}
.faq-question i { transition: 0.3s; color: var(--gray); }
.faq-question.active i { transform: rotate(180deg); color: var(--purple); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* === CTA === */
.section-cta {
    padding: 80px 0;
    background: var(--light);
}
.cta-box {
    background: var(--gradient);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}
.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.cta-box p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1rem;
}
.cta-box .btn-primary {
    background: white;
    color: var(--purple);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.cta-box .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* === FOOTER === */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo span { color: white; }
.footer-brand p { color: #9ca3af; font-size: 0.9rem; margin-bottom: 20px; max-width: 300px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af;
    transition: 0.3s;
}
.social-links a:hover { background: var(--gradient); color: white; transform: translateY(-2px); }
.footer-links h4 { font-size: 0.9rem; margin-bottom: 16px; font-weight: 600; }
.footer-links a {
    display: flex; align-items: center; gap: 8px;
    color: #9ca3af; font-size: 0.85rem; padding: 5px 0; transition: 0.2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-links a i { width: 16px; font-size: 0.8rem; }
.footer-bottom {
    text-align: center; padding-top: 24px;
    color: #6b7280; font-size: 0.8rem;
}

/* === FLOATING WA === */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 99;
    transition: 0.3s;
    animation: bounce 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .fitur-grid { grid-template-columns: repeat(3, 1fr); }
    .katalog-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
    .hero h1 { font-size: 2rem; }
    .hero-content > p { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    nav, .btn-wa-header { display: none; }
    .hamburger { display: flex; }
    nav.active {
        display: flex;
        position: fixed; top: 72px; left: 0; right: 0;
        background: white; flex-direction: column;
        padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 4px;
    }
    .fitur-grid { grid-template-columns: repeat(3, 1fr); }
    .katalog-grid { grid-template-columns: 1fr 1fr; }
    .order-steps { flex-direction: column; align-items: center; }
    .step-line { width: 2px; height: 30px; margin: 0; }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .section-head h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .fitur-grid { grid-template-columns: repeat(2, 1fr); }
    .katalog-grid { grid-template-columns: 1fr; }
}
