:root {
    --bg: #060606;
    --surface: #111;
    --surface-hover: #1a1a1a;
    --gold: #d4af37;
    --gold-dim: rgba(212, 175, 55, 0.1);
    --gold-glow: rgba(212, 175, 55, 0.08);
    --white: #fff;
    --muted: #888;
    --border: rgba(255, 255, 255, 0.06);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}
::selection { background: var(--gold); color: #000; }

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

/* --- NAV --- */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 22px 8%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100;
    background: rgba(6,6,6,0.7);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--font-display);
    font-size: 26px; font-weight: 700;
    letter-spacing: 0.5px;
}
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
    color: var(--muted);
    font-size: 13px; font-weight: 500;
    letter-spacing: 1.2px; text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 5% 60px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, #1a1a1a 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 70% 90%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 60%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 900px;
}
.hero-tag {
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 100px;
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 36px;
    background: rgba(212, 175, 55, 0.04);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 28px;
}
.hero h1 i { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-sub {
    font-size: clamp(17px, 1.8vw, 21px);
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 44px;
    font-weight: 300;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    margin-top: 60px;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 30px; color: var(--gold); font-weight: 600;
}
.hero-stat-label { font-size: 12px; color: #555; text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; height: 32px; background: var(--border); }

.btn-primary, .btn-secondary {
    display: inline-flex; align-items: center;
    padding: 16px 34px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer; border: none;
}
.btn-primary {
    background: var(--gold);
    color: #000;
}
.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}

/* --- LOGOS BAR --- */
.logos-bar {
    padding: 40px 8%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.logos-label {
    text-align: center;
    font-size: 11px; text-transform: uppercase; letter-spacing: 3px;
    color: #555; margin-bottom: 20px;
}
.logos-track {
    display: flex; gap: 16px; justify-content: center;
    font-size: 14px; color: #444; letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
}
.logos-track .dot { color: #333; }

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}
.section-header h2 i { font-style: italic; color: var(--gold); font-weight: 400; }
.section-header p {
    color: var(--muted);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- SERVICES --- */
.services {
    padding: 110px 8%;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px; margin: 0 auto;
}
.service-card {
    padding: 44px 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    background: #181818;
    border-color: rgba(212, 175, 55, 0.15);
}
.service-icon {
    width: 44px; height: 44px;
    margin-bottom: 24px;
    color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px; margin-bottom: 12px; font-weight: 600;
}
.service-card p {
    color: var(--muted);
    font-size: 14px; line-height: 1.8;
}

/* --- SHOWCASE --- */
.showcase {
    padding: 110px 8%;
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1100px; margin: 0 auto;
    align-items: center;
}
.showcase-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    margin-bottom: 18px;
}
.showcase-text h2 i { font-style: italic; color: var(--gold); font-weight: 400; }
.showcase-text p {
    color: var(--muted);
    font-size: 15px; line-height: 1.8;
    margin-bottom: 28px;
}
.showcase-list {
    list-style: none;
    margin-bottom: 36px;
}
.showcase-list li {
    display: flex; align-items: center; gap: 12px;
    color: #bbb; font-size: 14px;
    margin-bottom: 14px;
}
.showcase-list li svg { color: var(--gold); min-width: 18px; }

.showcase-visual {
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.phone-mockup {
    width: 220px; height: 440px;
    background: #1a1a1a;
    border-radius: 30px;
    border: 2px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.phone-notch {
    position: absolute; top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 20px;
    background: #000;
    border-radius: 0 0 14px 14px;
    z-index: 3;
}
.phone-screen {
    width: 100%; height: 100%;
    padding: 26px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 30%, #1e1e1e, #0c0c0c);
}
.mockup-ui { text-align: center; }
.mockup-header {
    font-family: var(--font-display);
    font-size: 14px; letter-spacing: 1px; margin-bottom: 20px;
    color: #aaa;
}
.mockup-header span { color: var(--gold); }
.mockup-frame {
    width: 150px; height: 200px;
    background: linear-gradient(135deg, #222, #111);
    border: 1px solid #333;
    border-radius: 6px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
}
.mockup-camera {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #2a2a2a, #0a0a0a);
    border: 1px solid #333;
    position: relative;
}
.mockup-camera::after {
    content: ''; position: absolute; top: 8px; left: 10px;
    width: 8px; height: 8px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}
.mockup-btn {
    display: inline-block;
    padding: 6px 24px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    font-size: 10px; letter-spacing: 2px;
    margin-bottom: 14px;
}
.mockup-dots { display: flex; gap: 6px; justify-content: center; }
.mockup-dots span {
    width: 5px; height: 5px;
    background: #444; border-radius: 50%;
}

.showcase-float-card {
    position: absolute;
    bottom: -10px; right: -20px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: #aaa;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.showcase-float-card svg { color: var(--gold); min-width: 16px; }

/* --- WORKFLOW --- */
.workflow {
    padding: 110px 8%;
}
.steps-grid {
    display: flex; flex-direction: column; align-items: center;
    max-width: 700px; margin: 0 auto;
}
.step-item {
    display: flex; align-items: flex-start; gap: 28px;
    width: 100%; padding: 28px 0;
}
.step-number {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 16px; color: var(--gold); font-weight: 600;
}
.step-content h3 {
    font-family: var(--font-display);
    font-size: 22px; margin-bottom: 6px;
}
.step-content p {
    color: var(--muted);
    font-size: 14px; line-height: 1.7;
}
.step-connector {
    width: 1px; height: 32px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3), transparent);
    margin-left: 23px;
}
.workflow-note {
    display: flex; align-items: center; gap: 12px;
    max-width: 700px; margin: 50px auto 0;
    padding: 18px 24px;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    font-size: 14px; color: var(--muted);
}
.workflow-note svg { color: var(--gold); min-width: 20px; }
.workflow-note strong { color: var(--gold); }

/* --- PRICING --- */
.pricing {
    padding: 110px 8%;
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    max-width: 900px; margin: 0 auto;
}
.pricing-card {
    padding: 50px 44px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
}
.pricing-card.featured {
    background: linear-gradient(160deg, #151515 0%, var(--surface) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.pricing-badge {
    position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gold);
    color: #000;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700;
    border-radius: 100px;
}
.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 24px; margin-bottom: 16px;
}
.price {
    margin-bottom: 28px;
    display: flex; align-items: baseline; gap: 2px;
}
.price-currency {
    font-size: 18px; color: var(--muted);
}
.price-amount {
    font-family: var(--font-display);
    font-size: 44px; color: var(--gold); font-weight: 600;
}
.price-period {
    font-size: 14px; color: var(--muted); margin-left: 4px;
}
.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}
.pricing-features li {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}
.pricing-qris {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #666;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.pricing-qris svg { color: var(--gold); min-width: 16px; }

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 110px 8%;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1100px; margin: 0 auto;
}
.testimonial-card {
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars {
    display: flex; gap: 3px; margin-bottom: 16px;
    color: var(--gold);
}
.testimonial-card p {
    color: #bbb;
    font-size: 14px; line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.testimonial-author strong {
    font-size: 13px; color: #ddd;
    display: block;
}
.testimonial-author span {
    font-size: 11px; color: #555;
}

/* --- ABOUT --- */
.about {
    padding: 110px 8%;
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.about-inner {
    max-width: 800px; margin: 0 auto;
    text-align: center;
}
.about-header { margin-bottom: 40px; }
.about-header .section-eyebrow { margin-bottom: 12px; }
.about-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
}
.about-header h2 i { font-style: italic; color: var(--gold); font-weight: 400; }
.about-text p {
    color: var(--muted);
    font-size: 16px; line-height: 1.9;
    margin-bottom: 18px;
    max-width: 640px; margin-left: auto; margin-right: auto;
}
.about-text strong { color: #ddd; }
.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 600px; margin: 40px auto 0;
    text-align: left;
}
.about-detail-item {
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
}
.about-detail-item strong {
    display: block;
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: #666; margin-bottom: 4px;
}
.about-detail-item span {
    color: #bbb; font-size: 14px;
}

/* --- FAQ --- */
.faq {
    padding: 110px 8%;
}
.faq-list {
    max-width: 720px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.07); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 28px;
    font-size: 15px; font-weight: 500;
    color: #ddd;
    user-select: none;
}
.faq-question svg {
    transition: transform 0.3s ease;
    min-width: 18px; color: var(--muted);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
    color: var(--muted);
    font-size: 14px; line-height: 1.8;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}
.faq-answer a { color: var(--gold); text-decoration: underline; }

/* --- CONTACT --- */
.contact {
    padding: 110px 8%;
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.contact-card {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card-icon {
    width: 40px; height: 40px;
    margin: 0 auto 18px;
    color: var(--gold);
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card h4 {
    font-family: var(--font-display);
    font-size: 18px; margin-bottom: 10px;
}
.contact-card a {
    color: var(--muted);
    font-size: 14px; transition: color 0.3s; display: block;
}
.contact-card a:hover { color: var(--gold); }
.contact-card span { display: block; }
.contact-card-note {
    font-size: 11px; color: #555; margin-top: 8px;
}

/* --- FOOTER --- */
.footer {
    padding: 80px 8% 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 26px; margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p {
    color: var(--muted);
    font-size: 14px; line-height: 1.8;
    margin-bottom: 20px;
    max-width: 360px;
}
.footer-badge {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 6px;
}
.footer-badge-label {
    font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
    color: #555;
}
.footer-badge-value {
    font-size: 14px; font-weight: 600; color: var(--gold);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.footer-col h4 {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    color: #666; margin-bottom: 18px;
}
.footer-col a, .footer-col span {
    display: block;
    color: var(--muted);
    font-size: 13px; margin-bottom: 12px;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: #444;
    font-size: 13px;
}

/* --- MODALS --- */
.modal-overlay {
    display: flex;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: #161616;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 600px; width: 100%;
    max-height: 80vh; overflow-y: auto;
    padding: 44px 40px;
    position: relative;
}
.modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none;
    color: #555; font-size: 30px;
    cursor: pointer; transition: color 0.3s;
    line-height: 1;
}
.modal-close:hover { color: #fff; }
.modal h2 {
    font-family: var(--font-display);
    font-size: 26px; margin-bottom: 16px;
}
.modal h3 {
    font-size: 16px; color: var(--gold);
    margin: 22px 0 8px; font-weight: 600;
}
.modal p {
    color: var(--muted);
    font-size: 14px; line-height: 1.8;
    margin-bottom: 8px;
}
.modal em { color: #555; font-size: 13px; }
.modal strong { color: #bbb; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 24px; }
    .showcase-inner { grid-template-columns: 1fr; gap: 50px; }
    .showcase-visual { order: -1; }
    .about-details { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .phone-mockup { width: 180px; height: 360px; }
    .mockup-frame { width: 120px; height: 160px; }
    .step-item { flex-direction: column; align-items: center; text-align: center; }
    .step-connector { display: none; }
    .modal { padding: 30px 24px; }
}
