@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --navy: #1a365d;
    --ink: #17212b;
    --muted: #5d6875;
    --soft: #f4f7f6;
    --line: #dfe7e4;
    --orange: #fa9a2d;
    --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); line-height: 1.6; background: var(--white); }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: auto; }

.topbar { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.94); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(26,54,93,.1); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { display: block; width: 206px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--navy); font-size: 14px; font-weight: 800; }
.nav-links a { position: relative; text-decoration: none; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #b95f00; }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 3px; border-radius: 3px; background: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.phone-link { color: var(--navy); font-weight: 900; text-decoration: none; white-space: nowrap; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border: 1px solid transparent; border-radius: 8px; text-decoration: none; font-weight: 900; }
.button-primary { background: var(--orange); color: var(--navy); }
.button-secondary { border-color: rgba(26,54,93,.2); background: var(--white); color: var(--navy); }
.button-light { border-color: rgba(26,54,93,.18); background: var(--white); color: var(--navy); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero { padding: 92px 0 70px; background: linear-gradient(120deg,rgba(255,255,255,.98),rgba(246,248,244,.96) 58%,rgba(233,241,238,.92)); border-bottom: 1px solid rgba(26,54,93,.1); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .13em; color: var(--navy); font-weight: 850; font-size: .78rem; }
.eyebrow::before { content: ""; width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: var(--orange); }
.hero h1, .section h2 { color: var(--navy); font-weight: 900; line-height: 1.08; margin: 14px 0 20px; }
.hero h1 { font-size: clamp(2.5rem,6vw,4.7rem); max-width: 900px; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 820px; }
.section { padding: 76px 0; }
.soft { background: var(--soft); }
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 35px; }
.card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: 0 8px 30px rgba(26,54,93,.06); }
.card h3 { color: var(--navy); margin-top: 0; }
.card p { color: var(--muted); }
.card a { color: #b95f00; font-weight: 800; }
.profile-start-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.85fr); gap: 48px; align-items: start; }
.profile-clues { margin: 0; padding: 28px; border-left: 5px solid var(--orange); border-radius: 12px; background: var(--navy); color: var(--white); box-shadow: 0 14px 34px rgba(26,54,93,.12); }
.profile-clues h3 { margin: 0 0 16px; font-size: 1.25rem; }
.profile-clues ul { margin: 0; padding-left: 20px; }
.profile-clues li + li { margin-top: 9px; }
.story-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; margin-top: 35px; }
.story-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.story-card img { width: 100%; height: 205px; object-fit: cover; }
.story-card-content { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.story-card-content p { flex: 1; }
.story-card .story-action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; margin-top: 8px; padding: 0 14px; border-radius: 8px; background: var(--orange); color: var(--navy); text-align: center; text-decoration: none; font-size: .88rem; font-weight: 900; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 35px; }
.step { padding: 24px 18px; border-top: 4px solid var(--orange); background: var(--soft); border-radius: 12px; }
.step b { display: block; color: var(--navy); font-size: 1.25rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 35px; }
.price-card { display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-top: 5px solid var(--orange); border-radius: 14px; background: var(--white); box-shadow: 0 8px 30px rgba(26,54,93,.06); }
.price-card h3 { min-height: 48px; margin: 0; color: var(--navy); font-size: 1.15rem; line-height: 1.25; }
.price { margin: 14px 0 4px; color: var(--navy); font-size: 2rem; font-weight: 900; line-height: 1; }
.price-note { color: var(--muted); font-size: .82rem; font-weight: 700; }
.price-card p { flex: 1; color: var(--muted); }
.free-tools-card > p { flex: 0; }
.tool-option { display: grid; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.tool-option strong { color: var(--navy); font-size: .96rem; }
.tool-option span { color: var(--muted); font-size: .86rem; line-height: 1.45; }
.tool-option .button { width: 100%; margin-top: 3px; }
.includes { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--navy); font-size: .84rem; font-weight: 800; }
.review-type-summary { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--navy); font-size: .84rem; font-weight: 800; line-height: 1.6; }
.review-type-summary a { display: inline-block; margin-top: 8px; color: #b85b00; font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.continuity-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 24px; }
.continuity-card { padding: 28px; border-radius: 14px; background: var(--navy); color: var(--white); }
.continuity-card:nth-child(2) { background: #244b78; }
.continuity-card h3 { margin: 0; font-size: 1.3rem; }
.continuity-card .price { color: var(--orange); }
.continuity-card p { color: rgba(255,255,255,.82); }
.scope-note { margin-top: 24px; padding: 20px 24px; border-left: 5px solid var(--orange); background: var(--soft); color: var(--muted); }
.review-process-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 34px; }
.review-step { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.review-step > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: var(--navy); font-weight: 900; }
.review-step h3 { margin: 18px 0 8px; color: var(--navy); }
.review-step p { margin-bottom: 0; color: var(--muted); }
.review-pathways { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 32px; margin-top: 28px; border-top: 1px solid var(--line); }
.review-pathway { position: relative; padding: 30px 6px 32px 0; border-bottom: 1px solid var(--line); background: transparent; }
.review-pathway::before { content: ""; position: absolute; top: -1px; left: 0; width: 72px; height: 4px; background: var(--orange); }
.review-pathway:last-child { grid-column: 1 / -1; }
.review-pathway h3 { margin: 0 0 12px; color: var(--navy); font-size: clamp(1.3rem,2vw,1.65rem); line-height: 1.15; }
.review-pathway p { max-width: 38rem; margin: 0; color: var(--muted); line-height: 1.65; }
.services-catalog { background: #f2eee6; }
.services-catalog .section-heading { max-width: 880px; margin: 0 auto; text-align: center; }
.services-catalog .section-heading h2 { color: #163300; font-size: clamp(2.4rem,5.8vw,4.8rem); line-height: .98; }
.services-catalog .section-heading .lead { margin-left: auto; margin-right: auto; color: rgba(22,51,0,.72); font-weight: 750; }
.service-column-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin-top: 42px; align-items: start; }
.service-column { padding: 24px; border: 1px solid rgba(22,51,0,.13); border-radius: 16px; background: #fbfaf6; box-shadow: 0 18px 42px rgba(22,51,0,.08); }
.service-column-featured { background: #163300; color: var(--white); }
.service-column h3 { margin: 0; color: #163300; font-size: clamp(1.7rem,2.4vw,2.4rem); line-height: 1.02; }
.service-column-featured h3 { color: var(--white); }
.service-column-price { margin: 12px 0 8px; color: #163300; font-size: clamp(1.6rem,2.6vw,2.4rem); line-height: 1; font-weight: 950; }
.service-column-featured .service-column-price { color: #99ed6b; }
.service-column-summary { margin: 0 0 18px; color: rgba(22,51,0,.72); font-size: .95rem; font-weight: 700; line-height: 1.5; }
.service-column-featured .service-column-summary { color: rgba(255,255,255,.78); }
.service-item-list { display: grid; gap: 12px; margin-top: 18px; }
.service-item { display: grid; gap: 8px; padding: 18px; border: 1px solid rgba(22,51,0,.12); border-radius: 12px; background: var(--white); }
.service-column-featured .service-item { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); }
.service-item-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.service-item strong { color: #163300; font-size: 1.04rem; line-height: 1.2; }
.service-column-featured .service-item strong { color: var(--white); }
.service-item span { color: rgba(22,51,0,.68); font-size: .86rem; font-weight: 700; line-height: 1.45; }
.service-column-featured .service-item span { color: rgba(255,255,255,.75); }
.service-item .button { width: fit-content; min-height: 38px; margin-top: 2px; padding: 0 12px; font-size: .82rem; }
.free-tools-column .service-item .button { width: 100%; min-height: 42px; margin-top: 6px; }
.service-column-featured .button-light { color: #163300; }
.new-sticker { display: inline-flex; align-items: center; min-height: 22px; padding: 0 8px; border-radius: 999px; background: var(--orange); color: #163300; font-size: .64rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.service-column-featured .service-item .service-read-link { color: var(--orange); }
.service-read-link { width: fit-content; color: #b85b00; font-size: .82rem; font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.service-footnote { max-width: 780px; margin: 34px auto 0; color: rgba(22,51,0,.68); text-align: center; font-weight: 700; }
.service-callout { display: grid; justify-items: center; gap: 14px; max-width: 880px; margin: 38px auto 0; padding: clamp(26px,4vw,42px); border: 1px solid rgba(22,51,0,.12); border-radius: 18px; background: #fbfaf6; text-align: center; box-shadow: 0 18px 42px rgba(22,51,0,.08); }
.service-callout h3 { max-width: 720px; margin: 0; color: #163300; font-size: clamp(2rem,4vw,3.7rem); line-height: .98; letter-spacing: 0; font-weight: 950; }
.service-callout p { max-width: 640px; margin: 0; color: rgba(22,51,0,.72); font-size: 1.06rem; line-height: 1.55; font-weight: 750; }
.service-callout .button { margin-top: 6px; background: #163300; color: var(--white); }
.service-callout .button:hover { background: var(--orange); color: var(--navy); }
.cta { padding: 65px 0; text-align: center; background: var(--navy); color: white; }
.cta h2 { font-size: clamp(2rem,4vw,3.3rem); margin: 0 0 14px; }
.cta .button { background: var(--orange); color: var(--navy); }
.footer { padding: 46px 0; background: #101b2f; color: rgba(255,255,255,.78); font-size: .95rem; }
.footer-panel { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.95fr) minmax(220px,.7fr); gap: 32px; align-items: start; }
.footer-brand-mark { display: inline-flex; align-items: center; margin-bottom: 18px; }
.footer-brand-mark img { display: block; width: 190px; height: auto; filter: brightness(0) invert(1); opacity: .96; }
.footer-pitch { max-width: 390px; margin: 0; color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.55; font-weight: 650; }
.footer-label { display: block; margin-bottom: 12px; color: var(--white); font-size: 1.08rem; font-weight: 950; }
.footer-social-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.08); color: var(--white); text-decoration: none; font-size: 0; font-weight: 950; transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease; }
.footer-social-link::before { content: ""; display: block; width: 25px; height: 25px; background: currentColor; -webkit-mask: var(--social-icon) center / contain no-repeat; mask: var(--social-icon) center / contain no-repeat; }
.footer-social-link:nth-child(1) { --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6 8.2V6.6c0-.8.2-1.3 1.3-1.3h1.6V2.4c-.8-.1-1.6-.2-2.4-.2-2.5 0-4.3 1.5-4.3 4.3v1.7H8v3.3h2.8v8.3h3.4v-8.3h2.8l.4-3.3h-3z'/%3E%3C/svg%3E"); }
.footer-social-link:nth-child(2) { --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.1 8.7h3.4v10.9H5.1V8.7zm1.7-5.4a2 2 0 1 1 0 4.1 2 2 0 0 1 0-4.1zm4.1 5.4h3.2v1.5h.1c.4-.8 1.5-1.8 3.1-1.8 3.3 0 3.9 2.2 3.9 5v6.2h-3.4v-5.5c0-1.3 0-3-1.8-3s-2.1 1.4-2.1 2.9v5.6h-3.4V8.7z'/%3E%3C/svg%3E"); }
.footer-social-link:nth-child(3) { --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 7.5a3 3 0 0 0-2.1-2.1C18.1 5 12 5 12 5s-6.1 0-7.9.4A3 3 0 0 0 2 7.5 31 31 0 0 0 2 16.5a3 3 0 0 0 2.1 2.1c1.8.4 7.9.4 7.9.4s6.1 0 7.9-.4a3 3 0 0 0 2.1-2.1 31 31 0 0 0 0-9zM10 15.1V8.9l5.3 3.1L10 15.1z'/%3E%3C/svg%3E"); }
.footer-social-link:nth-child(4) { --social-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.3 2.5h9.4c2.6 0 4.8 2.2 4.8 4.8v9.4c0 2.6-2.2 4.8-4.8 4.8H7.3c-2.6 0-4.8-2.2-4.8-4.8V7.3c0-2.6 2.2-4.8 4.8-4.8zm0 2.7c-1.2 0-2.1.9-2.1 2.1v9.4c0 1.2.9 2.1 2.1 2.1h9.4c1.2 0 2.1-.9 2.1-2.1V7.3c0-1.2-.9-2.1-2.1-2.1H7.3zM12 7.1a4.9 4.9 0 1 1 0 9.8 4.9 4.9 0 0 1 0-9.8zm0 2.7a2.2 2.2 0 1 0 0 4.4 2.2 2.2 0 0 0 0-4.4zm5.1-2.9a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2z'/%3E%3C/svg%3E"); }
.footer-social-link:hover { transform: translateY(-2px); border-color: var(--orange); background: var(--orange); color: var(--navy); }
.footer-contact { display: grid; gap: 8px; color: rgba(255,255,255,.76); font-weight: 750; }
.footer-contact a { color: var(--white); text-decoration: none; font-weight: 950; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.54); font-size: .82rem; font-weight: 650; }

.article-hero { padding: 84px 0 38px; background: #f4f0e9; border-bottom: 0; }
.article-shell { width: min(900px, calc(100% - 40px)); margin: 0 auto; }
.article-back { display: inline-flex; margin-bottom: 22px; color: #b85b00; font-weight: 950; text-decoration: none; }
.article-kicker { display: inline-flex; margin: 0 0 18px; color: #b85b00; font-size: .76rem; font-weight: 950; letter-spacing: .13em; text-transform: uppercase; }
.article-hero h1 { max-width: 980px; margin: 0 0 20px; color: #163300; font-size: clamp(2.7rem,5.8vw,5.3rem); line-height: .97; letter-spacing: 0; font-weight: 950; }
.article-deck { max-width: 760px; margin: 0; color: rgba(22,51,0,.72); font-size: 1.12rem; line-height: 1.58; font-weight: 750; }
.article-body { padding: 26px 0 86px; background: #f4f0e9; }
.article-card { padding: clamp(28px,5vw,58px); border: 1px solid rgba(22,51,0,.12); border-radius: 16px; background: #fbfaf6; box-shadow: 0 18px 48px rgba(22,51,0,.08); }
.article-card p { margin: 0 0 20px; color: #344557; font-size: 1.06rem; line-height: 1.72; font-weight: 600; }
.article-card h2 { margin: 44px 0 18px; color: #163300; font-size: clamp(1.8rem,3.1vw,2.75rem); line-height: 1.06; letter-spacing: 0; font-weight: 950; }
.article-card ul { margin: 0 0 22px; padding-left: 22px; color: #344557; font-size: 1.02rem; line-height: 1.65; font-weight: 650; }
.article-card li + li { margin-top: 8px; }
.article-callout { margin: 30px 0; padding: 26px; border-radius: 12px; background: #163300; color: var(--white); }
.article-callout p { margin: 0; color: var(--white); font-size: clamp(1.25rem,2vw,1.8rem); line-height: 1.24; font-weight: 900; }
.article-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(22,51,0,.12); color: rgba(22,51,0,.66); font-size: .92rem; font-weight: 700; }

@media (max-width: 1040px) {
    .nav-links { gap: 18px; }
}
@media (max-width: 850px) {
    .nav { flex-wrap: wrap; padding: 10px 0 8px; }
    .nav-links { display: flex; order: 3; width: 100%; gap: 22px; overflow-x: auto; padding: 9px 0 4px; border-top: 1px solid rgba(26,54,93,.08); scrollbar-width: none; }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { flex: 0 0 auto; }
    .grid, .steps, .story-grid, .pricing-grid, .service-column-grid, .review-process-grid { grid-template-columns: 1fr 1fr; }
    .profile-start-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 65px; }
}
@media (max-width: 580px) {
    .brand img { width: 164px; }
    .phone-link { display: inline-flex; align-items: center; min-height: 42px; padding: 0 10px; color: var(--navy); font-size: 14px; font-weight: 950; }
    .nav-actions .button { display: none; }
    .nav-links { gap: 18px; font-size: 12px; }
    .grid, .steps, .story-grid, .pricing-grid, .service-column-grid, .continuity-grid, .review-process-grid, .review-pathways { grid-template-columns: 1fr; }
    .review-pathway:last-child { grid-column: auto; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .shell { width: min(100% - 28px,1180px); }
    .article-hero { padding: 62px 0 26px; }
    .article-shell { width: min(100% - 28px,900px); }
    .footer { padding: 34px 0; }
    .footer-panel { grid-template-columns: 1fr; gap: 26px; }
    .footer-brand-mark img { width: 172px; }
    .footer-social-grid { gap: 10px; }
    .footer-social-link { width: 52px; height: 52px; }
    .footer-bottom { margin-top: 26px; }
}
