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

:root {
    --bg: #ffffff;
    --bg-secondary: #fbf9f5;
    --bg-card: #ffffff;
    --text: #1a1916;
    --text-secondary: #55504a;
    --text-muted: #8c857c;
    --gold: #c4a35a;
    --gold-glow: rgba(196, 163, 90, 0.3);
    --gold-hover: #b58d4b;
    --border: #e9e2d8;
    --border-light: #f0eae2;
    --header-bg: rgba(255, 255, 255, 0.96);
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 32px -8px rgba(0, 0, 0, 0.08);
    --radius: 24px;
    --transition: 0.3s ease;
}

.dark-theme {
    --bg: #0c0c0c;
    --bg-secondary: #121212;
    --bg-card: #181818;
    --text: #f0ede7;
    --text-secondary: #b8b2a8;
    --text-muted: #7f7a72;
    --gold: #d4b06a;
    --gold-glow: rgba(212, 176, 106, 0.25);
    --gold-hover: #e0bc7c;
    --border: #2c2a26;
    --border-light: #2a2823;
    --header-bg: rgba(12, 12, 12, 0.96);
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 20px 32px -8px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gold-text { color: var(--gold); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: #141414;
    box-shadow: 0 8px 18px var(--gold-glow);
}

.btn-primary:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #141414;
}

/* Hero */
.page-hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 163, 90, 0.12);
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 1.2rem;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 60px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.hero-pill strong { color: var(--gold); }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--bg-secondary); }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-card i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 1.25rem 1rem;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-card h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.step-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Case teaser */
.case-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.case-teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
}

.case-teaser-body {
    padding: 1.75rem;
}

.case-teaser-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.case-teaser-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.case-stat {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: rgba(196, 163, 90, 0.12);
    border-radius: 60px;
    font-size: 0.78rem;
    color: var(--gold);
    margin-right: 0.4rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
}

.faq-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA */
.cta-block {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 720px;
    margin: 0 auto;
}

.cta-block h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.cta-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .case-teaser { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .page-hero { padding: 3rem 0 2rem; }
    .section { padding: 2.5rem 0; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
}
