:root {
    --primary-color: #0F172A;
    --secondary-color: #1E293B;
    --accent-color: #B4905A;
    --text-dark: #334155;
    --text-light: #F8FAFC;
    --bg-light: #F1F5F9;
    --bg-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background-color: var(--bg-white); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 1rem; color: var(--primary-color); }
.section-subtitle { text-align: center; font-size: 1.1rem; margin-bottom: 3rem; }
.text-light { color: var(--text-light); }
.bg-light { background-color: var(--bg-light); }

.cta-button {
    display: inline-block; padding: 1rem 2rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; text-decoration: none; border-radius: 4px; transition: all 0.3s ease;
}
.cta-button.primary { background-color: var(--accent-color); color: var(--bg-white); border: 2px solid var(--accent-color); }
.cta-button.primary:hover { background-color: transparent; color: var(--accent-color); }
.cta-button.large { padding: 1.2rem 2.5rem; font-size: 1rem; }

.hero { background-color: var(--primary-color); color: var(--text-light); padding: 8rem 0 6rem; text-align: center; }
.badge { display: inline-block; padding: 0.3rem 1rem; background-color: rgba(180, 144, 90, 0.1); color: var(--accent-color); border: 1px solid var(--accent-color); border-radius: 50px; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem; }
.hero h1 { font-size: 4rem; margin-bottom: 1.5rem; }
.hero h2 { font-size: 1.8rem; font-family: var(--font-body); font-weight: 300; margin-bottom: 2rem; color: #CBD5E1; }
.hero-subtext { max-width: 600px; margin: 0 auto 3rem; color: #94A3B8; }

.problem { padding: 6rem 0; }
.problem-content { max-width: 800px; margin: 0 auto; }
.pain-points { list-style: none; margin-top: 2rem;}
.pain-points li { background: var(--bg-white); padding: 1.5rem; margin-bottom: 1rem; border-left: 4px solid var(--accent-color); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); }

.solution { background-color: var(--secondary-color); padding: 6rem 0; }
.trident-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 3rem 2rem; text-align: center; transition: transform 0.3s ease, border-color 0.3s ease; }
.card:hover { transform: translateY(-10px); border-color: var(--accent-color); }
.card-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.card h4 { color: var(--text-light); font-size: 1.5rem; margin-bottom: 1rem; }
.card p { color: #94A3B8; }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.faq { padding: 6rem 0; }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-header { width: 100%; text-align: left; background: var(--bg-white); padding: 1.5rem; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--primary-color); border: none; border-bottom: 1px solid #E2E8F0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.accordion-header:hover { background: #F8FAFC; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.accordion-content p { padding: 1.5rem; color: var(--text-dark); }

.final-cta { background-color: var(--primary-color); color: var(--text-light); text-align: center; padding: 6rem 0; }
.final-cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.final-cta p { margin-bottom: 3rem; color: #94A3B8; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero h2 { font-size: 1.4rem; }
    .section-title { font-size: 2rem; }
}