:root {
    --navy:#13344b; --navy-mid:#1a4260; --teal:#3fd1bf; --teal-dark:#2fb9a7;
    --orange:#f5a623; --off-white:#f5f6f8; --mid-grey:#e4e7ec;
    --text:#242c36; --soft:#4a5568; --muted:#8a93a6; --white:#ffffff;
    --shadow:0 4px 24px rgba(19,52,75,0.10); --shadow-lg:0 10px 40px rgba(19,52,75,0.18);
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'DM Sans',sans-serif; color:var(--text); line-height:1.65; background:var(--white); font-size:18px; }
h1,h2,h3,h4 { font-family:'Sora',sans-serif; }

/* NAV */
nav { background:var(--navy); position:sticky; top:0; z-index:1000; padding:0 2rem; box-shadow:0 2px 16px rgba(0,0,0,0.22); }
.nav-inner { max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; height:72px; }
.nav-logo { display:flex; align-items:center; text-decoration:none; }
.nav-logo img { height:52px; width:auto; }
.nav-links { display:flex; list-style:none; gap:2rem; align-items:center; }
.nav-links a { color:rgba(255,255,255,0.82); text-decoration:none; font-size:0.9rem; font-weight:500; transition:color 0.2s; }
.nav-links a:hover { color:var(--teal); }
.nav-cta { background:var(--teal)!important; color:var(--navy)!important; padding:0.5rem 1.3rem; border-radius:4px; font-weight:600!important; font-family:'Sora',sans-serif; }
.nav-cta:hover { background:var(--teal-dark)!important; }

/* SHARED */
.sec { padding:5.5rem 2rem; }
.sec-inner { max-width:1200px; margin:0 auto; }
.bg-off { background:var(--off-white); }
.bg-navy { background:var(--navy); }
.eyebrow { display:inline-flex; align-items:center; gap:0.55rem; font-family:'Sora',sans-serif; font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--teal); margin-bottom:1rem; }
.eyebrow-dot { width:7px; height:7px; border-radius:50%; background:var(--orange); flex-shrink:0; }
.sec-label { font-family:'Sora',sans-serif; font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--orange); margin-bottom:0.7rem; display:flex; align-items:center; gap:0.55rem; }
.sec-label::before { content:''; width:20px; height:2px; background:var(--orange); border-radius:2px; display:block; }
.sec-label.tl { color:var(--teal); }
.sec-label.tl::before { background:var(--teal); }
.sec-h { font-size:clamp(1.85rem,2.8vw,2.55rem); font-weight:700; color:var(--navy); line-height:1.18; margin-bottom:0.9rem; }
.sec-h.light { color:var(--white); }
.sec-p { font-size:1.05rem; color:var(--soft); max-width:680px; line-height:1.78; margin-bottom:2.5rem; }
.btn { font-family:'Sora',sans-serif; font-weight:600; font-size:0.95rem; padding:0.92rem 2rem; border-radius:5px; text-decoration:none; transition:all 0.2s; display:inline-block; }
.btn-teal { background:var(--teal); color:var(--navy); }
.btn-teal:hover { background:var(--teal-dark); transform:translateY(-1px); }
.btn-ghost { border:2px solid rgba(255,255,255,0.35); color:var(--white); }
.btn-ghost:hover { border-color:rgba(255,255,255,0.7); background:rgba(255,255,255,0.07); }

/* HERO */
.hero { min-height:420px; position:relative; overflow:hidden; display:flex; align-items:center; }
.hero-img { position:absolute; inset:0; background-image:url('./img/hero-legal.jpg'); background-size:cover; background-position:center; z-index:0; }
.hero-img::after { content:''; position:absolute; inset:0; background:linear-gradient(105deg, rgba(19,52,75,0.97) 0%, rgba(19,52,75,0.93) 50%, rgba(19,52,75,0.6) 100%); }
.hero-inner { max-width:1200px; margin:0 auto; width:100%; padding:5rem 2rem; position:relative; z-index:1; }
.hero h1 { font-size:clamp(2.1rem,3.4vw,3.1rem); font-weight:700; line-height:1.13; color:var(--white); margin-bottom:1.1rem; }
.hero h1 .hl { color:var(--teal); }
.hero-sub { font-size:1.08rem; color:rgba(255,255,255,0.72); max-width:600px; line-height:1.78; }

/* BREADCRUMB */
.breadcrumb { font-size:0.82rem; color:rgba(255,255,255,0.42); margin-bottom:1.4rem; display:flex; align-items:center; gap:0.5rem; }
.breadcrumb a { color:rgba(255,255,255,0.5); text-decoration:none; transition:color 0.2s; }
.breadcrumb a:hover { color:var(--teal); }
.breadcrumb span { color:rgba(255,255,255,0.25); }

/* CHALLENGE — two col */
.challenge-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.8rem; margin-top:2.5rem; margin-bottom:2rem; }
.challenge-card { background:var(--white); border:1px solid var(--mid-grey); border-radius:12px; padding:2.2rem; position:relative; overflow:hidden; }
.challenge-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--orange); }
.challenge-card h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:0.6rem; }
.challenge-card p { font-size:0.95rem; color:var(--soft); line-height:1.72; margin-bottom:1rem; }
.challenge-card ul { list-style:none; padding:0; }
.challenge-card ul li { font-size:0.93rem; color:var(--soft); padding:0.38rem 0; padding-left:1.2rem; position:relative; border-bottom:1px solid var(--mid-grey); line-height:1.5; }
.challenge-card ul li:last-child { border-bottom:none; }
.challenge-card ul li::before { content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:6px; height:6px; border-radius:50%; background:var(--orange); }

/* RESOURCE BOX */
.resource-box { background:rgba(19,52,75,0.04); border:1px solid rgba(19,52,75,0.1); border-radius:12px; padding:2.2rem; }
.resource-box h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:0.6rem; }
.resource-box p { font-size:0.97rem; color:var(--soft); line-height:1.72; margin-bottom:1rem; }
.resource-box ul { list-style:none; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:0; }
.resource-box ul li { font-size:0.93rem; color:var(--soft); padding:0.4rem 0; padding-left:1.2rem; position:relative; border-bottom:1px solid var(--mid-grey); line-height:1.55; }
.resource-box ul li:last-child, .resource-box ul li:nth-last-child(2):nth-child(odd) { border-bottom:none; }
.resource-box ul li::before { content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:6px; height:6px; border-radius:50%; background:var(--teal); }

/* ECONOMICS */
.econ-strip { background:var(--navy); padding:4rem 2rem; position:relative; overflow:hidden; }
.econ-strip::before { content:''; position:absolute; top:-100px; right:-100px; width:500px; height:500px; background:radial-gradient(circle, rgba(63,209,191,0.1) 0%, transparent 65%); pointer-events:none; }
.econ-inner { max-width:900px; margin:0 auto; text-align:center; position:relative; z-index:1; }
.econ-inner h2 { font-size:clamp(1.6rem,2.4vw,2.1rem); font-weight:700; color:var(--white); margin-bottom:2rem; }
.econ-compare { display:grid; grid-template-columns:1fr auto 1fr; gap:2rem; align-items:center; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:12px; padding:2.5rem; margin-bottom:1.5rem; }
.econ-side { text-align:center; }
.econ-label { font-size:0.85rem; color:rgba(255,255,255,0.5); margin-bottom:0.5rem; }
.econ-num { font-family:'Sora',sans-serif; font-size:2.8rem; font-weight:700; line-height:1; margin-bottom:0.4rem; }
.econ-num.red { color:#e06c6c; }
.econ-num.teal { color:var(--teal); }
.econ-sub { font-size:0.85rem; color:rgba(255,255,255,0.5); }
.econ-arrow { font-size:2rem; color:var(--teal); opacity:0.6; }
.econ-caption { font-size:1rem; color:rgba(255,255,255,0.6); font-style:italic; }

/* OUTCOMES */
.outcomes-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:2.5rem; }
.outcome-stat { background:var(--white); border:1px solid var(--mid-grey); border-radius:10px; padding:2rem 1.4rem; text-align:center; position:relative; overflow:hidden; transition:box-shadow 0.2s, transform 0.2s; }
.outcome-stat::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--teal); }
.outcome-stat:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.outcome-num { font-family:'Sora',sans-serif; font-size:2.2rem; font-weight:700; color:var(--teal); line-height:1; margin-bottom:0.5rem; }
.outcome-lbl { font-size:0.88rem; color:var(--soft); line-height:1.45; }
.outcome-disclaimer { font-size:0.82rem; color:var(--muted); margin-top:1.5rem; text-align:center; }

/* SCENARIOS */
.scenario-card { background:var(--white); border:1px solid var(--mid-grey); border-radius:12px; overflow:hidden; margin-bottom:1.5rem; transition:box-shadow 0.2s; }
.scenario-card:hover { box-shadow:var(--shadow); }
.scenario-card h3 { font-size:1.05rem; font-weight:700; color:var(--white); background:var(--navy-mid); padding:1.2rem 1.8rem; margin:0; }
.scenario-profile { font-size:0.93rem; color:var(--soft); padding:1.2rem 1.8rem; background:var(--off-white); border-bottom:1px solid var(--mid-grey); line-height:1.65; }
.agent-step { padding:1.1rem 1.8rem; border-bottom:1px solid var(--mid-grey); }
.agent-step-title { font-family:'Sora',sans-serif; font-size:0.78rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--teal-dark); margin-bottom:0.4rem; }
.agent-step-body { font-size:0.93rem; color:var(--soft); line-height:1.68; }
.scenario-outcome { font-size:0.93rem; color:var(--navy); padding:1.2rem 1.8rem; background:rgba(63,209,191,0.06); border-top:2px solid rgba(63,209,191,0.25); line-height:1.65; }

/* USE CASE NAV */
.uc-nav { background:var(--off-white); padding:1.4rem 2rem; border-bottom:1px solid var(--mid-grey); }
.uc-nav-inner { max-width:1200px; margin:0 auto; display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.uc-nav-label { font-family:'Sora',sans-serif; font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); margin-right:0.5rem; }
.uc-nav a { font-size:0.88rem; color:var(--soft); text-decoration:none; padding:0.35rem 0.85rem; border-radius:20px; border:1px solid var(--mid-grey); background:var(--white); transition:all 0.2s; font-weight:500; }
.uc-nav a:hover { border-color:var(--teal); color:var(--teal); }
.uc-nav a.active { background:var(--navy); color:var(--white); border-color:var(--navy); }

/* CTA */
.cta-sec { background:var(--navy); padding:5rem 2rem; position:relative; overflow:hidden; text-align:center; }
.cta-sec::before { content:''; position:absolute; bottom:-120px; left:50%; transform:translateX(-50%); width:700px; height:700px; background:radial-gradient(circle, rgba(63,209,191,0.1) 0%, transparent 65%); pointer-events:none; }
.cta-inner { max-width:640px; margin:0 auto; position:relative; z-index:1; }
.cta-sec h2 { font-size:clamp(1.8rem,2.6vw,2.4rem); font-weight:700; color:var(--white); margin-bottom:1rem; }
.cta-sec p { font-size:1.05rem; color:rgba(255,255,255,0.7); margin-bottom:2rem; line-height:1.7; }
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* CREDENTIALS */
.creds { background:var(--off-white); padding:2.4rem 2rem; text-align:center; }
.creds-label { font-family:'Sora',sans-serif; font-size:0.72rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:0.7rem; }
.creds-list { font-size:0.95rem; color:var(--soft); font-weight:500; }

/* FOOTER */
footer { background:var(--navy); padding:2.2rem 2rem; }
.footer-inner { max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1.2rem; }
.footer-links { display:flex; gap:2rem; flex-wrap:wrap; }
.footer-links a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.9rem; transition:color 0.2s; }
.footer-links a:hover { color:var(--teal); }
.footer-right { display:flex; align-items:center; gap:1.4rem; }
.footer-copy { color:rgba(255,255,255,0.3); font-size:0.84rem; }

/* RESPONSIVE */
@media (max-width:960px) {
    .challenge-grid { grid-template-columns:1fr; }
    .outcomes-row { grid-template-columns:1fr 1fr; }
    .resource-box ul { grid-template-columns:1fr; }
    .econ-compare { grid-template-columns:1fr; gap:1.5rem; }
    .econ-arrow { transform:rotate(90deg); }
}
@media (max-width:600px) {
    .nav-links { display:none; }
    .outcomes-row { grid-template-columns:1fr 1fr; }
    .cta-btns { flex-direction:column; align-items:center; }
}