/* ==========================================================================
   Profincare public website — design system
   Language: white canvas, heavy near-black headlines, pill buttons, large rounded cards,
   generous whitespace (reference: modern Indian fintech). Brand blue matches the CRM;
   deep navy carries feature panels; a warm gold is reserved for small highlights.
   ========================================================================== */
:root {
    --ink: #0b1220;
    --ink-2: #334155;
    --muted: #5b6878;
    --line: #e6eaf1;
    --soft: #f5f7fb;
    --soft-2: #eef2f8;
    --white: #ffffff;
    --brand: #2563eb;
    --brand-600: #1d4ed8;
    --brand-700: #1e40af;
    --brand-soft: #eef4ff;
    --navy: #0b1b3f;
    --navy-2: #13306b;
    --gold: #f5b83d;
    --gold-soft: #fff5de;
    --success: #0f8a4b;
    --success-soft: #e6f7ee;
    --radius-lg: 28px;
    --radius: 22px;
    --radius-sm: 14px;
    --shadow-sm: 0 1px 2px rgba(11, 18, 32, .05);
    --shadow: 0 18px 40px -18px rgba(11, 27, 63, .25);
    --shadow-lg: 0 30px 70px -30px rgba(11, 27, 63, .45);
    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --header-h: 66px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body.site {
    margin: 0; background: var(--white); color: var(--ink); font-family: var(--font);
    font-size: 1rem; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.site a { color: var(--brand); text-decoration: none; }
.site a:hover { color: var(--brand-700); }
.site img { max-width: 100%; display: block; }
.site h1, .site h2, .site h3, .site h4 { color: var(--ink); font-weight: 800; letter-spacing: -.028em; line-height: 1.12; margin: 0 0 .6em; }
.site h1 { font-size: clamp(2.1rem, 1.1rem + 3.1vw, 3.45rem); line-height: 1.06; letter-spacing: -.035em; }
.site h2 { font-size: clamp(1.55rem, 1rem + 1.7vw, 2.3rem); }
.site h3 { font-size: 1.12rem; letter-spacing: -.015em; }
.site p { margin: 0 0 1rem; }
.lead-text { font-size: clamp(1rem, .95rem + .3vw, 1.12rem); color: var(--ink-2); max-width: 40rem; }
.muted { color: var(--muted); }
.container-site { width: min(1200px, 100% - 32px); margin-inline: auto; }
.section { padding-block: clamp(40px, 5vw, 70px); }
.section-tight { padding-block: clamp(26px, 3.5vw, 46px); }
.section-soft { background: linear-gradient(180deg, #f4f7ff 0%, #f8f6ff 100%); }
.section-head { max-width: 44rem; margin-bottom: clamp(18px, 2.5vw, 30px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead-text { margin-inline: auto; }
.text-brand { color: var(--brand); }
.marker { background: linear-gradient(transparent 62%, rgba(245, 184, 61, .45) 62%); padding: 0 .08em; }
.gradient-text { background: linear-gradient(92deg, var(--brand) 0%, #7c3aed 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Eyebrow chip */
.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem; padding: .32rem .8rem .32rem .4rem; margin-bottom: .85rem;
    border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .82rem; font-weight: 600; color: var(--ink-2);
    box-shadow: var(--shadow-sm);
}
.eyebrow .dot { display: inline-grid; place-items: center; width: 1.6rem; height: 1.6rem; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: .85rem; }
.eyebrow.on-dark { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: #dbe4f5; }
.eyebrow.on-dark .dot { background: rgba(245, 184, 61, .18); color: var(--gold); }

/* Buttons */
.btn-pill {
    --b-bg: var(--brand); --b-fg: #fff; --b-bd: var(--brand);
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 46px; padding: .68rem 1.35rem;
    border: 1.5px solid var(--b-bd); border-radius: 999px; background: var(--b-bg); color: var(--b-fg) !important;
    font: 700 .96rem/1.1 var(--font); letter-spacing: -.005em; cursor: pointer; white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn-pill:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(37, 99, 235, .7); background: var(--brand-600); border-color: var(--brand-600); }
.btn-pill:active { transform: none; }
.btn-pill:focus-visible { outline: 3px solid rgba(37, 99, 235, .35); outline-offset: 3px; }
.btn-pill.sm { min-height: 40px; padding: .5rem 1.05rem; font-size: .92rem; }
.btn-pill.lg { min-height: 50px; padding: .78rem 1.6rem; font-size: 1rem; }
.btn-pill.ghost { --b-bg: transparent; --b-fg: var(--ink); --b-bd: var(--line); }
.btn-pill.ghost:hover { background: var(--soft); border-color: #d5dbe6; box-shadow: none; }
.btn-pill.light { --b-bg: #fff; --b-fg: var(--ink); --b-bd: #fff; }
.btn-pill.light:hover { background: #f1f5fb; border-color: #f1f5fb; box-shadow: 0 12px 24px -12px rgba(0, 0, 0, .5); }
.btn-pill.gold { --b-bg: var(--gold); --b-fg: var(--navy); --b-bd: var(--gold); }
.btn-pill.gold:hover { background: #f0a91a; border-color: #f0a91a; box-shadow: 0 12px 24px -12px rgba(245, 184, 61, .8); }
.btn-pill.outline-light { --b-bg: transparent; --b-fg: #fff; --b-bd: rgba(255, 255, 255, .35); }
.btn-pill.outline-light:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); box-shadow: none; }
.link-arrow { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; color: var(--brand); }
.link-arrow i { transition: transform .18s ease; }
.link-arrow:hover i { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1030; height: var(--header-h); display: flex; align-items: center;
    background: rgba(255, 255, 255, .86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 24px -20px rgba(11, 18, 32, .35); }
.site-header .bar { display: flex; align-items: center; gap: 1.5rem; }
/* Logo: height is set here, width follows the image (JB FinPro wordmark, about 5.9 : 1) */
.brand { display: inline-flex; align-items: center; flex: none; line-height: 0; }
.brand-logo { display: block; height: 28px; width: auto; }
.drawer-top .brand-logo { height: 24px; }
.site-footer .brand-logo { height: 30px; }
.nav-main { display: flex; align-items: center; gap: .25rem; margin-left: .75rem; }
.nav-main > a, .nav-drop > button {
    display: inline-flex; align-items: center; gap: .3rem; padding: .55rem .8rem; border: 0; border-radius: 999px; background: none;
    color: var(--ink-2) !important; font: 600 .95rem var(--font); cursor: pointer; position: relative; white-space: nowrap;
}
.nav-main > a:hover, .nav-drop > button:hover, .nav-drop.open > button { color: var(--ink) !important; background: var(--soft); }
.nav-main > a.active::after, .nav-drop.active > button::after {
    content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .2rem; height: 2px; border-radius: 2px; background: var(--brand);
}
.nav-drop { position: relative; }
.nav-drop > button i { font-size: .7rem; transition: transform .2s ease; }
.nav-drop.open > button i { transform: rotate(180deg); }
.mega {
    position: absolute; top: calc(100% + 12px); left: -1rem; width: min(760px, 92vw); padding: 1.25rem; display: none;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.nav-drop.open .mega { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1rem; }
.mega-list { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.mega-item { display: flex; gap: .75rem; align-items: flex-start; padding: .7rem; border-radius: var(--radius-sm); color: var(--ink) !important; }
.mega-item:hover { background: var(--soft); }
.mega-item .ico { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: var(--brand-soft); color: var(--brand); }
.mega-item strong { display: block; font-size: .95rem; line-height: 1.3; }
.mega-item small { color: var(--muted); font-size: .8rem; line-height: 1.35; display: block; }
.mega-side { padding: 1.1rem; border-radius: var(--radius-sm); background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: #dbe4f5; }
.mega-side h4 { color: #fff; font-size: 1.05rem; margin-bottom: .4rem; }
.mega-side a.item { display: flex; align-items: center; gap: .5rem; padding: .45rem 0; color: #fff !important; font-weight: 600; font-size: .92rem; }
.mega-side a.item i { color: var(--gold); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); font-size: 1.35rem; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 1040; display: none; }
.drawer.open { display: block; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(11, 18, 32, .45); }
.drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 88vw); padding: 1.25rem 1.25rem 2rem; overflow-y: auto;
    background: #fff; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: .25rem;
}
.drawer-panel .drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.drawer-panel a.dl { display: flex; align-items: center; gap: .7rem; padding: .8rem .6rem; border-radius: 12px; color: var(--ink) !important; font-weight: 600; }
.drawer-panel a.dl:hover { background: var(--soft); }
.drawer-panel a.dl i { color: var(--brand); width: 1.25rem; text-align: center; }
.drawer-panel .dh { margin: 1rem .6rem .25rem; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden; padding-block: clamp(24px, 3.5vw, 50px) clamp(30px, 4.5vw, 58px);
    background: radial-gradient(38% 55% at 88% 8%, rgba(37, 99, 235, .13), transparent 70%), radial-gradient(34% 50% at 62% 96%, rgba(124, 58, 237, .10), transparent 70%), radial-gradient(34% 50% at 2% 100%, rgba(245, 184, 61, .15), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero h1 { margin-bottom: 1rem; }
.hero .lead-text { margin-bottom: 1.4rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.6rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.75rem; align-items: center; }
.trust-row .stat strong { display: block; font-size: 1.45rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.trust-row .stat span { font-size: .88rem; color: var(--muted); font-weight: 600; }
.trust-row .sep { width: 1px; height: 38px; background: var(--line); }

/* Hero visual composition (pure CSS "app" cards) */
.hero-visual { position: relative; }
.app-card {
    position: relative; border-radius: var(--radius-lg); padding: 1.35rem 1.4rem calc(1.35rem + 30px); color: #e3ebfa;
    background: radial-gradient(120% 90% at 100% 0%, rgba(96, 165, 250, .35) 0%, transparent 55%), linear-gradient(160deg, var(--navy) 0%, #112a5f 100%);
    box-shadow: var(--shadow-lg); overflow: hidden;
}
.app-card::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(closest-side, rgba(245, 184, 61, .28), transparent 70%); }
.app-card .ac-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.app-card .ac-top small { color: #9fb2d6; font-weight: 600; letter-spacing: .02em; }
.app-card .ac-top .pill { padding: .25rem .7rem; border-radius: 999px; background: rgba(34, 197, 94, .16); color: #6ee7a8; font-size: .78rem; font-weight: 700; }
.app-card .ac-amount { font-size: clamp(1.8rem, 1.3rem + 1.3vw, 2.3rem); font-weight: 800; color: #fff; letter-spacing: -.035em; line-height: 1; margin-bottom: .35rem; }
.app-card .ac-sub { color: #9fb2d6; font-size: .86rem; margin-bottom: 1.05rem; }
.track { display: grid; gap: .55rem; position: relative; }
.track .t { display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .9rem; color: #dbe6fb; }
.track .t .b { flex: 0 0 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #9fb2d6; font-size: .9rem; }
.track .t.done .b { background: #22c55e; color: #052e16; }
.track .t.now .b { background: var(--gold); color: var(--navy); box-shadow: 0 0 0 6px rgba(245, 184, 61, .18); }
.track .t small { margin-left: auto; color: #8aa0c8; font-weight: 600; }
.lender-mini { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.lender-mini span { padding: .3rem .7rem; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1); font-size: .78rem; font-weight: 600; color: #dbe6fb; }
.float-card {
    position: relative; display: flex; align-items: center; gap: .6rem; padding: .7rem .8rem; border-radius: 16px; min-width: 0;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); color: var(--ink);
}
.float-card .fi { flex: 0 0 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; font-size: 1rem; }
.float-card small { display: block; color: var(--muted); font-size: .7rem; font-weight: 600; line-height: 1.2; }
.float-card strong { display: block; font-size: .9rem; letter-spacing: -.015em; line-height: 1.25; }
.hero-chips { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; margin: -30px .9rem 0; }
.fc-1 .fi { background: var(--success-soft); color: var(--success); }
.fc-2 .fi { background: var(--brand-soft); color: var(--brand); }
.fc-3 .fi { background: var(--gold-soft); color: #b7791f; }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.cat-tile {
    position: relative; display: flex; flex-direction: column; gap: .45rem; min-height: 188px; padding: 1.3rem; border-radius: var(--radius);
    border: 1px solid var(--line); background: #fff; color: var(--ink) !important; overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6deeb; }
.cat-tile .ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; font-size: 1.3rem; margin-bottom: .35rem; }
.cat-tile h3 { margin: 0; font-size: 1.2rem; }
.cat-tile p { color: var(--muted); font-size: .92rem; margin: 0 0 .35rem; }
.cat-tile .link-arrow { margin-top: auto; }
.tone-blue .ico { background: var(--brand-soft); color: var(--brand); }
.tone-green .ico { background: var(--success-soft); color: var(--success); }
.tone-violet .ico { background: #f3edff; color: #6d28d9; }
.tone-gold .ico { background: var(--gold-soft); color: #b7791f; }
.cat-tile.featured { background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%); border-color: transparent; color: #fff !important; }
.cat-tile.featured h3 { color: #fff; }
.cat-tile.featured p { color: #b9c7e3; }
.cat-tile.featured .ico { background: rgba(255, 255, 255, .1); color: var(--gold); }
.cat-tile.featured .link-arrow { color: var(--gold); }

/* ---------- Service (loan) cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.svc-card {
    display: flex; flex-direction: column; gap: .4rem; padding: 1.2rem; border-radius: var(--radius); border: 1px solid var(--line);
    background: #fff; color: var(--ink) !important; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6deeb; }
.svc-card .top { display: flex; align-items: center; gap: .85rem; margin-bottom: .35rem; }
.svc-card .ico { flex: 0 0 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--brand-soft); color: var(--brand); font-size: 1.2rem; }
.svc-card h3 { margin: 0; font-size: 1.16rem; }
.svc-card p { color: var(--muted); font-size: .92rem; margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: .35rem; margin: .35rem 0 .15rem; }
.chip { display: inline-flex; align-items: center; gap: .3rem; padding: .28rem .7rem; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); color: var(--ink-2); font-size: .8rem; font-weight: 600; }
.chip i { color: var(--success); }
.svc-card .link-arrow { margin-top: auto; padding-top: .4rem; }

/* ---------- Lender marquee ---------- */
.lenders { border-block: 1px solid var(--line); background: #fff; }
.lenders-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: .9rem; }
.lenders-head p { margin: 0; font-weight: 700; color: var(--ink-2); }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: .75rem; width: max-content; }
@media (prefers-reduced-motion: no-preference) { .marquee-track { animation: marquee 60s linear infinite; } .marquee:hover .marquee-track { animation-play-state: paused; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lender-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--line); background: var(--soft); white-space: nowrap; font-weight: 700; color: var(--ink-2); font-size: .95rem; }
.lender-pill .av { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--brand); font-size: .72rem; font-weight: 800; }

/* ---------- Feature rows (alternating, like the reference) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(34px, 4.5vw, 60px); }
.feature-row.flip .fr-visual { order: 2; }
.fr-visual {
    position: relative; min-height: 290px; border-radius: var(--radius-lg); overflow: hidden; padding: 1.5rem; display: flex; align-items: flex-end;
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
}
.fr-visual.v-blue { background: radial-gradient(90% 80% at 0% 0%, #60a5fa 0%, transparent 60%), linear-gradient(160deg, #1d4ed8 0%, #1e3a8a 100%); }
.fr-visual.v-warm { background: radial-gradient(90% 90% at 100% 0%, #fcd34d 0%, transparent 55%), linear-gradient(160deg, #b45309 0%, #7c2d12 100%); }
.fr-visual .big-ico { position: absolute; top: 1.1rem; right: 1.4rem; font-size: 6.5rem; line-height: 1; color: rgba(255, 255, 255, .12); }
.mini-ui { position: relative; width: 100%; max-width: 380px; padding: 1.2rem; border-radius: 20px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow-lg); color: var(--ink); }
.mini-ui .mu-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.mini-ui .mu-row:last-child { border-bottom: 0; }
.mini-ui .mu-row span { color: var(--muted); font-weight: 600; }
.mini-ui .mu-row strong { font-weight: 800; }
.mini-ui .mu-title { display: flex; align-items: center; gap: .6rem; margin-bottom: .4rem; font-weight: 800; }
.mini-ui .mu-title i { color: var(--brand); }
.fr-copy .bullets { list-style: none; padding: 0; margin: .9rem 0 1.25rem; display: grid; gap: .5rem; }
.fr-copy .bullets li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-2); }
.fr-copy .bullets i { flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--success-soft); color: var(--success); font-size: .8rem; margin-top: .2rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; position: relative; }
.step { position: relative; padding: 1.25rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.step .num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--ink); color: #fff; font-weight: 800; margin-bottom: .7rem; }
.step .ico { position: absolute; top: 1.3rem; right: 1.3rem; color: var(--brand); font-size: 1.4rem; opacity: .8; }
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- Why / value cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.why-card { padding: 1.25rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.why-card .ico { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--brand-soft); color: var(--brand); font-size: 1.15rem; margin-bottom: .7rem; }
.why-card h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.why-card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ---------- EMI calculator ---------- */
.emi-card { display: grid; grid-template-columns: 1.15fr .85fr; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.emi-inputs { padding: clamp(1.15rem, 2.4vw, 1.8rem); display: grid; gap: 1.15rem; }
.emi-field label { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 700; margin-bottom: .6rem; }
.emi-field .val { display: inline-flex; align-items: center; gap: .3rem; padding: .35rem .6rem; border-radius: 12px; background: var(--brand-soft); color: var(--brand-700); }
.emi-field .val input { width: 7.5rem; border: 0; background: transparent; color: inherit; font: 800 1rem var(--font); text-align: right; outline: none; }
.emi-field .val input.short { width: 3.6rem; }
.emi-field input[type=range] { width: 100%; accent-color: var(--brand); height: 6px; cursor: pointer; }
.emi-field .scale { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); font-weight: 600; margin-top: .35rem; }
.emi-result { padding: clamp(1.15rem, 2.4vw, 1.8rem); background: linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 100%); color: #dbe6fb; display: flex; flex-direction: column; gap: .95rem; }
.emi-result .label { font-size: .85rem; font-weight: 600; color: #9fb2d6; }
.emi-result .emi-value { font-size: clamp(1.95rem, 1.5rem + 1.3vw, 2.55rem); font-weight: 800; color: #fff; letter-spacing: -.035em; line-height: 1; }
.donut-wrap { display: flex; align-items: center; gap: 1.25rem; }
.donut { --p: 70; flex: none; width: 104px; height: 104px; border-radius: 50%; background: conic-gradient(#60a5fa calc(var(--p) * 1%), var(--gold) 0); display: grid; place-items: center; }
.donut::after { content: ""; width: 62px; height: 62px; border-radius: 50%; background: #10275a; }
.legend { display: grid; gap: .6rem; font-size: .9rem; }
.legend .li { display: flex; align-items: center; gap: .55rem; }
.legend .sw { width: 12px; height: 12px; border-radius: 4px; }
.legend strong { color: #fff; display: block; font-size: 1rem; }
.emi-note { font-size: .78rem; color: #8aa0c8; margin: 0; }
.schedule-wrap { margin-top: 1.5rem; }
.schedule { width: 100%; border-collapse: collapse; font-size: .92rem; }
.schedule th, .schedule td { padding: .65rem .75rem; border-bottom: 1px solid var(--line); text-align: right; }
.schedule th:first-child, .schedule td:first-child { text-align: left; }
.schedule thead th { font-size: .8rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 52rem; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; padding: 0 1.25rem; transition: box-shadow .2s ease, border-color .2s ease; }
.faq details[open] { box-shadow: var(--shadow); border-color: #d6deeb; }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; font-weight: 700; font-size: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: 0 0 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); transition: transform .2s ease; }
.faq details[open] summary i { transform: rotate(45deg); background: var(--brand-soft); color: var(--brand); }
.faq .ans { padding-bottom: .9rem; color: var(--ink-2); }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.t-card { padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; gap: 1rem; }
.stars { color: var(--gold); letter-spacing: .1em; }
.t-card blockquote { margin: 0; color: var(--ink-2); }
.t-card .who strong { display: block; }
.t-card .who small { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(1.5rem, 3.5vw, 2.6rem); color: #dbe6fb;
    background: radial-gradient(70% 90% at 100% 0%, rgba(245, 184, 61, .28) 0%, transparent 60%), radial-gradient(60% 90% at 0% 100%, rgba(96, 165, 250, .3) 0%, transparent 60%), linear-gradient(135deg, var(--navy) 0%, #16367a 100%);
    display: grid; grid-template-columns: 1.3fr auto; gap: 2rem; align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: #b9c7e3; margin: 0; max-width: 38rem; }
.cta-band .ctas { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(22px, 3vw, 40px) clamp(26px, 3.5vw, 44px); background: linear-gradient(135deg, #eef4ff 0%, #f5f0ff 55%, #fff 100%); }
.page-hero::before { content: ""; position: absolute; right: -10%; top: -40%; width: 52vw; height: 52vw; max-width: 760px; max-height: 760px; background: radial-gradient(closest-side, rgba(37, 99, 235, .11), transparent 70%); z-index: 0; }
.page-hero > * { position: relative; z-index: 1; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .84rem; font-weight: 600; color: var(--muted); margin-bottom: .8rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 3.5vw, 48px); align-items: center; }
.page-hero .icon-badge { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: linear-gradient(135deg, var(--brand) 0%, #7c3aed 100%); color: #fff; font-size: 1.5rem; margin-bottom: .9rem; box-shadow: 0 10px 22px -12px rgba(37, 99, 235, .8); }
.facts-card { padding: 1.25rem 1.3rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.facts-card h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .6rem; }
.facts-card .fact { display: flex; align-items: flex-start; gap: .7rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.facts-card .fact:last-child { border-bottom: 0; }
.facts-card .fact i { color: var(--brand); font-size: 1.15rem; margin-top: .1rem; }
.facts-card .fact strong { display: block; font-size: .98rem; }
.facts-card .fact small { color: var(--muted); }

/* Feature grid (inner) */
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.feat { display: flex; gap: .9rem; padding: 1.15rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.feat .ico { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--brand-soft); color: var(--brand); font-size: 1.15rem; }
.feat h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.feat p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Checklists (eligibility / documents) */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.panel { padding: 1.3rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.panel h3 { display: flex; align-items: center; gap: .6rem; }
.panel h3 i { color: var(--brand); }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; color: var(--ink-2); }
.checklist li i { color: var(--success); margin-top: .2rem; }
.doc-tabs { display: inline-flex; gap: .25rem; padding: .3rem; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); margin-bottom: 1.1rem; }
.doc-tabs button { border: 0; background: none; padding: .45rem 1rem; border-radius: 999px; font: 700 .88rem var(--font); color: var(--muted); cursor: pointer; }
.doc-tabs button.on { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.doc-pane[hidden] { display: none; }
.footnote { font-size: .82rem; color: var(--muted); }

/* ---------- Forms ---------- */
.form-card { padding: clamp(1.15rem, 2.4vw, 1.7rem); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.fld label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .4rem; color: var(--ink); }
.fld label .opt { font-weight: 500; color: var(--muted); }
.fld input, .fld select, .fld textarea {
    width: 100%; min-height: 46px; padding: .62rem .9rem; border: 1.5px solid var(--line); border-radius: 13px; background: #fff; color: var(--ink);
    font: 500 1rem var(--font); transition: border-color .15s ease, box-shadow .15s ease;
}
.fld textarea { min-height: 88px; resize: vertical; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(37, 99, 235, .14); }
.fld .prefix { position: relative; }
.fld .prefix span { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 700; }
.fld .prefix input { padding-left: 2.1rem; }
.fld.invalid input, .fld.invalid select, .fld.invalid textarea { border-color: #dc2626; }
.fld .err { color: #b91c1c; font-size: .84rem; font-weight: 600; margin-top: .35rem; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--ink-2); }
.consent input { margin-top: .25rem; width: 18px; height: 18px; accent-color: var(--brand); flex: 0 0 auto; }
.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.alert-site { padding: 1rem 1.2rem; border-radius: 14px; font-weight: 600; margin-bottom: 1.25rem; }
.alert-site.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-site.ok { background: var(--success-soft); color: #065f46; border: 1px solid #a7f3d0; }
.side-steps { display: grid; gap: 1rem; }
.side-steps .ss { display: flex; gap: .9rem; align-items: flex-start; }
.side-steps .ss .n { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: var(--brand-soft); color: var(--brand); font-weight: 800; }
.side-steps .ss strong { display: block; }
.side-steps .ss small { color: var(--muted); }

/* Contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.contact-card { display: flex; gap: .9rem; align-items: flex-start; padding: 1.3rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); color: var(--ink) !important; }
.contact-card .ico { flex: 0 0 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand); font-size: 1.2rem; }
.contact-card small { display: block; color: var(--muted); font-weight: 600; }
.contact-card strong { display: block; word-break: break-word; }

/* Category page service blocks */
.svc-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(20px, 3vw, 40px); padding: clamp(1.25rem, 2.4vw, 1.9rem); border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; }
.svc-block + .svc-block { margin-top: 1rem; }
.svc-block > div > .ico { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--brand-soft); color: var(--brand); font-size: 1.55rem; margin-bottom: 1rem; }
.svc-block h2 { font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem); }
.svc-block .chips { margin-bottom: 1.25rem; }
.svc-block .feat-grid { grid-template-columns: 1fr; align-content: start; }
.svc-block .feat { background: var(--soft); }
.svc-block .disclaimer { font-size: .82rem; color: var(--muted); border-left: 3px solid var(--gold); padding-left: .75rem; margin-top: 1rem; }

/* About: the four service families as small tiles */
.cat-grid.cat-mini { grid-template-columns: 1fr 1fr; }
.cat-mini .cat-tile { min-height: 0; }
.cat-mini .cat-tile h3 { font-size: 1.1rem; }

/* Stats band (about) */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stats-band .sb { padding: 1.15rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); text-align: center; }
.stats-band .sb strong { display: block; font-size: 1.9rem; font-weight: 800; letter-spacing: -.04em; color: var(--ink); }
.stats-band .sb span { color: var(--muted); font-weight: 600; }

/* Thank-you */
.thanks-card { max-width: 620px; margin-inline: auto; text-align: center; padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.thanks-card .tick { width: 84px; height: 84px; margin: 0 auto 1.5rem; display: grid; place-items: center; border-radius: 50%; background: var(--success-soft); color: var(--success); font-size: 2.6rem; }

/* Legal */
.legal { max-width: 52rem; }
.legal h2 { font-size: 1.35rem; margin-top: 2.2rem; }
.legal p, .legal li { color: var(--ink-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #a9b8d6; padding-block: clamp(36px, 4.5vw, 56px) 22px; margin-top: 0; }
.site-footer a { color: #dbe4f5; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .02em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .95rem; }
.footer-contact { display: grid; gap: .5rem; margin-top: 1.25rem; font-size: .95rem; }
.footer-contact span { display: flex; gap: .55rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: .15rem; }
.disclosure { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .82rem; line-height: 1.7; color: #8797b8; }
.disclosure strong { color: #cbd6ec; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; font-size: .85rem; color: #7f8fb0; }

/* Floating WhatsApp / call */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 1020; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff !important; font-size: 1.55rem; background: #22c55e; box-shadow: 0 14px 30px -12px rgba(34, 197, 94, .8); }
.fab:hover { transform: translateY(-2px); }

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease, transform .45s ease; }
    .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
/* The full nav needs ~1180px; below that the menu button takes over. */
@media (max-width: 1180px) {
    .nav-main, .header-cta .btn-pill.ghost { display: none; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .header-cta { margin-left: auto; }
    .header-cta + .nav-toggle { margin-left: .5rem; }
}
@media (max-width: 1024px) {
    .cat-grid, .why-grid, .steps, .stats-band { grid-template-columns: repeat(2, 1fr); }
    .svc-grid, .t-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .hero-grid, .page-hero-grid, .feature-row, .emi-card, .cta-band, .split-2, .svc-block { grid-template-columns: 1fr; }
    .feature-row.flip .fr-visual { order: 0; }
    .hero-visual { margin-top: .25rem; }
    .cta-band .ctas { justify-content: flex-start; }
    .feat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .header-cta .btn-pill { display: none; }
    .why-grid, .steps, .svc-grid, .t-grid, .form-grid { grid-template-columns: 1fr; }
    .stats-band { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
    .trust-row .sep { display: none; }
    .trust-row { display: grid; grid-template-columns: repeat(3, auto); justify-content: space-between; gap: .75rem; }
    .trust-row .stat strong { font-size: 1.3rem; }
    .trust-row .stat span { font-size: .78rem; }
    .app-card { padding: 1.1rem 1.1rem calc(1.1rem + 26px); }
    .lender-mini { display: none; }
    .hero-chips { margin: -26px .5rem 0; gap: .45rem; }
    .float-card { flex-direction: column; align-items: flex-start; gap: .4rem; padding: .6rem .6rem; }
    .hero-ctas .btn-pill { flex: 1 1 100%; }
    .donut { width: 88px; height: 88px; }
    .donut::after { width: 52px; height: 52px; }
    .donut-wrap { gap: 1rem; }
}

/* Skip link: off-screen until focused with the keyboard. */
.skip-link { position: absolute; left: -10000px; top: 12px; z-index: 2000; padding: .6rem 1rem; border-radius: 10px; background: #fff; color: var(--ink); font-weight: 700; box-shadow: var(--shadow); }
.skip-link:focus { left: 12px; }

/* Optical kerning for punctuation in display headlines (the heavy weight leaves a wide gap before , and .). */
.kp { margin-left: -.1em; }
.marker + .kp { margin-left: -.14em; }

/* ==========================================================================
   Colour accents — restrained. Each card gets its own soft tint from a six-colour cycle,
   steps get coloured numbers, and a few backgrounds carry a gentle wash. Brand blue stays
   the only colour on buttons and links.
   ========================================================================== */
:root {
    --violet: #7c3aed; --violet-soft: #f3edff;
    --teal: #0d9488;   --teal-soft: #e3f7f4;
    --amber: #d97706;  --amber-soft: #fff3df;
    --rose: #e11d48;   --rose-soft: #ffecf0;
    --green: #16a34a;  --green-soft: #e7f8ee;
}
/* Six-colour cycle for icon tiles in every card grid */
:is(.svc-grid, .feat-grid, .why-grid, .contact-grid) > :nth-child(6n+2) .ico { background: var(--violet-soft); color: var(--violet); }
:is(.svc-grid, .feat-grid, .why-grid, .contact-grid) > :nth-child(6n+3) .ico { background: var(--teal-soft); color: var(--teal); }
:is(.svc-grid, .feat-grid, .why-grid, .contact-grid) > :nth-child(6n+4) .ico { background: var(--amber-soft); color: var(--amber); }
:is(.svc-grid, .feat-grid, .why-grid, .contact-grid) > :nth-child(6n+5) .ico { background: var(--rose-soft); color: var(--rose); }
:is(.svc-grid, .feat-grid, .why-grid, .contact-grid) > :nth-child(6n+6) .ico { background: var(--green-soft); color: var(--green); }
/* Card hover picks up a hint of its own colour */
.svc-grid > :nth-child(6n+2):hover { border-color: #ddd0fb; }
.svc-grid > :nth-child(6n+3):hover { border-color: #bfe9e2; }
.svc-grid > :nth-child(6n+4):hover { border-color: #f8dcae; }
.svc-grid > :nth-child(6n+5):hover { border-color: #fbc8d3; }
.svc-grid > :nth-child(6n+6):hover { border-color: #bfe8cf; }

/* Coloured step numbers */
.steps > :nth-child(4n+1) .num { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.steps > :nth-child(4n+2) .num { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.steps > :nth-child(4n+3) .num { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.steps > :nth-child(4n+4) .num { background: linear-gradient(135deg, #f59e0b, #b45309); }
.steps > :nth-child(4n+2) .ico { color: var(--violet); }
.steps > :nth-child(4n+3) .ico { color: var(--teal); }
.steps > :nth-child(4n+4) .ico { color: var(--amber); }

/* Hero stats in three colours */
.trust-row .stat:nth-child(1) strong { color: var(--brand); }
.trust-row .stat:nth-child(3) strong { color: var(--violet); }
.trust-row .stat:nth-child(5) strong { color: var(--green); }

/* Category tiles: a soft wash in each tile's colour (Loans stays the navy feature tile) */
.cat-tile.tone-blue:not(.featured) { background: linear-gradient(165deg, #eef4ff 0%, #fff 68%); border-color: #d8e5ff; }
.cat-tile.tone-green { background: linear-gradient(165deg, #effbf4 0%, #fff 68%); border-color: #d4f1df; }
.cat-tile.tone-violet { background: linear-gradient(165deg, #f5f0ff 0%, #fff 68%); border-color: #e6dcfb; }
.cat-tile.tone-gold { background: linear-gradient(165deg, #fff7e8 0%, #fff 68%); border-color: #f6e3bd; }

/* Lender avatars cycle through the same palette */
.marquee-track > :nth-child(6n+1) .av { color: var(--brand); background: var(--brand-soft); border-color: #d8e5ff; }
.marquee-track > :nth-child(6n+2) .av { color: var(--violet); background: var(--violet-soft); border-color: #e6dcfb; }
.marquee-track > :nth-child(6n+3) .av { color: var(--teal); background: var(--teal-soft); border-color: #c9eee8; }
.marquee-track > :nth-child(6n+4) .av { color: var(--amber); background: var(--amber-soft); border-color: #f6e3bd; }
.marquee-track > :nth-child(6n+5) .av { color: var(--rose); background: var(--rose-soft); border-color: #fbd3dc; }
.marquee-track > :nth-child(6n+6) .av { color: var(--green); background: var(--green-soft); border-color: #cdeedb; }

/* About stats in the same palette as the hero stats */
.stats-band .sb:nth-child(1) strong { color: var(--brand); }
.stats-band .sb:nth-child(2) strong { color: var(--violet); }
.stats-band .sb:nth-child(3) strong { color: var(--teal); }
.stats-band .sb:nth-child(4) strong { color: var(--green); }

/* Checklist ticks and eyebrow dots get a touch of warmth */
.section-soft .panel { box-shadow: 0 1px 2px rgba(11, 18, 32, .04); }
.facts-card .fact:nth-child(3n+2) i { color: var(--violet); }
.facts-card .fact:nth-child(3n+3) i { color: var(--teal); }
.facts-card .fact:nth-child(3n+4) i { color: var(--amber); }
.float-card strong, .float-card small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ==========================================================================
   Phones (≤600px): denser card layouts so long pages stay quick to scan.
   ========================================================================== */
@media (max-width: 600px) {
    .site-header .brand-logo { height: 24px; }

    /* Categories: 2 × 2 tiles with icon and title; the whole tile is the link */
    .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
    .cat-tile { min-height: 0; padding: .95rem; gap: .2rem; }
    .cat-tile .ico { width: 40px; height: 40px; border-radius: 12px; font-size: 1.1rem; margin-bottom: .3rem; }
    .cat-tile h3 { font-size: 1rem; }
    .cat-tile p { display: none; }
    .cat-tile .link-arrow { position: absolute; top: .95rem; right: .95rem; margin: 0; font-size: 0; }
    .cat-tile .link-arrow i { font-size: 1rem; }

    /* Service cards: one compact row each (icon · title and tagline · arrow) */
    .svc-grid { gap: .55rem; }
    .svc-card { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; grid-template-areas: "ico title go" "ico text go"; column-gap: .8rem; row-gap: .1rem; align-items: center; padding: .8rem .9rem; }
    .svc-card .top { display: contents; }
    .svc-card .ico { grid-area: ico; align-self: start; width: 42px; height: 42px; }
    .svc-card h3 { grid-area: title; font-size: 1rem; }
    .svc-card p { grid-area: text; font-size: .84rem; line-height: 1.45; }
    .svc-card .chips { display: none; }
    .svc-card .link-arrow { grid-area: go; margin: 0; padding: 0; font-size: 0; }
    .svc-card .link-arrow i { font-size: 1rem; }

    /* Steps and value cards: badge on the left, text beside it */
    .steps, .why-grid { gap: .55rem; }
    .step, .why-card { display: grid; grid-template-columns: 36px minmax(0, 1fr); column-gap: .85rem; align-items: start; padding: .85rem .95rem; }
    .step .num, .why-card .ico { grid-row: 1 / span 2; width: 36px; height: 36px; margin: 0; font-size: 1rem; }
    .step .ico { display: none; }
    .step h3, .why-card h3 { font-size: 1rem; margin: .45rem 0 .2rem; }
    .step p, .why-card p { font-size: .88rem; }

    /* Feature rows: a slimmer frame around the example card */
    .feature-row { gap: 16px; }
    .feature-row + .feature-row { margin-top: 38px; }
    .fr-visual { min-height: 0; padding: 1.9rem .9rem .9rem; }
    .fr-visual .big-ico { top: .4rem; right: .9rem; font-size: 4rem; }
    .mini-ui { padding: .95rem 1rem; border-radius: 16px; }
    .mini-ui .mu-row { padding: .45rem 0; font-size: .88rem; }
    .fr-copy .bullets { margin: .7rem 0 1rem; gap: .4rem; }

    /* Category pages and feature cards: tighter blocks */
    .svc-block { padding: 1rem; gap: 16px; }
    .svc-block > div > .ico { width: 46px; height: 46px; border-radius: 14px; font-size: 1.25rem; margin-bottom: .75rem; }
    .svc-block .chips { margin-bottom: 1rem; }
    .feat-grid { gap: .6rem; }
    .feat { padding: .85rem .9rem; gap: .75rem; }
    .feat .ico { flex-basis: 38px; height: 38px; font-size: 1.05rem; }
    .feat h3 { font-size: 1rem; margin-bottom: .2rem; }
    .feat p { font-size: .88rem; }
    .stats-band .sb { padding: .85rem; }
    .stats-band .sb strong { font-size: 1.55rem; }
    .stats-band .sb span { font-size: .85rem; }

    /* Footer: brand block full width, link columns side by side */
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
    .footer-grid > :first-child { grid-column: 1 / -1; }
    .footer-grid > :nth-child(2) { grid-row: span 2; }
    .site-footer h4 { margin-bottom: .6rem; }
    .site-footer ul { gap: .45rem; font-size: .9rem; }
    .disclosure { font-size: .76rem; line-height: 1.6; }
}
