/* ===== Shared feature page styles (matches LandingContent design tokens) ===== */
.fp-root {
    --fp-blue-dark:  #32516E;
    --fp-blue-mid:   #62809C;
    --fp-blue-light: #7a98b4;
    --fp-blue-pale:  #e8eef4;
    --fp-brown:      #9c7e62;
    --fp-brown-lt:   #b89a7a;
    --fp-brown-pale: #f5efe8;
    --fp-warm:       #f9f8f6;
    --fp-text:       #2a3a4a;
    --fp-muted:      #5a6d7e;
    --fp-border:     #e0ddd8;
    --fp-accent-green: #5ee685;

    font-family: 'Barlow', 'Aptos', 'Segoe UI', sans-serif;
    font-weight: 300;
    color: var(--fp-text);
    line-height: 1.7;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
}
.fp-root *, .fp-root *::before, .fp-root *::after { box-sizing: border-box; }
.fp-root h1, .fp-root h2, .fp-root h3, .fp-root h4 { font-weight: 600; line-height: 1.25; letter-spacing: -0.3px; margin: 0; }
.fp-root h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.fp-root h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.fp-root h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
.fp-root p { margin: 0; }

.fp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.fp-section { padding: 80px 0; }

/* Hero */
.fp-hero {
    background: linear-gradient(170deg, #32516E 0%, #1e3348 100%);
    padding: 80px 0 72px;
    color: #fff;
}
.fp-hero-inner {
    max-width: 720px;
}
.fp-overline {
    display: inline-block;
    font-size: 0.97rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fp-brown-lt);
    margin-bottom: 16px;
}
.fp-hero h1 { color: #fff; margin-bottom: 20px; }
.fp-hero h1 em { font-style: normal; color: var(--fp-brown-lt); }
.fp-hero-sub {
    font-size: 1.18rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 620px;
}
.fp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons (match landing page) */
.fp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    padding: 13px 30px; border-radius: 8px;
    text-decoration: none; cursor: pointer; transition: all 0.2s;
    border: none; white-space: nowrap;
}
.fp-btn-primary { background: var(--fp-brown); color: #fff; }
.fp-btn-primary:hover { background: var(--fp-brown-lt); }
.fp-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.fp-btn-ghost:hover { background: rgba(255,255,255,0.18); }

/* Benefit cards */
.fp-benefits { background: var(--fp-warm); border-bottom: 1px solid var(--fp-border); }
.fp-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.fp-card {
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.25s;
}
.fp-card:hover { border-color: var(--fp-brown); box-shadow: 0 4px 24px rgba(156,126,98,0.1); transform: translateY(-2px); }
.fp-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--fp-blue-dark);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    color: #fff;
}
.fp-card h4 { font-size: 1.08rem; margin-bottom: 10px; }
.fp-card p { color: var(--fp-muted); font-size: 1.02rem; font-weight: 300; line-height: 1.65; }

/* Detail sections */
.fp-detail { background: #fff; }
.fp-detail-alt { background: var(--fp-warm); }
.fp-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.fp-detail-grid.fp-rev { direction: rtl; }
.fp-detail-grid.fp-rev > * { direction: ltr; }
.fp-detail-text h3 { margin-bottom: 16px; }
.fp-detail-text > p { color: var(--fp-muted); font-size: 1.02rem; margin-bottom: 24px; line-height: 1.75; }
.fp-check-list { list-style: none; padding: 0; margin: 0; }
.fp-check-list li {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 14px; font-size: 1rem; color: var(--fp-text);
}
.fp-check-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    color: var(--fp-brown);
    margin-top: 2px;
}

/* Illustration panel */
.fp-visual {
    display: flex; justify-content: center; align-items: center;
}
.fp-illus {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--fp-blue-pale) 0%, var(--fp-brown-pale) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    overflow: hidden;
}
.fp-illus svg {
    width: 100%;
    height: 100%;
    max-width: 320px;
    max-height: 240px;
}

/* CTA */
.fp-cta {
    background: linear-gradient(170deg, #32516E 0%, #1e3348 100%);
    padding: 72px 0;
    text-align: center;
    color: #fff;
}
.fp-cta h2 { color: #fff; margin-bottom: 14px; }
.fp-cta p { color: rgba(255,255,255,0.6); margin-bottom: 28px; font-size: 1.08rem; }

/* Responsive */
@media (max-width: 768px) {
    .fp-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .fp-detail-grid.fp-rev { direction: ltr; }
    .fp-hero { padding: 56px 0 48px; }
    .fp-section { padding: 56px 0; }
    .fp-illus { max-width: 320px; }
}
