/* ==========================================================================
   JES Accounting Services — shared stylesheet
   Brand colours sourced from company email signature
   ========================================================================== */

/* Offset anchored sections so the sticky header doesn't cover their tops */
section[id], .service-block[id] { scroll-margin-top: 90px; }

/* Clickable service cards */
a.card { display: block; color: inherit; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}
.wa-float svg { width: 26px; height: 26px; fill: #fff; flex-shrink: 0; }
.wa-float .wa-label { white-space: nowrap; }

@media (max-width: 720px) {
  .wa-float { padding: 14px; }
  .wa-float .wa-label { display: none; }
  .wa-float svg { width: 28px; height: 28px; }
}

:root {
  --pink: #B4008F;          /* deepened brand magenta — passes WCAG AA on white */
  --pink-bright: #F400EE;   /* original signature magenta — small accents only */
  --pink-dark: #8E0071;     /* hover / pressed state */
  --slate: #3A3A3A;         /* charcoal / slate grey secondary */
  --pink-tint: #F4F4F5;     /* neutral light grey tint for section backgrounds */
  --black: #1A1A1A;
  --charcoal: #333333;
  --grey: #6B6B6B;
  --grey-light: #E7E7E7;
  --white: #FFFFFF;
  --cream: #F5F0C8;

  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(180, 0, 143, 0.15);
  --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.06);
  --max-width: 1160px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--charcoal); }

.eyebrow {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section {
  padding: 72px 0;
}

.section--tint {
  background: var(--pink-tint);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: #d9d9d9; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--pink);
  color: var(--pink);
}
.btn--outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--pink);
}
.btn--white:hover {
  background: var(--pink-tint);
  transform: translateY(-2px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 48px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.15rem;
  color: var(--black);
  font-weight: 800;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: var(--pink-tint);
  color: var(--pink);
}

.nav-links a.active {
  background: var(--pink);
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--black);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--pink-tint) 0%, var(--white) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy p.lead {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-art {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art img {
  border-radius: 10px;
  background: var(--white);
  padding: 0;
  display: block;
  width: 100%;
  height: auto;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--pink);
}

.hero-stats div span {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  border-top: 4px solid var(--pink-bright);
}

.page-hero h1 { color: var(--white); }
.page-hero p { color: #cfcfcf; max-width: 620px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--pink-light, #d98fd4);
  margin-bottom: 12px;
}
.page-hero .breadcrumb { color: #b8b8b8; }

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pink-tint);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.card .icon svg {
  width: 26px;
  height: 26px;
}

.contact-info .icon svg {
  width: 20px;
  height: 20px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--pink);
  font-size: 0.9rem;
}

/* ---------- Service detail blocks ---------- */
.service-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-light);
}

.service-block:last-child { border-bottom: none; }

.service-block .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.service-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--grey);
}

.service-block li { margin-bottom: 6px; }

/* ---------- Why us / features ---------- */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature .num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--slate);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.feature h3 { margin-bottom: 6px; font-size: 1.05rem; }
.feature p { color: var(--grey); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Testimonial / quote ---------- */
.quote {
  background: var(--white);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}

.quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
}

.quote .who {
  font-style: normal;
  font-weight: 700;
  color: var(--pink);
}

/* ---------- Testimonials grid ---------- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.testimonial .stars {
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial p {
  font-style: italic;
  color: var(--charcoal);
  flex-grow: 1;
}

.testimonial .who {
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
  margin-top: 12px;
}

.testimonial .who span {
  display: block;
  font-weight: 500;
  color: var(--grey);
  font-size: 0.85rem;
}

.testimonial--placeholder {
  border-style: dashed;
  border-color: var(--pink);
  background: var(--pink-tint);
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--grey);
}

.testimonial--placeholder .badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.testimonial--placeholder p {
  font-style: normal;
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink-tint);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--pink);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--grey);
  font-size: 0.97rem;
}

/* ---------- How it works steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.step .step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--grey); font-size: 0.92rem; margin-bottom: 0; }

/* Pricing approach panel */
.pricing-panel {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.pricing-panel .price-lead {
  font-size: 2rem;
  color: var(--pink);
  font-weight: 800;
  margin: 0 0 4px;
}

.pricing-panel .price-sub {
  color: var(--grey);
  font-size: 0.95rem;
}

.pricing-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.pricing-panel li .tick {
  color: var(--pink);
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- Photo placeholders ---------- */
.photo-placeholder {
  position: relative;
  width: 100%;
  background: var(--pink-tint);
  border: 2px dashed var(--pink);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--pink);
  padding: 24px;
  overflow: hidden;
}

.photo-placeholder .cam {
  font-size: 2rem;
  margin-bottom: 8px;
}

.photo-placeholder .ph-label {
  font-weight: 700;
  font-size: 0.9rem;
}

.photo-placeholder .ph-hint {
  font-size: 0.75rem;
  color: var(--grey);
  margin-top: 4px;
}

.photo-placeholder--portrait { aspect-ratio: 4 / 5; }
.photo-placeholder--wide { aspect-ratio: 16 / 10; }
.photo-placeholder--square { aspect-ratio: 1 / 1; }

/* Team layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-member .photo-placeholder {
  margin-bottom: 16px;
}

.team-member img.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.team-member .name {
  font-weight: 800;
  color: var(--black);
  font-size: 1.15rem;
}

.team-member .role {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.team-member .creds {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

/* Sage badge — per Sage credential usage guidelines:
   no added effects (shadow/rounding), no distortion, light background, clear space. */
.team-member .cred-badge {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 14px auto;   /* generous clear space around the badge */
}

/* ---------- Credentials strip ---------- */
.credential-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);   /* light, high-contrast background */
  padding: 24px;              /* clear space around the badge */
}
.credential-badge img {
  width: 260px;
  max-width: 100%;
  height: auto;              /* preserve aspect ratio, no distortion */
}

/* ---------- Credentials strip (text badges) ---------- */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
}

.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  box-shadow: var(--shadow-soft);
}

.credential .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.credential .label {
  line-height: 1.25;
}

.credential .label strong {
  display: block;
  color: var(--black);
  font-size: 0.95rem;
}

.credential .label span {
  color: var(--grey);
  font-size: 0.8rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  color: var(--white);
  border-top: 4px solid var(--pink-bright);
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfcfcf; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info .item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--pink-tint);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

.contact-info h3 { margin-bottom: 2px; font-size: 1rem; }
.contact-info p { margin-bottom: 0; color: var(--grey); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

form.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 18px;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
}

.form-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: -8px;
}

/* ---------- Team / About ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-portrait {
  background: var(--pink-tint);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.about-portrait img {
  margin: 0 auto;
}

.about-portrait .name {
  margin-top: 16px;
  font-weight: 800;
  color: var(--black);
  font-size: 1.1rem;
}

.about-portrait .role {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

/* ---------- Footer (charcoal) ---------- */
.site-footer {
  background: #333333;
  color: #ffffff;
  padding: 56px 0 24px;
  border-top: 4px solid var(--pink-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-grid p { color: #ffffff; }

.footer-grid h4 {
  color: #ffffff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li { margin-bottom: 10px; color: #ffffff; }

.footer-grid a { color: #ffffff; }
.footer-grid a:hover { color: var(--pink-light, #f19bea); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  height: 40px;
  border-radius: 8px;
  background: var(--white);
  padding: 4px;
}

.footer-brand strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.footer-bottom {
  border-top: 1px solid #555555;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
  color: #e0e0e0;
}

.footer-bottom a { color: var(--pink-light, #f19bea); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container,
  .about-hero {
    grid-template-columns: 1fr;
  }
  .hero-art { order: -1; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-bottom: 1px solid var(--grey-light);
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .nav-toggle { display: block; }
  /* Keep the quote button visible on mobile, just more compact */
  .nav-cta .btn { padding: 10px 16px; font-size: 0.85rem; }

  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-block { grid-template-columns: 56px 1fr; }
  .cta-band { padding: 32px 20px; }
}
