/* ==========================================================================
   BOMCAS Canada — Saskatchewan Tax & Accounting Firm
   Design system: corporate, robust, professional. Mobile-first.
   Brand: deep navy (#0B2A5B) + cobalt accent (#1A56DB)
   ========================================================================== */

:root {
  --navy: #0B2A5B;
  --navy-900: #071d40;
  --navy-700: #0e347044;
  --cobalt: #1A56DB;
  --cobalt-600: #1448b8;
  --cobalt-50: #eef3fd;
  --ink: #16213a;
  --slate: #475569;
  --slate-light: #64748b;
  --line: #e2e8f0;
  --line-soft: #eef1f6;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-mist: #eef2f8;
  --white: #ffffff;
  --gold: #C8A24B;
  --success: #16794a;
  --danger: #b42318;

  --maxw: 1240px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(11,42,91,.06), 0 1px 3px rgba(11,42,91,.08);
  --shadow: 0 4px 14px rgba(11,42,91,.10);
  --shadow-lg: 0 18px 48px rgba(11,42,91,.16);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  --ff-head: "Saira", "Arial Narrow", system-ui, sans-serif;
  --ff-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --header-h: 64px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cobalt); text-decoration: none; transition: color .18s var(--ease-out); }
a:hover { color: var(--cobalt-600); }
ul, ol { padding-left: 1.15rem; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-head);
  color: var(--navy);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.85rem, 6vw, 3.15rem); }
h2 { font-size: clamp(1.5rem, 4.5vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.section { padding: 56px 0; }
.section-sm { padding: 40px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-mist { background: var(--bg-mist); }
.bg-navy { background: var(--navy); color: #dbe5f5; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--cobalt);
  margin-bottom: .5rem;
  display: inline-block;
}
.bg-navy .eyebrow { color: var(--gold); }
.lead { font-size: 1.12rem; color: var(--slate); }
.bg-navy .lead { color: #c3d2ec; }
.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: var(--radius); border: 2px solid transparent;
  transition: transform .16s var(--ease-out), background .18s, color .18s, border-color .18s, box-shadow .18s;
  text-align: center; line-height: 1.1;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.btn-primary:hover { background: var(--cobalt-600); color: #fff; box-shadow: var(--shadow); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-900); color:#fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: transparent; color:#fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1800; background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11,42,91,.04);
}
body.nav-open { overflow: hidden; }
.topbar { background: var(--navy); color: #c3d2ec; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 1rem; }
.topbar a { color: #dbe5f5; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 1.1rem; align-items: center; }
.topbar .hide-mobile { display: none; }

.header-main .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 34px; width: auto; max-width: 44px; object-fit: contain; flex: none; }
.brand .brand-text { font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: 1.28rem; line-height: 1; letter-spacing: -.01em; }
.brand .brand-text span { color: var(--cobalt); display:block; font-size:.66rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; margin-top:3px; }

/* primary nav */
.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .25s var(--ease-out); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.primary-nav { position: fixed; inset: 0 0 0 auto; top: 0; width: min(86vw, 360px); height: 100%; height: 100dvh;
  background: #ffffff; box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .3s var(--ease-out); padding: 0 0 24px; overflow-y: auto;
  -webkit-overflow-scrolling: touch; z-index: 2100; opacity: 1; pointer-events: none; }
.primary-nav.open { transform: translateX(0); pointer-events: auto; }
.nav-overlay { position: fixed; inset: 0; background: rgba(7,29,64,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 1900; pointer-events: none; }
.nav-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-close { position: absolute; top: 14px; right: 16px; z-index: 3; border: 0; background: rgba(255,255,255,.12); width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; line-height: 1; transition: background .16s var(--ease-out); }
.nav-close:hover { background: rgba(255,255,255,.24); }

/* mobile drawer header: logo + contact */
.nav-drawer-head { background: var(--navy); color: #fff; padding: 22px 22px 18px; }
.nav-drawer-brand { display: flex !important; align-items: center; gap: 11px; padding: 0 44px 0 0 !important; text-decoration: none; }
.nav-drawer-brand img { background: #fff; border-radius: 9px; padding: 5px; box-shadow: 0 6px 18px rgba(0,0,0,.18); flex: none; }
.nav-drawer-brand-text { display: flex; flex-direction: column; font-family: var(--ff-head); font-weight: 800; color: #fff; font-size: 1.04rem; letter-spacing: .02em; line-height: 1.1; }
.nav-drawer-brand-text span { font-size: .68rem; font-weight: 500; letter-spacing: .04em; color: #b9c8e6; margin-top: 3px; text-transform: none; }
.nav-drawer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.nav-drawer-contact a { display: flex !important; align-items: center; gap: 12px; padding: 10px 12px !important; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; color: #fff !important; justify-content: flex-start !important; transition: background .16s var(--ease-out); }
.nav-drawer-contact a:hover { background: rgba(255,255,255,.14); color: #fff !important; }
.nav-drawer-contact .nav-ci { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: var(--cobalt); flex: none; }
.nav-drawer-contact .nav-ci svg { width: 17px; height: 17px; }
.nav-drawer-contact .nav-ct { display: flex; flex-direction: column; font-family: var(--ff-head); font-weight: 700; font-size: .95rem; line-height: 1.2; word-break: break-word; }
.nav-drawer-contact .nav-ct small { font-weight: 500; font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; color: #9fb2d4; margin-bottom: 1px; }

.primary-nav ul { list-style: none; padding: 0; margin: 0; }
.primary-nav > ul > li { border-bottom: 1px solid var(--line-soft); }
.primary-nav a, .primary-nav .has-sub > button {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  padding: 14px 22px; font-family: var(--ff-head); font-weight: 600; color: var(--navy);
  font-size: 1.02rem; background: none; border: 0; text-align: left;
}
.primary-nav .submenu { display: none; background: var(--bg-alt); padding: 4px 0 8px; }
.primary-nav .submenu.open { display: block; }
.primary-nav .submenu a { font-size: .94rem; font-weight: 500; color: var(--slate); padding: 10px 22px 10px 32px; }
.primary-nav .submenu a:hover { color: var(--cobalt); }
.primary-nav .has-sub > button .chev { transition: transform .2s; }
.primary-nav .has-sub.open > button .chev { transform: rotate(180deg); }
.nav-cta { padding: 18px 22px 0; }
.nav-cta > a, .primary-nav .nav-cta a { display: block; width: 100%; justify-content: center; text-align: center; color: #fff !important; background: var(--cobalt); padding: 14px 18px; border-radius: var(--radius); font-family: var(--ff-head); font-weight: 700; }
.nav-cta > a:hover { background: var(--cobalt-600, var(--navy)); color:#fff !important; }

.header-cta-desktop { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero::after { content:""; position:absolute; inset:0; z-index:1;
  background: linear-gradient(120deg, rgba(7,29,64,.95) 0%, rgba(11,42,91,.86) 45%, rgba(20,72,184,.55) 100%); }
.hero .container { position: relative; z-index: 2; padding-top: 56px; padding-bottom: 60px; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero p { color: #cdd9ef; font-size: 1.12rem; max-width: 54ch; margin-top: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; font-size: .9rem; color: #b9c8e4; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust strong { color: #fff; }

.page-hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(115deg, rgba(7,29,64,.93), rgba(20,72,184,.5)); z-index:1; }
.page-hero-bg { position:absolute; inset:0; z-index:0; }
.page-hero-bg img { width:100%; height:100%; object-fit: cover; opacity:.25; }
.page-hero .container { position: relative; z-index: 2; padding: 42px 18px 46px; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p { color: #cdd9ef; max-width: 60ch; margin-top: .8rem; }

/* breadcrumbs */
.breadcrumbs { font-size: .82rem; color: #b9c8e4; margin-bottom: 1rem; }
.breadcrumbs a { color: #cdd9ef; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { opacity: .5; margin: 0 .4rem; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; transition: transform .2s var(--ease-out), box-shadow .2s, border-color .2s;
  position: relative; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #cdd8ea; }
.card .ic { width: 46px; height: 46px; border-radius: 9px; background: var(--cobalt-50); color: var(--cobalt);
  display: grid; place-items: center; margin-bottom: 14px; }
.card h3 { margin-bottom: .5rem; }
.card h3 a { color: var(--navy); }
.card h3 a:hover { color: var(--cobalt); }
.card p { color: var(--slate); font-size: .96rem; }
.card .card-link { margin-top: 14px; display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--cobalt); }
.card .card-link svg { transition: transform .2s var(--ease-out); }
.card:hover .card-link svg { transform: translateX(4px); }
.card-accent { border-top: 3px solid var(--cobalt); }

.service-photo-card { padding: 0; overflow: hidden; }
.service-photo-card .ph { aspect-ratio: 16/10; overflow: hidden; }
.service-photo-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.service-photo-card:hover .ph img { transform: scale(1.05); }
.service-photo-card .body { padding: 22px 24px 26px; }

/* feature list */
.feature-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: .7rem; align-items: flex-start; }
.feature-list .tick { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--cobalt-50);
  color: var(--cobalt); display: grid; place-items: center; margin-top: 3px; }
.feature-list strong { color: var(--navy); font-family: var(--ff-head); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.stat { text-align: center; padding: 18px; }
.stat .num { font-family: var(--ff-head); font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1; }
.stat .lbl { color: #b9c8e4; font-size: .88rem; margin-top: .4rem; }

/* split */
.split { display: grid; gap: 30px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }

/* ---------- prose (content pages) ---------- */
.prose { max-width: 820px; }
.prose h2 { margin: 2.2rem 0 1rem; padding-top: .4rem; }
.prose h3 { margin: 1.6rem 0 .7rem; color: var(--navy); }
.prose p { color: #283446; margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem; color: #283446; }
.prose li { margin-bottom: .5rem; }
.prose strong { color: var(--navy); }
.prose .callout { background: var(--cobalt-50); border-left: 4px solid var(--cobalt); padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0; margin: 1.6rem 0; }
.prose .callout p:last-child { margin: 0; }

.layout-2col { display: grid; gap: 36px; grid-template-columns: 1fr; }
.sidebar-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 22px; }
.sidebar-box h4 { color: var(--navy); margin-bottom: 14px; font-size: 1.05rem; }
.sidebar-box ul { list-style: none; padding: 0; }
.sidebar-box li { border-bottom: 1px solid var(--line-soft); }
.sidebar-box li:last-child { border-bottom: 0; }
.sidebar-box li a { display: block; padding: 9px 0; color: var(--slate); font-size: .94rem; font-weight: 500; }
.sidebar-box li a:hover { color: var(--cobalt); padding-left: 4px; }
.sidebar-cta { background: var(--navy); color: #cdd9ef; text-align: center; }
.sidebar-cta h4 { color: #fff; }
.sidebar-cta p { font-size: .92rem; margin-bottom: 16px; }

/* chips / tags */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: .4rem; padding: 8px 14px; border-radius: 50px;
  background: #fff; border: 1px solid var(--line); font-size: .9rem; font-weight: 600; color: var(--navy);
  font-family: var(--ff-head); transition: .18s; }
.chip:hover { border-color: var(--cobalt); color: var(--cobalt); background: var(--cobalt-50); }

/* FAQ accordion */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-lg); margin-bottom: 12px; overflow: hidden; background:#fff; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-family: var(--ff-head);
  font-weight: 600; font-size: 1.05rem; color: var(--navy); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-q .pm { flex: 0 0 auto; transition: transform .25s var(--ease-out); color: var(--cobalt); font-size: 1.4rem; line-height: 1; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.faq-a-inner { padding: 0 22px 20px; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--cobalt-600)); color: #fff; border-radius: 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6e0f4; max-width: 56ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: .92rem; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cfd8e6; border-radius: var(--radius);
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(26,86,219,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
.form-note { font-size: .84rem; color: var(--slate-light); margin-top: 4px; }
.form-status { padding: 14px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: .95rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #e9f6ef; color: var(--success); border: 1px solid #b7e0c8; }
.form-status.err { background: #fdeceb; color: var(--danger); border: 1px solid #f3c2bd; }
.field-err { display: none; color: var(--danger); font-size: .82rem; font-weight: 600; margin-top: 5px; }
.field-err.show { display: block; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(220,38,38,.12); }
.btn-spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: bom-spin .7s linear infinite; margin-right: 8px; vertical-align: -3px; }
.btn.is-sending .btn-spinner { display: inline-block; }
.btn.is-sending { cursor: progress; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb2d4; font-size: .92rem; }
.footer-top { padding: 52px 0 36px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer-brand p { color: #8ea3c8; max-width: 34ch; margin-top: 14px; }
.footer-brand-lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-brand-mark { flex: 0 0 auto; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--ff-head); font-weight: 700; font-size: 1.32rem; letter-spacing: .01em; color: #fff; text-transform: uppercase; }
.footer-brand-text > span { font-family: var(--ff-body); font-weight: 600; font-size: .62rem; letter-spacing: .18em; color: #6f8fc4; margin-top: 5px; }
.footer-col h5 { font-family: var(--ff-head); color: #fff; font-size: 1rem; margin-bottom: 14px; letter-spacing: .02em; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #9fb2d4; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: 12px; }
.footer-contact svg { flex: 0 0 18px; margin-top: 3px; color: var(--cobalt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; font-size: .85rem; color: #8298bd; }
.footer-bottom a { color: #cdd9ef; font-weight: 600; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cdd9ef; }
.footer-social a:hover { background: var(--cobalt); color: #fff; }

/* ---------- Chat-bubble contact widget ---------- */
.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 1200; }
.chat-fab { position: relative; width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--cobalt, #005EB8); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,51,141,.42); transition: transform .18s var(--ease-out), background .18s var(--ease-out); }
.chat-fab:hover { transform: scale(1.07); background: var(--navy, #00338D); }
.chat-fab:active { transform: scale(.96); }
.chat-fab:focus-visible { outline: 3px solid #9fc1ff; outline-offset: 3px; }
.chat-fab-ic { position: absolute; display: grid; place-items: center; transition: opacity .18s var(--ease-out), transform .22s var(--ease-out); }
.chat-fab-ic svg { width: 28px; height: 28px; }
.chat-fab-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.chat-widget.open .chat-fab-open { opacity: 0; transform: rotate(90deg) scale(.6); }
.chat-widget.open .chat-fab-close { opacity: 1; transform: rotate(0) scale(1); }
.chat-widget.open .chat-fab { background: var(--navy, #00338D); }
/* attention pulse before first open */
.chat-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(0,94,184,.5); }
@media (prefers-reduced-motion: no-preference) {
  .chat-widget:not(.open):not(.interacted) .chat-fab::after { animation: chatPulse 2.4s ease-out infinite; }
}
@keyframes chatPulse { 0% { box-shadow: 0 0 0 0 rgba(0,94,184,.45); } 70% { box-shadow: 0 0 0 16px rgba(0,94,184,0); } 100% { box-shadow: 0 0 0 0 rgba(0,94,184,0); } }
.chat-panel { position: absolute; right: 0; bottom: 74px; width: 360px; max-width: calc(100vw - 40px);
  background: #fff; border-radius: 18px; overflow: hidden; transform-origin: bottom right;
  box-shadow: 0 24px 60px rgba(9,30,66,.28), 0 2px 8px rgba(9,30,66,.12);
  border: 1px solid rgba(9,30,66,.08);
  opacity: 0; transform: translateY(12px) scale(.96); pointer-events: none;
  transition: opacity .2s var(--ease-out), transform .24s var(--ease-out); }
.chat-panel[hidden] { display: none; }
.chat-widget.open .chat-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-head { background: linear-gradient(135deg, var(--navy, #00338D), var(--cobalt, #005EB8)); color: #fff; padding: 16px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.chat-head-id { display: flex; align-items: center; gap: 11px; }
.chat-avatar { width: 40px; height: 40px; border-radius: 10px; background: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 4px 12px rgba(0,0,0,.18); overflow: hidden; }
.chat-avatar svg { width: 22px; height: 22px; }
.chat-avatar img { width: 30px; height: auto; display: block; }
.chat-title { font-weight: 700; font-size: .98rem; margin: 0; line-height: 1.2; }
.chat-status { font-size: .72rem; margin: 2px 0 0; opacity: .9; display: flex; align-items: center; gap: 6px; }
.chat-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.3); flex: none; }
.chat-close { background: rgba(255,255,255,.14); border: none; color: #fff; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; display: grid; place-items: center; transition: background .15s var(--ease-out); }
.chat-close:hover { background: rgba(255,255,255,.28); }
.chat-close svg { width: 16px; height: 16px; }
/* chat header contact bar */
.chat-contactbar { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 16px; background: var(--navy, #00338D); border-bottom: 1px solid rgba(255,255,255,.08); }
.chat-contactbar a { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 9px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #fff; text-decoration: none; transition: background .15s var(--ease-out); min-width: 0; }
.chat-contactbar a:hover { background: rgba(255,255,255,.15); }
.chat-contactbar .chat-ci { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 7px; background: var(--cobalt, #005EB8); flex: none; }
.chat-contactbar .chat-ci svg { width: 15px; height: 15px; }
.chat-contactbar .chat-ct { display: flex; flex-direction: column; min-width: 0; font-family: var(--ff-head); font-weight: 700; font-size: .82rem; line-height: 1.15; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chat-contactbar .chat-ct small { font-weight: 500; font-size: .62rem; letter-spacing: .05em; text-transform: uppercase; color: #9fb2d4; margin-bottom: 1px; }
@media (max-width: 380px) { .chat-contactbar { grid-template-columns: 1fr; } }

.chat-body { padding: 16px; max-height: min(64vh, 460px); overflow-y: auto; }
.chat-intro p { font-size: .86rem; color: #475569; margin: 0 0 14px; line-height: 1.5; }
.chat-intro a { color: var(--cobalt, #005EB8); font-weight: 600; }
.chat-field { margin-bottom: 10px; }
.chat-field label { display: block; font-size: .76rem; font-weight: 600; color: #334155; margin-bottom: 4px; }
.chat-field .req { color: #dc2626; }
.chat-field input, .chat-field textarea, .chat-field select { width: 100%; border: 1px solid #cdd6e4; border-radius: 10px; padding: 9px 11px; font: inherit; font-size: .88rem; color: #0f172a; background: #f8fafc; transition: border-color .15s var(--ease-out), box-shadow .15s var(--ease-out); }
.chat-field input:focus, .chat-field textarea:focus, .chat-field select:focus { outline: none; border-color: var(--cobalt, #005EB8); box-shadow: 0 0 0 3px rgba(0,94,184,.14); background: #fff; }
.chat-field textarea { resize: vertical; min-height: 64px; }
.chat-err { display: none; color: #dc2626; font-size: .74rem; font-weight: 600; margin-top: 4px; }
.chat-err.show { display: block; }
.chat-field.has-error input, .chat-field.has-error textarea, .chat-field.has-error select { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.12); background: #fff; }
.chat-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.chat-submit { width: 100%; border: none; cursor: pointer; background: var(--cobalt, #005EB8); color: #fff; font-weight: 700; font-size: .9rem; padding: 11px 14px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background .15s var(--ease-out), transform .15s var(--ease-out); }
.chat-submit svg { width: 17px; height: 17px; }
.chat-submit:hover { background: var(--navy, #00338D); }
.chat-submit:active { transform: scale(.98); }
.chat-submit:disabled { cursor: progress; }
.chat-spinner { display: none; width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: bom-spin .7s linear infinite; flex: none; }
.chat-submit.is-sending .chat-spinner { display: inline-block; }
.chat-submit.is-sending svg { display: none; }
.chat-feedback { font-size: .82rem; margin: 10px 0 0; line-height: 1.45; min-height: 0; font-weight: 600; }
.chat-feedback.ok { color: #15803d; }
.chat-feedback.err { color: #b91c1c; }
.chat-feedback.sending { color: var(--cobalt, #005EB8); }
.chat-form.sent .chat-field, .chat-form.sent .chat-submit { display: none; }
@keyframes bom-spin { to { transform: rotate(360deg); } }
@media (max-width: 480px) { .chat-panel { bottom: 72px; } }

/* ---------- misc ---------- */
.divider-line { height: 3px; width: 56px; background: var(--cobalt); border-radius: 2px; margin: 14px 0; }
.center-line { margin-left: auto; margin-right: auto; }
.muted { color: var(--slate-light); }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-0{margin-bottom:0}.mb-2{margin-bottom:1rem}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* logo tiles row */
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.trust-tile { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; text-align:center; }
.trust-tile .num { font-family: var(--ff-head); font-size: 1.8rem; font-weight: 700; color: var(--cobalt); }
.trust-tile .lbl { font-size: .82rem; color: var(--slate); }

/* tables */
.table-wrap { overflow-x: auto; margin: 1.4rem 0; }
table.data { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 480px; }
table.data th, table.data td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }
table.data th { background: var(--navy); color: #fff; font-family: var(--ff-head); font-weight: 600; }
table.data tr:nth-child(even) td { background: var(--bg-alt); }

/* ---------- responsive ---------- */
@media (min-width: 560px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar .hide-mobile { display: inline; }
  .trust-row { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 44px; }
  .split.reverse > div:first-child { order: 2; }
  .stats { grid-template-columns: repeat(4,1fr); }
  .layout-2col { grid-template-columns: minmax(0,1fr) 320px; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) {
  .section { padding: 76px 0; }
  .hero .container { padding-top: 84px; padding-bottom: 92px; }
  .page-hero .container { padding: 56px 18px 60px; }

  /* desktop nav */
  .nav-toggle, .nav-close { display: none; }
  .nav-drawer-head { display: none; }
  .nav-overlay { display: none; }
  .primary-nav { position: static; width: auto; height: auto; transform: none; box-shadow: none; padding: 0; overflow: visible; display: flex; align-items: center; pointer-events: auto; }
  .primary-nav > ul { display: flex; align-items: center; gap: 2px; }
  .primary-nav > ul > li { border: 0; position: relative; }
  .primary-nav > ul > li > a, .primary-nav .has-sub > button { padding: 10px 14px; font-size: .95rem; }
  .primary-nav .has-sub > button .chev { width: 14px; height: 14px; margin-left: 2px; }
  .primary-nav .submenu { position: absolute; top: 100%; left: 0; min-width: 280px; background: #fff;
    box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); padding: 8px; display: none;
    border: 1px solid var(--line); transform: translateY(8px); opacity: 0; transition: opacity .18s var(--ease-out), transform .18s var(--ease-out); }
  .primary-nav .has-sub:hover .submenu { display: block; opacity: 1; transform: translateY(0); }
  .primary-nav .submenu a { padding: 9px 14px; border-radius: var(--radius); }
  .primary-nav .submenu a:hover { background: var(--cobalt-50); }
  .primary-nav .submenu.mega { min-width: 620px; display: none; }
  .primary-nav .has-sub:hover .submenu.mega { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .primary-nav .submenu.submenu-2col { min-width: 470px; }
  .primary-nav .has-sub:hover .submenu.submenu-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4px; }
  .nav-cta { display: none; }
  .header-cta-desktop { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}


/* ============================================================
   CLIENT REVIEWS — Google-style cards + horizontal auto-marquee
   ============================================================ */
.reviews-section { background: linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%); overflow: hidden; }
.reviews-agg { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; color: var(--slate); font-size: 1rem; flex-wrap: wrap; justify-content: center; }
.reviews-agg strong { color: var(--navy); }

/* Gold star set */
.stars { display: inline-flex; align-items: center; gap: 2px; line-height: 0; }
.stars .star { width: 18px; height: 18px; fill: #FBBC04; flex: none; }

/* Interactive carousel viewport + manual controls */
.rev-marquee { position: relative; margin-top: 30px; width: 100%; display: flex; align-items: center; gap: 10px; }
.rev-viewport { flex: 1; min-width: 0; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; scroll-padding-inline: 10px; overscroll-behavior-x: contain; touch-action: pan-x pan-y pinch-zoom; -ms-overflow-style: none; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); }
.rev-viewport::-webkit-scrollbar { display: none; height: 0; }
.rev-viewport:focus-visible { outline: 2px solid var(--cobalt, #005EB8); outline-offset: 3px; border-radius: 14px; }
.rev-track { display: flex; gap: 20px; width: max-content; padding: 8px 4px; }
.rev-card { scroll-snap-align: start; }
.rev-viewport { cursor: grab; }
.rev-viewport.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.rev-viewport.dragging .rev-card { pointer-events: none; }

/* Prev / next navigation buttons */
.rev-nav { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid #d7e0ee; background: #fff; color: var(--navy, #0B2A5B); font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: 0 6px 20px -10px rgba(11,42,91,.5); transition: transform 160ms cubic-bezier(0.23,1,0.32,1), background 160ms ease, color 160ms ease, opacity 160ms ease; }
.rev-nav:hover { background: var(--cobalt, #005EB8); color: #fff; }
.rev-nav:active { transform: scale(0.94); }
.rev-nav:disabled { opacity: .35; cursor: default; }
.rev-nav span { transform: translateY(-2px); }

/* Pagination dots */
.rev-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.rev-dot { box-sizing: content-box; width: 7px; height: 7px; padding: 10px 6px; border-radius: 999px; border: none; background: #c4d0e2; background-clip: content-box; cursor: pointer; transition: background 160ms ease; }
.rev-dot:hover { background: #9fb2cd; }
.rev-dot.active { background: var(--gold, #C9A227); }

/* Review card */
.rev-card { background: #fff; border: 1px solid #e6ebf3; border-radius: 14px; padding: 22px 22px 18px; width: 340px; flex: none; box-shadow: 0 6px 24px -16px rgba(11,42,91,.4); display: flex; flex-direction: column; }
.rev-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev-avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: #fff; background: hsl(var(--rev-hue, 215) 48% 42%); }
.rev-id { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.rev-name { font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: .98rem; line-height: 1.2; }
.rev-meta { font-size: .76rem; color: var(--slate-light); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rev-g { width: 22px; height: 22px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; font-size: .85rem; color: #4285F4; background: #fff; border: 1px solid #e6ebf3; }
.rev-card .stars { margin-bottom: 10px; }
.rev-text { color: var(--slate); font-size: .92rem; line-height: 1.62; flex: 1; margin: 0 0 14px; }
.rev-date { font-size: .76rem; color: var(--slate-light); border-top: 1px solid #eef1f6; padding-top: 10px; }

@media (max-width: 600px) {
  .reviews-section .wrap { padding-inline: 18px; }
  .reviews-agg { gap: 8px; font-size: .95rem; }

  /* Mobile: ONE review centered on screen, neighbours peeking, arrows overlaid on the sides */
  .rev-marquee { margin-top: 22px; gap: 0; }
  .rev-viewport {
    -webkit-mask-image: none; mask-image: none;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    /* centre each snapped card within the viewport */
    padding-inline: 0;
  }
  .rev-track {
    gap: 14px;
    /* leading/trailing space so the first & last card can sit centred */
    padding: 6px calc(50vw - (min(78vw, 330px) / 2) - 7px) 8px;
    width: max-content;
  }
  .rev-card {
    width: min(78vw, 330px);
    padding: 22px 20px 18px;
    scroll-snap-align: center;
  }
  /* Arrows stay visible, floated over the peeking neighbours */
  .rev-nav {
    display: grid;
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 42px; height: 42px;
    transform: translateY(-50%);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 8px 22px -8px rgba(11,42,91,.55);
  }
  .rev-nav:active { transform: translateY(-50%) scale(0.92); }
  .rev-prev { left: 2px; }
  .rev-next { right: 2px; }
  .rev-dots { margin-top: 16px; gap: 2px; }
}

/* Footer aggregate rating */
.footer-rating { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 22px; }
.footer-rating .footer-rating-text { color: #c3d2ec; font-size: .92rem; }
.footer-rating .footer-rating-text strong { color: #fff; font-size: 1.05rem; }

/* ====================================================================
   Accountant profile card (sidebar) + Team page grid
   ==================================================================== */
.acct-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(11,42,91,.08));
}
.acct-card-head {
  background: linear-gradient(135deg, var(--navy), var(--cobalt-600));
  padding: 12px 20px;
}
.acct-eyebrow {
  color: var(--gold);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.acct-photo-wrap {
  position: relative;
  background: linear-gradient(180deg, #eef3fd, #fff);
  padding: 18px 18px 0;
  text-align: center;
}
.acct-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(11,42,91,.18);
  background: #dbe5f5;
}
.acct-body { padding: 16px 20px 22px; }
.acct-name {
  font-family: var(--ff-head);
  color: var(--navy);
  font-size: 1.18rem;
  margin: 0 0 2px;
  text-align: center;
}
.acct-title {
  color: var(--cobalt);
  font-weight: 600;
  font-size: .85rem;
  text-align: center;
  margin: 0 0 14px;
}
.acct-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.acct-creds li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 0;
  font-size: .88rem;
  color: var(--slate);
  border-bottom: 1px solid var(--line-soft);
}
.acct-creds li:last-child { border-bottom: 0; }
.acct-ic { flex: none; font-size: 1rem; line-height: 1.2; }
.acct-blurb {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.55;
  margin: 0 0 14px;
}
.acct-contact { display: grid; gap: 6px; margin-bottom: 16px; }
.acct-contact-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--cobalt-50);
}
a.acct-contact-row:hover { color: var(--cobalt); background: #e2ebfb; }
.acct-cta {
  display: block;
  text-align: center;
  background: var(--cobalt);
  color: #fff !important;
  font-family: var(--ff-head);
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background .15s var(--ease-out), transform .15s var(--ease-out);
}
.acct-cta:hover { background: var(--navy); transform: translateY(-1px); }
.acct-cta:active { transform: scale(.98); }

/* Team page grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  margin: 26px 0 10px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,42,91,.14); }
.team-photo-wrap {
  background: linear-gradient(180deg, var(--navy), var(--cobalt-600));
  padding: 26px 0 0;
  text-align: center;
}
.team-photo {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  background: #dbe5f5;
  margin-bottom: -24px;
  position: relative;
  z-index: 2;
}
.team-card-body { padding: 34px 20px 22px; text-align: center; }
.team-name { font-family: var(--ff-head); color: var(--navy); font-size: 1.12rem; margin: 0 0 3px; }
.team-title { color: var(--cobalt); font-weight: 600; font-size: .84rem; margin: 0 0 12px; }
.team-creds { list-style: none; padding: 0; margin: 0; }
.team-creds li {
  font-size: .82rem;
  color: var(--slate);
  padding: 5px 0;
  border-top: 1px solid var(--line-soft);
}

/* ============================================================
   Why-BOMCAS trust section (compliant replacement for reviews)
   ============================================================ */
.why-section { background: linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%); }
.why-section .why-intro { max-width: 760px; margin: 14px auto 0; color: #4a5a73; }
.why-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid #e6ebf3; border-radius: 16px; padding: 28px 26px; box-shadow: 0 8px 30px -20px rgba(11,42,91,.45); position: relative; transition: transform .22s cubic-bezier(0.23,1,0.32,1), box-shadow .22s cubic-bezier(0.23,1,0.32,1); }
.why-card::before { content: ""; position: absolute; left: 26px; top: 0; width: 44px; height: 3px; background: linear-gradient(90deg, #C8A24B, #e6c766); border-radius: 0 0 3px 3px; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px -22px rgba(11,42,91,.55); }
.why-card-title { font-family: var(--ff-head); font-size: 1.12rem; color: #0B2A5B; margin: 6px 0 10px; line-height: 1.3; }
.why-card-text { color: #4a5a73; font-size: .97rem; line-height: 1.65; margin: 0; }
.why-process { margin-top: 46px; border-radius: 18px; padding: 38px 40px; color: #e7eefb; background-image: linear-gradient(135deg, #0B2A5B 0%, #103a78 100%); }
.why-process-head { color: #fff; font-family: var(--ff-head); font-size: 1.3rem; margin: 0 0 24px; }
.why-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-step { display: flex; flex-direction: column; gap: 8px; }
.why-step-title { font-family: var(--ff-head); font-weight: 700; color: #e6c766; font-size: 1.02rem; }
.why-step-text { color: #c3d2ec; font-size: .92rem; line-height: 1.6; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } .why-steps { grid-template-columns: repeat(2, 1fr); } .why-process { padding: 30px 26px; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } .why-steps { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .why-card { transition: none; } .why-card:hover { transform: none; } }
