/* ============================================================
   LANDING PAGE — Cacao Gold Banking (matches sketch 1:1)
   ============================================================ */

:root {
    --bg: #FDFBF7; --card: #FFFFFF; --text: #1A1207; --muted: #9C8E72;
    --primary: #8B6914; --primary-dark: #6B4F0E;
    --accent: #B8860B; --accent-bg: #FDF6E3;
    --green: #2D7A3A; --border: #E8E0D0;
    --shadow: rgba(26,18,7,0.06);
    --grad-a: #A07818; --grad-b: #C49A1A;
    --gold: #FFD700;
}

.darkmode {
    --bg: #0F0B09; --card: #1C1411; --text: #E8DDD0; --muted: #A89580;
    --primary: #C6802C; --primary-dark: #8B5A1A;
    --accent: #D4922E; --accent-bg: rgba(198,128,44,0.1);
    --green: #5DAA68; --border: rgba(198,128,44,0.18);
    --shadow: rgba(0,0,0,0.3);
    --grad-a: #A07818; --grad-b: #C49A1A;
    --gold: #E4B84B;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

/* ── Header ── */
.site-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: sticky; top: 0; z-index: 10;
}
.header-inner {
    max-width: 1100px; margin: 0 auto;
    padding: 12px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
#logo { height: 34px; width: auto; display: block; }
.header-nav { display: flex; gap: 28px; }
.header-nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: var(--gold); }
.header-controls { display: flex; gap: 8px; align-items: center; }
.crt-btn-icon {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: white; padding: 6px 12px; border-radius: 6px;
    font-size: 12px; cursor: pointer; font-weight: 500;
    font-family: inherit; min-width: 38px; transition: background 0.2s;
}
.crt-btn-icon:hover { background: rgba(255,255,255,.22); }

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    padding: 80px 40px; text-align: center; color: white;
    position: relative; overflow: hidden;
}
.hero::before { content: ""; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.04); }
.hero::after { content: ""; position: absolute; bottom: -80px; left: -40px; width: 250px; height: 250px; border-radius: 50%; background: rgba(255,255,255,.03); }
.hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; color: white; position: relative; z-index: 1; }
.hero p { font-size: 16px; opacity: .85; max-width: 560px; margin: 0 auto 28px; position: relative; z-index: 1; }
.hero-btns { display: flex; gap: 12px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }

/* ── Buttons ── */
.btn { padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-block; border: 2px solid transparent; }
.btn-light { background: white; color: var(--primary-dark); }
.btn-light:hover { background: rgba(255,255,255,.9); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.12); }

/* ── Section ── */
section { padding: 60px 40px; max-width: 960px; margin: 0 auto; }
.section-title { font-size: 26px; font-weight: 800; color: var(--primary); text-align: center; margin-bottom: 8px; }
.section-sub { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 36px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; box-shadow: 0 1px 4px var(--shadow); }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); color: white; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step h3 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--muted); }

/* ── Features ── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; box-shadow: 0 1px 4px var(--shadow); }
.feat-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 10px; }
.feat h3 { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.feat p { font-size: 11px; color: var(--muted); }
.pill { font-size: 9px; background: #FFF7ED; color: #C2410C; padding: 1px 6px; border-radius: 8px; font-weight: 600; margin-left: 4px; }
.darkmode .pill { background: rgba(230,81,0,0.15); color: #FF9800; }

/* ── Plans ── */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 680px; margin: 0 auto; }
.plan-card { background: var(--card); border: 2px solid var(--border); border-radius: 14px; padding: 28px; text-align: center; box-shadow: 0 2px 8px var(--shadow); }
.plan-card.featured { border-color: var(--accent); box-shadow: 0 4px 16px rgba(184,134,11,.15); }
.plan-icon { font-size: 28px; margin-bottom: 8px; }
.plan-name { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.plan-desc { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.plan-list { text-align: left; font-size: 11px; color: var(--text); display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.plan-list li { list-style: none; }
.plan-list li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.plan-btn { width: 100%; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; display: block; }
.plan-btn.gold { background: linear-gradient(135deg, var(--grad-a), var(--grad-b)); color: white; }
.plan-btn.outline { background: transparent; border: 2px solid var(--border); color: var(--primary); }

/* ── FAQ ── */
.faq { max-width: 680px; margin: 0 auto; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; margin-bottom: 8px; cursor: pointer; }
.faq summary { font-size: 13px; font-weight: 600; color: var(--text); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "▸ "; color: var(--accent); }
.faq details[open] summary::before { content: "▾ "; }
.faq details p { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ── CTA ── */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 60px 40px; text-align: center; color: white; }
.cta-section h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; color: white; }
.cta-section p { font-size: 14px; opacity: .8; margin-bottom: 24px; }

/* ── Footer ── */
footer { padding: 24px 40px; text-align: center; font-size: 12px; color: var(--muted); border-top: 1px solid var(--border); }
footer a { color: var(--accent); text-decoration: none; }

/* ── Contact page (info.html) ── */
.contact { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 760px; margin: 0 auto; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; width: 340px; box-shadow: 0 1px 4px var(--shadow); }
.contact-card h3 { font-size: 16px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.contact-card p { font-size: 13px; color: var(--text); margin-bottom: 6px; }
.contact-card label { display: block; font-size: 12px; color: var(--muted); margin: 10px 0 4px; }
.contact-card input {
    width: 100%; padding: 8px 10px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--bg); color: var(--text);
    font-family: inherit; font-size: 13px;
}
.contact-card input:focus { outline: none; border-color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 700px) {
    .steps, .features { grid-template-columns: 1fr; }
    .plans { grid-template-columns: 1fr; }
    .header-inner { padding: 10px 16px; gap: 8px; flex-wrap: wrap; }
    .header-nav { gap: 12px; order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
    .header-nav a { font-size: 11px; }
    section { padding: 40px 16px; }
    .hero { padding: 50px 20px; }
    .hero h1 { font-size: 24px; }
    .cta-section { padding: 40px 20px; }
}
