/* CJP Accounting Solutions — modern rebuild
   Brand: Sage / CJP green palette */

:root {
  /* CJP brand: cyan-blue (#20a0d0) + teal (#3dbcb2) sampled from the logo */
  --green-900: #0a2e38;   /* deep teal-navy */
  --green-800: #0e5560;   /* deep teal */
  --green-700: #1f9fcf;   /* CJP cyan-blue (primary) */
  --green-600: #2caac4;   /* blue-teal blend */
  --green-500: #3dbcb2;   /* CJP teal */
  --lime: #3dbcb2;        /* teal accent */
  --lime-dark: #2aa39a;   /* deeper teal */
  --ink: #103038;
  --body: #3f5560;
  --muted: #6a8088;
  --line: #e0ebec;
  --bg: #ffffff;
  --bg-soft: #f1f8f8;
  --bg-green-tint: #e6f4f5;
  --shadow: 0 6px 24px rgba(10, 46, 56, 0.08);
  --shadow-lg: 0 16px 48px rgba(10, 46, 56, 0.14);
  --radius: 14px;
  --maxw: 1300px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background-color: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-500); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--body); max-width: 760px; }
.center .lead { margin-left: auto; margin-right: auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--green-600); margin-bottom: .6rem; }

/* Top utility bar */
.topbar {
  background: #ffffff;
  color: #20A0D0;
  font-size: .85rem;
  border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.topbar a { color: #20A0D0; }
.topbar .topbar-meta span { margin-right: 18px; white-space: nowrap; }
.topbar .badge { background: var(--lime); color: var(--green-900); padding: 2px 10px; border-radius: 20px; font-weight: 700; font-size: .75rem; }
.topbar-tagline { font-weight: 600; }
.topbar .container { align-items: center; justify-content: space-between; gap: 22px; }
.topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; white-space: nowrap; line-height: 1; }
.topbar-tagline { display: inline-flex; align-items: center; line-height: 1; }
.tb-ico { font-size: 1.35em; line-height: 1; display: inline-block; }
.tb-mail { font-size: 2.4em; line-height: 1; position: relative; top: -3px; }

/* Header / nav */
.site-top { position: sticky; top: 0; z-index: 60; }
.site-header {
  position: relative; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; color: var(--ink); font-size: 1.15rem; letter-spacing: -.01em; }
.brand .logo {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--green-700), var(--lime));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1rem; flex: none;
  box-shadow: var(--shadow);
}
.brand small { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .02em; }

.menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a { display: block; padding: 10px 13px; border-radius: 9px; font-weight: 600; color: var(--ink); font-size: .96rem; white-space: nowrap; }
.menu > li > a:hover, .menu > li.current > a { background: var(--bg-green-tint); color: var(--green-700); }
.menu > li.has-sub > a::after { content: "▾"; margin-left: 6px; font-size: .7rem; color: var(--muted); }

.submenu {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 6px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .16s ease;
}
.menu > li.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 9px 12px; border-radius: 8px; font-size: .92rem; color: var(--body); font-weight: 500; }
.submenu li a:hover { background: var(--bg-green-tint); color: var(--green-700); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.header-logo { height: 54px; width: auto; display: block; }
@media (max-width: 920px) { .header-logo { height: 40px; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 30px; font-weight: 700; font-size: .96rem;
  border: 2px solid transparent; cursor: pointer; transition: .16s ease; white-space: nowrap;
}
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-800); color: #fff; transform: translateY(-1px); }
.btn-lime { background: var(--lime); color: var(--green-900); }
.btn-lime:hover { background: var(--lime-dark); color: var(--green-900); }
.btn-ghost { border-color: var(--green-700); color: var(--green-700); background: transparent; }
.btn-ghost:hover { background: var(--green-700); color: #fff; }
.btn-white { background: #fff; color: var(--green-800); }
.btn-white:hover { background: #f0f0f0; color: var(--green-900); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .2s; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #20A0D0 0%, #3DBCB2 50%, #20A0D0 100%);
  background-size: 220% 220%;
  animation: breathe 16s ease-in-out infinite;
  color: #ffffff; position: relative; overflow: hidden;
}
@keyframes breathe {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) { .hero, .t-band, .page-banner { animation: none; } }
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(61,188,178,.45), transparent 70%); border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 84px; }
.hero h1 { color: #fff; max-width: 14ch; }
.hero p { color: #f2fcff; font-size: 1.22rem; max-width: 60ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-badges span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); padding: 7px 14px; border-radius: 20px; font-size: .85rem; font-weight: 600; }

/* Page banner (interior) */
.page-banner { background: linear-gradient(135deg, #20A0D0 0%, #3DBCB2 50%, #20A0D0 100%); background-size: 220% 220%; animation: breathe 16s ease-in-out infinite; color: #eaf3fc; padding: 56px 0 80px; position: relative; overflow: hidden; }
.page-banner > .container { position: relative; z-index: 3; }
.page-banner h1 { color: #fff; }
.page-banner p { color: #cfe3f6; max-width: 70ch; margin-bottom: 0; }
.breadcrumb { font-size: .85rem; color: #b9d3f0; margin-bottom: 10px; }
.breadcrumb a { color: #eaf3fc; }

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: .18s ease; height: 100%;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #cbddf2; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--body); font-size: .98rem; margin-bottom: .8rem; }
.card .icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-green-tint); color: var(--green-700); font-size: 1.4rem; margin-bottom: 16px;
}
.card-link { font-weight: 700; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: "→"; transition: .15s; }
.card:hover .card-link::after { transform: translateX(4px); }

/* White panels so floating text never sits on the animated dot/number background */
.section .center,
.split > div:not(.quote),
.section > .container > .lead,
.contact-grid > div:not(.card) {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 30px 32px;
}
.section .center { padding: 30px 36px; }
@media (max-width: 560px) {
  .section .center, .split > div:not(.quote),
  .section > .container > .lead, .contact-grid > div:not(.card) { padding: 22px 20px; }
}

/* Pricing / tier cards */
.tier { border-top: 5px solid var(--green-600); }
.tier.featured { border-top-color: var(--lime); box-shadow: var(--shadow-lg); }
.tier .tag { display: inline-block; background: var(--lime); color: var(--green-900); font-weight: 700; font-size: .72rem; padding: 3px 10px; border-radius: 14px; margin-bottom: 10px; }

/* Feature lists */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding: 7px 0 7px 32px; border-bottom: 1px solid var(--line); font-size: .98rem; }
.ticks li:last-child { border-bottom: 0; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  width: 22px; height: 22px; background: var(--bg-green-tint); color: var(--green-600);
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.narrow { grid-template-columns: 1.2fr .8fr; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 42px 20px; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #20A0D0, #3DBCB2); }
.stats .stat + .stat { border-left: 1px solid var(--line); }
@media (max-width: 920px) { .stats .stat + .stat { border-left: 0; } }
.stat .num { font-size: 2.4rem; font-weight: 800; line-height: 1; background: linear-gradient(120deg, #20A0D0, #3DBCB2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat .label { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--green-700) 0%, var(--green-500) 100%); color: #fff; border-radius: 18px; padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #eaf3fc; max-width: 60ch; margin: 0 auto 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.compare thead th { background: var(--green-700); color: #fff; font-weight: 700; }
table.compare tbody tr:nth-child(even) { background: var(--bg-soft); }
table.compare td.yes { color: var(--green-600); font-weight: 700; }
table.compare td.no { color: #c0392b; }

/* Middle band: revolving testimonial banner (left) + logo (right) */
.middle-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr); gap: 28px; align-items: stretch; }
.middle-band .t-logo-card { order: 1; }
.middle-band .t-band { order: 2; }

.t-band {
  background: linear-gradient(135deg, #20A0D0 0%, #3DBCB2 50%, #20A0D0 100%);
  background-size: 220% 220%;
  animation: breathe 16s ease-in-out infinite;
  color: #fff; border-radius: 18px; padding: 40px 44px 74px; position: relative; overflow: hidden;
}
.t-band > .band-wave { position: absolute; z-index: 2; }
/* Slice-trail: thin vertical light streaks flowing left -> right (like the live site, reversed) */
.slice-trail { position: absolute; inset: 0; overflow: hidden; opacity: 0.22; pointer-events: none; z-index: 0; }
.t-band > .slice-trail { position: absolute; inset: 0; z-index: 0; }
.slice-trail span {
  position: absolute; top: -10%; height: 120%; width: 42px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,0));
  animation: slice-flow-ltr 7s linear infinite;
}
@keyframes slice-flow-ltr {
  0%   { transform: translateX(-60%); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(700%); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .slice-trail { display: none; } }
/* Big shadowed speech mark behind the quote */
.t-band::before {
  content: "\201C"; position: absolute; top: -34px; left: 20px; z-index: 0; pointer-events: none;
  font-family: Georgia, "Times New Roman", serif; font-weight: 700;
  font-size: 13rem; line-height: 1; color: rgba(255,255,255,0.14);
  text-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.t-band > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .t-band::after { animation: none; } }
.t-band .eyebrow-tag {
  display: block; width: fit-content; background: rgba(255,255,255,.12); color: #000;
  text-transform: uppercase; letter-spacing: .14em; font-size: 1rem; font-weight: 800;
  padding: 8px 20px; border-radius: 22px; margin: -28px auto 22px;
}
.t-slides { display: grid; }
.t-slide { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; pointer-events: none; }
.t-slide.is-active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.t-quote {
  font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; line-height: 1.45;
  color: #eaf3fc; margin: 0 0 28px; font-weight: 400; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 16px; }
.t-clogo { background: #fff; border-radius: 10px; padding: 8px; width: 90px; height: 66px; display: grid; place-items: center; flex: none; }
.t-clogo img { max-width: 100%; max-height: 100%; display: block; }
.t-who strong { display: block; color: #fff; font-size: 1.05rem; }
.t-who span { color: #000; font-size: .92rem; }
.t-dots { display: flex; gap: 8px; margin-top: 28px; }
.t-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.32); cursor: pointer; transition: .2s; }
.t-dots button.active { background: #fff; transform: scale(1.25); }

/* Auto-progress bar */
.t-progress { height: 4px; width: 100%; max-width: 200px; background: rgba(255,255,255,.28); border-radius: 4px; margin-top: 16px; overflow: hidden; position: relative; z-index: 1; }
.t-progress span { display: block; height: 100%; width: 0; background: #fff; border-radius: 4px; }

/* Wave divider */
.band-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 64px; display: block; z-index: 2; pointer-events: none; }

/* Client logo marquee */
.marquee-strip { background: linear-gradient(180deg, #e8f4fb, #d8edf8); border-top: 1px solid #c3e2f1; border-bottom: 1px solid #c3e2f1; padding: 30px 0; margin-top: 28px; }
.marquee { overflow: hidden; width: 100%;
  -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; align-items: center; gap: 26px; width: max-content; animation: marquee 50s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img {
  height: 58px; width: auto; max-width: 200px; object-fit: contain;
  background: #fff; border: 1px solid #dce8f1; border-radius: 10px;
  padding: 11px 18px; box-sizing: content-box;
  filter: grayscale(1); opacity: 0.92; transition: .3s ease;
}
.marquee img:hover { opacity: 1; transform: scale(1.05); filter: grayscale(1); box-shadow: 0 6px 18px rgba(10,46,56,.12); }
.marquee img.cl-soft { opacity: 0.5; }
.marquee img.cl-soft:hover { opacity: 0.7; }
.marquee img.cl-small { height: 38px; padding-top: 21px; padding-bottom: 21px; }
.marquee img.cl-large { height: 78px; max-width: 110px; padding-top: 4px; padding-bottom: 4px; }
/* Lock the logos (client strip, testimonials, and CJP's own logos) against drag / right-click-save / selection */
.marquee, .marquee img, .t-clogo, .t-clogo img, .t-logo-card img, .footer-logo img, .header-logo { -webkit-user-select: none; -ms-user-select: none; user-select: none; -webkit-user-drag: none; }
.marquee img, .t-clogo img, .t-logo-card img, .footer-logo img, .header-logo { pointer-events: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.t-logo-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 24px 24px 72px; position: relative; overflow: hidden; }
.t-logo-card > .band-wave { position: absolute; z-index: 2; }
.t-logo-card img { max-width: 100%; max-height: 250px; width: auto; }
.t-location, .t-contact, .t-phone, .t-phone-num { font-family: "Open Sans", "Segoe UI", Arial, sans-serif; font-size: clamp(1.15rem, 2.3vw, 1.5rem); font-weight: 700; letter-spacing: -0.2px; }
.t-location, .t-contact, .t-phone { margin-left: 1.6em; }
.t-location { margin-top: 10px; color: #20a0d0; font-weight: 800; letter-spacing: 0; text-align: left; white-space: nowrap; line-height: 1.1; }
.t-phone { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; color: #20a0d0; font-weight: 800; line-height: 1.1; }
.t-phone:hover { color: #1a87b2; }
.t-phone-ico { font-size: 1.6rem; line-height: 1; }
.t-phone-ico { font-size: 1.5em; line-height: 1; margin: -0.15em 0; color: #3DBCB2; }
.t-phone-num { letter-spacing: 0; color: #3DBCB2; font-weight: 800; position: relative; top: 0.26em; }
.t-contact { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px; color: #20a0d0; font-weight: 800; letter-spacing: 0; line-height: 1.1; }
.t-contact:hover { color: #1a87b2; }
.t-contact { align-items: center; }
.t-contact-ico { font-size: 2.4em; line-height: 1; margin: -0.32em 0; }
.t-contact span:not(.t-contact-ico) { position: relative; top: 0.34em; }

@media (max-width: 920px) {
  .middle-band { grid-template-columns: 1fr; }
  .t-logo-card { order: -1; }
  .t-logo-card img { max-height: 180px; }
  .t-quote { font-size: 1.25rem; }
  .t-band { padding: 30px 26px; }
}

/* Quote / testimonial */
.quote { background: var(--bg-green-tint); border-left: 5px solid var(--lime); border-radius: 12px; padding: 26px 30px; }
.quote p { font-style: italic; color: var(--ink); font-size: 1.05rem; }
.quote .who { font-style: normal; font-weight: 700; color: var(--green-700); font-size: .9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--green-500); border-color: var(--green-500); }
.info-row { display: flex; gap: 14px; margin-bottom: 18px; }
.info-row .ico { width: 44px; height: 44px; flex: none; border-radius: 11px; background: var(--bg-green-tint); color: var(--green-700); display: grid; place-items: center; font-size: 1.2rem; }

/* Footer */
.site-footer { background: #20A0D0; color: #eafaff; padding: 56px 0 24px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer a { color: #eafaff; font-size: .92rem; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-brand .logo { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--green-600), var(--lime)); display: grid; place-items: center; color: #fff; font-weight: 800; margin-bottom: 14px; }
.footer-logo { display: inline-block; background: #fff; padding: 16px; border-radius: 12px; margin-bottom: 16px; line-height: 0; }
.fl-clip { display: block; position: relative; width: 120px; height: 118px; overflow: hidden; }
.fl-clip img { position: absolute; left: -20px; top: -4px; width: 158px; height: auto; max-width: none; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.25); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #d6f3fb; }

/* Logos / partner strip */
.partners { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.partners .pill { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 10px 22px; font-weight: 700; color: var(--green-800); font-size: .9rem; box-shadow: var(--shadow); }

.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* Responsive */
@media (max-width: 920px) {
  .menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 10px; gap: 2px; box-shadow: var(--shadow-lg); }
  .menu.open { display: flex; }
  .menu > li > a { padding: 12px 14px; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 8px 14px; padding: 0; }
  .menu > li.has-sub > a::after { float: right; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .split, .split.narrow, .contact-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 22px; }
}
