/* Product overview and the three connected feature pages. */
.feature-page main { overflow-wrap: anywhere; }
.feature-page :focus-visible { outline: 3px solid var(--brand-blue); outline-offset: 4px; }
.feature-page .hero :focus-visible { outline-color: var(--brand-yellow); }
.feature-page .btn { max-width: 100%; white-space: normal; text-align: center; }
.feature-hero { padding: 64px 0 72px; }
.feature-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.feature-hero-grid > * { min-width: 0; }
.feature-hero h1 { font-size: clamp(2rem, 3.8vw, 3.35rem); line-height: 1.13; }
.feature-hero p { color: var(--c-text-inverse-muted); }
.feature-hero .lede { font-size: 1.12rem; color: var(--c-text-inverse); }
.feature-hero-copy .product-brand-note { margin: 22px 0; }
.feature-hero-visual { margin: 0; }
.feature-hero-visual > a { display: block; border: 1px solid var(--c-navy-600); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-hero-visual img { width: 100%; height: auto; }
.feature-hero-visual figcaption { margin-top: 16px; font-size: .84rem; line-height: 1.65; color: var(--c-text-inverse-muted); }
.feature-page p a:not(.btn), .feature-page figcaption a { text-decoration: underline; text-underline-offset: 4px; }
.feature-benefits, .feature-related, .feature-hubcards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature-benefits > *, .feature-related > *, .feature-hubcards > * { min-width: 0; }
.feature-page .card:hover { transform: none; }
.feature-hubcards .card { display: flex; flex-direction: column; border-top: 4px solid var(--brand-blue); }
.feature-hubcards .card:nth-child(2) { border-top-color: var(--brand-red); }
.feature-hubcards .card:nth-child(3) { border-top-color: var(--brand-yellow); }
.feature-hubcards .btn { margin-top: auto; align-self: flex-start; }
.feature-hubcards ul { padding-left: 20px; margin: 4px 0 24px; }
.feature-hubcards li { margin-bottom: 8px; font-size: .94rem; }
.feature-related .card { border-top: 3px solid var(--brand-blue); }
.feature-related a:not(.btn) { color: var(--brand-blue); text-decoration: underline; text-underline-offset: 4px; }
.feature-workflow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; list-style: none; padding: 0; margin: 0; counter-reset: feature-step; }
.feature-workflow > li { padding: 28px; min-width: 0; background: white; border: 1px solid var(--c-border); border-radius: var(--radius-md); counter-increment: feature-step; }
.feature-workflow > li::before { content: '0' counter(feature-step); display: block; color: var(--brand-blue); font-weight: 800; margin-bottom: 18px; }
.feature-workflow p:last-child { margin: 0; }
.feature-page .free-faq { overflow-wrap: anywhere; }
@media (max-width: 1000px) {
 .feature-hero-grid { gap: 28px; }
 .feature-hubcards, .feature-related { gap: 16px; }
 .feature-hubcards .card { padding: 24px; }
}
@media (max-width: 840px) {
 .feature-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
 .feature-hero-visual { max-width: 650px; margin-inline: auto; }
 .feature-hubcards { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 700px) {
 .feature-hero { padding: 42px 0 48px; }
 .feature-benefits, .feature-related, .feature-workflow { grid-template-columns: minmax(0, 1fr); }
 .feature-page .container { padding-inline: 20px; }
 .feature-page .product-actions { align-items: stretch; }
 .feature-page .product-actions .btn { width: 100%; }
}
