:root {
    --primary: #B15D85;
    --primary-dark: #9c4e74;
    --accent: #92B7CA;
    --bg: #fafafa;
    --text: #1f2937;
    --muted: #6b7280;
    --card: #ffffff;
    --border: #e5e7eb;
    --hero-bg: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 50%, #f5e8ed 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}
.brand-mark {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    line-height: 28px;
    margin-right: 8px;
    font-size: 14px;
}
.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .15s ease;
    text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(177, 93, 133, .25); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { color: var(--primary); }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* Section */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { color: var(--primary); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.section-title { font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 640px; }

/* Hero */
.hero {
    background: var(--hero-bg);
    padding: 100px 24px 80px;
    overflow: hidden;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: italic;
    color: var(--primary);
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}
.hero p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-mock {
    position: relative;
    aspect-ratio: 9 / 16;
    max-width: 340px;
    margin-left: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .25), 0 0 0 8px #fff, 0 0 0 9px var(--border);
}
.hero-mock iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}
.hero-mock-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .92);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

/* Trust strip */
.trust {
    padding: 30px 24px;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.trust-item .num { font-size: 28px; font-weight: 700; color: var(--primary); }
.trust-item .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Features */
.feature-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: transform .2s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .1); }
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(177, 93, 133, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14px; }

/* Themes section */
.themes-section { background: #fff; }
.theme-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.theme-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    background: var(--card);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.theme-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .12); }
.theme-preview {
    aspect-ratio: 9 / 16;
    background: #f3f4f6;
    overflow: hidden;
    position: relative;
}
.theme-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    transform: scale(0.95);
    transform-origin: top center;
}
.theme-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    color: #fff;
    font-weight: 600;
}
.theme-meta {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.theme-meta strong { font-size: 15px; }
.theme-meta small { color: var(--muted); font-size: 12px; }

/* Pricing */
.pricing-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 40px -15px rgba(177, 93, 133, .25);
    position: relative;
    transform: scale(1.03);
}
.price-card.featured::before {
    content: "Paling Populer";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}
.price-name { font-size: 16px; font-weight: 700; }
.price-tag {
    margin: 14px 0 6px;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.price-tag small { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
    padding: 7px 0;
    color: var(--text);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.price-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}
.price-card .btn { margin-top: auto; }

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary), #d56e9c);
    color: #fff;
    text-align: center;
}
.cta h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.cta p { font-size: 16px; opacity: .9; max-width: 540px; margin: 0 auto 28px; }
.cta .btn-primary { background: #fff; color: var(--primary); }
.cta .btn-primary:hover { background: #f5f5f5; }

/* Footer */
.footer {
    background: #1f2937;
    color: #cbd5e1;
    padding: 48px 24px 32px;
    font-size: 14px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 12px; font-weight: 600; }
.footer ul { list-style: none; }
.footer li { padding: 4px 0; }
.footer a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid #374151; color: #94a3b8; font-size: 13px; display: flex; justify-content: space-between; align-items: center; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 36px; }
    .hero-mock { margin: 0 auto; }
    .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
    .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .section { padding: 60px 20px; }
    .section-title { font-size: 28px; }
    .price-card.featured { transform: none; }
}

/* ============== HERO CARD (custom themed) ============== */
.hero-wrap {
    padding: 40px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-card {
    position: relative;
    background: var(--hero-bg, #3F7B3A);
    color: var(--hero-text, #fff);
    border-radius: 28px;
    padding: 64px 56px;
    overflow: hidden;
    box-shadow: 0 40px 80px -32px rgba(0,0,0,.25);
}
.hero-card-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 2;
}
.hero-card-text { max-width: 640px; }
.hero-eyebrow {
    color: var(--hero-accent, #F0C04A);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero-headline {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 18px;
    color: var(--hero-text, #fff);
    letter-spacing: -0.02em;
}
.hero-headline em {
    font-style: italic;
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: var(--hero-accent, #F0C04A);
}
.hero-sub {
    font-size: 17px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--hero-text, #fff) 80%, transparent);
    margin-bottom: 32px;
    max-width: 520px;
}
.hero-card-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-btn {
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hero-btn-primary {
    background: var(--hero-accent, #F0C04A);
    color: #2b2b2b;
}
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(0,0,0,.25); }
.hero-btn-outline {
    color: var(--hero-text, #fff);
    border-color: color-mix(in srgb, var(--hero-text, #fff) 50%, transparent);
    background: transparent;
}
.hero-btn-outline:hover { border-color: var(--hero-text, #fff); background: color-mix(in srgb, var(--hero-text, #fff) 10%, transparent); }

.hero-card-image {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 460px;
    height: 460px;
    z-index: 1;
    pointer-events: none;
}
.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.18;
    filter: brightness(1.5);
}

/* ============== TESTIMONIALS ============== */
.testimonials { background: #fafbfc; }
.testimonial-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .18s ease, box-shadow .18s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -16px rgba(0,0,0,.18); }
.testimonial-stars { color: #f5b400; font-size: 14px; letter-spacing: 2px; }
.testimonial-comment {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.testimonial-meta { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--text); }
.testimonial-source { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
    .hero-wrap { padding: 24px 16px 40px; }
    .hero-card { padding: 40px 28px; border-radius: 20px; }
    .hero-card-inner { grid-template-columns: 1fr; gap: 24px; }
    .hero-headline { font-size: 36px; }
    .hero-card-image { display: none; }
}
