:root {
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --bg: #ffffff;
    --bg-alt: #fafaf7;
    --bg-soft: #f6f3ea;
    --text: #1a1a1a;
    --text-soft: #555;
    --text-mute: #888;
    --border: #e8e3d5;
    --shadow-lg: 0 10px 40px rgba(212, 175, 55, .15);
    --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

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

/* NAV */
.lp-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.lp-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.15rem; color: var(--text); }
.lp-brand i { color: var(--gold); font-size: 1.3rem; }
.lp-nav-actions { display: flex; align-items: center; gap: 18px; }
.lp-nav-link { color: var(--text-soft); font-weight: 500; transition: color .2s; }
.lp-nav-link:hover { color: var(--gold-dark); }
.lp-mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }
.lp-mobile-menu { display: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border); padding: 12px 24px; gap: 10px; }
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a { padding: 8px 0; color: var(--text-soft); }

/* BUTTONS */
.lp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 10px;
    font-weight: 600; font-size: .95rem;
    border: 1px solid transparent; cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .2s, border-color .2s, color .2s;
}
.lp-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(212, 175, 55, .35);
}
.lp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(212, 175, 55, .45); }
.lp-btn-ghost { background: #fff; border-color: var(--border); color: var(--text); }
.lp-btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); }
.lp-btn-lg { padding: 14px 26px; font-size: 1.05rem; }

/* HERO */
.lp-hero { position: relative; padding: 80px 0 100px; text-align: center; overflow: hidden; }
.lp-hero-bg {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, .14) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(212, 175, 55, .08) 0%, transparent 50%);
}
.lp-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; margin-bottom: 24px;
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 999px; font-size: .85rem; font-weight: 600;
    color: var(--gold-dark);
}
.lp-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.lp-gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-hero-sub { font-size: 1.15rem; color: var(--text-soft); max-width: 640px; margin: 0 auto 36px; }
.lp-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* SECTIONS */
.lp-section { padding: 80px 0; }
.lp-section-alt { background: var(--bg-alt); }
.lp-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.lp-eyebrow {
    display: inline-block; margin-bottom: 12px;
    color: var(--gold-dark); font-weight: 700;
    font-size: .85rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.lp-section-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; letter-spacing: -0.01em; margin-bottom: 14px;
}
.lp-section-head p { color: var(--text-soft); font-size: 1.05rem; }

/* CARDS */
.lp-grid { display: grid; gap: 24px; }
.lp-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.lp-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.lp-card:hover { transform: translateY(-3px); border-color: rgba(212, 175, 55, .4); box-shadow: var(--shadow-lg); }
.lp-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, .18), rgba(212, 175, 55, .06));
    color: var(--gold-dark); font-size: 1.4rem; margin-bottom: 16px;
}
.lp-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.lp-card p { color: var(--text-soft); font-size: .98rem; }

/* STEPS */
.lp-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch; gap: 16px;
    max-width: 1100px; margin: 0 auto;
}
.lp-step {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px; text-align: center;
}
.lp-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; font-weight: 700; margin-bottom: 14px;
}
.lp-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.lp-step p { color: var(--text-soft); font-size: .95rem; }
.lp-step-arrow { display: flex; align-items: center; color: var(--gold); font-size: 1.4rem; }

/* FAQ */
.lp-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item {
    background: #fff; border: 1px solid var(--border);
    border-radius: 10px; padding: 18px 22px;
    transition: border-color .2s, box-shadow .2s;
}
.lp-faq-item[open] { border-color: rgba(212, 175, 55, .45); box-shadow: var(--shadow-lg); }
.lp-faq-item summary {
    cursor: pointer; font-weight: 600; font-size: 1.02rem;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: '+'; color: var(--gold-dark); font-size: 1.4rem; line-height: 1; }
.lp-faq-item[open] summary::after { content: '–'; }
.lp-faq-item p { margin-top: 14px; color: var(--text-soft); }

/* CTA */
.lp-cta-box {
    background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
    border: 1px solid var(--border); border-radius: 20px;
    padding: 56px 32px; text-align: center;
}
.lp-cta-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.lp-cta-box p { color: var(--text-soft); margin-bottom: 28px; }

/* FOOTER */
.lp-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 56px 0 0; }
.lp-footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 40px;
}
.lp-footer-brand p { color: var(--text-soft); margin-top: 12px; }
.lp-footer-links h4 { font-size: .9rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.lp-footer-links a { display: block; color: var(--text-soft); padding: 4px 0; transition: color .2s; }
.lp-footer-links a:hover { color: var(--gold-dark); }
.lp-social { display: inline-flex !important; align-items: center; gap: 8px; margin-top: 6px; }
.lp-social i { font-size: 1.1rem; color: var(--gold-dark); }
.lp-footer-bottom {
    border-top: 1px solid var(--border); padding: 20px 0;
    text-align: center; color: var(--text-mute); font-size: .9rem;
}

/* REVEAL */
.lp-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s, transform .6s; }
.lp-reveal.lp-in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 860px) {
    .lp-nav-actions { display: none; }
    .lp-mobile-toggle { display: block; }
    .lp-steps { grid-template-columns: 1fr; }
    .lp-step-arrow { transform: rotate(90deg); justify-content: center; }
    .lp-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .lp-hero { padding: 60px 0 70px; }
    .lp-section { padding: 60px 0; }
    .lp-footer-inner { grid-template-columns: 1fr; }
    .lp-btn-lg { padding: 12px 20px; font-size: 1rem; }
}
