/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
    --bg: #f0f4f8;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --ink: #0f1829;
    --ink-2: #172033;
    --muted: #5f6b7a;
    --faint: #8a95a5;
    --line: #e2e8f0;
    --line-strong: #cbd5e1;
    --blue: #1f5eff;
    --blue-dark: #1647c7;
    --green: #0f8f6a;
    --green-soft: #e7f6f1;
    --amber: #b7791f;
    --amber-soft: #fff5dd;
    --red: #bc3b3b;
    --red-soft: #fff0f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(15,24,41,0.06);
    --shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 36px rgba(15,24,41,0.10);
    --shadow-lg: 0 8px 12px rgba(0,0,0,0.06), 0 24px 56px rgba(15,24,41,0.14);
    --radius: 8px;
    --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

/* ─── Base ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--surface); min-height: 100vh; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

/* ─── Navigation ─────────────────────────────────────────────────────────────── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
}

.nav-link:hover { color: var(--ink); background: var(--bg); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    margin-left: 8px;
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(31,94,255,0.35);
}

/* Search bar pulse animation — triggered when "Start Application" is clicked */
@keyframes searchPulse {
    0%   { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 0 rgba(255,255,255,0.8); }
    25%  { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 18px rgba(255,255,255,0.08); transform: scale(1.015); }
    50%  { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 4px rgba(255,255,255,0.3); transform: scale(1); }
    75%  { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 14px rgba(255,255,255,0.06); transform: scale(1.01); }
    100% { box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 0 rgba(255,255,255,0); transform: scale(1); }
}

.hs-wrap.search-pulse {
    animation: searchPulse 0.9s ease-out 3;
    outline: 3px solid rgba(31,94,255,0.7);
    outline-offset: 4px;
}

.nav-mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 6px;
    border-radius: 6px;
}

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    border-top: 1px solid var(--line);
    padding: 12px 0;
    background: #fff;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
}

.nav-mobile-menu a:hover { color: var(--ink); background: var(--bg); }

/* ─── Shared Buttons ─────────────────────────────────────────────────────────── */
.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    background: var(--blue);
    color: #fff;
    font: 700 15px/1 var(--font);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(31,94,255,0.28);
    transition: all 0.15s;
    text-decoration: none;
}

.btn-solid:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,94,255,0.35); }

.btn-solid-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    background: #fff;
    color: var(--ink);
    font: 700 15px/1 var(--font);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-solid-white:hover { background: #f0f4f8; transform: translateY(-1px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    background: transparent;
    color: var(--ink);
    font: 700 15px/1 var(--font);
    border-radius: 8px;
    border: 2px solid var(--line-strong);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.btn-outline:hover { border-color: var(--ink); background: var(--bg); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    padding: 0 26px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    font: 700 15px/1 var(--font);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }

.btn, .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    background: var(--blue);
    color: #fff;
    font: 700 14px/1 var(--font);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ─── Badges ─────────────────────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    flex-shrink: 0;
}

.badge-green { color: var(--green); background: var(--green-soft); border-color: rgba(15,143,106,0.22); }
.badge-orange { color: var(--amber); background: var(--amber-soft); border-color: rgba(183,121,31,0.22); }
.badge-red { color: var(--red); background: var(--red-soft); border-color: rgba(188,59,59,0.22); }
.badge-dim { color: var(--muted); background: #f8fafc; border-color: var(--line); }

/* Pulsing live indicator */
.live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0f8f6a;
    box-shadow: 0 0 0 3px rgba(15,143,106,0.22);
    animation: livepulse 2.2s infinite;
    flex-shrink: 0;
}

@keyframes livepulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(15,143,106,0.22); }
    50% { box-shadow: 0 0 0 7px rgba(15,143,106,0.07); }
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: linear-gradient(150deg, #0d1526 0%, #172033 55%, #1c2a46 100%);
    padding: 100px 0 96px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 60%, rgba(31,94,255,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(15,143,106,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 999px;
    padding: 8px 18px;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(44px, 6.5vw, 76px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}

.hero-lead {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 44px;
}

.hero-search { max-width: 660px; margin: 0 auto; }

.hs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 7px 7px 7px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.08);
}

.hs-icon { color: #a0aab8; display: flex; flex-shrink: 0; }

.hs-input {
    flex: 1;
    min-width: 0;
    height: 54px;
    border: none;
    outline: none;
    font: 500 16px/1 var(--font);
    color: var(--ink);
    background: transparent;
}

.hs-input::placeholder { color: #b0bac8; }

.hs-btn {
    height: 54px;
    padding: 0 30px;
    background: var(--blue);
    color: #fff;
    font: 700 15px/1 var(--font);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(31,94,255,0.4);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.hs-btn:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(31,94,255,0.45); }

.hs-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hs-trust span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 7px;
}

.hs-trust span::before { content: '✓'; color: #0f8f6a; font-weight: 800; }

/* ─── Stats band ─────────────────────────────────────────────────────────────── */
.stats-band {
    background: #111d31;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 52px;
}

.stat-item strong {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-item span { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 600; white-space: nowrap; }

.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ─── Section header ─────────────────────────────────────────────────────────── */
.section-header {
    max-width: 640px;
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--green);
    border-radius: 999px;
}

.section-header h2 {
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-header p { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 520px; }
.section-header--center p { margin-left: auto; margin-right: auto; }

/* ─── How it works ───────────────────────────────────────────────────────────── */
.hiw-section { padding: 96px 0; background: #fff; }

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hiw-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hiw-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.hiw-num-wrap { display: flex; align-items: center; margin-bottom: 24px; }

.hiw-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(31,94,255,0.1);
    color: var(--blue);
    font: 800 13px/1 var(--mono);
    flex-shrink: 0;
}

.hiw-track { flex: 1; height: 1px; background: var(--line); margin-left: 14px; }

.hiw-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hiw-card h3 { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
.hiw-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.hiw-cta { display: flex; align-items: center; gap: 18px; margin-top: 48px; flex-wrap: wrap; }

.hiw-note { font-size: 13px; font-weight: 600; color: var(--faint); }
.hiw-note::before { content: '✓ '; color: var(--green); }

/* ─── Why Mills IP ───────────────────────────────────────────────────────────── */
.why-section { padding: 96px 0; background: var(--bg); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(31,94,255,0.08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-card h4 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── CTA band ───────────────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, #0d1526 0%, #172033 60%, #1c2a46 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(31,94,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-copy h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.cta-copy p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 480px; }

.cta-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background: #0d1526; }

.footer-main { padding: 72px 0 48px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 18px;
}

.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-badges span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 5px 10px;
    letter-spacing: 0.03em;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: grid; gap: 10px; }

.footer-col a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: #fff; }

.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }

.footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bar p { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ─── Results Page ───────────────────────────────────────────────────────────── */
.rp-header { background: #fff; border-bottom: 1px solid var(--line); padding: 36px 0 32px; }

.rp-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--faint);
    margin-bottom: 20px;
    transition: color 0.15s;
}

.rp-back:hover { color: var(--blue); }

.rp-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.rp-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rp-header-left h1 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.rp-header-left h1 em { font-style: italic; color: var(--blue); }
.rp-header-left p { margin-top: 8px; color: var(--muted); font-size: 15px; }

.rp-search {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--line-strong);
    border-radius: 10px;
    padding: 0 6px 0 16px;
    min-width: 320px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.rp-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,94,255,0.10); }

.rp-search-icon { color: var(--faint); display: flex; flex-shrink: 0; }

.rp-search input {
    flex: 1;
    min-width: 0;
    height: 46px;
    border: none;
    background: transparent;
    outline: none;
    padding: 0 10px;
    font: 600 14px/1 var(--font);
    color: var(--ink);
}

.rp-search button {
    height: 36px;
    padding: 0 18px;
    background: var(--blue);
    color: #fff;
    font: 700 13px/1 var(--font);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s;
}

.rp-search button:hover { background: var(--blue-dark); }

.rp-body { padding: 40px 0 80px; background: var(--bg); }

.rp-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.rp-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 16px; }

.rp-main { display: flex; flex-direction: column; gap: 0; min-width: 0; padding-top: 4px; }

.rp-summary-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.rp-summary-label { font-size: 11px; font-weight: 800; color: var(--faint); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }

.rp-summary-count {
    font-size: 52px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.rp-summary-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.rp-summary-card strong { color: var(--ink); }

.rp-explain-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.rp-explain-card h4 { font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 14px; }

.rp-explain-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }

.rp-explain-list li { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); font-weight: 600; }

.rp-explain-note { font-size: 12px; color: var(--faint); line-height: 1.55; }

.rp-results { display: flex; flex-direction: column; gap: 12px; }

.tm-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.15s, transform 0.15s;
}

.tm-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.tm-card-head { padding: 22px 24px 16px; border-bottom: 1px solid var(--line); }

.tm-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.tm-name { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; }

.tm-owner { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); }

.tm-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 24px;
}

.tm-fact {
    padding: 14px 20px 14px 0;
    border-right: 1px solid var(--line);
}

.tm-fact:last-child { border-right: none; }

.tm-fact dt { font-size: 10px; font-weight: 800; color: var(--faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px; }
.tm-fact dd { font-size: 13px; font-weight: 700; color: var(--ink); font-family: var(--mono); line-height: 1.3; }

/* Results meta bar */
.rp-meta-bar {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    gap: 16px; padding: 16px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.rp-meta-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rp-meta-total { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.rp-meta-sep { width: 1px; height: 18px; background: var(--line); display: inline-block; margin: 0 12px; flex-shrink: 0; }
.rp-meta-showing { font-size: 13px; color: var(--muted); }
.rp-meta-right {
    display: flex; align-items: center; gap: 0;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 10px; padding: 6px 14px; gap: 14px;
}
.rp-meta-key-item { display: flex; align-items: center; gap: 6px; }
.rp-meta-key-item + .rp-meta-key-item { border-left: 1px solid var(--line); padding-left: 14px; }
.rp-badge-label { font-size: 12px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.rp-capped-note { font-size: 12px; color: var(--muted); font-style: italic; }

/* Disclaimer bar */
.rp-disclaimer-bar { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px; margin-bottom: 16px; font-size: 13px; color: #1e40af; line-height: 1.6; }
.rp-disclaimer-bar svg { stroke: #3b82f6; flex-shrink: 0; margin-top: 2px; }

/* Expired marks notice bar */
.rp-expired-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.rp-expired-left { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }
.rp-expired-left svg { stroke: var(--faint); flex-shrink: 0; }
.rp-expired-btn { font-size: 13px; font-weight: 600; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 7px 16px; cursor: pointer; white-space: nowrap; transition: background .15s, border-color .15s, color .15s; }
.rp-expired-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Results grid — single column */
.rp-results--grid { display: flex; flex-direction: column; gap: 14px; }

.rp-load-more { display: flex; align-items: center; justify-content: center; gap: 0; margin: 12px 0 4px; position: relative; }
.rp-load-more-count { position: absolute; right: 0; font-size: 13px; color: var(--muted); }
.rp-load-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: #fff; border: 2px solid var(--line); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color .18s, color .18s, box-shadow .18s; }
.rp-load-more-btn:hover { border-color: var(--blue); color: var(--blue); box-shadow: 0 2px 12px rgba(37,99,235,.10); }
.rp-capped-note { font-size: 12px; color: var(--muted); margin-left: 4px; }

.rp-apply-cta {
    background: linear-gradient(135deg, #0d1526 0%, #172033 100%);
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 8px;
}

.rp-apply-left h3 { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.3; }
.rp-apply-left h3 em { font-style: italic; color: rgba(255,255,255,0.7); }
.rp-apply-left p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.rp-state-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 52px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.rp-state-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 22px;
}

.rp-state-icon--ok { background: var(--green-soft); color: var(--green); }
.rp-state-icon--warn { background: #fff5dd; color: #b7791f; }

.rp-state-card h2 { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.rp-state-card p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.rp-state-card strong { color: var(--ink); }
.rp-state-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Application Form (Phase 2) ────────────────────────────────────────────── */
.stepper-wrap { background: #fff; border-bottom: 1px solid var(--line); padding: 22px 0; }

.stepper { display: flex; align-items: flex-start; max-width: 640px; }

.stepper-step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0; min-width: 80px; }

.stepper-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #d1dae6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #a0aab8;
    background: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.2s;
}

.stepper-step.active .stepper-node { border-color: var(--blue); background: var(--blue); color: #fff; box-shadow: 0 0 0 5px rgba(31,94,255,0.12); }
.stepper-step.done .stepper-node { border-color: var(--green); background: var(--green); color: #fff; }

.stepper-name { font-size: 11px; font-weight: 700; color: #a0aab8; text-align: center; white-space: nowrap; line-height: 1.2; }
.stepper-step.active .stepper-name { color: var(--blue); }
.stepper-step.done .stepper-name { color: var(--green); }

.stepper-track { flex: 1; height: 2px; background: #e2e8f0; margin-top: 17px; min-width: 16px; transition: background 0.2s; }
.stepper-track.done { background: var(--green); }

.form-page { background: #f0f4f8; padding: 36px 0 80px; min-height: calc(100vh - 200px); }

.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; align-items: start; }

.fcard { background: #fff; border-radius: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 28px rgba(17,24,39,0.08); overflow: hidden; }

.fcard-head { padding: 32px 36px 28px; border-bottom: 1px solid #edf2f7; }

.step-pill { display: inline-flex; align-items: center; padding: 5px 12px; background: rgba(31,94,255,0.08); color: var(--blue); border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }

.fcard-head h2 { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1.2; margin: 0; }
.fcard-head p { margin: 8px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.fcard-body { padding: 32px 36px; }
.fcard-foot { border-top: 1px solid #edf2f7; padding: 20px 36px; background: #fafbfd; }

.field { margin-bottom: 24px; }
.field:last-child { margin-bottom: 0; }
.field-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.field-label { font-size: 14px; font-weight: 700; color: var(--ink); }
.field-req { color: var(--red); margin-left: 2px; }
.field-opt { font-size: 12px; font-weight: 600; color: var(--faint); }

.field-input,
.field-textarea {
    width: 100%;
    padding: 0 16px;
    height: 48px;
    border: 1.5px solid #d1dae6;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: 500 15px/1 var(--font);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
}

.field-textarea { height: auto; padding: 14px 16px; line-height: 1.65; resize: vertical; min-height: 128px; }

.field-input:focus,
.field-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,94,255,0.12); }

.field-input.err,
.field-textarea.err { border-color: var(--red); box-shadow: 0 0 0 3px rgba(188,59,59,0.08); }

.field-hint { margin-top: 7px; font-size: 12px; color: var(--faint); line-height: 1.5; }
.field-error { margin-top: 6px; font-size: 12px; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 5px; }
.field-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.owner-opt { position: relative; border: 2px solid #d1dae6; border-radius: 10px; padding: 20px; cursor: pointer; transition: border-color 0.15s, background 0.15s, box-shadow 0.15s; user-select: none; }
.owner-opt input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.owner-opt-icon { width: 42px; height: 42px; border-radius: 10px; background: #f0f4f8; display: flex; align-items: center; justify-content: center; color: var(--muted); margin-bottom: 14px; transition: background 0.15s, color 0.15s; }
.owner-opt h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 5px; }
.owner-opt p { font-size: 13px; color: var(--muted); line-height: 1.45; margin: 0; }
.owner-opt-check { position: absolute; top: 14px; right: 14px; width: 20px; height: 20px; border-radius: 50%; border: 2px solid #d1dae6; display: flex; align-items: center; justify-content: center; transition: all 0.15s; color: transparent; }
.owner-opt:has(input:checked) { border-color: var(--blue); background: rgba(31,94,255,0.03); box-shadow: 0 0 0 3px rgba(31,94,255,0.08); }
.owner-opt:has(input:checked) .owner-opt-icon { background: rgba(31,94,255,0.1); color: var(--blue); }
.owner-opt:has(input:checked) .owner-opt-check { border-color: var(--blue); background: var(--blue); color: #fff; }

.upload-area { position: relative; border: 2px dashed #d1dae6; border-radius: 10px; padding: 36px 24px; text-align: center; cursor: pointer; transition: all 0.15s; background: #fafbfd; }
.upload-area:hover { border-color: var(--blue); background: rgba(31,94,255,0.02); }
.upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-icon-box { width: 52px; height: 52px; border-radius: 12px; background: #fff; border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--muted); box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.upload-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.upload-title span { color: var(--blue); }
.upload-sub { margin-top: 4px; font-size: 13px; color: var(--faint); }
.upload-selected { display: none; align-items: center; gap: 10px; background: var(--green-soft); border: 1px solid rgba(15,143,106,.2); border-radius: 8px; padding: 11px 14px; margin-top: 16px; text-align: left; }
.upload-selected.show { display: flex; }
.upload-selected-icon { color: var(--green); flex-shrink: 0; }
.upload-selected-name { font-size: 13px; font-weight: 700; color: var(--green); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-existing { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--green-soft); border: 1px solid rgba(15,143,106,.2); border-radius: 8px; margin-bottom: 12px; font-size: 13px; font-weight: 600; color: var(--green); }

.form-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.ftrust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--faint); }

.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.fnav-back { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; font-weight: 700; text-decoration: none; padding: 12px 0; transition: color 0.15s; }
.fnav-back:hover { color: var(--ink); }

.fnav-next,
.fnav-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--blue);
    color: #fff;
    font: 700 15px/1 var(--font);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(31,94,255,0.28);
    transition: all 0.15s;
    text-decoration: none;
}

.fnav-next:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(31,94,255,0.32); }
.fnav-submit { background: var(--green); box-shadow: 0 4px 12px rgba(15,143,106,0.28); padding: 14px 36px; font-size: 16px; }
.fnav-submit:hover { background: #0a7557; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,143,106,0.32); }

.submit-note { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; padding: 14px 16px; margin-bottom: 24px; font-size: 13px; color: var(--muted); line-height: 1.6; }

.form-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }

.scard { background: #fff; border-radius: 12px; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 2px 8px rgba(17,24,39,0.06); }
.scard-head { padding: 14px 18px; border-bottom: 1px solid #edf2f7; background: #fafbfd; }
.scard-head h3 { font-size: 12px; font-weight: 800; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; margin: 0; }
.scard-body { padding: 16px 18px; }

.summ-list { display: flex; flex-direction: column; }
.summ-row { padding: 11px 0; border-bottom: 1px solid #f0f4f8; }
.summ-row:last-child { border-bottom: none; }
.summ-key { font-size: 11px; font-weight: 800; color: var(--faint); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.summ-val { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.summ-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--green); background: var(--green-soft); padding: 3px 8px; border-radius: 999px; margin-top: 2px; }

.help-list { display: flex; flex-direction: column; gap: 14px; }
.help-item { display: flex; gap: 12px; align-items: flex-start; }
.help-num { width: 22px; height: 22px; border-radius: 50%; background: rgba(31,94,255,0.1); color: var(--blue); font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.help-text h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0 0 3px; }
.help-text p { font-size: 12px; color: var(--muted); line-height: 1.45; margin: 0; }

.trust-stack { display: flex; flex-direction: column; gap: 10px; }
.tbadge { display: flex; align-items: flex-start; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.tbadge-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--surface-soft); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.tbadge-text h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0 0 3px; }
.tbadge-text p { font-size: 12px; color: var(--muted); line-height: 1.4; margin: 0; }

/* ─── Confirmation page ──────────────────────────────────────────────────────── */
.confirm-wrap { background: #f0f4f8; min-height: calc(100vh - 200px); padding: 52px 0 80px; }
.confirm-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; align-items: start; }
.confirm-main { background: #fff; border-radius: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 28px rgba(17,24,39,0.08); overflow: hidden; }
.confirm-head { padding: 48px 44px 36px; text-align: center; border-bottom: 1px solid #edf2f7; }
.confirm-check { width: 72px; height: 72px; border-radius: 50%; background: var(--green-soft); border: 2px solid rgba(15,143,106,0.2); display: flex; align-items: center; justify-content: center; color: var(--green); margin: 0 auto 22px; }
.confirm-head h1 { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; margin: 0 0 12px; }
.confirm-head p { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 400px; margin: 0 auto; }
.confirm-body { padding: 36px 44px; }
.confirm-body h3 { font-size: 15px; font-weight: 800; color: var(--ink); margin: 0 0 22px; }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 18px; padding-bottom: 26px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 15px; top: 36px; bottom: 0; width: 2px; background: #e2e8f0; }
.tl-dot { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.tl-dot.now { background: var(--green); color: #fff; }
.tl-dot.next { background: #fff; border: 2px solid #d1dae6; color: var(--faint); font-size: 13px; font-weight: 800; }
.tl-content { padding-top: 4px; }
.tl-content h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.tl-content p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }
.confirm-foot { border-top: 1px solid #edf2f7; padding: 22px 44px; background: #fafbfd; display: flex; gap: 12px; align-items: center; }
.confirm-sidebar { display: flex; flex-direction: column; gap: 14px; }

/* Hero flow hint (search → review → apply) */
.hero-flow-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hfh-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
}

.hfh-step.active { color: rgba(255,255,255,0.85); }

.hfh-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.hfh-step.active .hfh-num {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.hfh-arrow { color: rgba(255,255,255,0.2); font-size: 14px; }

/* Trademark context banner on Step 1 (when coming from search) */
.fcard-trademark-context {
    background: linear-gradient(135deg, #0d1526, #172033);
    padding: 20px 36px;
    border-bottom: 1px solid #edf2f7;
}

.ftc-label {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.ftc-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.ftc-note {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* "Search first" advisory on Step 1 (direct access, no brand) */
.fcard-search-prompt {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 36px;
    background: #fff8e6;
    border-bottom: 1px solid #ffe8a0;
    font-size: 13px;
    font-weight: 600;
    color: #8a6200;
    line-height: 1.5;
}

.fcard-search-prompt svg { color: #b7791f; flex-shrink: 0; margin-top: 1px; }
.fcard-search-prompt a { color: #1f5eff; text-decoration: underline; }

/* Trademark identity banner on confirm page */
.confirm-trademark-banner {
    background: linear-gradient(135deg, #0d1526, #172033);
    padding: 24px 44px;
    border-bottom: 1px solid #edf2f7;
}

.ctb-label {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.ctb-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.01em;
    word-break: break-word;
}

.ctb-ref {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    font-family: var(--mono);
}

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; }
    .hiw-grid { grid-template-columns: 1fr; }
    .hiw-track { display: none; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .rp-layout { grid-template-columns: 1fr; }
    .rp-sidebar { position: static; }
    .rp-header-row { align-items: flex-start; flex-direction: column; }
    .rp-search { min-width: unset; width: 100%; }
    .form-layout, .confirm-grid { grid-template-columns: 1fr; }
    .form-sidebar, .confirm-sidebar { position: static; }
    .stats-grid { gap: 0; }
    .stat-divider { display: none; }
    .stat-item { padding: 14px 28px; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 32px, 1160px); }
    .nav-inner { height: 62px; }
    .hero { padding: 72px 0 68px; }
    .hero h1 { font-size: clamp(36px, 8vw, 52px); }
    .hs-wrap { flex-wrap: wrap; padding: 10px; gap: 8px; }
    .hs-input { height: 48px; }
    .hs-btn { width: 100%; height: 48px; justify-content: center; }
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stepper-name { display: none; }
    .stepper-step { min-width: 36px; }
    .fcard-head { padding: 24px 22px 20px; }
    .fcard-body { padding: 24px 22px; }
    .fcard-foot { padding: 18px 22px; }
    .form-nav { flex-direction: column-reverse; align-items: stretch; }
    .fnav-next, .fnav-submit { justify-content: center; }
    .owner-grid, .field-cols { grid-template-columns: 1fr; }
    .rp-apply-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
    .rp-load-more { flex-direction: column; gap: 8px; }
    .rp-load-more-count { position: static; }
    .rp-meta-bar { flex-direction: column; align-items: flex-start; }
    .rp-meta-right { display: none; }
    .tm-facts { grid-template-columns: repeat(2, 1fr); }
    .tm-fact { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 0; }
    .tm-fact:last-child { border-bottom: none; }
    .confirm-head { padding: 36px 22px 28px; }
    .confirm-body { padding: 28px 22px; }
    .confirm-foot { padding: 18px 22px; flex-direction: column; align-items: stretch; }
    .rp-state-card { padding: 36px 22px; }
    .rp-state-actions { flex-direction: column; }
    .section-header { margin-bottom: 36px; }
    .hiw-section, .why-section { padding: 64px 0; }
    .cta-band { padding: 56px 0; }
}
