/* Feature pages — dark hero, light body. Chrome comes from shell.css, palette from tokens.css. */

/* Hero */
.fhero { position: relative; background: linear-gradient(168deg, var(--forest-950) 0%, var(--forest-900) 48%, var(--primary-800) 100%); padding: 8rem 1.5rem 4.5rem; overflow: hidden; }
.fhero__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 72% 30%, rgba(92, 168, 120, 0.28), transparent 58%); }
.fhero__inner { position: relative; max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 4rem; }
.fhero__content { flex: 1; min-width: 0; }
.fhero__headline { font-family: var(--font-heading); font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--cream); margin-bottom: 1.2rem; }
.fhero__subtitle { font-size: 1.1rem; line-height: 1.7; color: var(--cream-dim); max-width: 480px; margin-bottom: 2rem; }
.fhero__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.fhero__cta { display: inline-flex; align-items: center; font-size: 0.92rem; font-weight: 600; color: var(--forest-950); background: var(--cream); padding: 0.75rem 1.5rem; border-radius: 999px; transition: transform 150ms ease, background 150ms ease; }
.fhero__cta:hover { background: #fff; transform: translateY(-1px); }
.fhero__note { font-size: 0.85rem; color: var(--cream-faint); }
.fhero__phone { flex-shrink: 0; }

/* Breadcrumb */
.crumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-faint); margin-bottom: 1.2rem; }
.crumbs a { color: var(--accent-500); }
.crumbs a:hover { color: var(--accent-400); }
.crumbs__sep { opacity: 0.5; }

/* Body copy */
.fbody { background: var(--mist); padding: 4.5rem 1.5rem 3.5rem; }
.fbody__inner { max-width: 720px; margin: 0 auto; }
.fbody h2 { font-family: var(--font-heading); font-size: clamp(1.35rem, 2.6vw, 1.7rem); font-weight: 600; color: var(--forest-900); letter-spacing: -0.01em; margin: 2.6rem 0 0.8rem; }
.fbody h2:first-child { margin-top: 0; }
.fbody p { font-size: 1.02rem; line-height: 1.75; color: var(--neutral-700); margin-bottom: 1rem; }
.fbody ul { list-style: none; margin: 0 0 1.4rem; }
.fbody li { position: relative; padding-left: 1.6rem; font-size: 1.02rem; line-height: 1.7; color: var(--neutral-700); margin-bottom: 0.55rem; }
.fbody li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; border-radius: 50%; background: var(--primary-400); }
.fbody strong { color: var(--neutral-950); font-weight: 600; }

/* Cross-links to the other tools */
.fmore { background: var(--surface-secondary); border-top: 1px solid var(--neutral-200); padding: 3.5rem 1.5rem; }
.fmore__inner { max-width: 1000px; margin: 0 auto; }
.fmore__heading { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--forest-900); text-align: center; margin-bottom: 1.8rem; }
/* 175px is the widest floor that still fits all five cards on one row at max container width. */
.fmore__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 1rem; }
.fmore__card { display: block; background: #fff; border: 1px solid var(--neutral-200); border-radius: 16px; padding: 1.2rem 1.3rem; box-shadow: 0 6px 20px rgba(28, 24, 22, 0.05); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.fmore__card:hover { transform: translateY(-3px); border-color: var(--primary-300); box-shadow: 0 14px 34px rgba(28, 24, 22, 0.09); }
.fmore__name { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--neutral-950); margin-bottom: 0.3rem; }
.fmore__desc { font-size: 0.88rem; line-height: 1.6; color: var(--neutral-600); }

@media (prefers-reduced-motion: reduce) {
    .fhero__cta, .fmore__card { transition: none; }
}

@media (max-width: 980px) {
    .fhero__inner { flex-direction: column; text-align: center; gap: 3rem; }
    .crumbs { justify-content: center; }
    .fhero__subtitle { margin-left: auto; margin-right: auto; }
    .fhero__actions { justify-content: center; }
}

@media (max-width: 560px) {
    .fhero { padding: 6.5rem 1.2rem 3.5rem; }
    .phone-frame { width: 240px; }
    .fbody { padding: 3rem 1.2rem 2.5rem; }
}
