/* =========================================================
  RychléVýpočty.cz — Tool Page V2 Shared CSS
  Version: 2.0
  Scope: all calculator/tool pages
  Notes:
  - Keep calculator-specific colors in [data-theme="..."] tokens.
  - Keep page-specific layout changes minimal.
  - Prefer inline SVG/CSS visuals over heavy images.
========================================================= */

/* 1. Tokens */
:root {
  --ink: #081a33;
  --ink-2: #0b2447;
  --ink-3: #12355f;
  --blue: #0f5aa8;
  --blue-2: #2e8fff;
  --green: #45b22f;
  --lime: #76e05b;
  --cyan: #35b8ff;
  --violet: #7867ff;
  --orange: #f2a23a;
  --red: #e65353;

  --bg: #f4f8fc;
  --bg-2: #eaf3fb;
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, .78);
  --line: #dce7f2;
  --line-strong: #c9d9e8;
  --muted: #60748d;
  --muted-2: #8090a3;

  --theme-accent: var(--green);
  --theme-accent-2: var(--blue-2);
  --theme-soft: #eefbea;
  --theme-strong: var(--ink);

  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 42px;

  --shadow-soft: 0 16px 42px rgba(8, 26, 51, .08);
  --shadow-premium: 0 28px 72px rgba(8, 26, 51, .13);
  --shadow-strong: 0 34px 86px rgba(8, 26, 51, .19);

  --container: min(100% - 40px, 1180px);
  --header-height: 76px;

  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="mortgage"] {
  --theme-accent: #45b22f;
  --theme-accent-2: #2e8fff;
  --theme-soft: #eefbea;
  --theme-strong: #0b2447;
}

[data-theme="payroll"],
[data-theme="salary"] {
  --theme-accent: #2e8fff;
  --theme-accent-2: #76e05b;
  --theme-soft: #eaf4ff;
  --theme-strong: #0b2447;
}

[data-theme="tax"],
[data-theme="business"] {
  --theme-accent: #7867ff;
  --theme-accent-2: #35b8ff;
  --theme-soft: #f0eeff;
  --theme-strong: #151344;
}

[data-theme="health"] {
  --theme-accent: #28b99b;
  --theme-accent-2: #76e05b;
  --theme-soft: #e9fbf7;
  --theme-strong: #063e35;
}

[data-theme="auto"],
[data-theme="energy"] {
  --theme-accent: #f2a23a;
  --theme-accent-2: #2e8fff;
  --theme-soft: #fff3df;
  --theme-strong: #2a1b08;
}

/* 2. Reset & base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(46, 143, 255, .14), transparent 30%),
    radial-gradient(circle at 85% 8%, color-mix(in srgb, var(--theme-accent) 22%, transparent), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, #ffffff 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--theme-accent) 70%, white); outline-offset: 3px; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: var(--ink); color: white; box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

/* 3. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 11px 18px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800; line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--blue), var(--theme-accent));
  box-shadow: 0 16px 34px color-mix(in srgb, var(--theme-accent) 26%, rgba(8, 26, 51, .22));
}
.btn-secondary { background: white; border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-ghost { background: rgba(255, 255, 255, .62); border-color: rgba(255,255,255,.76); color: var(--ink); }
.btn-lg { min-height: 52px; padding-inline: 24px; }
.btn-full { width: 100%; }

/* 4. Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  min-height: var(--header-height);
  background: rgba(248, 251, 255, .78);
  border-bottom: 1px solid rgba(220, 231, 242, .82);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 14px; color: white; font-size: 12px; font-weight: 950; letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--ink), var(--blue), var(--theme-accent));
  box-shadow: 0 14px 28px rgba(8, 26, 51, .16);
}
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 18px; letter-spacing: -.04em; }
.brand-copy span { color: var(--theme-accent); }
.brand-copy small { font-size: 11px; color: var(--muted); font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 4px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.74); }
.main-nav a { padding: 10px 13px; border-radius: 999px; color: var(--muted); font-weight: 800; font-size: 14px; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); background: white; box-shadow: 0 8px 20px rgba(8, 26, 51, .07); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* 5. Breadcrumbs */
.breadcrumbs { padding-block: 24px 12px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 0; margin: 0; list-style: none; color: var(--muted); font-size: 14px; font-weight: 750; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--line-strong); }
.breadcrumbs a:hover { color: var(--blue); }

/* 6. Hero */
.tool-hero { padding: 18px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(390px, .8fr); gap: 34px; align-items: stretch;
}
.hero-copy {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.72)),
    radial-gradient(circle at 0% 10%, color-mix(in srgb, var(--theme-accent) 18%, transparent), transparent 34%);
  border: 1px solid rgba(255,255,255,.86);
  box-shadow: var(--shadow-premium);
}
.eyebrow {
  margin: 0 0 12px; color: var(--theme-accent); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 950;
}
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 18px; font-size: clamp(38px, 6vw, 72px); line-height: .94; letter-spacing: -.07em; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; }
.trust-pills li { padding: 9px 12px; border-radius: 999px; background: white; color: var(--ink); border: 1px solid var(--line); font-size: 13px; font-weight: 850; box-shadow: 0 8px 20px rgba(8, 26, 51, .05); }
.hero-visual {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); min-height: 430px; padding: 26px;
  background:
    radial-gradient(circle at 24% 16%, color-mix(in srgb, var(--theme-accent) 32%, transparent), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(46, 143, 255, .35), transparent 30%),
    linear-gradient(145deg, var(--ink), var(--ink-2) 54%, color-mix(in srgb, var(--theme-accent) 26%, var(--ink)));
  color: white; box-shadow: var(--shadow-strong);
}
.visual-orb { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .58; pointer-events: none; }
.visual-orb-a { width: 170px; height: 170px; right: -42px; top: -32px; background: var(--theme-accent); }
.visual-orb-b { width: 120px; height: 120px; left: -36px; bottom: 28px; background: var(--blue-2); }
.dashboard-card, .mini-card {
  position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.18); border-radius: 28px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(16px); box-shadow: 0 24px 62px rgba(0,0,0,.18);
}
.dashboard-card-main { padding: 24px; }
.card-kicker, .mini-card span { display: block; color: rgba(255,255,255,.72); font-weight: 850; font-size: 13px; }
.dashboard-card-main strong { display: block; margin: 10px 0 5px; font-size: clamp(38px, 5vw, 56px); letter-spacing: -.06em; }
.dashboard-card-main small { color: rgba(255,255,255,.74); font-weight: 700; }
.dashboard-grid-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.mini-card { padding: 16px; }
.mini-card strong { display: block; margin-top: 6px; font-size: 21px; letter-spacing: -.03em; }
.hero-line-chart { position: absolute; left: 22px; right: 22px; bottom: 24px; width: calc(100% - 44px); opacity: .82; }

/* 7. Anchor nav */
.anchor-nav { position: sticky; top: var(--header-height); z-index: 80; padding: 10px 0; background: rgba(244, 248, 252, .78); backdrop-filter: blur(18px); border-block: 1px solid rgba(220,231,242,.7); }
.anchor-scroll { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.anchor-scroll::-webkit-scrollbar { display: none; }
.anchor-nav a { flex: 0 0 auto; padding: 10px 14px; border-radius: 999px; background: white; border: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 850; }
.anchor-nav a:hover { color: var(--ink); border-color: color-mix(in srgb, var(--theme-accent) 45%, var(--line)); }

/* 8. Calculator shell */
.tool-stage { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .54fr); gap: 24px; align-items: start; padding-block: 34px; }
.calculator-card, .result-panel, .content-card, .decision-card, .next-steps-panel, .related-tools, .faq-section {
  border: 1px solid rgba(220,231,242,.9); background: rgba(255,255,255,.86); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px);
}
.calculator-card { border-radius: var(--radius-xl); padding: clamp(22px, 4vw, 36px); }
.section-heading { text-align: center; max-width: 800px; margin: 0 auto 24px; }
.section-heading.compact { text-align: left; margin-inline: 0; }
.section-heading h2 { margin-bottom: 10px; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.04; letter-spacing: -.055em; }
.section-heading p:not(.eyebrow) { color: var(--muted); line-height: 1.65; font-weight: 650; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.input-group { display: grid; gap: 7px; }
.input-group > span { font-weight: 900; color: var(--ink); }
.input-group > small { color: var(--muted); line-height: 1.45; min-height: 20px; }
.input-shell { display: flex; align-items: center; min-height: 58px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; overflow: hidden; transition: box-shadow .18s ease, border-color .18s ease; }
.input-shell:focus-within { border-color: color-mix(in srgb, var(--theme-accent) 55%, var(--line)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme-accent) 14%, transparent); }
.input-shell input, .input-shell select { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; padding: 16px 4px 16px 16px; color: var(--ink); font-weight: 900; }
.input-shell em { flex: 0 0 auto; padding: 0 16px; color: var(--muted); font-style: normal; font-weight: 850; }
.preset-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.chip { border: 1px solid var(--line); background: white; color: var(--ink); border-radius: 999px; padding: 10px 13px; font-weight: 850; }
.chip:hover, .chip[aria-pressed="true"] { border-color: color-mix(in srgb, var(--theme-accent) 50%, var(--line)); background: var(--theme-soft); }
.advanced-settings { margin-top: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(248,251,255,.72); overflow: hidden; }
.advanced-settings summary { padding: 18px 20px; font-weight: 950; cursor: pointer; }
.advanced-settings .form-grid { padding: 0 20px 20px; }

/* 9. Result panel */
.result-panel { position: sticky; top: calc(var(--header-height) + 72px); border-radius: var(--radius-xl); padding: 20px; }
.result-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.result-header span { color: var(--muted); font-size: 13px; font-weight: 850; }
.result-header strong { padding: 7px 10px; border-radius: 999px; background: var(--theme-soft); color: var(--theme-strong); font-size: 12px; }
.primary-result { overflow: hidden; position: relative; border-radius: 30px; padding: 24px; color: white; background: linear-gradient(135deg, var(--ink), var(--blue), var(--theme-accent)); box-shadow: var(--shadow-premium); }
.primary-result small { color: rgba(255,255,255,.75); font-weight: 850; }
.primary-result output { display: block; margin: 8px 0; font-size: clamp(38px, 5vw, 54px); line-height: .95; letter-spacing: -.065em; font-weight: 950; }
.primary-result p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.45; font-weight: 700; }
.result-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.metric-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 14px; background: #fff; }
.metric-card span { display: block; color: var(--muted); font-size: 12px; font-weight: 850; }
.metric-card strong { display: block; margin-top: 5px; font-size: 18px; letter-spacing: -.03em; }
.status-meter { height: 12px; margin: 16px 0; border-radius: 999px; background: linear-gradient(90deg, var(--green), var(--orange), var(--red)); position: relative; }
.status-meter span { position: absolute; top: 50%; left: var(--meter-position, 50%); width: 22px; height: 22px; transform: translate(-50%, -50%); border: 4px solid white; border-radius: 50%; background: var(--ink); box-shadow: 0 8px 18px rgba(8,26,51,.24); }
.result-explain { padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--muted); line-height: 1.55; font-weight: 650; background: rgba(248,251,255,.82); margin-bottom: 14px; }

/* 10. Decision, next steps, content */
.decision-cockpit, .next-steps, .content-hub, .related-tools, .faq-section { padding-block: 42px; }
.decision-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.decision-card { border-radius: var(--radius-lg); padding: 22px; }
.decision-card-featured { color: white; background: linear-gradient(135deg, var(--ink), color-mix(in srgb, var(--theme-accent) 32%, var(--blue))); }
.decision-card span, .next-step-card span { color: var(--theme-accent); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 950; }
.decision-card-featured span { color: rgba(255,255,255,.76); }
.decision-card h3 { margin: 8px 0 10px; font-size: 22px; letter-spacing: -.04em; }
.decision-card p { margin: 0; color: var(--muted); line-height: 1.6; font-weight: 650; }
.decision-card-featured p { color: rgba(255,255,255,.78); }
.next-steps-panel { border-radius: var(--radius-xl); padding: clamp(22px, 4vw, 34px); display: grid; grid-template-columns: .72fr 1.28fr; gap: 24px; align-items: center; }
.next-steps-panel p:not(.eyebrow) { color: var(--muted); line-height: 1.65; font-weight: 650; }
.next-step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.next-step-card { display: grid; gap: 7px; min-height: 154px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.next-step-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--theme-accent) 45%, var(--line)); box-shadow: var(--shadow-soft); }
.next-step-card strong { font-size: 18px; letter-spacing: -.035em; }
.next-step-card small { color: var(--muted); line-height: 1.5; font-weight: 650; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.content-card { border-radius: var(--radius-lg); padding: 24px; line-height: 1.68; }
.content-card h3 { font-size: 22px; letter-spacing: -.04em; }
.content-card p { color: var(--muted); font-weight: 650; }
.formula-box { margin-top: 16px; padding: 16px; border-radius: var(--radius-md); background: var(--ink); color: white; font-weight: 850; overflow-x: auto; }
.warning-card { background: linear-gradient(180deg, #fff, #fff8eb); }
.related-tools, .faq-section { border-radius: 0; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card { display: grid; gap: 8px; padding: 18px; min-height: 140px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-soft); }
.related-card span { color: var(--theme-accent); font-size: 12px; font-weight: 950; text-transform: uppercase; letter-spacing: .09em; }
.related-card strong { letter-spacing: -.035em; }
.related-card small { color: var(--muted); line-height: 1.45; font-weight: 650; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 10px 28px rgba(8,26,51,.05); }
.faq-list summary { padding: 18px 20px; font-weight: 950; cursor: pointer; }
.faq-list details > div { padding: 0 20px 18px; color: var(--muted); line-height: 1.65; font-weight: 650; }

/* 11. Mobile sticky result */
.mobile-result-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 120; display: none; align-items: center; gap: 10px; padding: 12px; border-radius: 22px; color: white; background: linear-gradient(135deg, var(--ink), var(--blue), var(--theme-accent)); box-shadow: var(--shadow-strong); }
.mobile-result-bar span { font-size: 12px; color: rgba(255,255,255,.72); font-weight: 850; }
.mobile-result-bar strong { margin-right: auto; font-size: 18px; letter-spacing: -.04em; }
.mobile-result-bar a { padding: 9px 12px; border-radius: 999px; background: white; color: var(--ink); font-weight: 900; font-size: 13px; }
.mobile-result-bar:not([hidden]) { display: none; }

/* 12. Footer */
.site-footer { margin-top: 50px; padding: 54px 0 22px; color: white; background: radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--theme-accent) 30%, transparent), transparent 32%), linear-gradient(135deg, var(--ink), #061326 72%); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr .75fr; gap: 34px; }
.brand-footer .brand-copy strong { color: white; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.68); line-height: 1.65; font-weight: 650; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span { padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); font-size: 12px; font-weight: 850; }
.footer-col h2 { font-size: 13px; color: rgba(255,255,255,.52); letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; padding: 7px 0; color: rgba(255,255,255,.74); font-weight: 700; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.54); font-size: 13px; line-height: 1.6; }

/* 13. Responsive */
@media (max-width: 1040px) {
  .main-nav { display: none; }
  .hero-grid, .tool-stage, .next-steps-panel { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .result-panel { position: static; }
  .decision-grid, .content-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 24px, 1180px); --header-height: 66px; }
  body { padding-bottom: 76px; }
  .header-inner { gap: 10px; }
  .brand-copy small, .header-actions .btn-ghost { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 16px; }
  .header-actions .btn-primary { min-height: 40px; padding: 10px 14px; }
  .breadcrumbs { padding-block: 16px 8px; }
  .tool-hero { padding-top: 10px; }
  .hero-copy { padding: 26px 20px; border-radius: 30px; }
  h1 { font-size: clamp(36px, 11vw, 48px); }
  .lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .trust-pills { display: none; }
  .hero-visual { min-height: 320px; padding: 18px; border-radius: 30px; }
  .dashboard-grid-mini, .form-grid, .result-metrics, .next-step-cards, .related-grid, .footer-grid { grid-template-columns: 1fr; }
  .tool-stage { padding-block: 22px; }
  .calculator-card, .result-panel { border-radius: 30px; padding: 18px; }
  .anchor-nav { top: var(--header-height); }
  .section-heading { text-align: left; }
  .section-heading h2 { font-size: 30px; }
  .primary-result output { font-size: 40px; }
  .decision-cockpit, .next-steps, .content-hub, .related-tools, .faq-section { padding-block: 28px; }
  .site-footer { padding-bottom: 94px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

@media (max-width: 760px){.mobile-result-bar:not([hidden]){display:flex}}


/* V2 root-only hotfix: single brand logo and no floating mobile result */
.brand-icon{width:42px;height:42px;display:grid;place-items:center;flex:0 0 42px;border-radius:15px;box-shadow:0 18px 28px rgba(8,26,51,.20)}
.brand-icon svg{width:42px;height:42px;display:block}
.brand-wordmark{font-size:21px;line-height:1;font-weight:950;letter-spacing:-.045em;white-space:nowrap;color:#081A33}
.brand-word-blue,.brand-dot{color:#081A33!important}.brand-word-green{color:#45B22F!important}
.mobile-result-bar,.mobile-sticky{display:none!important}
body{padding-bottom:0!important}
@media(max-width:760px){.brand-icon,.brand-icon svg{width:38px;height:38px}.brand-wordmark{font-size:18px}.mobile-result-bar,.mobile-sticky{display:none!important}body{padding-bottom:0!important}}

/* Brand lock: exact homepage-style logo, no text-only fallback */
.site-header .brand-icon,.site-footer .brand-icon{display:grid!important;opacity:1!important;visibility:visible!important}
.site-header .brand-word-blue,.site-header .brand-dot{color:#081A33!important}
.site-header .brand-word-green{color:#45B22F!important}
.site-footer .brand-word-blue,.site-footer .brand-dot{color:#fff!important}
.site-footer .brand-word-green{color:#45B22F!important}


/* Final upload fix: exact site logo image, no text fallback, no floating result bar */
.brand{display:inline-flex!important;align-items:center!important;gap:0!important;text-decoration:none!important;min-width:auto!important}
.brand-icon,.brand-mark,.brand-wordmark,.brand-copy{display:none!important}
.brand-logo-img{display:block!important;width:220px!important;max-width:100%!important;height:auto!important}
.site-header .brand-logo-img{width:220px!important}
.site-footer .brand-logo-img{width:220px!important}
.mobile-result-bar,.mobile-sticky{display:none!important;visibility:hidden!important}
body{padding-bottom:0!important}
@media(max-width:760px){.site-header .brand-logo-img{width:190px!important}.site-footer .brand-logo-img{width:200px!important}.mobile-result-bar,.mobile-sticky{display:none!important;visibility:hidden!important}body{padding-bottom:0!important}}
