:root {
  --primary: #1B2B4B;
  --secondary: #2E4A7A;
  --accent: #5B7DB1;
  --accent-soft: #dfe8f6;
  --ink: #102033;
  --muted: #5e6d7f;
  --line: #dbe3ef;
  --light: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(27, 43, 75, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.bg-light { background: var(--light); }
.center { text-align: center; }
.center h1, .center h2, .center .lead { margin-left: auto; margin-right: auto; }

h1, h2, h3, h4 { color: var(--primary); line-height: 1.08; margin: 0 0 18px; letter-spacing: -0.035em; }
h1 { font-size: clamp(3rem, 7vw, 6.35rem); max-width: 950px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); max-width: 850px; }
h3 { font-size: 1.35rem; letter-spacing: -0.02em; }
h4 { font-size: 1rem; letter-spacing: 0; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); max-width: 760px; color: #40506a; }
.small { font-size: .94rem; color: var(--muted); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.kicker:before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219,227,239,.78);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; min-width: 220px; }
.brand img { width: 210px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 800; color: #233753; }
.nav-links a { position: relative; }
.nav-links a:not(.btn):after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:hover:after, .nav-links a.active:after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--primary); margin: 5px auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--primary)); color: var(--white); box-shadow: 0 16px 38px rgba(46,74,122,.28); }
.btn-secondary { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-light { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--primary); }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 18%, rgba(91,125,177,.38), transparent 33%), linear-gradient(135deg, #10213b 0%, #1B2B4B 46%, #2E4A7A 100%);
}
.hero { min-height: 760px; }
.hero:before, .page-hero:before, .cta-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 70% 25%, black, transparent 70%);
}
.hero .container, .page-hero .container, .cta-band > * { position: relative; z-index: 2; }
.hero h1, .hero p, .page-hero h1, .page-hero p { color: var(--white); }
.hero .lead, .page-hero .lead { color: rgba(255,255,255,.78); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.pixel { position: absolute; width: 11px; height: 11px; border-radius: 3px; background: rgba(141, 176, 226, .75); animation: float 7s infinite ease-in-out; }
.pixel.one { right: 12%; top: 18%; }
.pixel.two { right: 8%; bottom: 26%; animation-delay: 1.4s; opacity: .55; }
.pixel.three { left: 52%; top: 18%; animation-delay: 2.2s; opacity: .42; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }

.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 22px 0; }
.trust-item { font-weight: 800; color: var(--primary); display: flex; gap: 10px; align-items: center; }
.trust-item span { width: 28px; height: 28px; display: inline-grid; place-items: center; border-radius: 9px; background: var(--accent-soft); color: var(--secondary); }
.trusted-by { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; padding: 24px 0 0; color: rgba(255,255,255,.78); font-weight: 700; }
.trusted-by strong { color: var(--white); }

.client-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px 0 12px;
  color: var(--primary);
  font-weight: 800;
  text-align: center;
}
.client-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(27,43,75,.16);
}
.client-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(91,125,177,.28);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--background), var(--light));
  color: var(--primary);
  box-shadow: 0 12px 30px rgba(27,43,75,.08);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 45px rgba(27,43,75,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(91,125,177,.3); }
.icon { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: var(--secondary); background: linear-gradient(135deg, var(--accent-soft), #fff); margin-bottom: 22px; font-weight: 900; }
.service-card a { color: var(--primary); }
.growth-note { max-width: 820px; margin: 18px auto 0; }
.growth-card .icon { width: 58px; height: 58px; font-size: 1.25rem; }
.growth-card p { margin-bottom: 0; }

.tag { display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px; border-radius: 999px; background: var(--accent-soft); color: var(--secondary); font-weight: 800; font-size: .86rem; margin-bottom: 16px; }

.offer, .value-band { position: relative; overflow: hidden; }
.value-band { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); }
.value-band h2, .value-band p, .value-band li { color: var(--white); }
.offer-box { display: grid; grid-template-columns: minmax(0, 1.08fr) 360px; gap: 42px; align-items: center; }
.panel-price { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; padding: 34px; }
.panel-price h3, .panel-price p { color: var(--white); }
.price-big { font-size: 3.1rem; font-weight: 900; color: var(--white); letter-spacing: -.05em; margin-bottom: 20px; }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; color: #42516a; }
.check-list li:before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; background: var(--accent-soft); color: var(--secondary); font-size: .82rem; font-weight: 900; }
.value-band .check-list li { color: rgba(255,255,255,.9); }
.value-band .check-list li:before { background: rgba(255,255,255,.16); color: var(--white); }

.plan-card { position: relative; overflow: hidden; }
.badge { display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px; border-radius: 999px; background: var(--accent-soft); color: var(--secondary); font-weight: 900; font-size: .84rem; margin-bottom: 18px; }
.price { font-size: 2.6rem; font-weight: 900; color: var(--primary); letter-spacing: -.05em; margin-bottom: 12px; }
.price small { font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.deposit { font-weight: 800; color: var(--secondary); margin-bottom: 18px; }

.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin-bottom: 26px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.04em;
  box-shadow: 0 16px 34px rgba(27,43,75,.18);
}
.step h3 { margin-top: 0; }

.browser-card { padding: 0; overflow: hidden; }
.browser-top { height: 44px; background: #eef3f9; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 18px; }
.browser-top span { width: 10px; height: 10px; border-radius: 50%; background: #b7c5d8; }
.browser-body { padding: 28px; background: linear-gradient(135deg, #ffffff, #f3f7fc); min-height: 220px; }
.browser-screen { border-radius: 18px; min-height: 120px; background: linear-gradient(135deg, rgba(27,43,75,.95), rgba(91,125,177,.95)); padding: 22px; color: var(--white); margin-bottom: 20px; }
.browser-screen strong { display: block; color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.browser-screen span { color: rgba(255,255,255,.78); }

.faq { max-width: 900px; margin: 42px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 18px; align-items: center; text-align: left; padding: 24px 0; background: none; border: 0; font-weight: 900; color: var(--primary); cursor: pointer; }
.faq-question span { font-size: 1.4rem; color: var(--accent); }
.faq-answer { display: none; padding: 0 0 24px; }
.faq-item.open .faq-answer { display: block; }

.page-hero { padding: 86px 0; }
.content-list { display: grid; gap: 18px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; }

.form-card { max-width: 760px; margin: 42px auto 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--primary); }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; background: var(--white); color: var(--ink); }
textarea { min-height: 160px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
:focus-visible { outline: 3px solid rgba(91,125,177,.5); outline-offset: 3px; }

.cta-band { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: 44px; border-radius: 32px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); }
.cta-band h2, .cta-band p { color: var(--white); }
.cta-band h2 { font-size: clamp(2rem, 3vw, 3rem); }
.cta-band .btn { min-width: 180px; }

.site-footer { background: #0f1d34; color: rgba(255,255,255,.72); padding: 62px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 38px; }
.footer-logo { width: 240px; height: auto; max-width: 100%; display: block; object-fit: contain; background: var(--white); border-radius: 14px; padding: 10px 14px; margin-bottom: 18px; }
.site-footer h4 { color: var(--white); }
.site-footer p, .site-footer span, .site-footer a { color: rgba(255,255,255,.72); }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 34px; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links { position: fixed; left: 20px; right: 20px; top: 90px; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 22px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .offer-box, .split { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2, .trust-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 640px) {
    .section { padding: 66px 0; }
  .nav { min-height: 74px; }
  .brand img { width: 176px; }
    .grid-3, .grid-4, .grid-2, .trust-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
      .cta-band { flex-direction: column; align-items: flex-start; padding: 30px; }
  .footer-bottom { display: grid; }
}

.impact-card {
  min-height: 270px;
}
.icon-large {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eef4fd, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(91,125,177,.18), 0 14px 30px rgba(27,43,75,.08);
}
.icon-large svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-band .btn {
  min-width: 210px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.section-tight > .container.cta-band {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .cta-band .btn {
    width: auto;
    min-width: 190px;
  }
}


.hero-note { margin-top: 22px; color: rgba(255,255,255,.72); }
.hero-note a { color: var(--white); text-decoration: underline; }
.narrow { max-width: 880px; }
.legal-copy h2 { margin-top: 30px; }
.icon-large svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.impact-card .icon-large { width: 64px; height: 64px; border-radius: 20px; margin-bottom: 24px; }
.footer-bottom a { color: rgba(255,255,255,.72); margin-right: 14px; }

/* Revision: portfolio preview cards */
.portfolio-grid { align-items: stretch; }
.portfolio-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.portfolio-image { display: block; background: #eef3f9; border-bottom: 1px solid var(--line); }
.portfolio-image img { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 750; object-fit: cover; }
.portfolio-copy { padding: 24px; display: grid; gap: 10px; }
.portfolio-copy h3 { margin: 0; }
.business-type { color: var(--secondary); font-weight: 800; margin: 0; }
.portfolio-copy a { font-weight: 900; color: var(--primary); margin-top: 6px; }
.portfolio-copy a:hover { color: var(--accent); }

.site-footer .footer-logo { width: 240px !important; height: auto !important; max-height: 92px; object-fit: contain !important; display: block; }


/* Revision: inline icon system */
.icon svg,
.icon-box svg,
.step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: var(--secondary);
  background: linear-gradient(135deg, #e8ecf2, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(91,125,177,.2), 0 14px 30px rgba(27,43,75,.08);
  margin-bottom: 22px;
}
.service-card .icon-box,
.plan-card .icon-box {
  margin-bottom: 20px;
}
.step {
  padding-top: 34px;
}
.step-icon {
  position: absolute;
  top: 36px;
  right: 34px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--secondary);
  background: #f7f8fa;
  box-shadow: inset 0 0 0 1px rgba(91,125,177,.18);
}
.step-icon svg {
  width: 24px;
  height: 24px;
}
.step:before {
  margin-right: 70px;
}
.contact-promises .card h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.contact-promises .card p {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .step-icon {
    top: 30px;
    right: 30px;
  }
}

/* Revision: Material Symbols icon system */
.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 28;
}

.icon-box,
.icon-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E8ECF2;
  color: #2E4A7A;
  border: 1px solid rgba(91, 125, 177, 0.24);
  box-shadow: 0 14px 34px rgba(27, 43, 75, 0.08);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  margin-bottom: 22px;
}

.icon-large {
  width: 68px;
  height: 68px;
  border-radius: 21px;
  margin-bottom: 24px;
}

.icon-box .material-symbols-rounded {
  font-size: 31px;
}

.icon-large .material-symbols-rounded {
  font-size: 36px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E8ECF2;
  color: #2E4A7A;
  border: 1px solid rgba(91, 125, 177, 0.24);
}

.step-icon .material-symbols-rounded {
  font-size: 27px;
  font-variation-settings: "FILL" 0, "wght" 550, "GRAD" 0, "opsz" 28;
}

.card:hover .icon-box,
.card:hover .icon-large,
.card:hover .step-icon {
  color: #1B2B4B;
  border-color: rgba(91, 125, 177, 0.42);
  box-shadow: 0 18px 42px rgba(27, 43, 75, 0.12);
}


/* Revision: plan card header cleanup */
.plan-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.plan-card-head .icon-box {
  margin-bottom: 0;
  flex: 0 0 auto;
}
.plan-card-head h3 {
  margin: 0;
  line-height: 1.1;
}
.plan-card .badge {
  display: none;
}

/* Revision: how it works cards use numbers only */
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  overflow: hidden;
  padding: 36px;
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin-bottom: 26px;
  background: #1B2B4B;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 0 16px 34px rgba(27, 43, 75, 0.18);
}
.step-icon {
  display: none !important;
}
.step:before {
  margin-right: 0;
}

/* Revision: cleaner services page card icon layout */
.service-feature {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 32px;
}

.service-feature .card-icon-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.service-feature .icon-box {
  width: 56px;
  height: 56px;
  margin: 0;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #E8ECF2;
  color: #2E4A7A;
  box-shadow: none;
}

.service-feature .icon-box .material-symbols-rounded {
  font-size: 30px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 30;
}

.service-feature .tag {
  margin: 0;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
  background: #F7F8FA;
  color: #2E4A7A;
  border: 1px solid rgba(91, 125, 177, 0.22);
}

.service-feature h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.service-feature p {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .service-feature {
    padding: 26px;
  }

  .service-feature .card-icon-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
  }
}

/* Revision: pricing card hover and button interaction states */
.plan-card {
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.plan-card h3,
.plan-card p,
.plan-card .price,
.plan-card .price small,
.plan-card .deposit,
.plan-card .plan-fit,
.plan-card .check-list li,
.plan-card .icon-box,
.plan-card .btn {
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
  border-color: #5B7DB1;
  box-shadow: 0 30px 80px rgba(27, 43, 75, 0.24);
}

.plan-card.featured:hover,
.plan-card.featured:focus-within {
  transform: translateY(-12px);
}

.plan-card:hover h3,
.plan-card:focus-within h3,
.plan-card:hover .price,
.plan-card:focus-within .price,
.plan-card:hover .deposit,
.plan-card:focus-within .deposit {
  color: #ffffff;
}

.plan-card:hover p,
.plan-card:focus-within p,
.plan-card:hover .price small,
.plan-card:focus-within .price small,
.plan-card:hover .plan-fit,
.plan-card:focus-within .plan-fit,
.plan-card:hover .check-list li,
.plan-card:focus-within .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.plan-card:hover .check-list li:before,
.plan-card:focus-within .check-list li:before {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.plan-card:hover .icon-box,
.plan-card:focus-within .icon-box {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  box-shadow: none;
}

.plan-card:hover .btn,
.plan-card:focus-within .btn {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.plan-card:hover .btn:hover,
.plan-card:focus-within .btn:hover {
  background: #E8ECF2;
  border-color: #E8ECF2;
  color: #1B2B4B;
}

.btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
  box-shadow: 0 18px 42px rgba(27, 43, 75, 0.28);
}

.btn-outline:hover {
  background: #1B2B4B;
  border-color: #1B2B4B;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(27, 43, 75, 0.16);
}

.btn-light:hover {
  background: #E8ECF2;
  color: #1B2B4B;
}

.btn:focus-visible,
.plan-card:focus-within {
  outline: 3px solid rgba(91, 125, 177, 0.45);
  outline-offset: 4px;
}

/* Revision: softer hover for services page cards only */
.service-feature {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.service-feature h3,
.service-feature p,
.service-feature .tag,
.service-feature .icon-box,
.service-feature .material-symbols-rounded {
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-feature:hover,
.service-feature:focus-within {
  transform: translateY(-6px);
  background: #5B7DB1;
  border-color: #5B7DB1;
  box-shadow: 0 24px 62px rgba(27, 43, 75, 0.18);
}

.service-feature:hover h3,
.service-feature:focus-within h3 {
  color: #ffffff;
}

.service-feature:hover p,
.service-feature:focus-within p {
  color: rgba(255, 255, 255, 0.88);
}

.service-feature:hover .tag,
.service-feature:focus-within .tag {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.service-feature:hover .icon-box,
.service-feature:focus-within .icon-box {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}


/* Revision: homepage section separation between services and model sections */
.model-section {
  background: #F7F8FA;
  border-top: 1px solid #E8ECF2;
  border-bottom: 1px solid #E8ECF2;
}

.model-section .card {
  background: #ffffff;
}

/* Revision: homepage service card hover effect */
.service-card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.service-card h3,
.service-card p,
.service-card a,
.service-card .icon-box,
.service-card .material-symbols-rounded {
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  background: #5B7DB1;
  border-color: #5B7DB1;
  box-shadow: 0 24px 62px rgba(27, 43, 75, 0.18);
}

.service-card:hover a,
.service-card:focus-within a,
.service-card:hover h3,
.service-card:focus-within h3 {
  color: #ffffff;
}

.service-card:hover p,
.service-card:focus-within p {
  color: rgba(255, 255, 255, 0.88);
}

.service-card:hover .icon-box,
.service-card:focus-within .icon-box {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

/* Repair: pricing page included cards hover effect */
.included-cards-section .card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}

.included-cards-section .card h3,
.included-cards-section .card p,
.included-cards-section .card .icon-box,
.included-cards-section .card .material-symbols-rounded {
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.included-cards-section .card:hover,
.included-cards-section .card:focus-within {
  transform: translateY(-6px);
  background: #5B7DB1;
  border-color: #5B7DB1;
  box-shadow: 0 24px 62px rgba(27, 43, 75, 0.18);
}

.included-cards-section .card:hover h3,
.included-cards-section .card:focus-within h3 {
  color: #ffffff;
}

.included-cards-section .card:hover p,
.included-cards-section .card:focus-within p {
  color: rgba(255, 255, 255, 0.88);
}

.included-cards-section .card:hover .icon-box,
.included-cards-section .card:focus-within .icon-box {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

/* Repair: Work page past client experience section */
.past-clients-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.past-client-grid {
  align-items: stretch;
}

.past-client-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.past-client-card .tag {
  align-self: flex-start;
  margin-bottom: 0;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(91, 125, 177, 0.24);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
}

.past-client-card:hover .client-list span {
  border-color: rgba(91, 125, 177, 0.42);
  background: #f7f8fa;
}

.past-client-note {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
}

/* Revision: homepage plan includes section */
.home-plan-includes {
  margin-top: 46px;
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(91, 125, 177, 0.22);
  box-shadow: 0 22px 60px rgba(27, 43, 75, 0.08);
}

.home-plan-includes-head {
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8ECF2;
}

.home-plan-includes-head h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  text-align: left;
}

.home-plan-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.home-plan-include-card {
  padding: 24px;
  border-radius: 22px;
  background: #F7F8FA;
  border: 1px solid #E8ECF2;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.home-plan-include-card h4,
.home-plan-include-card p,
.home-plan-include-card .icon-box,
.home-plan-include-card .material-symbols-rounded {
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.home-plan-include-card .icon-box {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #E8ECF2;
  color: #2E4A7A;
  box-shadow: none;
}

.home-plan-include-card .icon-box .material-symbols-rounded {
  font-size: 29px;
}

.home-plan-include-card h4 {
  margin-bottom: 10px;
  color: #1B2B4B;
}

.home-plan-include-card p {
  margin-bottom: 0;
  color: #5e6d7f;
}

.home-plan-include-card:hover,
.home-plan-include-card:focus-within {
  transform: translateY(-6px);
  background: #5B7DB1;
  border-color: #5B7DB1;
  box-shadow: 0 24px 62px rgba(27, 43, 75, 0.18);
}

.home-plan-include-card:hover h4,
.home-plan-include-card:focus-within h4 {
  color: #ffffff;
}

.home-plan-include-card:hover p,
.home-plan-include-card:focus-within p {
  color: rgba(255, 255, 255, 0.88);
}

.home-plan-include-card:hover .icon-box,
.home-plan-include-card:focus-within .icon-box {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

@media (max-width: 980px) {
  .home-plan-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .home-plan-includes {
    padding: 26px;
  }

  .home-plan-includes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Our Legacy banner */
.legacy-banner {
  background: #F7F8FA;
  border-bottom: 1px solid #E8ECF2;
  position: relative;
  overflow: hidden;
}

.legacy-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
  padding: 46px 0;
}

.legacy-mark {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  box-shadow: 0 24px 62px rgba(27, 43, 75, 0.18);
}

.legacy-copy h2 {
  max-width: 900px;
  margin-bottom: 16px;
}

.legacy-copy .lead {
  max-width: 920px;
  margin-bottom: 0;
}

.legacy-copy .kicker {
  margin-bottom: 12px;
}

@media (max-width: 760px) {
  .legacy-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 0;
  }

  .legacy-mark {
    width: 118px;
    height: 118px;
    border-radius: 24px;
    font-size: 1.8rem;
  }
}

/* Mobile repair: center legacy banner stack */
@media (max-width: 760px) {
  .legacy-inner {
    justify-items: center;
    text-align: center;
  }

  .legacy-mark {
    margin-left: auto;
    margin-right: auto;
  }

  .legacy-copy {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .legacy-copy .kicker {
    justify-content: center;
  }

  .legacy-copy h2,
  .legacy-copy .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* Mobile repair: wider legacy established badge */
@media (max-width: 760px) {
  .legacy-mark {
    width: 190px;
    min-width: 190px;
    height: 86px;
    min-height: 86px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    letter-spacing: 0;
    line-height: 1;
  }

  .legacy-mark::before {
    content: "EST. 1998";
    display: block;
    color: #ffffff;
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
  }
}

/* Mobile repair: centered kicker dot alignment */
@media (max-width: 640px) {
  .center .kicker {
    display: inline-block;
    max-width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.35;
  }

  .center .kicker::before {
    display: inline-block;
    flex: none;
    margin-right: 10px;
    vertical-align: 0.08em;
  }
}

/* Mobile repair: hero kicker horizontal alignment */
@media (max-width: 640px) {
  .hero .kicker {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    white-space: nowrap;
    font-size: 0;
    line-height: 1;
  }

  .hero .kicker::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin: 0;
    border-radius: 3px;
    background: var(--accent);
  }

  .hero .kicker::after {
    content: "Web Design & Managed Hosting";
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
}


/* Homepage hero image stage */
.hero-image-stage {
  position: relative;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(91,125,177,.34), transparent 34%),
    linear-gradient(
      90deg,
      #071326 0%,
      #071326 calc(50% - 680px),
      #10213b calc(50% - 680px),
      #132642 calc(50% - 420px),
      #1B2B4B 58%,
      #2E4A7A 100%
    );
}

.hero-image-stage .hero-stage {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  display: block;
  padding: 88px 0;
  overflow: hidden;
  background-color: transparent;
  background-image: none;
}

.hero-image-stage .hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("../assets/siteharbour-hero-visual.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.25) 34%,
    rgba(0, 0, 0, 0.65) 48%,
    #000 62%,
    #000 100%
  );

  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.25) 34%,
    rgba(0, 0, 0, 0.65) 48%,
    #000 62%,
    #000 100%
  );
}


.hero-image-stage .hero-heading,
.hero-image-stage .hero-cta-group {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-left: 100px;
}

.hero-image-stage h1 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(4rem, 5.8vw, 6.05rem);
  line-height: 0.98;
}

.hero-image-stage .hero-text-box {
  position: absolute;
  z-index: 4;
  right: 150px;
  bottom: 50px;
  width: 620px;
  max-width: 620px;
  margin: 0;
  padding: 30px 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 18% 12%, rgba(91, 125, 177, 0.46), transparent 38%),
    linear-gradient(135deg, rgba(27, 43, 75, 0.94), rgba(9, 20, 39, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 32px 78px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(91, 125, 177, 0.22);
  backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-image-stage .hero-cta-group {
  margin-top: 90px;
}

.hero-image-stage .hero-actions {
  margin-top: 0;
}

.hero-image-stage .hero-note {
  width: 680px;
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.45;
}

/* iPad and tablet landscape hero */
@media (min-width: 981px) and (max-width: 1366px) and (orientation: landscape) {
  .hero-image-stage .hero-stage {
    width: 100%;
    max-width: none;
    min-height: 640px;
    margin: 0;
    padding: 70px 0;
    background-position: center center;
    background-size: cover;
  }

  .hero-image-stage .hero-heading,
  .hero-image-stage .hero-cta-group {
    padding-left: 72px;
    max-width: 560px;
  }

  .hero-image-stage h1 {
    max-width: 520px;
    font-size: clamp(3.4rem, 5vw, 4.8rem);
    line-height: 0.98;
  }

  .hero-image-stage .hero-cta-group {
    margin-top: 58px;
  }

  .hero-image-stage .hero-note {
    width: 420px;
    max-width: 420px;
    font-size: 1rem;
  }

  .hero-image-stage .hero-text-box {
    right: 80px;
    bottom: 36px;
    width: 560px;
    max-width: 560px;
    padding: 24px 30px;
    font-size: 1rem;
    line-height: 1.48;
  }

}

/* Tablet portrait and smaller screens */
@media (max-width: 980px) {
  .hero-image-stage {
    background: #061026;
  }

  .hero-image-stage::before,
  .hero-image-stage .hero-stage::before {
    display: none;
  }

  .hero-image-stage .hero-stage {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 72px 28px;
    background-color: #061026;
    background-image:
      linear-gradient(rgba(6, 15, 31, 0.72), rgba(6, 15, 31, 0.88)),
      url("../assets/siteharbour-hero-visual.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .hero-image-stage .hero-heading,
  .hero-image-stage .hero-cta-group {
    max-width: 760px;
    padding-left: 0;
  }

  .hero-image-stage h1 {
    max-width: 680px;
    font-size: clamp(3.1rem, 9vw, 4.6rem);
    line-height: 0.98;
  }

  .hero-image-stage .hero-text-box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 680px;
    margin: 42px 0 0;
    padding: 22px;
    border-radius: 22px;
  }

  .hero-image-stage .hero-cta-group {
    margin-top: 42px;
  }

  .hero-image-stage .hero-note {
    width: 330px;
    max-width: 100%;
    font-size: calc(1.08rem - 2px);
    line-height: 1.4;
  }

/* iPhone landscape hero */
@media (max-width: 980px) and (orientation: landscape) and (max-height: 520px) {
  .hero-image-stage .hero-stage {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 56px 28px 54px;
    background-position: center center;
    background-size: cover;
  }

  .hero-image-stage h1 {
    font-size: clamp(2.8rem, 8vw, 4rem);
    line-height: 1;
    white-space: nowrap;
  }

  .hero-image-stage .hero-text-box {
    margin-top: 34px;
  }

  .hero-image-stage .hero-cta-group {
    margin-top: 34px;
  }

}

/* Phone portrait hero */
@media (max-width: 640px) {
  .hero-image-stage .hero-stage {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 76px 28px 64px;
    background-color: #061026;
    background-image:
      linear-gradient(rgba(6, 15, 31, 0.88), rgba(6, 15, 31, 0.94)),
      url("../assets/siteharbour-hero-visual.webp");
    background-repeat: no-repeat;
    background-position: 68% center;
    background-size: auto 160%;
  }

  .hero-image-stage .kicker {
    margin-bottom: 40px;
  }

  .hero-image-stage h1 {
    font-size: clamp(2.55rem, 11.5vw, 4rem);
    line-height: 1;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .hero-image-stage .hero-text-box {
    margin-top: 54px;
  }

  .hero-image-stage .hero-cta-group {
    margin-top: 60px;
  }

  .hero-image-stage .hero-note {
    width: 300px;
    font-size: 0.95rem;
  }

}
}


.plan-card:target {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
  border-color: #5B7DB1;
  box-shadow: 0 30px 80px rgba(27, 43, 75, 0.24);
}

.plan-card:target h3,
.plan-card:target .price,
.plan-card:target .deposit {
  color: #ffffff;
}

.plan-card:target p,
.plan-card:target .price small,
.plan-card:target .plan-fit,
.plan-card:target .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.plan-card:target .check-list li:before {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.plan-card:target .icon-box {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
  box-shadow: none;
}

.plan-card:target .btn {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.plan-card {
  scroll-margin-top: 120px;
}

/* Highlight prefilled plan field on contact page */
.prefilled-plan-field {
  padding: 18px;
  border-radius: 20px;
  background: #F7F8FA;
  border: 2px solid #5B7DB1;
  box-shadow: 0 18px 46px rgba(27, 43, 75, 0.14);
}

.prefilled-plan-field label {
  color: #1B2B4B;
}

.prefilled-plan-field select {
  border-color: #5B7DB1;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(91, 125, 177, 0.14);
}


/* Country switcher in footer */
.country-switcher-inline {
  display: inline-block;
  margin-left: 0.65rem;
  color: rgba(255, 255, 255, 0.68);
}

.country-switcher-inline a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.country-switcher-inline a:hover {
  text-decoration: underline;
}

/* Blog system */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 28px;
  font-size: 0.92rem;
  color: #687387;
}

.breadcrumbs a {
  color: #2E4A7A;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.blog-hero .lead,
.blog-article-hero .lead {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  align-items: stretch;
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #E8ECF2;
}

.blog-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.blog-card-copy h2 {
  margin-top: 14px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.blog-card-copy p {
  margin-top: 12px;
}

.blog-meta,
.article-byline {
  color: #687387;
  font-weight: 700;
}

.blog-meta {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.9rem;
}

.empty-blog-card {
  max-width: 760px;
  margin: 0 auto;
}

.empty-blog-card code {
  white-space: nowrap;
}

.article-section {
  padding-top: 44px;
}

.article-featured-image {
  overflow: hidden;
  margin: 0 0 42px;
  border-radius: 24px;
  background: #E8ECF2;
  box-shadow: 0 24px 70px rgba(27, 43, 75, 0.12);
}

.article-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-content {
  color: #141416;
  font-size: 1.05rem;
  line-height: 1.72;
}

.article-content h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.article-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-top: 0;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  padding-left: 1.35rem;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: #2E4A7A;
  font-weight: 800;
}

.article-trust-box {
  margin-top: 46px;
  padding: 28px;
  border: 1px solid #E8ECF2;
  border-radius: 24px;
  background: #F7F8FA;
}

.article-trust-box h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.article-trust-box p:last-child {
  margin-bottom: 0;
}

.article-cta {
  margin-top: 46px;
}

.related-articles-section {
  border-top: 1px solid #E8ECF2;
}

@media (max-width: 760px) {
  .breadcrumbs {
    flex-wrap: wrap;
    padding-left: 28px;
    padding-right: 28px;
  }

  .blog-card-copy {
    padding: 24px;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-featured-image {
    border-radius: 18px;
  }
}

/* Portfolio screenshot display fix
   Makes Canada work cards display screenshots like the USA cards. */

.portfolio-card {
  padding: 18px 18px 0 !important;
  overflow: hidden !important;
}

.portfolio-card > img,
.portfolio-card .portfolio-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: top center !important;
  border-radius: 12px !important;
  background: #f4f7fb !important;
  box-shadow: 0 12px 28px rgba(27, 43, 75, 0.16) !important;
}

.portfolio-card .portfolio-image {
  display: block !important;
  background: transparent !important;
  border-bottom: 0 !important;
  overflow: visible !important;
}

.portfolio-card .portfolio-copy {
  padding: 28px 18px 32px !important;
}

/* Plan term notes and footer partner program updates */
.plan-term {
  color: #42516a;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.45;
  margin: -8px 0 18px;
}

.plan-card .deposit + .plan-term {
  margin-top: -6px;
}

.plan-card .plan-term {
  transition: color .24s ease;
}

.plan-card:hover .plan-term,
.plan-card:focus-within .plan-term,
.plan-card:target .plan-term {
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  grid-template-columns: 1.2fr .75fr .75fr .95fr;
}

.footer-partner p {
  margin: 0 0 12px;
  font-size: .95rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* Footer partner card - revised */
.footer-partner-card {
  align-self: start;
  padding: 20px;
  border: 1px solid rgba(91, 125, 177, 0.32);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 8%, rgba(91, 125, 177, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

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

.footer-partner-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(91, 125, 177, 0.38);
}

.footer-partner-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-partner-card h4 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
}

.footer-partner-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.footer-partner-card .footer-partner-lead {
  color: #ffffff;
  font-weight: 800;
}

.site-footer .footer-partner-button,
.site-footer .footer-partner-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #1B2B4B !important;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.site-footer .footer-partner-button:hover,
.site-footer .footer-partner-button:focus-visible {
  color: #1B2B4B !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

/* Mobile footer country switcher spacing */
@media (max-width: 700px) {
  .footer-bottom p {
    margin: 0;
    line-height: 1.55;
  }

  .footer-bottom .country-switcher-inline {
    display: block;
    margin-top: 14px;
    margin-left: 0;
    padding-left: 0;
    text-indent: 0;
  }
}


/* Pricing cards transferred exactly from better-website landing page, August 2026 */
/* SiteHarbour managed-plan cards — approved Richmond Hill/Thornhill v22 styling.
   Scoped to .siteharbour-plan-cards-transfer so this can be carried into another page safely. */
.siteharbour-plan-cards-transfer{
  --navy:#1B2B4B;
  --navy2:#2E4A7A;
  --bright:#2e6edf;
  --muted:#5f6d80;
  --line:#d9e0e9;
  --white:#fff;
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#12213b;
}
.siteharbour-plan-cards-transfer *{box-sizing:border-box}
.siteharbour-plan-cards-transfer .pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  align-items:start;
}
.siteharbour-plan-cards-transfer .price-card{
  position:relative;
  align-self:start;
  min-width:0;
  padding:34px 30px 30px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  display:flex;
  flex-direction:column;
  box-shadow:0 12px 36px rgba(27,43,75,.06);
  overflow:visible;
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background-color .2s ease;
}
.siteharbour-plan-cards-transfer .price-card.featured{
  border:2px solid var(--bright);
  transform:translateY(-8px);
  box-shadow:0 22px 50px rgba(46,110,223,.13);
}
.siteharbour-plan-cards-transfer .popular{
  position:absolute;
  top:-13px;
  left:24px;
  padding:5px 12px;
  border-radius:999px;
  background:var(--bright);
  color:#fff;
  font-size:.76rem;
  font-weight:850;
  line-height:1.2;
}
.siteharbour-plan-cards-transfer .plan-icon{
  height:116px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  margin:-4px 0 8px;
}
.siteharbour-plan-cards-transfer .plan-icon img{
  display:block;
  width:auto;
  height:110px;
  max-width:138px;
  object-fit:contain;
  filter:drop-shadow(0 8px 14px rgba(27,43,75,.12));
  transition:transform .2s ease,filter .2s ease;
}
.siteharbour-plan-cards-transfer .plan-name{
  color:var(--navy);
  font-size:1.4rem;
  font-weight:900;
  line-height:1.2;
}
.siteharbour-plan-cards-transfer .price{
  display:flex;
  align-items:baseline;
  gap:5px;
  margin:14px 0 10px;
}
.siteharbour-plan-cards-transfer .price strong{
  color:var(--navy);
  font-size:3.25rem;
  font-weight:900;
  line-height:1;
  letter-spacing:-.06em;
}
.siteharbour-plan-cards-transfer .price small{
  color:var(--muted);
  font-size:.9rem;
}
.siteharbour-plan-cards-transfer .plan-commitment{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  align-items:center;
  margin:0 0 20px;
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
  font-size:.95rem;
  line-height:1.45;
}
.siteharbour-plan-cards-transfer .plan-commitment strong{color:var(--navy);font-weight:850}
.siteharbour-plan-cards-transfer .plan-commitment span{color:var(--muted);font-weight:700}
.siteharbour-plan-cards-transfer .plan-intro{
  flex:0 0 auto;
  margin:0 0 16px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.65;
}
.siteharbour-plan-cards-transfer .plan-fit{
  margin:0 0 22px;
  padding:16px 17px;
  border-radius:12px;
  background:#f4f7fb;
  color:#4b5d74;
  font-size:1rem;
  line-height:1.58;
}
.siteharbour-plan-cards-transfer .plan-fit strong{
  display:block;
  margin-bottom:4px;
  color:var(--navy);
  font-size:.9rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.045em;
}
.siteharbour-plan-cards-transfer .price-card.featured .plan-fit{
  background:#edf4ff;
  border:1px solid #dce9ff;
}
.siteharbour-plan-cards-transfer .plan-highlights{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:grid;
  gap:11px;
}
.siteharbour-plan-cards-transfer .plan-highlights li{
  position:relative;
  padding-left:27px;
  color:#12213b;
  font-size:1rem;
  line-height:1.52;
  font-weight:650;
}
.siteharbour-plan-cards-transfer .plan-highlights li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--bright);
  font-weight:900;
  transition:transform .2s ease,color .2s ease;
}
.siteharbour-plan-cards-transfer .plan-upgrade{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:16px 0 20px;
  margin-top:auto;
  padding:15px 16px;
  border:1px solid #cfe0fa;
  border-radius:13px;
  background:linear-gradient(145deg,#f4f8ff 0%,#eaf3ff 100%);
}
.siteharbour-plan-cards-transfer .plan-upgrade>.material-symbols-rounded{
  flex:0 0 auto;
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--bright);
  font-size:21px;
  box-shadow:0 5px 14px rgba(46,110,223,.12);
}
.siteharbour-plan-cards-transfer .plan-upgrade strong{
  display:block;
  margin:1px 0 5px;
  color:var(--navy);
  font-size:.98rem;
  line-height:1.3;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.siteharbour-plan-cards-transfer .plan-upgrade p{
  margin:0 0 7px;
  color:#4a5f79;
  font-size:.94rem;
  line-height:1.5;
}
.siteharbour-plan-cards-transfer .plan-upgrade a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:var(--bright);
  font-size:.94rem;
  font-weight:850;
  text-decoration:none;
}
.siteharbour-plan-cards-transfer .plan-upgrade a:hover{text-decoration:underline;text-underline-offset:3px}
.siteharbour-plan-cards-transfer .plan-upgrade-soft{
  background:linear-gradient(145deg,#f8fbff 0%,#f1f6fd 100%);
  border-color:#dce7f5;
  box-shadow:none;
}
.siteharbour-plan-cards-transfer .plan-upgrade-soft>.material-symbols-rounded{
  background:#f7faff;
  color:#4d7fca;
  box-shadow:none;
}
.siteharbour-plan-cards-transfer .plan-upgrade-soft strong{font-size:.93rem}
.siteharbour-plan-cards-transfer .plan-upgrade-soft p{font-size:.9rem;color:#5a6d84}
.siteharbour-plan-cards-transfer .plan-upgrade-soft a{font-size:.91rem;color:#3f73c3}
.siteharbour-plan-cards-transfer #grow-plan,
.siteharbour-plan-cards-transfer #pro-plan{scroll-margin-top:110px}
.siteharbour-plan-cards-transfer .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:13px 22px;
  border-radius:9px;
  border:2px solid transparent;
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-size:1.03rem;
  font-style:normal;
  font-weight:800;
  line-height:1.2;
  letter-spacing:.01em;
  text-decoration:none;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,background-color .18s ease,border-color .18s ease,color .18s ease;
}
.siteharbour-plan-cards-transfer .btn-outline{
  border-color:#b7c5d8;
  background:#fff;
  color:var(--navy);
}
.siteharbour-plan-cards-transfer .btn-primary{
  background:var(--bright);
  color:#fff;
  box-shadow:0 10px 22px rgba(46,110,223,.18);
}
.siteharbour-plan-cards-transfer .plan-upgrade + .btn{margin-top:0}
.siteharbour-plan-cards-transfer .price-card:not(:has(.plan-upgrade)) .btn{margin-top:0}


/* v26: keep Grow visually highlighted by default */
.siteharbour-plan-cards-transfer .price-card.featured{
  background:linear-gradient(155deg,#1B2B4B 0%,#24456f 58%,#2E5B96 100%);
  border-color:#5f9dff;
  box-shadow:0 28px 62px rgba(27,43,75,.24),0 0 0 1px rgba(95,157,255,.18);
  color:#fff;
}
.siteharbour-plan-cards-transfer .price-card.featured .plan-name,
.siteharbour-plan-cards-transfer .price-card.featured .price strong,
.siteharbour-plan-cards-transfer .price-card.featured .plan-intro,
.siteharbour-plan-cards-transfer .price-card.featured .plan-highlights li,
.siteharbour-plan-cards-transfer .price-card.featured .plan-fit,
.siteharbour-plan-cards-transfer .price-card.featured .plan-fit strong{
  color:#fff;
}
.siteharbour-plan-cards-transfer .price-card.featured .price small{color:#dce9fb}
.siteharbour-plan-cards-transfer .price-card.featured .plan-commitment{border-bottom-color:rgba(255,255,255,.38)}
.siteharbour-plan-cards-transfer .price-card.featured .plan-commitment strong{color:#fff}
.siteharbour-plan-cards-transfer .price-card.featured .plan-commitment span{color:#dce9fb}
.siteharbour-plan-cards-transfer .price-card.featured .plan-fit{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}
.siteharbour-plan-cards-transfer .price-card.featured .plan-highlights li:before{color:#75c3ff}
.siteharbour-plan-cards-transfer .price-card.featured .plan-icon img{
  transform:translateY(-5px) scale(1.07);
  filter:drop-shadow(0 14px 22px rgba(0,0,0,.24)) drop-shadow(0 0 15px rgba(92,175,255,.30));
}
.siteharbour-plan-cards-transfer .price-card.featured>.btn{
  background:#3b82f6;
  border-color:#79b1ff;
  color:#fff;
  box-shadow:0 14px 30px rgba(4,18,45,.28),0 0 0 2px rgba(255,255,255,.08);
}
.siteharbour-plan-cards-transfer .price-card.featured .popular{
  background:#fff;
  color:#245fc6;
  box-shadow:0 8px 20px rgba(4,18,45,.20);
}
.siteharbour-plan-cards-transfer .price-card.featured .plan-upgrade-soft{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.15);
}
.siteharbour-plan-cards-transfer .price-card.featured .plan-upgrade-soft strong,
.siteharbour-plan-cards-transfer .price-card.featured .plan-upgrade-soft p,
.siteharbour-plan-cards-transfer .price-card.featured .plan-upgrade-soft a{color:#fff}
.siteharbour-plan-cards-transfer .price-card.featured .plan-upgrade-soft>.material-symbols-rounded{
  background:#fff;
  color:#2e6edf;
}

@media (hover:hover) and (pointer:fine){
  .siteharbour-plan-cards-transfer .price-card{
    isolation:isolate;
    transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease,background .28s ease,color .28s ease;
  }
  .siteharbour-plan-cards-transfer .price-card:hover{
    transform:translateY(-9px);
    background:linear-gradient(155deg,#1B2B4B 0%,#24456f 58%,#2E5B96 100%);
    border-color:#5f9dff;
    box-shadow:0 28px 62px rgba(27,43,75,.24),0 0 0 1px rgba(95,157,255,.18);
    color:#fff;
  }
  .siteharbour-plan-cards-transfer .price-card.featured:hover{
    transform:translateY(-14px) scale(1.012);
    background:linear-gradient(155deg,#16315c 0%,#24528e 58%,#2e6edf 100%);
    border-color:#78adff;
    box-shadow:0 32px 72px rgba(46,110,223,.30),0 0 0 1px rgba(120,173,255,.24);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .plan-name,
  .siteharbour-plan-cards-transfer .price-card:hover .price strong,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-intro,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-highlights li,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-fit,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-fit strong{
    color:#fff;
  }
  .siteharbour-plan-cards-transfer .price-card:hover .price small{color:#dce9fb}
  .siteharbour-plan-cards-transfer .price-card:hover .plan-commitment{border-bottom-color:rgba(255,255,255,.38)}
  .siteharbour-plan-cards-transfer .price-card:hover .plan-commitment strong{color:#fff}
  .siteharbour-plan-cards-transfer .price-card:hover .plan-commitment span{color:#dce9fb}
  .siteharbour-plan-cards-transfer .price-card:hover .plan-fit{
    background:rgba(255,255,255,.10);
    border-color:rgba(255,255,255,.16);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .plan-highlights li:before{
    color:#75c3ff;
    transform:scale(1.12);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .plan-icon img{
    transform:translateY(-8px) scale(1.11);
    filter:drop-shadow(0 16px 25px rgba(0,0,0,.28)) drop-shadow(0 0 18px rgba(92,175,255,.36));
  }
  .siteharbour-plan-cards-transfer .price-card:hover .btn,
  .siteharbour-plan-cards-transfer .price-card.featured:hover .btn{
    background:#3b82f6;
    border-color:#79b1ff;
    color:#fff;
    box-shadow:0 14px 30px rgba(4,18,45,.28),0 0 0 2px rgba(255,255,255,.08);
    transform:translateY(-2px) scale(1.015);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .btn:hover,
  .siteharbour-plan-cards-transfer .price-card.featured:hover .btn:hover{
    background:#5b9cff;
    border-color:#a7ccff;
    box-shadow:0 18px 36px rgba(4,18,45,.32),0 0 22px rgba(91,156,255,.28);
    transform:translateY(-3px) scale(1.025);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .popular{
    background:#fff;
    color:#245fc6;
    box-shadow:0 8px 20px rgba(4,18,45,.20);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade{
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.20);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade-soft{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.15);
  }
  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade strong,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade p,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade a{color:#fff}
  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade>.material-symbols-rounded{
    background:#fff;
    color:#2e6edf;
  }
}

@media (max-width:820px){
  .siteharbour-plan-cards-transfer .pricing-grid{grid-template-columns:1fr}
  .siteharbour-plan-cards-transfer .price-card.featured{transform:none}
  .siteharbour-plan-cards-transfer .plan-icon{height:108px;margin-top:0}
  .siteharbour-plan-cards-transfer .plan-icon img{height:102px;max-width:130px}
  .siteharbour-plan-cards-transfer .plan-intro{font-size:1.05rem}
  .siteharbour-plan-cards-transfer .plan-fit{font-size:.98rem}
  .siteharbour-plan-cards-transfer .plan-highlights li{font-size:.98rem}
}
@media (max-width:560px){
  .siteharbour-plan-cards-transfer .price-card{padding:30px 22px 24px}
  .siteharbour-plan-cards-transfer .price strong{font-size:3rem}
  .siteharbour-plan-cards-transfer .plan-commitment{align-items:flex-start;flex-direction:column;gap:5px}
  .siteharbour-plan-cards-transfer .plan-icon{height:100px;justify-content:center;margin-bottom:10px}
  .siteharbour-plan-cards-transfer .plan-icon img{height:96px;max-width:122px}
  .siteharbour-plan-cards-transfer .plan-upgrade{padding:14px;margin-top:14px}
  .siteharbour-plan-cards-transfer .plan-upgrade p{font-size:.92rem}
  .siteharbour-plan-cards-transfer .plan-upgrade-soft strong{font-size:.92rem}
  .siteharbour-plan-cards-transfer .plan-upgrade-soft p{font-size:.9rem}
}
@media (prefers-reduced-motion:reduce){
  .siteharbour-plan-cards-transfer .price-card,
  .siteharbour-plan-cards-transfer .plan-icon img,
  .siteharbour-plan-cards-transfer .price-card .btn,
  .siteharbour-plan-cards-transfer .plan-highlights li:before{transition:none!important}
}


/* 2026-08-11: Homepage managed-service section matched to better-website landing page */
.managed-services-section{
  background:var(--primary);
  color:#fff;
}
.managed-services-section h2,
.managed-services-section h3{
  color:#fff;
}
.managed-services-heading{
  max-width:820px;
  margin-bottom:48px;
}
.managed-services-eyebrow{
  margin-bottom:14px;
  color:#bcd2f5;
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.managed-services-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.managed-service-card{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);
  border-radius:16px;
  padding:27px;
}
.managed-service-card .material-symbols-rounded{
  display:block;
  margin-bottom:20px;
  color:#bcd2f5;
  font-size:38px;
  line-height:1;
}
.managed-service-card h3{
  margin-bottom:14px;
  font-size:1.2rem;
}
.managed-service-card p{
  margin:0;
  color:#d2dbea;
  font-size:.94rem;
}
@media (max-width:1050px){
  .managed-services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:560px){
  .managed-services-heading{margin-bottom:34px}
  .managed-services-grid{grid-template-columns:1fr}
  }


/* 2026-08-11: Restore original homepage service-section visual treatment while keeping 8 managed-service cards */
.managed-services-section{
  background:var(--white);
  color:var(--ink);
}
.managed-services-section h2,
.managed-services-section h3{
  color:var(--primary);
}
.managed-services-section .managed-services-grid{
  margin-top:42px;
}
.managed-service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:0 16px 45px rgba(27,43,75,.06);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}
.managed-service-card .material-symbols-rounded{
  display:grid;
  place-items:center;
  width:50px;
  height:50px;
  margin-bottom:22px;
  border-radius:15px;
  background:linear-gradient(135deg,var(--accent-soft),#fff);
  color:var(--secondary);
  font-size:28px;
  line-height:1;
  transition:color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.managed-service-card h3{
  margin-bottom:14px;
  color:var(--primary);
  font-size:1.2rem;
  transition:color .24s ease;
}
.managed-service-card p{
  margin:0;
  color:var(--muted);
  font-size:.94rem;
  transition:color .24s ease;
}
.managed-service-card:hover{
  transform:translateY(-6px);
  background:#5B7DB1;
  border-color:#5B7DB1;
  box-shadow:0 24px 62px rgba(27,43,75,.18);
}
.managed-service-card:hover h3{
  color:#fff;
}
.managed-service-card:hover p{
  color:rgba(255,255,255,.88);
}
.managed-service-card:hover .material-symbols-rounded{
  background:#fff;
  color:#1B2B4B;
  box-shadow:0 16px 34px rgba(0,0,0,.14);
}
@media (max-width:560px){
  .managed-services-section .managed-services-grid{margin-top:34px}
  .managed-service-card{padding:24px 22px}
}

/* 2026-08-11: Homepage proof-point cards matched to the better-website landing page */
.home-proof-strip {
  background: #f8fafc;
  padding: 48px 0;
}
.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-proof-card {
  background: #fff;
  border: 1px solid #d9e0e9;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 25px rgba(27,43,75,.06);
}
.home-proof-card img {
  width: 72px;
  height: 66px;
  object-fit: contain;
  flex: 0 0 auto;
}
.home-proof-card strong {
  display: block;
  color: #12213b;
  font-size: .96rem;
  line-height: 1.2;
}
.home-proof-card span {
  display: block;
  color: #5f6d80;
  font-size: .78rem;
  margin-top: 5px;
  line-height: 1.35;
}
@media (max-width: 1050px) {
  .home-proof-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .home-proof-strip { padding: 38px 0; }
  .home-proof-grid { grid-template-columns: 1fr; }
  .home-proof-card { padding: 14px; }
  .home-proof-card img { width: 66px; }
}

/* Homepage managed-plan price panel interaction */
.panel-price {
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .panel-price:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.32);
    box-shadow: 0 24px 55px rgba(8,24,52,.24);
  }
}

.panel-price:focus-within {
  transform: translateY(-6px);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 24px 55px rgba(8,24,52,.24);
}

.panel-price .btn-light {
  transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.panel-price .btn-light:hover,
.panel-price .btn-light:focus-visible {
  background: #5B7DB1;
  border-color: #5B7DB1;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(8,24,52,.24);
}

@media (prefers-reduced-motion: reduce) {
  .panel-price,
  .panel-price .btn-light {
    transition: none;
  }

  .panel-price:hover,
  .panel-price:focus-within,
  .panel-price .btn-light:hover,
  .panel-price .btn-light:focus-visible {
    transform: none;
  }
}


/* 2026-08-11: Compact shared managed-plan cards and master-plan inclusions */
.home-plan-cards {
  margin-top: 42px;
}

.siteharbour-plan-cards-transfer .price-card {
  padding: 30px 28px 26px;
}

.siteharbour-plan-cards-transfer .plan-icon {
  height: 98px;
  margin: -2px 0 6px;
}

.siteharbour-plan-cards-transfer .plan-icon img {
  height: 92px;
  max-width: 126px;
}

.siteharbour-plan-cards-transfer .price {
  margin: 10px 0 8px;
}

.siteharbour-plan-cards-transfer .plan-commitment {
  margin-bottom: 14px;
  padding-bottom: 14px;
}

.siteharbour-plan-cards-transfer .plan-intro {
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.58;
}

.siteharbour-plan-cards-transfer .plan-fit-details {
  margin: 0 0 16px;
  border: 1px solid #dce4ee;
  border-radius: 12px;
  background: #f4f7fb;
  color: #4b5d74;
  overflow: hidden;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.siteharbour-plan-cards-transfer .plan-fit-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--navy);
  font-size: .94rem;
  line-height: 1.35;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.siteharbour-plan-cards-transfer .plan-fit-details summary::-webkit-details-marker {
  display: none;
}

.siteharbour-plan-cards-transfer .plan-fit-details summary .material-symbols-rounded {
  flex: 0 0 auto;
  font-size: 22px;
  transition: transform .2s ease;
}

.siteharbour-plan-cards-transfer .plan-fit-details[open] summary .material-symbols-rounded {
  transform: rotate(180deg);
}

.siteharbour-plan-cards-transfer .plan-fit-details-body {
  padding: 0 14px 13px;
  color: #4b5d74;
  font-size: .94rem;
  line-height: 1.52;
}

.siteharbour-plan-cards-transfer .plan-highlights {
  margin-bottom: 16px;
  gap: 9px;
}

.siteharbour-plan-cards-transfer .plan-upgrade {
  margin: 12px 0 16px;
  padding: 13px 14px;
}

.siteharbour-plan-cards-transfer .plan-upgrade p {
  margin-bottom: 5px;
}

.siteharbour-plan-cards-transfer .plan-recommendation {
  display: inline-block;
  color: var(--bright);
  font-size: .92rem;
  font-weight: 850;
}

.siteharbour-plan-cards-transfer .price-card.featured .plan-fit-details {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.siteharbour-plan-cards-transfer .price-card.featured .plan-fit-details summary,
.siteharbour-plan-cards-transfer .price-card.featured .plan-fit-details-body,
.siteharbour-plan-cards-transfer .price-card.featured .plan-recommendation {
  color: #fff;
}

@media (hover:hover) and (pointer:fine) {
  .siteharbour-plan-cards-transfer .price-card:hover .plan-fit-details {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.16);
  }

  .siteharbour-plan-cards-transfer .price-card:hover .plan-fit-details summary,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-fit-details-body,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-recommendation {
    color: #fff;
  }
}

.plan-inclusions-summary {
  margin-top: 0;
}

.home-pricing-section .plan-inclusions-summary {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid rgba(91,125,177,.22);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(27,43,75,.08);
}

.plan-inclusions-heading {
  max-width: 820px;
  margin: 0 auto;
}

.plan-inclusions-heading h3 {
  margin: 6px 0 10px;
  color: var(--primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.plan-inclusions-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.plan-inclusions-grid {
  margin-top: 28px;
}

.plan-inclusions-grid .card {
  padding: 24px;
}

.home-pricing-section .plan-inclusions-grid .card {
  background: #f7f8fa;
}

.plan-inclusions-grid .card h4 {
  margin: 0 0 9px;
  color: var(--primary);
  font-size: 1.04rem;
  line-height: 1.3;
}

.plan-inclusions-grid .card p {
  margin: 0;
  color: #5f6d80;
  line-height: 1.58;
}

.plan-inclusions-grid .card h4,
.plan-inclusions-grid .card p,
.plan-inclusions-grid .card .icon-box,
.plan-inclusions-grid .card .material-symbols-rounded {
  transition: color .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

@media (hover:hover) and (pointer:fine) {
  .plan-inclusions-grid .card:hover {
    background: #5B7DB1;
    border-color: #5B7DB1;
    box-shadow: 0 24px 62px rgba(27,43,75,.18);
  }

  .plan-inclusions-grid .card:hover h4 {
    color: #fff;
  }

  .plan-inclusions-grid .card:hover p {
    color: rgba(255,255,255,.9);
  }

  .plan-inclusions-grid .card:hover .icon-box {
    background: #fff;
    border-color: #fff;
    color: #1B2B4B;
    box-shadow: 0 16px 34px rgba(0,0,0,.14);
  }
}

@media (max-width: 820px) {
  .siteharbour-plan-cards-transfer .price-card {
    padding: 28px 26px 24px;
  }

  .siteharbour-plan-cards-transfer .plan-icon {
    height: 96px;
    margin-top: 0;
  }

  .siteharbour-plan-cards-transfer .plan-icon img {
    height: 90px;
    max-width: 122px;
  }
}

@media (max-width: 640px) {
  .home-plan-cards {
    margin-top: 34px;
  }

  .home-pricing-section .plan-inclusions-summary {
    margin-top: 36px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .plan-inclusions-grid {
    margin-top: 22px;
  }
}

@media (max-width: 560px) {
  .siteharbour-plan-cards-transfer .price-card {
    padding: 26px 20px 22px;
  }

  .siteharbour-plan-cards-transfer .plan-icon {
    height: 92px;
    margin-bottom: 6px;
  }

  .siteharbour-plan-cards-transfer .plan-icon img {
    height: 88px;
    max-width: 116px;
  }

  .siteharbour-plan-cards-transfer .plan-fit-details summary,
  .siteharbour-plan-cards-transfer .plan-fit-details-body {
    font-size: .92rem;
  }
}

/* ============================================================
   2026-08-11: SiteHarbour brand colour and interaction consistency
   Standard interactive accent: #5B7DB1
   Grow remains the featured plan using the approved brand palette only.
   ============================================================ */

/* Standard button hover language across the public site */
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #5B7DB1;
  border-color: #5B7DB1;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(27, 43, 75, 0.24);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #5B7DB1;
  border-color: #5B7DB1;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(27, 43, 75, 0.18);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #5B7DB1;
  border-color: #5B7DB1;
  color: #ffffff;
}

.site-footer .footer-partner-button:hover,
.site-footer .footer-partner-button:focus-visible {
  background: #5B7DB1;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(27, 43, 75, 0.24);
}

/* Legacy plan-card component: keep normal card hover consistent if reused */
.plan-card:not(.featured):hover,
.plan-card:not(.featured):focus-within,
.plan-card:not(.featured):target {
  background: #5B7DB1;
  border-color: #5B7DB1;
  box-shadow: 0 30px 80px rgba(27, 43, 75, 0.22);
}

.plan-card.featured {
  border-color: #5B7DB1;
}

.plan-card.featured:hover,
.plan-card.featured:focus-within,
.plan-card.featured:target {
  background: linear-gradient(145deg, #1B2B4B 0%, #2E4A7A 72%, #5B7DB1 100%);
  border-color: #5B7DB1;
  box-shadow: 0 30px 80px rgba(27, 43, 75, 0.26);
}

/* Shared Launch / Grow / Pro component imported from the landing pages */
.siteharbour-plan-cards-transfer {
  --navy: #1B2B4B;
  --navy2: #2E4A7A;
  --bright: #5B7DB1;
  --line: #E8ECF2;
}

.siteharbour-plan-cards-transfer .price-card {
  border-color: #E8ECF2;
  box-shadow: 0 12px 36px rgba(27, 43, 75, 0.07);
}

.siteharbour-plan-cards-transfer .plan-fit-details,
.siteharbour-plan-cards-transfer .plan-fit {
  background: #F7F8FA;
  border-color: #E8ECF2;
}

.siteharbour-plan-cards-transfer .plan-upgrade,
.siteharbour-plan-cards-transfer .plan-upgrade-soft {
  border-color: #E8ECF2;
  background: linear-gradient(145deg, #F7F8FA 0%, #E8ECF2 100%);
}

.siteharbour-plan-cards-transfer .plan-upgrade > .material-symbols-rounded,
.siteharbour-plan-cards-transfer .plan-upgrade-soft > .material-symbols-rounded {
  background: #ffffff;
  color: #5B7DB1;
  box-shadow: 0 5px 14px rgba(91, 125, 177, 0.16);
}

.siteharbour-plan-cards-transfer .plan-upgrade a,
.siteharbour-plan-cards-transfer .plan-upgrade-soft a,
.siteharbour-plan-cards-transfer .plan-recommendation,
.siteharbour-plan-cards-transfer .plan-highlights li:before {
  color: #5B7DB1;
}

.siteharbour-plan-cards-transfer .btn-outline {
  border-color: #E8ECF2;
  background: #ffffff;
  color: #1B2B4B;
}

.siteharbour-plan-cards-transfer .btn-primary {
  background: #5B7DB1;
  border-color: #5B7DB1;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(91, 125, 177, 0.22);
}

/* Grow: featured by default, but only with approved SiteHarbour blues */
.siteharbour-plan-cards-transfer .price-card.featured {
  background: linear-gradient(145deg, #1B2B4B 0%, #2E4A7A 72%, #5B7DB1 100%);
  border-color: #5B7DB1;
  box-shadow: 0 28px 62px rgba(27, 43, 75, 0.25), 0 0 0 1px rgba(91, 125, 177, 0.18);
  color: #ffffff;
}

.siteharbour-plan-cards-transfer .price-card.featured .price small,
.siteharbour-plan-cards-transfer .price-card.featured .plan-commitment span {
  color: #E8ECF2;
}

.siteharbour-plan-cards-transfer .price-card.featured .plan-highlights li:before {
  color: #E8ECF2;
}

.siteharbour-plan-cards-transfer .price-card.featured .plan-icon img {
  filter: drop-shadow(0 14px 22px rgba(27, 43, 75, 0.30)) drop-shadow(0 0 15px rgba(91, 125, 177, 0.32));
}

.siteharbour-plan-cards-transfer .price-card.featured > .btn {
  background: #5B7DB1;
  border-color: #E8ECF2;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(27, 43, 75, 0.30);
}

.siteharbour-plan-cards-transfer .price-card.featured .popular {
  background: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 8px 20px rgba(27, 43, 75, 0.20);
}

.siteharbour-plan-cards-transfer .price-card.featured .plan-upgrade-soft > .material-symbols-rounded {
  background: #ffffff;
  color: #5B7DB1;
}

/* Desktop hover behaviour: normal cards use the same accent as other site cards. */
@media (hover: hover) and (pointer: fine) {
  .siteharbour-plan-cards-transfer .price-card:not(.featured):hover {
    transform: translateY(-9px);
    background: #5B7DB1;
    border-color: #5B7DB1;
    box-shadow: 0 28px 62px rgba(27, 43, 75, 0.22);
    color: #ffffff;
  }

  /* Grow stays special instead of becoming the same solid accent colour. */
  .siteharbour-plan-cards-transfer .price-card.featured:hover {
    transform: translateY(-14px) scale(1.012);
    background: linear-gradient(145deg, #2E4A7A 0%, #1B2B4B 58%, #5B7DB1 100%);
    border-color: #5B7DB1;
    box-shadow: 0 32px 72px rgba(27, 43, 75, 0.30), 0 0 0 1px rgba(91, 125, 177, 0.24);
  }

  .siteharbour-plan-cards-transfer .price-card:hover .price small,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-commitment span {
    color: #E8ECF2;
  }

  .siteharbour-plan-cards-transfer .price-card:hover .plan-highlights li:before {
    color: #ffffff;
  }

  .siteharbour-plan-cards-transfer .price-card:hover .plan-icon img {
    filter: drop-shadow(0 16px 25px rgba(27, 43, 75, 0.32)) drop-shadow(0 0 18px rgba(91, 125, 177, 0.34));
  }

  .siteharbour-plan-cards-transfer .price-card:hover .btn,
  .siteharbour-plan-cards-transfer .price-card.featured:hover .btn {
    background: #ffffff;
    border-color: #ffffff;
    color: #1B2B4B;
    box-shadow: 0 14px 30px rgba(27, 43, 75, 0.24);
  }

  .siteharbour-plan-cards-transfer .price-card:hover .btn:hover,
  .siteharbour-plan-cards-transfer .price-card.featured:hover .btn:hover {
    background: #E8ECF2;
    border-color: #E8ECF2;
    color: #1B2B4B;
    box-shadow: 0 18px 36px rgba(27, 43, 75, 0.26);
  }

  .siteharbour-plan-cards-transfer .price-card:hover .popular {
    background: #ffffff;
    color: #1B2B4B;
  }

  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade > .material-symbols-rounded,
  .siteharbour-plan-cards-transfer .price-card:hover .plan-upgrade-soft > .material-symbols-rounded {
    background: #ffffff;
    color: #1B2B4B;
  }
}

/* ============================================================
   2026-08-11: Homepage "Getting Started Is Simple" process
   Based on the approved better-website landing-page component.
   Scoped to the homepage process section to avoid affecting other cards.
   ============================================================ */
.home-process-section {
  background: #ffffff;
}

.home-process-heading {
  margin-bottom: 42px;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.home-process-card {
  position: relative;
  text-align: center;
  background: #ffffff;
  border: 1px solid #E8ECF2;
  border-radius: 17px;
  padding: 24px 18px 28px;
  box-shadow: 0 12px 32px rgba(27, 43, 75, 0.05);
}

.home-process-card img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin: 6px auto 16px;
}

.home-process-card h3 {
  margin: 0 0 14px;
  color: #1B2B4B;
  font-size: 1.05rem;
  line-height: 1.18;
}

.home-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.65;
}

.home-process-step {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #5B7DB1;
  color: #ffffff;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(27, 43, 75, 0.14);
}

@media (max-width: 1050px) {
  .home-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-process-heading {
    margin-bottom: 34px;
  }

  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-process-card {
    padding: 24px 20px 26px;
  }

  .home-process-card img {
    height: 96px;
    margin-bottom: 14px;
  }

  .home-process-card h3 {
    font-size: 1.08rem;
  }

  .home-process-card p {
    font-size: .92rem;
  }
}

/* =========================================================
   Homepage sales-flow proof + testimonial pass
   Scoped to homepage-only components.
   ========================================================= */
.home-work-showcase {
  border-top: 1px solid #E8ECF2;
  border-bottom: 1px solid #E8ECF2;
}

.home-work-heading,
.home-testimonials-heading {
  margin-bottom: 42px;
}

.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.home-work-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #E8ECF2;
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(27, 43, 75, 0.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.home-work-devices {
  position: relative;
  min-height: 270px;
  padding: 24px 24px 0;
  background: linear-gradient(180deg, #F7F8FA 0%, #E8ECF2 100%);
  overflow: hidden;
}

.home-work-desktop,
.home-work-phone {
  margin: 0;
  background: #ffffff;
  overflow: hidden;
}

.home-work-desktop {
  width: 91%;
  border: 1px solid #d4ddea;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(27, 43, 75, 0.14);
}

.home-work-desktop img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: top;
}

.home-work-phone {
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: 25%;
  border: 6px solid #1B2B4B;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(27, 43, 75, 0.24);
}

.home-work-phone img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

.home-work-copy {
  flex: 1;
  padding: 26px 26px 28px;
}

.home-work-copy h3 {
  margin-bottom: 10px;
}

.home-work-copy p {
  font-size: .95rem;
  margin-bottom: 16px;
}

.home-work-extra {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  margin: 4px 0 18px;
  padding: 12px;
  background: #F7F8FA;
  border: 1px solid #E8ECF2;
  border-radius: 16px;
}

.home-work-extra-shot {
  margin: 0;
  background: #ffffff;
  border: 1px solid #d6dfeb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(27, 43, 75, 0.10);
}

.home-work-extra-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.home-work-extra-copy {
  display: grid;
  gap: 4px;
}

.home-work-extra-copy strong {
  color: #1B2B4B;
  font-size: .9rem;
}

.home-work-extra-copy span {
  color: #40506a;
  font-size: .9rem;
  line-height: 1.55;
}

.home-work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2E4A7A;
  font-weight: 800;
}

.home-work-link:hover,
.home-work-link:focus-visible {
  color: #5B7DB1;
}

.home-work-more,
.home-pricing-more {
  margin-top: 32px;
}

.home-testimonials-section {
  background: #ffffff;
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.home-testimonial-card {
  margin: 0;
  padding: 28px;
  background: #F7F8FA;
  border: 1px solid #E8ECF2;
  border-left: 4px solid #5B7DB1;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(27, 43, 75, 0.06);
}

.home-testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.home-testimonial-head .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  color: #ffffff;
  background: #2E4A7A;
}

.home-testimonial-head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.home-testimonial-card p {
  color: #40506a;
  font-size: .96rem;
  line-height: 1.7;
}

.home-testimonial-card footer {
  margin-top: 18px;
  color: #1B2B4B;
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  .home-work-card:hover {
    transform: translateY(-7px);
    border-color: #5B7DB1;
    box-shadow: 0 24px 52px rgba(27, 43, 75, 0.16);
  }

  .home-testimonial-card:hover {
    border-color: #5B7DB1;
    box-shadow: 0 20px 44px rgba(27, 43, 75, 0.12);
  }
}

@media (max-width: 980px) {
  .home-work-grid,
  .home-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-work-grid,
  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .home-work-devices {
    min-height: 300px;
  }

  .home-work-desktop img {
    height: 265px;
  }

  .home-work-phone {
    width: 23%;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .home-work-devices {
    min-height: 245px;
    padding: 18px 16px 0;
  }

  .home-work-desktop {
    width: 92%;
  }

  .home-work-desktop img {
    height: 215px;
  }

  .home-work-phone {
    right: 12px;
    width: 25%;
    border-width: 5px;
    border-radius: 18px;
  }

  .home-work-extra {
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 10px;
  }

  .home-work-copy,
  .home-testimonial-card {
    padding: 22px 20px 24px;
  }
}


/* =========================================================
   Homepage work showcase readability refinement
   Larger project copy and clearer custom-system proof.
   ========================================================= */
.home-work-devices {
  min-height: 290px;
}

.home-work-desktop img {
  height: 250px;
}

.home-work-copy {
  padding: 28px 28px 30px;
}

.home-work-copy h3 {
  font-size: 1.32rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.home-work-copy > p {
  font-size: 1.03rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.home-work-extra {
  display: block;
  margin: 8px 0 22px;
  padding: 14px;
  background: #F7F8FA;
  border: 1px solid #E8ECF2;
  border-radius: 17px;
}

.home-work-extra-shot {
  width: 100%;
  height: 190px;
  margin: 0 0 14px;
  border-radius: 13px;
  overflow: hidden;
}

.home-work-extra-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.home-work-extra-copy {
  display: block;
}

.home-work-extra-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #1B2B4B;
  font-size: 1rem;
  line-height: 1.3;
}

.home-work-extra-copy span {
  display: block;
  color: #40506a;
  font-size: .98rem;
  line-height: 1.65;
}

.home-work-link {
  font-size: 1rem;
}

@media (max-width: 980px) {
  .home-work-extra-shot {
    height: 220px;
  }
}

@media (max-width: 700px) {
  .home-work-devices {
    min-height: 315px;
  }

  .home-work-desktop img {
    height: 280px;
  }

  .home-work-copy > p,
  .home-work-extra-copy span {
    font-size: 1rem;
  }

  .home-work-extra-shot {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .home-work-devices {
    min-height: 260px;
  }

  .home-work-desktop img {
    height: 230px;
  }

  .home-work-copy {
    padding: 24px 22px 26px;
  }

  .home-work-extra {
    padding: 12px;
  }

  .home-work-extra-shot {
    height: 190px;
  }
}


/* 2026-08-12: Homepage value-panel emphasis */
.value-band .panel-price {
  background: linear-gradient(145deg, rgba(91, 125, 177, .34), rgba(255, 255, 255, .11));
  border-color: rgba(232, 236, 242, .42);
  box-shadow: 0 20px 48px rgba(8, 24, 52, .18);
}

.value-band .panel-price .price-big {
  display: grid;
  gap: 2px;
  margin-bottom: 22px;
  line-height: 1.04;
}

.value-band .panel-price .price-big .price-from {
  font-size: .52em;
  letter-spacing: -.02em;
}

.value-band .panel-price h3 {
  margin-bottom: 12px;
}

.value-band .panel-price p {
  max-width: 32ch;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .9);
}

.value-band .panel-price .btn-light {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B2B4B;
  box-shadow: 0 10px 24px rgba(8, 24, 52, .14);
}

@media (hover: hover) and (pointer: fine) {
  .value-band .panel-price:hover {
    background: linear-gradient(145deg, rgba(91, 125, 177, .43), rgba(255, 255, 255, .14));
    border-color: rgba(232, 236, 242, .60);
    box-shadow: 0 28px 60px rgba(8, 24, 52, .25);
  }
}

/* =========================================================
   Homepage section background rhythm
   Separate managed-model, work proof and testimonial sections.
   ========================================================= */
.home-work-showcase,
.section.bg-light.home-work-showcase {
  background: #FFFFFF;
}

.home-testimonials-section {
  background: #F7F8FA;
}

/* =========================================================
   Homepage pricing section: one section, two visual zones
   Keeps plan comparison and shared inclusions related while
   giving the inclusions area clearer visual separation.
   ========================================================= */
.home-pricing-section .plan-inclusions-summary {
  margin-top: 64px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(91, 125, 177, 0.32);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(27, 43, 75, 0.11);
}

.home-pricing-section .plan-inclusions-grid .card {
  background: #F7F8FA;
  border-color: #E8ECF2;
  box-shadow: 0 12px 28px rgba(27, 43, 75, 0.05);
}

.home-pricing-section .plan-inclusions-grid .icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 58px;
}

.home-pricing-section .plan-inclusions-grid .icon-box .material-symbols-rounded {
  font-size: 27px;
  line-height: 1;
}

@media (max-width: 640px) {
  .home-pricing-section .plan-inclusions-summary {
    margin-top: 42px;
    padding: 28px 22px;
    border-radius: 22px;
  }
}

/* =========================================================
   Homepage shared-inclusions hover fix
   Restores the approved Site Harbour accent hover after the
   later light-card background refinement above.
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  .home-pricing-section .plan-inclusions-grid .card:hover {
    background: #5B7DB1;
    border-color: #5B7DB1;
    box-shadow: 0 24px 62px rgba(27, 43, 75, 0.18);
    transform: translateY(-5px);
  }

  .home-pricing-section .plan-inclusions-grid .card:hover h4 {
    color: #ffffff;
  }

  .home-pricing-section .plan-inclusions-grid .card:hover p {
    color: rgba(255, 255, 255, 0.92);
  }

  .home-pricing-section .plan-inclusions-grid .card:hover .icon-box {
    background: #ffffff;
    border-color: #ffffff;
    color: #1B2B4B;
    box-shadow: 0 16px 34px rgba(27, 43, 75, 0.16);
  }

  .home-pricing-section .plan-inclusions-grid .card:hover .icon-box .material-symbols-rounded {
    color: #1B2B4B;
  }
}

/* =========================================================
   Services page rebuild
   Core managed service -> Grow/Pro growth -> additional work
   ========================================================= */
.services-page-hero .lead {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero-actions,
.services-system-actions,
.services-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.services-proof-strip {
  padding: 28px 0;
  background: #ffffff;
  border-bottom: 1px solid #E8ECF2;
}

.services-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-proof-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 18px 16px;
  background: #F7F8FA;
  border: 1px solid #E8ECF2;
  border-radius: 16px;
}

.services-proof-card > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 13px;
  background: #E8ECF2;
  color: #2E4A7A;
  font-size: 24px;
}

.services-proof-card div {
  display: grid;
  gap: 3px;
}

.services-proof-card strong {
  color: #1B2B4B;
  font-size: .93rem;
  line-height: 1.25;
}

.services-proof-card span:not(.material-symbols-rounded) {
  color: #60708a;
  font-size: .8rem;
  line-height: 1.4;
}

.services-section-heading {
  margin-bottom: 42px;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-service-card {
  min-width: 0;
  padding: 27px 25px 28px;
  background: #ffffff;
  border: 1px solid #E8ECF2;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(27, 43, 75, 0.06);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.services-service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #E8ECF2;
  color: #2E4A7A;
  transition: background .25s ease, color .25s ease;
}

.services-service-icon .material-symbols-rounded {
  font-size: 25px;
}

.services-service-card h3 {
  margin: 0 0 11px;
  color: #1B2B4B;
  font-size: 1.08rem;
  line-height: 1.3;
  transition: color .25s ease;
}

.services-service-card p {
  margin: 0;
  color: #52627b;
  font-size: .94rem;
  line-height: 1.7;
  transition: color .25s ease;
}

.services-growth-section {
  background: #ffffff;
}

.services-additional-note {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  color: #60708a;
  font-size: .92rem;
}

.services-section-cta {
  margin-top: 32px;
}

.services-systems-section {
  background: #1B2B4B;
  color: #ffffff;
}

.services-system-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.services-system-copy .kicker {
  color: #b8cae4;
}

.services-system-copy h2,
.services-system-copy p,
.services-system-copy .lead {
  color: #ffffff;
}

.services-system-copy p {
  color: #E8ECF2;
}

.services-system-actions {
  justify-content: flex-start;
}

.services-system-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-system-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .2);
}

.services-system-gallery img {
  display: block;
  width: 100%;
  height: 265px;
  object-fit: cover;
  object-position: top;
}

.services-system-gallery figcaption {
  padding: 12px 14px 14px;
  color: #1B2B4B;
  font-size: .86rem;
  font-weight: 800;
  text-align: center;
}

.services-canada-section {
  background: #ffffff;
}

.services-canada-section .lead {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-final-actions {
  margin-top: 0;
  justify-content: flex-end;
}

@media (hover: hover) and (pointer: fine) {
  .services-service-card:hover {
    transform: translateY(-7px);
    background: #5B7DB1;
    border-color: #5B7DB1;
    box-shadow: 0 22px 48px rgba(27, 43, 75, .16);
  }

  .services-service-card:hover h3,
  .services-service-card:hover p {
    color: #ffffff;
  }

  .services-service-card:hover .services-service-icon {
    background: #ffffff;
    color: #1B2B4B;
  }

  .services-proof-card:hover {
    border-color: #5B7DB1;
    box-shadow: 0 12px 28px rgba(27, 43, 75, .09);
  }
}

@media (max-width: 980px) {
  .services-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-system-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-system-copy {
    text-align: center;
  }

  .services-system-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .services-hero-actions,
  .services-final-actions,
  .services-system-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-hero-actions .btn,
  .services-final-actions .btn,
  .services-system-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .services-proof-grid,
  .services-card-grid,
  .services-system-gallery {
    grid-template-columns: 1fr;
  }

  .services-proof-strip {
    padding: 22px 0;
  }

  .services-proof-card {
    padding: 16px;
  }

  .services-section-heading {
    margin-bottom: 30px;
  }

  .services-service-card {
    padding: 24px 21px 25px;
  }

  .services-system-gallery img {
    height: auto;
    max-height: 330px;
  }

  .services-final-actions {
    margin-top: 22px;
  }
}

/* =========================================================
   Services refinement: compact inner-page hero, shared proof
   cards, and larger custom-system case-study visuals.
   ========================================================= */
.services-page-hero {
  padding: 68px 0 72px;
}

.services-page-hero h1 {
  max-width: 1020px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 22px;
}

.services-page-hero .lead {
  max-width: 880px;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.services-page-hero .services-hero-actions {
  margin-top: 24px;
}

/* Exact homepage proof card visual system. */
.services-proof-strip.home-proof-strip {
  border-bottom: 1px solid #E8ECF2;
}

.services-systems-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.services-system-shell {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 58px;
}

.services-system-copy h2 {
  max-width: 610px;
  font-size: clamp(2.55rem, 4vw, 4.35rem);
}

.services-system-example-copy {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.services-system-example-copy p {
  margin: 0;
}

.services-system-example-copy strong {
  color: #ffffff;
}

.services-review-callout {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.services-review-callout > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  color: #1B2B4B;
  font-size: 26px;
}

.services-review-callout strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 1rem;
}

.services-review-callout p {
  margin: 0;
  color: #E8ECF2;
  font-size: .92rem;
  line-height: 1.6;
}

.services-system-showcase {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.services-system-project {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .18);
}

.services-system-project-twoguys {
  margin-left: 46px;
}

.services-system-project-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 14px;
}

.services-system-project-head strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.services-system-project-head span {
  color: #b8cae4;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.services-system-project-media {
  position: relative;
  min-height: 335px;
}

.services-system-shot {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .24);
}

.services-system-shot-main {
  width: 82%;
}

.services-system-shot-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  z-index: 2;
}

.services-system-project-twoguys .services-system-shot-main {
  margin-left: auto;
}

.services-system-project-twoguys .services-system-shot-small {
  right: auto;
  left: 0;
}

.services-system-shot img {
  display: block;
  width: 100%;
  height: 286px;
  object-fit: cover;
  object-position: top;
}

.services-system-shot-small img {
  height: 188px;
}

.services-system-shot figcaption {
  padding: 10px 12px 12px;
  color: #1B2B4B;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .services-system-project {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .services-system-project:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 125, 177, .9);
    box-shadow: 0 30px 64px rgba(0, 0, 0, .24);
  }
}

@media (max-width: 1100px) {
  .services-page-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .services-system-project-media {
    min-height: 305px;
  }

  .services-system-shot img {
    height: 255px;
  }

  .services-system-shot-small img {
    height: 165px;
  }
}

@media (max-width: 980px) {
  .services-page-hero {
    padding: 60px 0 64px;
  }

  .services-system-shell {
    grid-template-columns: 1fr;
  }

  .services-system-copy h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-system-project-twoguys {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .services-page-hero {
    padding: 50px 0 54px;
  }

  .services-page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
    line-height: 1.04;
  }

  .services-systems-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .services-review-callout {
    grid-template-columns: 42px 1fr;
    padding: 15px;
  }

  .services-review-callout > .material-symbols-rounded {
    width: 42px;
    height: 42px;
    font-size: 23px;
  }

  .services-system-project {
    padding: 14px;
    border-radius: 20px;
  }

  .services-system-project-head {
    display: grid;
    gap: 3px;
  }

  .services-system-project-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .services-system-shot-main,
  .services-system-shot-small,
  .services-system-project-twoguys .services-system-shot-main,
  .services-system-project-twoguys .services-system-shot-small {
    position: static;
    width: 100%;
    margin: 0;
  }

  .services-system-shot img,
  .services-system-shot-small img {
    height: auto;
    max-height: 330px;
  }
}

/* Keep the Services proof strip visually identical to the homepage proof strip. */
.services-proof-strip.home-proof-strip {
  padding: 48px 0;
  background: #f8fafc;
  border-bottom: 1px solid #E8ECF2;
}

@media (max-width: 560px) {
  .services-proof-strip.home-proof-strip {
    padding: 38px 0;
  }
}

/* =========================================================
   Pricing refinement: standard inner-page hero treatment.
   Matches the compact Services-page hero proportions.
   ========================================================= */
.pricing-page-hero {
  padding: 68px 0 72px;
}

.pricing-page-hero h1 {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 22px;
}

.pricing-page-hero .lead {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .pricing-page-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }
}

@media (max-width: 980px) {
  .pricing-page-hero {
    padding: 60px 0 64px;
  }
}

@media (max-width: 640px) {
  .pricing-page-hero {
    padding: 50px 0 54px;
  }

  .pricing-page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
    line-height: 1.04;
  }
}

/* =========================================================
   Work page: featured case studies + standard inner-page hero
   ========================================================= */
.work-page-hero {
  padding: 68px 0 72px;
}

.work-page-hero h1 {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 22px;
}

.work-page-hero .lead {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.work-section-heading {
  margin-bottom: 44px;
}

.work-section-heading h2 {
  margin-bottom: 14px;
}

.work-case-study {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
  padding: 38px;
  background: #ffffff;
  border: 1px solid #E8ECF2;
  border-radius: 28px;
  box-shadow: 0 22px 56px rgba(27, 43, 75, .09);
}

.work-case-study-reverse .work-case-copy {
  order: 2;
}

.work-case-study-reverse .work-case-media {
  order: 1;
}

.work-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.work-case-tags span {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: #E8ECF2;
  color: #2E4A7A;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .02em;
}

.work-case-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  line-height: 1.15;
}

.work-case-copy > p {
  color: #40506a;
  font-size: 1.02rem;
  line-height: 1.72;
}

.work-capability-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
}

.work-capability-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: #F7F8FA;
  border: 1px solid #E8ECF2;
}

.work-capability-list .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E8ECF2;
  color: #2E4A7A;
  font-size: 24px;
}

.work-capability-list p {
  margin: 0;
  color: #40506a;
  font-size: .92rem;
  line-height: 1.55;
}

.work-capability-list strong {
  color: #1B2B4B;
}

.work-case-media {
  position: relative;
  min-height: 570px;
  padding-bottom: 152px;
}

.work-case-desktop,
.work-case-phone,
.work-case-admin {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d6dfeb;
  box-shadow: 0 22px 48px rgba(27, 43, 75, .18);
}

.work-case-desktop {
  width: 88%;
  border-radius: 18px;
}

.work-case-desktop img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.work-case-phone {
  position: absolute;
  right: 0;
  top: 66px;
  width: 24%;
  border: 7px solid #1B2B4B;
  border-radius: 26px;
  z-index: 3;
}

.work-case-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.work-case-admin {
  position: absolute;
  left: 6%;
  right: 4%;
  bottom: 0;
  border-radius: 18px;
  z-index: 2;
}

.work-case-admin figcaption {
  padding: 10px 14px;
  background: #1B2B4B;
  color: #ffffff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.work-case-admin img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top;
}

.work-case-study-reverse .work-case-phone {
  right: auto;
  left: 0;
}

.work-case-study-reverse .work-case-desktop {
  margin-left: auto;
}

.work-case-study-reverse .work-case-admin {
  left: 4%;
  right: 6%;
}

.work-case-media-hvac {
  min-height: 475px;
  padding-bottom: 0;
}

.work-case-desktop-large {
  width: 92%;
}

.work-case-phone-large {
  width: 26%;
  top: 92px;
}

.work-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.work-more-card {
  padding: 0;
  overflow: hidden;
}

.work-more-image {
  display: block;
  overflow: hidden;
  background: #E8ECF2;
}

.work-more-image img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top;
  transition: transform .3s ease;
}

.work-more-copy {
  padding: 26px 28px 30px;
}

.work-more-copy .tag {
  margin-bottom: 12px;
}

.work-more-copy h3 {
  margin-bottom: 10px;
}

.work-more-copy p {
  color: #40506a;
  font-size: .98rem;
  line-height: 1.7;
}

.work-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (hover: hover) and (pointer: fine) {
  .work-case-study {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .work-case-study:hover {
    transform: translateY(-5px);
    border-color: #5B7DB1;
    box-shadow: 0 28px 66px rgba(27, 43, 75, .15);
  }

  .work-more-card:hover .work-more-image img {
    transform: scale(1.025);
  }
}

@media (max-width: 1100px) {
  .work-page-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .work-case-study {
    gap: 38px;
    padding: 30px;
  }

  .work-case-media {
    min-height: 515px;
  }

  .work-case-desktop img {
    height: 315px;
  }
}

@media (max-width: 980px) {
  .work-page-hero {
    padding: 60px 0 64px;
  }

  .work-case-study,
  .work-case-study-reverse {
    grid-template-columns: 1fr;
  }

  .work-case-study-reverse .work-case-copy,
  .work-case-study-reverse .work-case-media {
    order: initial;
  }

  .work-case-copy {
    max-width: 760px;
  }

  .work-case-media {
    min-height: 590px;
  }

  .work-case-desktop img {
    height: 390px;
  }

  .work-case-media-hvac {
    min-height: 500px;
  }
}

@media (max-width: 700px) {
  .work-case-study {
    padding: 22px;
    border-radius: 22px;
  }

  .work-case-media,
  .work-case-media-hvac {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding-bottom: 0;
  }

  .work-case-desktop,
  .work-case-desktop-large,
  .work-case-phone,
  .work-case-phone-large,
  .work-case-admin,
  .work-case-study-reverse .work-case-desktop,
  .work-case-study-reverse .work-case-phone,
  .work-case-study-reverse .work-case-admin {
    position: static;
    width: 100%;
    margin: 0;
  }

  .work-case-desktop img,
  .work-case-admin img {
    height: auto;
    max-height: 390px;
  }

  .work-case-phone,
  .work-case-phone-large {
    width: min(210px, 52%);
    justify-self: center;
  }

  .work-more-grid {
    grid-template-columns: 1fr;
  }

  .work-more-image img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .work-page-hero {
    padding: 50px 0 54px;
  }

  .work-page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
    line-height: 1.04;
  }

  .work-capability-list > div {
    grid-template-columns: 40px 1fr;
    padding: 12px;
  }

  .work-capability-list .material-symbols-rounded {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .work-cta-actions {
    width: 100%;
    justify-content: stretch;
  }

  .work-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Sitewide closing CTA button states
   Applies only to buttons inside .cta-band.
   ============================================================ */
.cta-band .btn {
  position: relative;
  overflow: hidden;
  border-width: 1px;
  font-weight: 900;
  letter-spacing: .01em;
  transform: translateZ(0);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-position .28s ease,
    border-color .22s ease,
    color .22s ease;
}

/* Primary closing CTA: bright premium white treatment */
.cta-band .btn-light {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 48%, #E8ECF2 100%);
  background-size: 170% 170%;
  background-position: 0% 0%;
  border-color: #FFFFFF;
  color: #1B2B4B;
  box-shadow:
    0 16px 34px rgba(15, 29, 52, .24),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Secondary closing CTA: stronger Site Harbour brand gradient */
.cta-band .btn-secondary {
  background: linear-gradient(135deg, #2E4A7A 0%, #5B7DB1 100%);
  background-size: 170% 170%;
  background-position: 0% 50%;
  border-color: rgba(232, 236, 242, .72);
  color: #FFFFFF;
  box-shadow:
    0 14px 30px rgba(15, 29, 52, .24),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

@media (hover: hover) and (pointer: fine) {
  .cta-band .btn-light:hover {
    transform: translateY(-5px) scale(1.015);
    background-position: 100% 100%;
    border-color: #FFFFFF;
    color: #1B2B4B;
    box-shadow:
      0 24px 50px rgba(15, 29, 52, .30),
      0 0 0 2px rgba(255, 255, 255, .30),
      0 0 28px rgba(255, 255, 255, .26),
      inset 0 1px 0 rgba(255, 255, 255, 1);
  }

  .cta-band .btn-secondary:hover {
    transform: translateY(-5px) scale(1.015);
    background: linear-gradient(135deg, #5B7DB1 0%, #2E4A7A 100%);
    background-size: 170% 170%;
    background-position: 100% 50%;
    border-color: #E8ECF2;
    color: #FFFFFF;
    box-shadow:
      0 24px 50px rgba(15, 29, 52, .30),
      0 0 0 1px rgba(232, 236, 242, .28),
      0 0 24px rgba(91, 125, 177, .28),
      inset 0 1px 0 rgba(255, 255, 255, .30);
  }
}

.cta-band .btn-light:focus-visible,
.cta-band .btn-secondary:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 4px;
  box-shadow:
    0 0 0 7px rgba(91, 125, 177, .48),
    0 20px 42px rgba(15, 29, 52, .28);
}

.cta-band .btn-light:active,
.cta-band .btn-secondary:active {
  transform: translateY(-1px) scale(.985);
  box-shadow:
    0 8px 18px rgba(15, 29, 52, .24),
    inset 0 2px 4px rgba(15, 29, 52, .08);
}

.cta-band .btn-light:active {
  background: linear-gradient(135deg, #E8ECF2 0%, #FFFFFF 100%);
  border-color: #E8ECF2;
  color: #1B2B4B;
}

.cta-band .btn-secondary:active {
  background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
  border-color: #5B7DB1;
  color: #FFFFFF;
}

@media (prefers-reduced-motion: reduce) {
  .cta-band .btn {
    transition: none;
  }

  .cta-band .btn:hover,
  .cta-band .btn:active {
    transform: none;
  }
}


/* =========================================================
   Blog hub + current article refinement
   Standard inner-page hero sizing and intentional single-post layout.
   ========================================================= */
.blog-page-hero,
.blog-article-page-hero {
  padding: 68px 0 72px;
}

.blog-page-hero h1,
.blog-article-page-hero h1 {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 22px;
}

.blog-page-hero .lead,
.blog-article-page-hero .lead {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.blog-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.blog-section-heading {
  max-width: 900px;
  margin: 0 auto 38px;
}

.blog-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-topic-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid #E8ECF2;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(27, 43, 75, 0.06);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.blog-topic-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border: 1px solid #d7e0ed;
  border-radius: 14px;
  background: #E8ECF2;
  color: #2E4A7A;
}

.blog-topic-card h3 {
  margin-bottom: 10px;
}

.blog-topic-card p {
  margin: 0;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  min-height: 420px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #E8ECF2;
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(27, 43, 75, 0.10);
}

.blog-featured-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #E8ECF2;
}

.blog-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
}

.blog-featured-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.blog-featured-copy h2 a {
  color: #1B2B4B;
  text-decoration: none;
}

.blog-featured-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 8px;
  color: #2E4A7A;
  font-weight: 900;
  text-decoration: none;
}

.blog-read-link:hover,
.blog-read-link:focus-visible {
  color: #5B7DB1;
}

.blog-more-heading {
  margin: 54px 0 24px;
}

.article-plan-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 30px;
}

.article-plan-summary {
  position: relative;
  padding: 24px;
  border: 1px solid #E8ECF2;
  border-radius: 20px;
  background: #F7F8FA;
}

.article-plan-summary.featured {
  background: linear-gradient(145deg, #2E4A7A 0%, #1B2B4B 68%, #5B7DB1 100%);
  border-color: #5B7DB1;
  color: #ffffff;
}

.article-plan-summary h3 {
  margin-top: 0;
}

.article-plan-summary.featured h3,
.article-plan-summary.featured p,
.article-plan-summary.featured li {
  color: #ffffff;
}

.article-plan-summary.featured li:before {
  background: #ffffff;
}

.article-plan-price {
  display: grid;
  gap: 4px;
}

.article-plan-price strong {
  color: #1B2B4B;
  font-size: 1.5rem;
}

.article-plan-summary.featured .article-plan-price strong {
  color: #ffffff;
}

.article-plan-price span {
  color: #5e6d7f;
  font-weight: 800;
}

.article-plan-summary.featured .article-plan-price span {
  color: #E8ECF2;
}

.article-plan-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #ffffff;
  color: #1B2B4B;
  font-size: .78rem;
  font-weight: 900;
}

@media (hover: hover) and (pointer: fine) {
  .blog-topic-card:hover {
    transform: translateY(-6px);
    background: #5B7DB1;
    border-color: #5B7DB1;
    box-shadow: 0 22px 46px rgba(27, 43, 75, 0.16);
    color: #ffffff;
  }

  .blog-topic-card:hover h3,
  .blog-topic-card:hover p {
    color: #ffffff;
  }

  .blog-topic-card:hover .blog-topic-icon {
    background: #ffffff;
    border-color: #ffffff;
    color: #1B2B4B;
  }
}

@media (max-width: 980px) {
  .blog-page-hero,
  .blog-article-page-hero {
    padding: 60px 0 64px;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-featured-image img {
    min-height: 330px;
    max-height: 420px;
  }

  .article-plan-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .blog-topic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-page-hero,
  .blog-article-page-hero {
    padding: 50px 0 54px;
  }

  .blog-page-hero h1,
  .blog-article-page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
    line-height: 1.04;
  }

  .blog-hero-actions,
  .blog-hero-actions .btn,
  .article-cta .cta-actions,
  .article-cta .cta-actions .btn {
    width: 100%;
  }

  .blog-featured-image img {
    min-height: 230px;
  }

  .blog-featured-copy {
    padding: 28px 22px;
  }
}

/* ============================================================
   Shared closing CTA action layout
   Keeps Blog and article CTA buttons aligned with the approved
   sitewide closing CTA treatment used on Services and Work.
   ============================================================ */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 0;
}

@media (max-width: 640px) {
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* =========================================================
   About page: history, managed model and trust presentation
   ========================================================= */
.about-page-hero {
  padding: 68px 0 72px;
}

.about-page-hero h1 {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 22px;
}

.about-page-hero .lead {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.about-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-story-grid,
.about-model-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.about-story-copy h2,
.about-model-copy h2 {
  margin-bottom: 20px;
}

.about-story-copy > p,
.about-model-copy > p {
  max-width: 680px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #2E4A7A;
  font-weight: 900;
}

.about-text-link:hover,
.about-text-link:focus-visible {
  color: #5B7DB1;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.about-timeline:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: #E8ECF2;
}

.about-milestone {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E8ECF2;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(27, 43, 75, .07);
}

.about-milestone-year,
.about-milestone-icon,
.about-milestone-logo {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #E8ECF2;
  color: #2E4A7A;
  font-weight: 900;
}

.about-milestone-year {
  font-size: .9rem;
}

.about-milestone-icon {
  font-size: 28px;
}

.about-milestone-logo {
  overflow: hidden;
  background: linear-gradient(135deg, #F7F8FA 0%, #E8ECF2 100%);
  border: 1px solid rgba(91, 125, 177, .35);
}

.about-milestone-logo img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.about-milestone-current {
  border-color: rgba(91, 125, 177, .72);
  background: linear-gradient(135deg, #F7F8FA 0%, #FFFFFF 70%);
}

.about-milestone-current .about-milestone-icon {
  background: linear-gradient(135deg, #2E4A7A, #5B7DB1);
  color: #FFFFFF;
}

.about-milestone h3 {
  margin: 4px 0 8px;
}

.about-milestone p {
  margin: 0;
  line-height: 1.65;
}

.about-model-cards {
  display: grid;
  gap: 18px;
}

.about-model-card {
  padding: 30px;
  background: #FFFFFF;
  border: 1px solid #E8ECF2;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(27, 43, 75, .08);
}

.about-model-card .icon-large {
  margin-bottom: 22px;
}

.about-model-card p {
  margin-bottom: 0;
  line-height: 1.7;
}

.about-section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
}

.about-managed-panel {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(145deg, #1B2B4B 0%, #2E4A7A 68%, #5B7DB1 100%);
  box-shadow: 0 28px 64px rgba(27, 43, 75, .18);
}

.about-managed-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 70% 25%, black, transparent 74%);
}

.about-managed-grid,
.about-managed-note {
  position: relative;
  z-index: 2;
}

.about-managed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-managed-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .10);
  color: #FFFFFF;
}

.about-managed-item .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #FFFFFF;
  color: #1B2B4B;
  font-size: 24px;
}

.about-managed-item strong {
  color: #FFFFFF;
  font-size: .94rem;
  line-height: 1.35;
}

.about-managed-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.about-managed-note > .material-symbols-rounded {
  color: #FFFFFF;
}

.about-managed-note p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.about-managed-note a {
  color: #FFFFFF;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-trust-grid {
  align-items: stretch;
}

.about-trust-card {
  min-height: 100%;
}

.about-trust-card p {
  margin-bottom: 0;
  line-height: 1.7;
}

.about-audience-shell {
  max-width: 1040px;
}

.about-audience-shell .lead {
  max-width: 880px;
}

.about-audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.about-audience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid #E8ECF2;
  border-radius: 999px;
  background: #F7F8FA;
  color: #1B2B4B;
  font-weight: 800;
}

.about-audience-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (hover: hover) and (pointer: fine) {
  .about-milestone,
  .about-model-card,
  .about-trust-card {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .about-milestone:hover,
  .about-model-card:hover,
  .about-trust-card:hover {
    transform: translateY(-5px);
    border-color: #5B7DB1;
    box-shadow: 0 24px 54px rgba(27, 43, 75, .13);
  }
}

@media (max-width: 1100px) {
  .about-page-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .about-managed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .about-page-hero {
    padding: 60px 0 64px;
  }

  .about-story-grid,
  .about-model-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-story-copy > p,
  .about-model-copy > p {
    max-width: 780px;
  }
}

@media (max-width: 640px) {
  .about-page-hero {
    padding: 50px 0 54px;
  }

  .about-page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
    line-height: 1.04;
  }

  .about-hero-actions,
  .about-hero-actions .btn {
    width: 100%;
  }

  .about-milestone {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .about-milestone-year,
  .about-milestone-icon,
  .about-milestone-logo {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .about-milestone-logo img {
    width: 40px;
    height: 40px;
  }

  .about-timeline:before {
    left: 26px;
  }

  .about-managed-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .about-managed-grid {
    grid-template-columns: 1fr;
  }

.about-managed-note {
    align-items: flex-start;
  }
}

/* =========================================================
   Contact page: quote form, reassurance and next-step flow
   ========================================================= */
.contact-page-hero {
  padding: 68px 0 72px;
}

.contact-page-hero h1 {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.03;
  margin-bottom: 22px;
}

.contact-page-hero .lead {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
}

.contact-hero-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px auto 0;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: #FFFFFF !important;
  font-size: .94rem;
  font-weight: 800;
}

.contact-hero-note .material-symbols-rounded {
  font-size: 20px;
}

.contact-promise-card {
  min-height: 100%;
}

.contact-promises .contact-promise-card h2 {
  font-size: 1.3rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

.contact-promises .contact-promise-card p {
  line-height: 1.68;
}

.contact-quote-section {
  background: #FFFFFF;
}

.contact-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: 32px;
  align-items: start;
}

.contact-form-card.form-card {
  max-width: none;
  margin: 0;
  padding: 38px;
  border-color: rgba(91, 125, 177, .24);
  box-shadow: 0 24px 64px rgba(27, 43, 75, .10);
}

.contact-form-card:hover {
  transform: none;
  border-color: rgba(91, 125, 177, .34);
  box-shadow: 0 26px 68px rgba(27, 43, 75, .12);
}

.contact-form-intro {
  max-width: 720px;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E8ECF2;
}

.contact-form-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.contact-form-intro p {
  margin: 0;
  max-width: 660px;
  line-height: 1.7;
}

.contact-form-group + .contact-form-group {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #E8ECF2;
}

.contact-form-group > h3 {
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: #1B2B4B;
}

.contact-form-card .form-grid {
  gap: 20px;
  align-items: start;
}

.contact-form-card .form-field {
  gap: 8px;
  align-self: start;
  align-content: start;
}

.contact-form-card#quote {
  scroll-margin-top: 96px;
}

.contact-form-card label {
  font-size: .94rem;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  min-height: 52px;
  border-color: #E8ECF2;
  background: #F7F8FA;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-form-card textarea {
  min-height: 190px;
}

.contact-form-card input:hover,
.contact-form-card textarea:hover,
.contact-form-card select:hover {
  border-color: rgba(91, 125, 177, .48);
  background: #FFFFFF;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  outline: none;
  border-color: #5B7DB1;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(91, 125, 177, .14);
}

.form-error {
  display: none;
  margin-top: 6px;
  color: #9b1c1c;
  font-weight: 650;
}

.form-error.is-visible {
  display: block;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #b42318;
  box-shadow: 0 0 0 2px rgba(180, 35, 24, .12);
}

.form-help,
.referral-code-message {
  margin-top: 8px;
}

.contact-submit-button {
  width: 100%;
  min-height: 56px;
  margin-top: 30px;
  padding-left: 28px;
  padding-right: 28px;
  background: linear-gradient(135deg, #2E4A7A 0%, #1B2B4B 100%);
  border-color: rgba(27, 43, 75, .30);
  color: #FFFFFF;
  box-shadow: 0 18px 42px rgba(27, 43, 75, .24);
  font-size: 1rem;
  letter-spacing: .005em;
}

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
  background: linear-gradient(135deg, #5B7DB1 0%, #2E4A7A 100%);
  border-color: #5B7DB1;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(27, 43, 75, .30), 0 0 0 1px rgba(91, 125, 177, .16);
}

.contact-submit-button:active {
  transform: translateY(0) scale(.99);
  background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
  box-shadow: 0 12px 26px rgba(27, 43, 75, .22);
}

.contact-submit-button:disabled,
.contact-submit-button.is-submitting {
  cursor: wait;
  opacity: .88;
  transform: none;
  background: linear-gradient(135deg, #2E4A7A 0%, #1B2B4B 100%);
  box-shadow: 0 12px 28px rgba(27, 43, 75, .18);
}

.contact-submit-button .material-symbols-rounded {
  font-size: 22px;
}

.contact-submit-button.is-submitting .contact-submit-icon {
  animation: contact-submit-spin 1s linear infinite;
}

@keyframes contact-submit-spin {
  to { transform: rotate(360deg); }
}

.contact-direct-email {
  margin: 18px 0 0;
  text-align: center;
  color: #42516a;
  font-size: .92rem;
}

.contact-direct-email a {
  color: #2E4A7A;
  font-weight: 850;
}

.contact-direct-email a:hover,
.contact-direct-email a:focus-visible {
  color: #5B7DB1;
}

.contact-next-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(91, 125, 177, .22);
  border-radius: 26px;
  background: linear-gradient(145deg, #1B2B4B 0%, #2E4A7A 72%, #5B7DB1 100%);
  box-shadow: 0 24px 58px rgba(27, 43, 75, .16);
}

.contact-next-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 72% 16%, black, transparent 72%);
}

.contact-next-card > * {
  position: relative;
  z-index: 2;
}

.contact-next-card-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.contact-next-card .icon-box {
  width: 52px;
  height: 52px;
  margin: 0;
  border-color: rgba(255, 255, 255, .18);
  background: #FFFFFF;
  color: #1B2B4B;
}

.contact-next-card .kicker {
  color: rgba(255, 255, 255, .72);
}

.contact-next-card h2,
.contact-next-card h3,
.contact-next-card p {
  color: #FFFFFF;
}

.contact-next-card h2 {
  margin: 4px 0 0;
  font-size: 1.65rem;
}

.contact-next-steps {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
}

.contact-next-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-next-steps li:first-child {
  padding-top: 0;
}

.contact-next-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #FFFFFF;
  color: #1B2B4B;
  font-weight: 900;
}

.contact-next-steps h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
}

.contact-next-steps p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: .92rem;
  line-height: 1.6;
}

.contact-next-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .09);
}

.contact-next-note .material-symbols-rounded {
  font-size: 24px;
  color: #FFFFFF;
}

.contact-next-note p {
  margin: 0;
  color: rgba(255, 255, 255, .80);
  font-size: .9rem;
  line-height: 1.6;
}

.contact-next-note strong {
  color: #FFFFFF;
}

@media (hover: hover) and (pointer: fine) {
  .contact-promise-card {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .contact-promise-card:hover {
    transform: translateY(-5px);
    border-color: #5B7DB1;
    box-shadow: 0 24px 54px rgba(27, 43, 75, .13);
  }
}

@media (max-width: 1100px) {
  .contact-page-hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }

  .contact-quote-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr);
  }
}

@media (max-width: 980px) {
  .contact-page-hero {
    padding: 60px 0 64px;
  }

  .contact-quote-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-next-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .contact-page-hero {
    padding: 50px 0 54px;
  }

  .contact-page-hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
    line-height: 1.04;
  }

  .contact-hero-note {
    max-width: 100%;
    border-radius: 18px;
    text-align: left;
  }

  .contact-form-card.form-card,
  .contact-next-card {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-form-intro {
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .contact-form-group + .contact-form-group {
    margin-top: 24px;
    padding-top: 24px;
  }

  .contact-submit-button {
    min-height: 54px;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-submit-button.is-submitting .contact-submit-icon {
    animation: none;
  }
}

/* =========================================================
   Mobile QA pass 1: standard hero actions + mobile reliability
   ========================================================= */
.inner-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inner-hero-actions .btn {
  min-width: 220px;
}

/* Homepage mobile proof visual is intentionally hidden on desktop. */
.hero-copy-mobile {
  display: none;
}

@media (max-width: 700px) {
  /* Mobile should never depend on an intersection animation to reveal core content. */
  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 640px) {
  /* Standard inner-page H1 scale: easier to scan without dominating the viewport. */
  .services-page-hero h1,
  .pricing-page-hero h1,
  .work-page-hero h1,
  .blog-page-hero h1,
  .blog-article-page-hero h1,
  .about-page-hero h1,
  .contact-page-hero h1 {
    font-size: clamp(2.15rem, 8.8vw, 2.75rem) !important;
    line-height: 1.05 !important;
  }

  .inner-hero-actions,
  .inner-hero-actions .btn {
    width: 100%;
  }

  .inner-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 26px;
  }

  .inner-hero-actions .btn {
    min-width: 0;
    justify-content: center;
  }

  /* Purpose-built homepage phone hero. Desktop/tablet presentation is unchanged. */
  .hero-image-stage {
    background:
      radial-gradient(circle at 86% 15%, rgba(91,125,177,.34), transparent 34%),
      linear-gradient(135deg, #071326 0%, #1B2B4B 60%, #2E4A7A 100%);
  }

  .hero-image-stage .hero-stage {
    padding: 54px 24px 48px;
    background-color: transparent;
    background-image:
      linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 42px 42px;
    background-position: center;
  }

  .hero-image-stage .kicker {
    margin-bottom: 24px;
  }

.hero-image-stage h1 {
    max-width: 100%;
    font-size: clamp(calc(2.55rem + 6px), calc(11.2vw + 6px), calc(3rem + 6px));
    line-height: .98;
    white-space: normal;
    letter-spacing: -.025em;
  }

  .hero-image-stage .hero-text-box {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    margin: 26px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    color: rgba(255,255,255,.86);
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-copy-desktop {
    display: none;
  }

  .hero-copy-mobile {
    display: inline;
  }

  .hero-image-stage .hero-cta-group {
    margin-top: 28px;
  }

  .hero-image-stage .hero-actions,
  .hero-image-stage .hero-actions .btn {
    width: 100%;
  }

  .hero-image-stage .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-image-stage .hero-actions .btn {
    justify-content: center;
  }

  .hero-image-stage .hero-note {
    display: none;
  }


}


/* =========================================================
   Mobile QA pass 2: homepage visual + mobile navigation polish
   ========================================================= */
.hero-kicker-mobile,
.nav-item-icon,
.nav-cta-icon {
  display: none;
}

@media (max-width: 980px) {
  /* Mobile navigation: clearer scan path, compact spacing and visual active state. */
  .nav-links {
    gap: 5px;
    padding: 16px;
  }

  .nav-links a:not(.btn) {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 54px;
    padding: 9px 12px;
    border-radius: 14px;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
  }

  .nav-links a:not(.btn)::after {
    display: none;
  }

  .nav-links a:not(.btn):hover {
    background: var(--background);
    transform: translateX(2px);
  }

  .nav-links a:not(.btn).active {
    background: linear-gradient(135deg, rgba(91,125,177,.14), rgba(232,236,242,.72));
    box-shadow: inset 0 0 0 1px rgba(91,125,177,.18);
  }

  .nav-item-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, #eef4fd, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(91,125,177,.18);
    color: var(--secondary);
    font-size: 21px;
    font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 24;
  }

  .nav-links a.active .nav-item-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
    box-shadow: 0 8px 18px rgba(46,74,122,.2);
  }

  .nav-links .btn {
    margin-top: 8px;
    min-height: 56px;
  }

  .nav-cta-icon {
    display: inline-flex;
    font-size: 20px;
    font-variation-settings: 'FILL' 0, 'wght' 700, 'GRAD' 0, 'opsz' 24;
  }
}

@media (max-width: 640px) {
  /* Mobile homepage hero: brand visual in the background, not a portfolio showcase. */
  .hero-image-stage {
    background-color: #10213b;
    background-image:
      linear-gradient(180deg, rgba(7,19,38,.89) 0%, rgba(16,33,59,.84) 42%, rgba(27,43,75,.91) 100%),
      url('../assets/siteharbour-hero-visual.webp');
    background-repeat: no-repeat, no-repeat;
    background-size: cover, 165% auto;
    background-position: center, 66% 96%;
  }

  .hero-image-stage .hero-stage {
    padding-bottom: 62px;
    background-color: transparent;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
    background-position: center;
  }

  .hero-image-stage .kicker::after {
    content: none;
  }

  .hero-kicker-desktop {
    display: none;
  }

  .hero-kicker-mobile {
    display: inline;
  }

  .hero-image-stage .hero-text-box {
    margin-top: 28px;
    text-shadow: 0 2px 16px rgba(7,19,38,.42);
  }

  .hero-copy-mobile-extra {
    display: block;
    margin-top: 9px;
  }

  .hero-image-stage .hero-cta-group {
    margin-top: 34px;
  }

}

/* =========================================================
   Mobile homepage hero proof chip + stronger branded visual
   ========================================================= */
@media (max-width: 640px) {
  .hero-image-stage {
    background-image:
      linear-gradient(180deg, rgba(7,19,38,.86) 0%, rgba(16,33,59,.73) 50%, rgba(27,43,75,.84) 100%),
      radial-gradient(circle at 74% 76%, rgba(91,125,177,.18), transparent 40%),
      url('../assets/siteharbour-hero-visual.webp');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, 158% auto;
    background-position: center, center, 70% 95%;
  }

  .hero-image-stage .kicker {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    width: auto;
    max-width: 100%;
    margin: 0 0 24px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(91,125,177,.27), rgba(46,74,122,.18));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(7,19,38,.18);
    color: #F7F8FA;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }

  .hero-image-stage .kicker::before {
    content: "";
    display: block;
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin: 0;
    border-radius: 50%;
    background: #8DA9D0;
    box-shadow: 0 0 0 4px rgba(141,169,208,.12);
  }

  .hero-image-stage .kicker::after {
    content: none;
    display: none;
  }

  .hero-image-stage .hero-kicker-mobile {
    display: inline;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }
}

/* =========================================================
   Mobile QA: homepage compact grids + shared mobile footer
   Approved 2026-08-13
   ========================================================= */
@media (max-width: 640px) {
  /* Homepage proof points: compact 2 x 2 mobile grid. */
  .home-proof-strip {
    padding: 34px 0;
  }

  .home-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-proof-card {
    min-width: 0;
    padding: 14px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }

  .home-proof-card img {
    width: 52px;
    height: 48px;
  }

  .home-proof-card strong {
    font-size: .84rem;
    line-height: 1.22;
  }

  .home-proof-card span {
    margin-top: 4px;
    font-size: .72rem;
    line-height: 1.35;
  }

  /* Shared homepage inclusions: six compact cards in two columns. */
  .home-pricing-section .plan-inclusions-summary {
    padding: 26px 18px;
  }

  .home-pricing-section .plan-inclusions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-pricing-section .plan-inclusions-grid .card {
    min-width: 0;
    padding: 17px 14px;
  }

  .home-pricing-section .plan-inclusions-grid .icon-box {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    margin-bottom: 12px;
  }

  .home-pricing-section .plan-inclusions-grid .icon-box .material-symbols-rounded {
    font-size: 23px;
  }

  .home-pricing-section .plan-inclusions-grid .card h4 {
    font-size: .9rem;
    line-height: 1.28;
  }

  .home-pricing-section .plan-inclusions-grid .card p {
    font-size: .78rem;
    line-height: 1.48;
  }

  /* Shared footer: shorter, more intentional mobile composition. */
  .site-footer {
    padding: 46px 0 22px;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .site-footer .footer-grid > div:first-child,
  .site-footer .footer-partner-card {
    grid-column: 1 / -1;
  }

  .site-footer .footer-logo {
    width: 188px !important;
    max-height: 76px;
    margin-bottom: 14px;
    padding: 8px 11px;
    border-radius: 12px;
  }

  .site-footer .footer-grid > div:first-child p {
    margin: 0 0 10px;
    font-size: .92rem;
    line-height: 1.5;
  }

  .site-footer h4 {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .site-footer .footer-links {
    gap: 8px;
  }

  .site-footer .footer-links a {
    font-size: .94rem;
    line-height: 1.4;
  }

  .site-footer .footer-partner-card {
    margin-top: 2px;
    padding: 18px;
    border-radius: 20px;
  }

  .site-footer .footer-partner-card p {
    font-size: .91rem;
    line-height: 1.5;
  }

  .site-footer .footer-bottom {
    gap: 14px;
    margin-top: 28px;
    padding-top: 26px;
    font-size: .84rem;
    line-height: 1.5;
  }

  .site-footer .footer-bottom .country-switcher-inline {
    margin-top: 8px;
  }
}

@media (max-width: 350px) {
  /* Preserve readability on very narrow devices. */
  .home-proof-grid,
  .home-pricing-section .plan-inclusions-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Mobile QA: Services page compact secondary content
   Mobile-only. Approved hero colours and desktop layout stay unchanged.
   ========================================================= */
@media (max-width: 640px) {
  /* Slightly tighten the long one-column primary service lists. */
  .services-card-grid {
    gap: 14px;
  }

  /* Secondary capabilities are concise enough to scan in a 2-column grid. */
  .services-additional-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .services-additional-grid .services-service-card {
    min-width: 0;
    padding: 17px 14px 18px;
    border-radius: 17px;
  }

  .services-additional-grid .services-service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .services-additional-grid .services-service-icon .material-symbols-rounded {
    font-size: 22px;
  }

  .services-additional-grid .services-service-card h3 {
    margin-bottom: 8px;
    font-size: .92rem;
    line-height: 1.26;
    overflow-wrap: anywhere;
  }

  .services-additional-grid .services-service-card p {
    font-size: .78rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  /* Keep the real CRM/admin proof large, but reduce excess gaps between images/projects. */
  .services-system-showcase {
    gap: 18px;
  }

  .services-system-project-media {
    gap: 10px;
  }

  /* Bring the FAQ questions closer to their heading on phones. */
  .services-faq-section .services-section-heading {
    margin-bottom: 22px;
  }
}

@media (max-width: 350px) {
  .services-additional-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Mobile QA: Pricing page spacing polish
   Mobile-only. Keeps plan structure, pricing and desktop styling unchanged.
   ========================================================= */
@media (max-width: 640px) {
  /* Keep the comparison cards full-width, but reduce repeated vertical space. */
.pricing-plans-section .siteharbour-plan-cards-transfer .price-card {
    padding: 27px 21px 22px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-icon {
    height: 92px;
    margin: 0 0 7px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-icon img {
    height: 88px;
    max-width: 116px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .price {
    margin: 8px 0 7px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-commitment {
    margin-bottom: 11px;
    padding-bottom: 11px;
    gap: 4px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-intro {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-fit-details {
    margin-bottom: 12px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-fit-details summary {
    padding: 11px 13px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-fit-details-body {
    padding: 0 13px 11px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-highlights {
    margin-bottom: 13px;
    gap: 8px;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-highlights li {
    line-height: 1.45;
  }

  .pricing-plans-section .siteharbour-plan-cards-transfer .plan-upgrade {
    margin: 10px 0 13px;
    padding: 12px 13px;
  }

  /* Make the featured-plan marker easier to notice without changing the card design. */
  .pricing-plans-section .siteharbour-plan-cards-transfer .price-card.featured .popular {
    top: -14px;
    left: 20px;
    padding: 7px 14px;
    font-size: .82rem;
    letter-spacing: .01em;
  }

  /* Pricing-page shared inclusions contain more copy, so keep one column and tighten gaps only. */
  .pricing-included-section .plan-inclusions-grid {
    gap: 12px;
  }

  .pricing-included-section .plan-inclusions-grid .card {
    padding: 21px 19px;
  }
}

/* =========================================================
   Mobile QA: plan breathing room + featured work media order
   Approved 2026-08-13
   ========================================================= */
@media (max-width: 640px) {
  /* Pricing: keep tighter card interiors, restore separation between plans. */
/* Give the post-plan note the same breathing room used elsewhere on the site. */
  .pricing-plans-section .pricing-custom-note {
    margin-top: 48px;
  }

  /* Homepage Hunt proof: website presentation remains before the admin proof. */
  .home-work-grid .home-work-card:first-child .home-work-devices {
    order: 0;
  }

  .home-work-grid .home-work-card:first-child .home-work-copy {
    order: 1;
  }

  /* Work page featured projects: explicit public-site -> mobile -> admin order. */
  .work-case-media-hunt .work-case-desktop,
  .work-case-media-twoguys .work-case-desktop {
    order: 1;
  }

  .work-case-media-hunt .work-case-phone,
  .work-case-media-twoguys .work-case-phone {
    order: 2;
  }

  .work-case-media-hunt .work-case-admin,
  .work-case-media-twoguys .work-case-admin {
    order: 3;
  }
}

/* =========================================================
   Work mobile QA: normalize featured phone mockup scale
   Approved 2026-08-13
   ========================================================= */
@media (max-width: 700px) {
  .work-case-media-hunt .work-case-phone,
  .work-case-media-twoguys .work-case-phone,
  .work-case-media-hvac .work-case-phone {
    width: min(160px, 44%);
    justify-self: center;
  }
}

/* =========================================================
   Mobile QA: Pricing + Blog article breathing room
   Approved 2026-08-13
   Mobile-only. Desktop layouts and content remain unchanged.
   ========================================================= */
@media (max-width: 640px) {
  /* Pricing: make each plan read as a clearly separate card. */
  .pricing-plans-section .siteharbour-plan-cards-transfer .pricing-grid {
    gap: 46px;
  }

  /* Article reading rhythm: long-form copy needs clearer section breaks on phones. */
  .article-content h2 {
    margin-top: 54px;
    margin-bottom: 16px;
  }

  .article-content h3 {
    margin-top: 36px;
    margin-bottom: 12px;
  }

  .article-content p,
  .article-content ul,
  .article-content ol {
    margin-bottom: 24px;
  }

  /* Keep Launch / Grow / Pro summaries distinct within the article. */
  .article-plan-summary-grid {
    gap: 28px;
    margin-top: 36px;
    margin-bottom: 36px;
  }
}

/* =========================================================
   Mobile QA: About page spacing polish
   Approved 2026-08-13
   Mobile-only. Desktop layout and content remain unchanged.
   ========================================================= */
@media (max-width: 640px) {
  /* Give each history milestone clearer visual separation. */
  .about-timeline {
    gap: 22px;
  }

  /* Let the fully-managed service rows breathe a little more on phones. */
  .about-managed-item {
    min-height: 84px;
    padding: 19px 16px;
  }

  /* Keep the audience section compact around its pills and action. */
  .about-audience-tags {
    margin-top: 24px;
  }

  .about-audience-action {
    margin-top: 20px;
  }
}

/* =========================================================
   Mobile QA: sitewide gutters + About audience pills
   Approved 2026-08-13
   ========================================================= */
@media (max-width: 640px) {
  /* Match the site's standard 20px side gutter on mobile. */
  .container {
    width: min(100% - 40px, var(--container));
  }

  /* Give the About audience tags more visual weight without
     introducing a new icon family. */
  .about-audience-tags {
    gap: 12px;
  }

  .about-audience-tags span {
    position: relative;
    justify-content: flex-start;
    width: min(100%, 470px);
    min-height: 52px;
    padding: 12px 18px 12px 42px;
    border: 1px solid rgba(91, 125, 177, .46);
    background: linear-gradient(135deg, #FFFFFF 0%, #F7F8FA 55%, #E8ECF2 100%);
    box-shadow: 0 10px 24px rgba(27, 43, 75, .08);
    color: #1B2B4B;
    font-weight: 850;
    line-height: 1.25;
  }

  .about-audience-tags span::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5B7DB1;
    box-shadow: 0 0 0 5px rgba(91, 125, 177, .12);
    transform: translateY(-50%);
  }
}

/* =========================================================
   Legal pages: consistent typography + section rhythm
   Approved 2026-08-13
   Privacy and Terms use the site's normal paragraph typography.
   Only legal-section spacing is specialized.
   ========================================================= */
.legal-copy h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

@media (max-width: 640px) {
  .legal-copy h2 {
    margin-top: 30px;
    margin-bottom: 12px;
  }

  .legal-copy h2:first-child {
    margin-top: 0;
  }
}

/* =========================================================
   Thank-you page: confirmation + next-step experience
   Approved 2026-08-13
   ========================================================= */
.thanks-page-hero {
  padding: 72px 0 78px;
}

.thanks-success-wrap {
  width: min(900px, 100%);
  margin: 0 auto;
}

.thanks-success-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFFFF 0%, #E8ECF2 100%);
  border: 1px solid rgba(255,255,255,.72);
  color: #2E4A7A;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.thanks-page-hero .kicker {
  justify-content: center;
  margin-bottom: 14px;
  color: #8DB0E2;
}

.thanks-page-hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.thanks-page-hero .lead {
  max-width: 820px;
  margin: 0 auto;
}

.thanks-reassurance {
  margin: 16px 0 0;
  color: rgba(255,255,255,.9) !important;
  font-weight: 800;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.thanks-actions .btn {
  min-width: 220px;
  justify-content: center;
}

.thanks-next-section {
  padding: 72px 0 84px;
  background: #F7F8FA;
}

.thanks-next-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
}

.thanks-next-heading .kicker {
  justify-content: center;
}

.thanks-next-heading h2 {
  margin-bottom: 14px;
}

.thanks-next-heading p {
  max-width: 680px;
  margin: 0 auto;
}

.thanks-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.thanks-next-card {
  padding: 28px;
  border: 1px solid #E8ECF2;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 16px 38px rgba(27,43,75,.08);
}

.thanks-step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E8ECF2 0%, #FFFFFF 100%);
  border: 1px solid rgba(91,125,177,.28);
  color: #2E4A7A;
  font-size: 1.08rem;
  font-weight: 900;
}

.thanks-next-card h3 {
  margin-bottom: 10px;
}

.thanks-next-card p {
  margin: 0;
}

@media (max-width: 760px) {
  .thanks-page-hero {
    padding: 52px 0 58px;
  }

  .thanks-success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    font-size: 1.85rem;
  }

  .thanks-page-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
    line-height: 1.04;
  }

  .thanks-page-hero .lead {
    font-size: 1.05rem;
  }

  .thanks-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .thanks-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .thanks-next-section {
    padding: 52px 0 60px;
  }

  .thanks-next-heading {
    margin-bottom: 26px;
  }

  .thanks-next-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .thanks-next-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .thanks-next-card {
    padding: 22px;
  }

  .thanks-step-number {
    margin-bottom: 16px;
  }
}

/* ============================================================
   Legacy $59 business-card promotion
   ============================================================ */
body.promo-59-modal-open {
  overflow: hidden;
}

.promo-59-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(5, 14, 29, .86);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

.promo-59-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.promo-59-dialog {
  position: relative;
  width: min(940px, calc(100vw - 72px));
  max-height: calc(100vh - 72px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .48);
  transform: translateY(14px) scale(.985);
  transition: transform .18s ease;
}

.promo-59-modal.is-visible .promo-59-dialog {
  transform: translateY(0) scale(1);
}

.promo-59-dialog-grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  min-height: 510px;
}

.promo-59-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 48px 34px 42px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: radial-gradient(circle at 50% 34%, rgba(91, 125, 177, .54), transparent 38%), linear-gradient(155deg, #10213b 0%, #1B2B4B 52%, #2E4A7A 100%);
}

.promo-59-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 77%);
}

.promo-59-visual > * {
  position: relative;
  z-index: 1;
}

.promo-59-visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 12px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  color: rgba(255,255,255,.94);
  font-size: .78rem;
  font-weight: 850;
}

.promo-59-visual-badge .material-symbols-rounded {
  font-size: 18px;
}

.promo-59-visual-img {
  width: min(245px, 82%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 20px 26px rgba(0,0,0,.2));
}

.promo-59-visual-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  color: var(--white);
}

.promo-59-visual-price strong {
  color: var(--white);
  font-size: clamp(3.8rem, 6vw, 5.2rem);
  line-height: .9;
  letter-spacing: -.07em;
}

.promo-59-visual-price span {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  font-weight: 800;
}

.promo-59-visual-caption {
  margin-top: 12px;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 700;
}

.promo-59-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 54px 54px 46px;
}

.promo-59-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(16,32,51,.12);
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
}

.promo-59-close:hover,
.promo-59-close:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
  outline: none;
}

.promo-59-kicker {
  margin: 0 52px 12px 0;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.promo-59-dialog h2 {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: clamp(2.25rem, 3.4vw, 3.05rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.promo-59-title-line {
  display: block;
  white-space: nowrap;
}

.promo-59-dialog #promo-59-description {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.promo-59-benefits {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.promo-59-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.35;
}

.promo-59-benefits i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--secondary);
  font-style: normal;
  font-size: 20px;
}

.promo-59-action {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.promo-59-dialog .promo-59-fineprint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
}

.promo-59-form-context {
  margin: 0 0 26px;
  padding: 19px 21px;
  border: 1px solid rgba(91, 125, 177, .28);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-soft), var(--white));
}

.promo-59-form-context[hidden] {
  display: none;
}

.promo-59-plan-field-hidden {
  display: none;
}

.promo-59-selected-plan[hidden] {
  display: none;
}

.promo-59-selected-label {
  display: block;
  margin-bottom: 9px;
  color: var(--primary);
  font-size: .92rem;
  font-weight: 800;
}

.promo-59-selected-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(91, 125, 177, .34);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232, 236, 242, .92), #fff 72%);
  box-shadow: 0 10px 26px rgba(27, 43, 75, .07);
}

.promo-59-selected-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--primary);
  color: #fff;
}

.promo-59-selected-icon .material-symbols-rounded {
  font-size: 25px;
}

.promo-59-selected-copy {
  min-width: 0;
}

.promo-59-selected-copy strong,
.promo-59-selected-copy span {
  display: block;
}

.promo-59-selected-copy strong {
  color: var(--primary);
  font-size: 1.02rem;
  line-height: 1.25;
}

.promo-59-selected-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.promo-59-selected-price {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  color: var(--primary);
}

.promo-59-selected-price strong {
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -.04em;
}

.promo-59-selected-price span {
  margin-left: 3px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.promo-59-selected-terms {
  margin: 9px 2px 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .promo-59-selected-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .promo-59-selected-price {
    grid-column: 2;
    margin-top: 2px;
  }

  .promo-59-selected-price strong {
    font-size: 1.55rem;
  }

  .promo-59-selected-copy span {
    font-size: .84rem;
  }

  .promo-59-selected-terms {
    line-height: 1.45;
  }
}

.promo-59-form-context strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 1.05rem;
}

.promo-59-form-context p {
  margin: 0;
  font-size: .93rem;
}

/* $59 offer page */
.promo-59-page-hero {
  padding: 70px 0 74px;
}

.promo-59-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: 64px;
  align-items: center;
}

.promo-59-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.promo-59-page-hero .lead {
  max-width: 760px;
  font-size: 1.16rem;
}

.promo-59-hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.promo-59-hero-actions .btn {
  min-height: 54px;
  padding-inline: 28px;
}

.promo-59-hero-quickpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 25px;
}

.promo-59-hero-quickpoints > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.84);
  font-size: .88rem;
  font-weight: 750;
}

.promo-59-hero-quickpoints .material-symbols-rounded {
  color: #b9d1f4;
  font-size: 19px;
}

.promo-59-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 32px 34px 30px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 26px 60px rgba(8,24,52,.26);
  text-align: center;
}

.promo-59-hero-visual img {
  width: min(270px, 78%);
  height: auto;
  margin: 4px auto 8px;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.18));
}

.promo-59-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .78rem;
  font-weight: 850;
}

.promo-59-hero-badge .material-symbols-rounded {
  font-size: 17px;
}

.promo-59-hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: -4px;
}

.promo-59-hero-price strong {
  color: var(--white);
  font-size: clamp(4.5rem, 7vw, 6rem);
  line-height: .95;
  letter-spacing: -.075em;
}

.promo-59-hero-price span {
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
  font-weight: 850;
}

.promo-59-hero-visual > p {
  max-width: 320px;
  margin: 12px auto 0;
  color: rgba(255,255,255,.82);
  font-weight: 750;
}

.promo-59-hero-terms {
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 700;
}

.promo-59-hero-terms strong {
  color: var(--white);
}

.promo-59-proof-strip {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.promo-59-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.promo-59-proof-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f7f9fc);
  box-shadow: 0 10px 28px rgba(27,43,75,.055);
}

.promo-59-proof-card img {
  width: 78px;
  height: 68px;
  flex: 0 0 78px;
  object-fit: contain;
}

.promo-59-proof-card strong,
.promo-59-proof-card span {
  display: block;
}

.promo-59-proof-card strong {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: .94rem;
}

.promo-59-proof-card span {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.4;
}

.promo-59-section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
}

.promo-59-section-heading .lead {
  max-width: 720px;
  margin-inline: auto;
}

.promo-59-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.promo-59-include-card {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 13px 34px rgba(27,43,75,.055);
}

.promo-59-include-card > .material-symbols-rounded {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  color: var(--secondary);
  font-size: 25px;
}

.promo-59-include-card h3 {
  margin: 1px 0 7px;
  font-size: 1.06rem;
}

.promo-59-include-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
}

.promo-59-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  counter-reset: none;
}

.promo-59-process-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(27,43,75,.06);
}

.promo-59-process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 12px 25px rgba(27,43,75,.18);
}

.promo-59-process-icon .material-symbols-rounded {
  font-size: 29px;
}

.promo-59-process-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #e6ebf2;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -.05em;
}

.promo-59-process-card h3 {
  position: relative;
  margin-bottom: 9px;
  font-size: 1.22rem;
}

.promo-59-process-card p {
  position: relative;
  margin: 0;
}

.promo-59-details-wrap {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, #f5f8fc);
  box-shadow: 0 18px 48px rgba(27,43,75,.07);
}

.promo-59-details-main {
  max-width: 760px;
}

.promo-59-details-main h2 {
  margin-bottom: 10px;
}

.promo-59-details-main p {
  margin-bottom: 0;
}

.promo-59-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.promo-59-details-grid > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.promo-59-details-grid .material-symbols-rounded {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--secondary);
  font-size: 23px;
}

.promo-59-details-grid strong,
.promo-59-details-grid small {
  display: block;
}

.promo-59-details-grid strong {
  color: var(--primary);
  font-size: .98rem;
}

.promo-59-details-grid small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.35;
}

.promo-59-details-terms {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.promo-59-final-cta {
  padding-top: 0;
}

@media (max-width: 1080px) {
  .promo-59-hero-grid {
    gap: 38px;
  }

  .promo-59-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .promo-59-dialog {
    width: min(720px, calc(100vw - 40px));
  }

  .promo-59-dialog-grid {
    grid-template-columns: .84fr 1.16fr;
  }

  .promo-59-copy {
    padding: 44px 36px 38px;
  }

  .promo-59-visual {
    padding-inline: 24px;
  }

  .promo-59-hero-grid {
    grid-template-columns: 1fr;
  }

  .promo-59-hero-copy {
    text-align: center;
  }

  .promo-59-hero-copy h1,
  .promo-59-page-hero .lead {
    margin-inline: auto;
  }

  .promo-59-hero-actions,
  .promo-59-hero-quickpoints {
    justify-content: center;
  }

  .promo-59-hero-visual {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .promo-59-process-grid,
  .promo-59-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .promo-59-modal {
    align-items: end;
    padding: 12px;
    background: rgba(5, 14, 29, .88);
  }

  .promo-59-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .promo-59-dialog-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .promo-59-visual {
    min-height: 220px;
    padding: 30px 22px 24px;
  }

  .promo-59-visual-badge {
    margin-bottom: 8px;
  }

  .promo-59-visual-img {
    width: 118px;
    margin-bottom: 2px;
  }

  .promo-59-visual-price strong {
    font-size: 3.7rem;
  }

  .promo-59-visual-caption {
    margin-top: 7px;
  }

  .promo-59-copy {
    padding: 30px 24px 26px;
  }

  .promo-59-close {
    top: 12px;
    right: 12px;
  }

  .promo-59-kicker {
    margin-right: 46px;
    font-size: .75rem;
  }

  .promo-59-dialog h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .promo-59-dialog #promo-59-description {
    font-size: .98rem;
  }

  .promo-59-benefits {
    margin: 20px 0 22px;
  }

  .promo-59-page-hero {
    padding: 58px 0 62px;
  }

  .promo-59-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .promo-59-hero-quickpoints {
    display: grid;
    justify-content: center;
  }

  .promo-59-hero-visual {
    padding: 26px 22px 24px;
  }

  .promo-59-hero-visual img {
    width: 205px;
  }

  .promo-59-proof-grid,
  .promo-59-includes-grid {
    grid-template-columns: 1fr;
  }

  .promo-59-proof-card {
    padding: 14px;
  }

  .promo-59-proof-card img {
    width: 70px;
    height: 62px;
    flex-basis: 70px;
  }

  .promo-59-include-card {
    padding: 20px;
  }

  .promo-59-details-wrap {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .promo-59-final-cta .cta-band {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-59-modal,
  .promo-59-dialog {
    transition: none;
  }
}


/* =========================================================
   Blog index card spacing
   ========================================================= */

.blog-more-grid {
  column-gap: 42px;
  row-gap: 60px;
}

.blog-more-heading {
  margin-bottom: 30px;
}

@media (max-width: 640px) {
  .blog-more-heading {
    margin-top: 40px;
    margin-bottom: 32px;
  }

  .blog-more-grid {
    gap: 32px;
  }
}

/* =========================================================
   Services: website + social media research callout
   Added 2026-08-15. Scoped to the Services page only.
   ========================================================= */
.services-social-section {
  padding-top: 76px;
  padding-bottom: 76px;
  background: #ffffff;
}

.services-social-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 46px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(91, 125, 177, .28);
  border-radius: 28px;
  background: linear-gradient(145deg, #F7F8FA 0%, #FFFFFF 68%);
  box-shadow: 0 24px 62px rgba(27, 43, 75, .09);
}

.services-social-copy h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  line-height: 1.08;
}

.services-social-copy > p {
  max-width: 760px;
  color: #40506a;
  font-size: 1rem;
  line-height: 1.72;
}

.services-social-copy > p strong {
  color: #1B2B4B;
}

.services-social-takeaway {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: center;
  margin: 26px 0 20px;
  padding: 15px 17px;
  border: 1px solid #E8ECF2;
  border-radius: 16px;
  background: #ffffff;
}

.services-social-takeaway .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #E8ECF2;
  color: #2E4A7A;
  font-size: 24px;
}

.services-social-takeaway strong {
  color: #1B2B4B;
  font-size: .98rem;
  line-height: 1.5;
}

.services-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #2E4A7A;
  font-weight: 900;
  text-decoration: none;
}

.services-social-link:hover,
.services-social-link:focus-visible {
  color: #5B7DB1;
}

.services-social-data {
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(91, 125, 177, .30);
  border-radius: 24px;
  background: linear-gradient(145deg, #1B2B4B 0%, #2E4A7A 70%, #5B7DB1 100%);
  box-shadow: 0 22px 48px rgba(27, 43, 75, .18);
}

.services-social-data-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: center;
  margin-bottom: 22px;
}

.services-social-data-head > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  color: #1B2B4B;
  font-size: 26px;
}

.services-social-data-head div {
  display: grid;
  gap: 2px;
}

.services-social-data-head span {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.services-social-data-head strong {
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.3;
}

.services-social-overall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.services-social-stat {
  min-width: 0;
  min-height: 150px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
}

.services-social-stat-use {
  background: rgba(255, 255, 255, .16);
}

.services-social-stat strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.services-social-stat span {
  display: block;
  color: rgba(255, 255, 255, .84);
  font-size: .87rem;
  font-weight: 750;
  line-height: 1.45;
}

.services-social-age-title {
  margin: 22px 0 10px;
  color: rgba(255, 255, 255, .76);
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.45;
}

.services-social-age-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.services-social-age-grid > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}

.services-social-age-grid strong {
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
}

.services-social-age-grid span {
  color: #E8ECF2;
  font-size: .88rem;
  font-weight: 800;
}

.services-social-source {
  margin: 20px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .68);
  font-size: .76rem;
  line-height: 1.55;
}

.services-social-source strong,
.services-social-source em {
  color: rgba(255, 255, 255, .88);
}

@media (max-width: 980px) {
  .services-social-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px;
  }

  .services-social-copy h2,
  .services-social-copy > p {
    max-width: 820px;
  }

  .services-social-data {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .services-social-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .services-social-shell {
    gap: 28px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .services-social-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .services-social-copy > p {
    font-size: .98rem;
  }

  .services-social-takeaway {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .services-social-takeaway .material-symbols-rounded {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .services-social-link {
    align-items: flex-start;
    line-height: 1.45;
  }

  .services-social-data {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .services-social-overall {
    grid-template-columns: 1fr;
  }

  .services-social-stat {
    min-height: 0;
  }

  .services-social-age-grid {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   2026-08-24: Monthly plans + one-time project positioning
   Pricing and Services only. Preserves existing Site Harbour
   design system while supporting the two engagement options.
   ========================================================= */
.pricing-plans-section {
  scroll-margin-top: 96px;
}

.pricing-plans-heading {
  max-width: 930px;
  margin: 0 auto 44px;
}

.pricing-plans-heading .lead {
  max-width: 860px;
}

.pricing-project-section {
  padding-top: 14px;
  background: #ffffff;
}

.pricing-project-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  gap: 42px;
  align-items: center;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(91, 125, 177, .34);
  border-radius: 30px;
  background: linear-gradient(145deg, #1B2B4B 0%, #2E4A7A 70%, #5B7DB1 100%);
  box-shadow: 0 26px 66px rgba(27, 43, 75, .18);
}

.pricing-project-copy .kicker {
  color: #c7d7ee;
}

.pricing-project-copy h2,
.pricing-project-copy h3,
.pricing-project-copy p,
.pricing-project-action p {
  color: #ffffff;
}

.pricing-project-copy h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.pricing-project-copy h3 {
  margin-bottom: 18px;
  font-size: 1.3rem;
  letter-spacing: -.02em;
}

.pricing-project-copy p {
  max-width: 790px;
  color: rgba(255, 255, 255, .84);
  line-height: 1.72;
}

.pricing-project-copy p:last-child {
  margin-bottom: 0;
}

.pricing-project-action {
  display: grid;
  gap: 16px;
  justify-items: start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 22px;
  background: rgba(255, 255, 255, .10);
}

.pricing-project-action > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #ffffff;
  color: #1B2B4B;
  font-size: 29px;
}

.pricing-project-action p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
}

.pricing-project-action .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
}

.pricing-included-section .plan-inclusions-heading > p:first-of-type {
  margin: 8px auto 10px;
  color: #1B2B4B;
  font-size: 1.08rem;
}

.pricing-included-section .plan-inclusions-heading > p:last-of-type {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-work-options-section {
  background: #ffffff;
}

.services-work-options-heading {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-work-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}

.services-work-option-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 32px;
  border: 1px solid #E8ECF2;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(27, 43, 75, .08);
}

.services-work-option-managed {
  border-color: rgba(91, 125, 177, .42);
  background: linear-gradient(145deg, #F7F8FA 0%, #ffffff 72%);
}

.services-work-option-project {
  border-color: rgba(46, 74, 122, .34);
}

.services-work-option-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 17px;
  background: #E8ECF2;
  color: #2E4A7A;
}

.services-work-option-icon .material-symbols-rounded {
  font-size: 29px;
}

.services-work-option-card h3 {
  margin-bottom: 14px;
  font-size: 1.42rem;
}

.services-work-option-card p {
  flex: 1;
  margin-bottom: 24px;
  color: #52627b;
  font-size: 1rem;
  line-height: 1.72;
}

.services-work-option-card .btn {
  align-self: flex-start;
}

@media (hover: hover) and (pointer: fine) {
  .services-work-option-card {
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  }

  .services-work-option-card:hover {
    transform: translateY(-6px);
    border-color: #5B7DB1;
    box-shadow: 0 24px 56px rgba(27, 43, 75, .14);
  }
}

@media (max-width: 900px) {
  .pricing-project-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-project-action {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .services-work-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-plans-heading {
    margin-bottom: 36px;
  }

  .pricing-project-section {
    padding-top: 0;
  }

  .pricing-project-panel {
    gap: 24px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .pricing-project-copy h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .pricing-project-copy h3 {
    font-size: 1.16rem;
  }

  .pricing-project-action {
    padding: 20px;
    border-radius: 18px;
  }

  .services-work-option-card {
    padding: 25px 22px;
    border-radius: 20px;
  }

  .services-work-option-card .btn {
    width: 100%;
  }
}

/* =========================================================
   2026-08-24: Mobile text-alignment QA
   Keep page heroes and short FAQ introductions centered, but
   left-align longer reading sections that lead into left-aligned
   cards/content. Desktop and tablet presentation is unchanged.
   ========================================================= */
@media (max-width: 640px) {
  .pricing-page-hero h1,
  .services-page-hero h1,
  .pricing-plans-heading h2,
  .pricing-included-section .plan-inclusions-heading h3,
  .services-work-options-heading h2,
  .services-core-section .services-section-heading h2,
  .services-growth-section .services-section-heading h2,
  .services-additional-section .services-section-heading h2,
  .services-canada-section h2,
  .services-system-copy h2 {
    text-wrap: balance;
  }

  .pricing-page-hero .lead,
  .services-page-hero .lead,
  .pricing-plans-heading .lead,
  .pricing-included-section .plan-inclusions-heading p,
  .services-work-options-heading .lead,
  .services-core-section .services-section-heading .lead,
  .services-growth-section .services-section-heading .lead,
  .services-additional-section .services-section-heading .lead,
  .services-canada-section .lead,
  .services-system-copy .lead,
  .services-system-copy > p {
    text-wrap: pretty;
  }

  .pricing-plans-heading,
  .pricing-included-section .plan-inclusions-heading,
  .services-work-options-heading,
  .services-core-section .services-section-heading,
  .services-growth-section .services-section-heading,
  .services-additional-section .services-section-heading,
  .services-canada-section .container.center,
  .services-system-copy {
    text-align: left;
  }

  .pricing-plans-heading h2,
  .pricing-plans-heading .lead,
  .pricing-included-section .plan-inclusions-heading h3,
  .pricing-included-section .plan-inclusions-heading p,
  .services-work-options-heading h2,
  .services-work-options-heading .lead,
  .services-core-section .services-section-heading h2,
  .services-core-section .services-section-heading .lead,
  .services-growth-section .services-section-heading h2,
  .services-growth-section .services-section-heading .lead,
  .services-additional-section .services-section-heading h2,
  .services-additional-section .services-section-heading .lead,
  .services-canada-section h2,
  .services-canada-section .lead,
  .services-system-copy h2,
  .services-system-copy .lead {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-plans-heading .kicker,
  .pricing-included-section .plan-inclusions-heading .kicker,
  .services-work-options-heading .kicker,
  .services-core-section .services-section-heading .kicker,
  .services-growth-section .services-section-heading .kicker,
  .services-additional-section .services-section-heading .kicker,
  .services-canada-section .kicker {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .pricing-included-section .plan-inclusions-heading > p:first-of-type {
    margin: 8px 0 10px;
  }

  .pricing-included-section .plan-inclusions-heading > p:last-of-type {
    margin-left: 0;
    margin-right: 0;
  }

  .services-work-options-heading h2,
  .services-core-section .services-section-heading h2,
  .services-growth-section .services-section-heading h2,
  .services-additional-section .services-section-heading h2,
  .services-canada-section h2 {
    font-size: clamp(1.95rem, 8.3vw, 2.15rem);
    line-height: 1.1;
  }
}


/* =========================================================
   Homepage hero CTA: desktop pricing link, mobile single CTA
   ========================================================= */
@media (max-width: 640px) {
  .hero-image-stage .hero-pricing-cta {
    display: none;
  }
}

/* =========================================================
   Homepage mobile-only hero background image
   Desktop and tablet hero artwork remain unchanged.
   ========================================================= */
@media (max-width: 640px) {
  .hero-image-stage {
    background-color: #071326;
    background-image:
      linear-gradient(180deg, rgba(7, 19, 38, .66) 0%, rgba(7, 19, 38, .46) 48%, rgba(7, 19, 38, .34) 100%),
      url('../assets/siteharbour-hero-mobile.webp');
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    background-position: center, center;
  }

  .hero-image-stage .hero-stage {
    background-color: transparent;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
    background-position: center;
  }
}

/* =========================================================
   Desktop homepage hero backdrop refinement
   Approved 2026-08-24
   Keeps the hero image/content unchanged while blending the
   surrounding hero area into one continuous Site Harbour navy.
   ========================================================= */
@media (min-width: 981px) {
  .hero-image-stage {
    background:
      radial-gradient(
        ellipse at 62% 42%,
        rgba(91, 125, 177, 0.20) 0%,
        rgba(46, 74, 122, 0.14) 30%,
        rgba(16, 33, 59, 0) 64%
      ),
      linear-gradient(
        90deg,
        #071326 0%,
        #0B1930 18%,
        #10213B 38%,
        #132642 50%,
        #10213B 64%,
        #0B1930 82%,
        #071326 100%
      );
  }

  /* Remove the brighter grid treatment behind the desktop hero. */
  .hero-image-stage::before {
    background-image: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  /* Soften both edges of the hero artwork into the surrounding navy. */
  .hero-image-stage .hero-stage::before {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.38) 10%,
      #000 23%,
      #000 78%,
      rgba(0, 0, 0, 0.48) 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.38) 10%,
      #000 23%,
      #000 78%,
      rgba(0, 0, 0, 0.48) 90%,
      transparent 100%
    );
  }
}

/* =========================================================
   Mobile homepage hero quote CTA: transparent glass treatment
   ========================================================= */
@media (max-width: 640px) {
  .hero-image-stage .hero-actions .btn-light {
    background: rgba(15, 33, 59, 0.38);
    border-color: rgba(255, 255, 255, 0.40);
    color: #ffffff;
    box-shadow:
      0 14px 30px rgba(7, 19, 38, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .hero-image-stage .hero-actions .btn-light:hover,
  .hero-image-stage .hero-actions .btn-light:focus-visible {
    background: rgba(91, 125, 177, 0.32);
    border-color: rgba(255, 255, 255, 0.68);
    color: #ffffff;
    box-shadow:
      0 18px 36px rgba(7, 19, 38, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .hero-image-stage .hero-actions .btn-light:active {
    background: rgba(27, 43, 75, 0.56);
    border-color: rgba(255, 255, 255, 0.52);
    color: #ffffff;
  }
}

/* =========================================================
   Mobile Pricing + Services polish
   Approved 2026-08-24
   ========================================================= */
@media (max-width: 640px) {

  /* Services: make the one-time project CTA visually distinct
     instead of a white outline button on a white card. */
  .services-work-option-project .btn {
    background: linear-gradient(135deg, #2E4A7A 0%, #1B2B4B 100%);
    border-color: #2E4A7A;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(27, 43, 75, 0.18);
  }

  .services-work-option-project .btn:hover,
  .services-work-option-project .btn:focus-visible {
    background: linear-gradient(135deg, #5B7DB1 0%, #2E4A7A 100%);
    border-color: #5B7DB1;
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(27, 43, 75, 0.24);
  }

  .services-work-option-project .btn:active {
    background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
    border-color: #1B2B4B;
    color: #ffffff;
  }

  /* Pricing: restore clear visual separation between stacked plans. */
  .siteharbour-plan-cards-transfer .pricing-grid {
    row-gap: 46px;
  }
}

/* =========================================================
   Pricing: post-plan transition + one-time project panel polish
   Approved 2026-08-24
   ========================================================= */
.pricing-extension-callout {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  max-width: 1040px;
  margin: 42px auto 0;
  padding: 20px 24px;
  border: 1px solid rgba(91, 125, 177, .28);
  border-radius: 20px;
  background: linear-gradient(135deg, #F7F8FA 0%, #EEF4FD 100%);
  box-shadow: 0 14px 34px rgba(27, 43, 75, .07);
  text-align: left;
}

.pricing-extension-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2E4A7A, #5B7DB1);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(46, 74, 122, .20);
  font-size: 25px;
}

.pricing-extension-copy strong {
  display: block;
  margin: 1px 0 5px;
  color: #1B2B4B;
  font-size: 1.05rem;
  line-height: 1.35;
}

.pricing-extension-copy p {
  max-width: 860px;
  margin: 0;
  color: #52627B;
  line-height: 1.6;
}

.pricing-project-action {
  position: relative;
  isolation: isolate;
  align-content: start;
  gap: 18px;
  overflow: hidden;
  padding: 30px;
  border-color: rgba(255, 255, 255, .24);
  background:
    radial-gradient(circle at 18% 14%, rgba(141, 169, 208, .28), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .10),
    0 18px 42px rgba(7, 19, 38, .12);
}

.pricing-project-action::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 169, 208, .20), rgba(141, 169, 208, 0) 70%);
  pointer-events: none;
}

.pricing-project-action > .material-symbols-rounded {
  display: none;
}

.pricing-project-action-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 19px;
  background: linear-gradient(145deg, #ffffff, #E8ECF2);
  color: #1B2B4B;
  box-shadow: 0 12px 28px rgba(7, 19, 38, .16);
}

.pricing-project-action-icon .material-symbols-rounded {
  font-size: 32px;
  font-variation-settings: 'FILL' 0, 'wght' 600, 'GRAD' 0, 'opsz' 32;
}

.pricing-project-action-copy h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.pricing-project-action-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  line-height: 1.55;
}

.pricing-project-points {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-project-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .92);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
}

.pricing-project-points .material-symbols-rounded {
  flex: 0 0 auto;
  color: #C7D7EE;
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
}

.pricing-project-action .btn {
  min-height: 50px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .pricing-project-action .btn:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 640px) {
  .pricing-extension-callout {
    gap: 14px;
    margin-top: 42px;
    padding: 18px;
    border-radius: 18px;
  }

  .pricing-extension-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 23px;
  }

  .pricing-extension-copy strong {
    font-size: 1rem;
  }

  .pricing-project-action {
    padding: 22px;
  }

  .pricing-project-action-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .pricing-project-action-copy h3 {
    font-size: 1.18rem;
  }

  .pricing-project-action .btn {
    width: 100%;
    white-space: normal;
  }
}



/* =========================================================
   2026-08-25: Homepage visual rhythm refinement
   Scoped to homepage-only components. No shared component
   behaviour is changed outside the homepage classes below.
   ========================================================= */

/* Managed model: 50/50 explanation + lightweight system graphic */
.home-managed-model {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(91,125,177,.12), transparent 32%),
    linear-gradient(180deg, #F7F8FA 0%, #F2F6FB 100%);
}

.home-managed-model::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(91,125,177,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(91,125,177,.035), 0 0 0 108px rgba(91,125,177,.022);
  pointer-events: none;
}

.home-model-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(52px, 6vw, 84px);
  align-items: center;
}

.home-model-copy .lead {
  max-width: 600px;
}

.home-model-system {
  min-width: 0;
}

.managed-system-graphic {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px minmax(0, 1fr);
  grid-template-rows: 92px 190px 110px;
  gap: 0 16px;
  align-items: center;
  min-height: 392px;
  max-width: 620px;
  margin: 0 auto;
}

.managed-system-lines {
  position: absolute;
  inset: 15px 8px 18px;
  width: calc(100% - 16px);
  height: calc(100% - 33px);
  color: rgba(91,125,177,.45);
  overflow: visible;
}

.managed-system-lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 4 7;
  vector-effect: non-scaling-stroke;
}

.managed-system-hub {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 178px;
  min-height: 178px;
  padding: 18px 20px 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #eef3fa);
  border: 1px solid rgba(91,125,177,.28);
  box-shadow: 0 24px 60px rgba(27,43,75,.15), inset 0 0 0 8px rgba(91,125,177,.05);
  text-align: center;
  z-index: 2;
}

.managed-system-hub img {
  width: 67px;
  height: 67px;
  object-fit: contain;
  margin-bottom: 3px;
}

.managed-system-hub strong {
  display: block;
  color: #1B2B4B;
  font-size: 1rem;
  line-height: 1.15;
}

.managed-system-hub span {
  display: block;
  max-width: 118px;
  margin-top: 4px;
  color: #5E6D7F;
  font-size: .71rem;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: .01em;
}

.managed-system-node {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 210px;
  color: #1B2B4B;
}

.managed-system-node > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(91,125,177,.28);
  color: #2E4A7A;
  font-size: 21px;
  box-shadow: 0 10px 24px rgba(27,43,75,.09);
}

.managed-system-node strong,
.managed-system-node span {
  display: block;
}

.managed-system-node strong {
  margin-bottom: 2px;
  color: #1B2B4B;
  font-size: .94rem;
  line-height: 1.2;
}

.managed-system-node div > span {
  color: #647389;
  font-size: .76rem;
  line-height: 1.35;
}

.managed-system-node-website {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  justify-content: center;
}

.managed-system-node-hosting {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}

.managed-system-node-security {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}

.managed-system-node-updates {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}

.managed-system-node-support {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
}

.home-model-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(91,125,177,.24);
}

.home-model-proof-item {
  min-width: 0;
  padding: 0 16px;
}

.home-model-proof-item:first-child { padding-left: 0; }
.home-model-proof-item:last-child { padding-right: 0; }
.home-model-proof-item + .home-model-proof-item { border-left: 1px solid rgba(91,125,177,.2); }

.home-model-proof-item strong,
.home-model-proof-item span {
  display: block;
}

.home-model-proof-item strong {
  margin-bottom: 5px;
  color: #1B2B4B;
  font-size: .82rem;
  line-height: 1.25;
}

.home-model-proof-item span {
  color: #68768a;
  font-size: .73rem;
  line-height: 1.42;
}

/* Testimonials: cohesive Site Harbour customer-proof panel */
.home-testimonials-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, #F6F8FB 0%, #EEF3F8 100%);
  border: 1px solid rgba(91,125,177,.24);
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(27,43,75,.055);
}

.home-testimonial-featured {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: clamp(36px, 4.5vw, 54px);
  background: rgba(255,255,255,.58);
  border: 0;
  border-right: 1px solid rgba(91,125,177,.22);
}

.home-testimonial-featured::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(36px, 4.5vw, 54px);
  bottom: clamp(36px, 4.5vw, 54px);
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: #5B7DB1;
}

.home-testimonial-quote {
  position: absolute;
  top: 20px;
  right: 30px;
  color: rgba(91,125,177,.14);
  font-family: Georgia, serif;
  font-size: clamp(6rem, 10vw, 9rem);
  font-weight: 700;
  line-height: .8;
  pointer-events: none;
}

.home-testimonial-featured .home-testimonial-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.home-testimonial-featured h3,
.home-testimonial-secondary h3 {
  margin: 0 0 16px;
  color: #1B2B4B;
}

.home-testimonial-featured h3 {
  font-size: 1.38rem;
}

.home-testimonial-featured p {
  margin: 0;
  color: #334760;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.72;
}

.home-testimonial-featured footer,
.home-testimonial-secondary footer {
  margin-top: 20px;
  color: #1B2B4B;
  font-weight: 900;
}

.home-testimonial-supporting {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-width: 0;
  padding: 20px 30px;
}

.home-testimonial-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  margin: 0;
  padding: 22px 0 24px;
}

.home-testimonial-secondary + .home-testimonial-secondary {
  padding-top: 26px;
  border-top: 1px solid rgba(91,125,177,.22);
}

.home-testimonial-secondary p {
  margin: 0;
  color: #526177;
  font-size: .95rem;
  line-height: 1.68;
}

/* Included assurances: one cohesive 3 x 2 treatment */
.home-pricing-section .plan-inclusions-summary {
  margin-top: 64px;
  padding: 38px 40px 34px;
  background: #ffffff;
  border: 1px solid rgba(91,125,177,.28);
  border-radius: 26px;
  box-shadow: 0 20px 56px rgba(27,43,75,.08);
}

.plan-assurance-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #E4EAF2;
  border-left: 1px solid #E4EAF2;
}

.plan-assurance-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 22px 20px;
  border-right: 1px solid #E4EAF2;
  border-bottom: 1px solid #E4EAF2;
}

.plan-assurance-item > .material-symbols-rounded {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(91,125,177,.11);
  color: #2E4A7A;
  font-size: 18px;
  font-weight: 900;
}

.plan-assurance-item h4 {
  margin: 0 0 5px;
  color: #1B2B4B;
  font-size: .98rem;
  line-height: 1.28;
}

.plan-assurance-item p {
  margin: 0;
  color: #667489;
  font-size: .85rem;
  line-height: 1.48;
}

/* Process: connected journey with larger 01-05 markers */
.home-process-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.home-process-journey {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.home-process-path {
  position: absolute;
  inset: 8px 0 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.home-process-path path {
  fill: none;
  stroke: rgba(91,125,177,.34);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 9;
  vector-effect: non-scaling-stroke;
}

.home-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 56px 32px;
  align-items: start;
}

.home-process-card {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  padding: 0 14px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.home-process-card:nth-child(4) { grid-column: 2 / span 2; }
.home-process-card:nth-child(5) { grid-column: 4 / span 2; }

.home-process-step {
  position: relative;
  top: auto;
  left: auto;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 6px;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: #2E4A7A;
  color: #ffffff;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(27,43,75,.16);
}

.home-process-card img {
  width: auto;
  max-width: 100%;
  height: 118px;
  object-fit: contain;
  margin: 12px auto 18px;
}

.home-process-card h3 {
  max-width: 250px;
  margin: 0 auto 11px;
  color: #1B2B4B;
  font-size: 1.08rem;
  line-height: 1.25;
}

.home-process-card p {
  max-width: 290px;
  margin: 0 auto;
  color: #667489;
  font-size: .88rem;
  line-height: 1.62;
}

/* Final CTA: Site Harbour wave background */
.home-final-cta-section {
  padding-top: 74px;
  padding-bottom: 74px;
  background: #ffffff;
}

.home-final-cta {
  isolation: isolate;
  min-height: 265px;
  padding: clamp(48px, 6vw, 72px);
  border-radius: 34px;
  background-color: #101F39;
  background-image:
    linear-gradient(rgba(10, 24, 47, .48), rgba(10, 24, 47, .48)),
    linear-gradient(90deg, rgba(10, 24, 47, .28) 0%, rgba(10, 24, 47, .12) 55%, rgba(10, 24, 47, .06) 100%),
    url("../assets/home-final-cta-waves.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0 30px 78px rgba(15,29,52,.22);
}

/* Remove the generic CTA grid and former circle decoration. */
.home-final-cta::before,
.home-final-cta::after {
  display: none;
}

.home-final-cta > div {
  max-width: 720px;
}

.home-final-cta h2 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.03;
}

.home-final-cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.03rem;
  line-height: 1.65;
}

.home-final-cta .btn-light {
  flex: 0 0 auto;
  min-width: 205px;
  background: #E8ECF2;
  border-color: rgba(255,255,255,.82);
  color: #1B2B4B;
  box-shadow:
    0 14px 34px rgba(0,0,0,.16),
    0 0 20px rgba(232,236,242,.24),
    0 0 42px rgba(232,236,242,.12);
}

@media (hover:hover) and (pointer:fine) {
  .home-final-cta .btn-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #1B2B4B;
    transform: translateY(-3px) scale(1.012);
    box-shadow:
      0 18px 40px rgba(0,0,0,.20),
      0 0 26px rgba(255,255,255,.38),
      0 0 58px rgba(232,236,242,.20);
  }
}

@media (max-width: 1040px) {
  .managed-system-graphic {
    grid-template-columns: minmax(0, 1fr) 168px minmax(0, 1fr);
    gap: 0 10px;
  }
  .managed-system-node { width: 185px; }
}

@media (max-width: 900px) {
  .home-model-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-model-copy {
    max-width: 760px;
  }

  .home-model-system {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .home-testimonials-editorial {
    grid-template-columns: 1fr;
  }

  .home-testimonial-featured {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(91,125,177,.22);
  }

  .home-testimonial-supporting {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    padding: 22px 30px 24px;
  }

  .home-testimonial-secondary,
  .home-testimonial-secondary + .home-testimonial-secondary {
    padding: 8px 0;
    border-top: 0;
  }

  .home-testimonial-secondary + .home-testimonial-secondary {
    padding-left: 30px;
    border-left: 1px solid rgba(91,125,177,.22);
  }

  .plan-assurance-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-process-grid {
    gap: 48px 20px;
  }

  .home-process-path {
    opacity: .8;
  }
}

@media (max-width: 700px) {
  .home-managed-model {
    background: linear-gradient(180deg, #F7F8FA 0%, #F3F6FA 100%);
  }

  .managed-system-graphic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    min-height: 0;
    max-width: 520px;
    padding: 0 0 2px;
  }

  .managed-system-lines { display: none; }

  .managed-system-hub {
    position: relative;
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    width: 160px;
    min-height: 160px;
    margin: 0 auto 24px;
  }

  .managed-system-hub img {
    width: 60px;
    height: 60px;
  }

  .managed-system-node {
    position: relative;
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    min-height: 66px;
    padding: 12px 0 12px 58px;
  }

  .managed-system-node::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(91,125,177,.30);
  }

  .managed-system-node-website::before { top: 50%; }
  .managed-system-node-support::before { bottom: 50%; }

  .managed-system-node > .material-symbols-rounded {
    position: absolute;
    left: 0;
    top: 12px;
    z-index: 1;
    width: 41px;
    height: 41px;
  }

  .managed-system-node div > span {
    font-size: .8rem;
  }

  .home-model-proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding-top: 0;
    border-top: 0;
  }

  .home-model-proof-item,
  .home-model-proof-item:first-child,
  .home-model-proof-item:last-child {
    padding: 14px 0;
    border-top: 1px solid rgba(91,125,177,.20);
  }

  .home-model-proof-item + .home-model-proof-item {
    border-left: 0;
  }

  .home-model-proof-item strong { font-size: .9rem; }
  .home-model-proof-item span { font-size: .82rem; }

  .home-testimonials-heading {
    margin-bottom: 30px;
  }

  .home-testimonial-featured {
    padding: 30px 24px 30px 28px;
  }

  .home-testimonial-featured::before {
    top: 30px;
    bottom: 30px;
  }

  .home-testimonial-quote {
    top: 10px;
    right: 18px;
    font-size: 6.2rem;
  }

  .home-testimonial-featured p {
    font-size: 1.04rem;
  }

  .home-testimonial-supporting {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 8px 24px 10px 28px;
  }

  .home-testimonial-secondary,
  .home-testimonial-secondary + .home-testimonial-secondary {
    padding: 22px 0;
    border-left: 0;
  }

  .home-testimonial-secondary:first-child {
    border-top: 0;
  }

  .home-testimonial-secondary + .home-testimonial-secondary {
    border-top: 1px solid rgba(91,125,177,.22);
  }

  .home-pricing-section .plan-inclusions-summary {
    padding: 28px 22px 20px;
  }

  .plan-assurance-list {
    grid-template-columns: 1fr;
    margin-top: 24px;
    border-left: 0;
  }

  .plan-assurance-item {
    padding: 16px 0;
    border-right: 0;
  }

  .plan-assurance-item h4 {
    font-size: .96rem;
  }

  .plan-assurance-item p {
    font-size: .84rem;
  }

  .home-process-heading {
    margin-bottom: 32px;
  }

  .home-process-path { display: none; }

  .home-process-grid {
    display: block;
  }

  .home-process-card,
  .home-process-card:nth-child(4),
  .home-process-card:nth-child(5) {
    display: grid;
    grid-template-columns: 54px 92px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 0 14px;
    margin: 0;
    padding: 0 0 30px;
    text-align: left;
  }

  .home-process-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 50px;
    bottom: -2px;
    width: 2px;
    background: linear-gradient(180deg, rgba(91,125,177,.48), rgba(91,125,177,.16));
  }

  .home-process-step {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 50px;
    height: 50px;
    margin: 0;
    border-width: 5px;
    font-size: .88rem;
  }

  .home-process-card img {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    width: 92px;
    height: 86px;
    margin: 0;
  }

  .home-process-card h3 {
    grid-column: 3;
    grid-row: 1;
    max-width: none;
    margin: 2px 0 7px;
    font-size: 1rem;
  }

  .home-process-card p {
    grid-column: 3;
    grid-row: 2;
    max-width: none;
    margin: 0;
    font-size: .84rem;
    line-height: 1.52;
  }

  .home-final-cta-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-final-cta {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 28px;
    border-radius: 28px;
  }

  .home-final-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }
}

@media (max-width: 460px) {
  .home-process-card,
  .home-process-card:nth-child(4),
  .home-process-card:nth-child(5) {
    grid-template-columns: 50px 76px minmax(0, 1fr);
    gap: 0 10px;
  }

  .home-process-card img {
    width: 76px;
    height: 74px;
  }

  .home-process-card h3 {
    font-size: .94rem;
  }

  .home-process-card p {
    font-size: .79rem;
  }

  .home-final-cta {
    padding: 34px 22px;
  }
}


/* 2026-08-25: Homepage testimonial work links */
.home-testimonial-work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 14px;
  color: #2E4A7A;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.home-testimonial-work-link span {
  transition: transform .2s ease;
}

.home-testimonial-work-link:hover,
.home-testimonial-work-link:focus-visible {
  color: #5B7DB1;
}

.home-testimonial-work-link:hover span,
.home-testimonial-work-link:focus-visible span {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonial-work-link span {
    transition: none;
  }
  .home-testimonial-work-link:hover span,
  .home-testimonial-work-link:focus-visible span {
    transform: none;
  }
}

/* 2026-08-25: Homepage managed-plan visual background */
.home-managed-plan-band {
  position: relative;
  isolation: isolate;
  background-color: #1B2B4B;
  background-image:
    linear-gradient(90deg, rgba(27, 43, 75, .78) 0%, rgba(27, 43, 75, .68) 46%, rgba(27, 43, 75, .54) 100%),
    url("../assets/home-managed-plan-background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.home-managed-plan-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 32, 51, .08), rgba(16, 32, 51, .18));
}

.home-managed-plan-band > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .home-managed-plan-band {
    background-image:
      linear-gradient(90deg, rgba(27, 43, 75, .86), rgba(27, 43, 75, .72)),
      url("../assets/home-managed-plan-background.webp");
    background-position: 62% center;
  }
}

/* =========================================================
   Homepage managed-plan price panel: glass refinement
   Lets the abstract background show through while preserving
   strong contrast for pricing and the primary action.
   ========================================================= */
.home-managed-plan-band .panel-price {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 24px 58px rgba(7, 18, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  backdrop-filter: blur(14px) saturate(118%);
}

.home-managed-plan-band .panel-price .btn-light {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #ffffff;
  box-shadow:
    0 12px 28px rgba(7, 18, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
}

@media (hover: hover) and (pointer: fine) {
  .home-managed-plan-band .panel-price:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.09));
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow:
      0 30px 66px rgba(7, 18, 38, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .home-managed-plan-band .panel-price .btn-light:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
    box-shadow:
      0 16px 34px rgba(7, 18, 38, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

.home-managed-plan-band .panel-price .btn-light:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  border-color: #ffffff;
  color: #ffffff;
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .home-managed-plan-band .panel-price {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    -webkit-backdrop-filter: blur(12px) saturate(112%);
    backdrop-filter: blur(12px) saturate(112%);
  }
}

/* 2026-08-25: Homepage managed-plan CTA button refinement */
.home-managed-plan-band .panel-price .btn-light {
  position: relative;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  background: linear-gradient(135deg, rgba(91, 125, 177, 0.62), rgba(46, 74, 122, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #ffffff;
  box-shadow:
    0 14px 30px rgba(7, 18, 38, 0.22),
    0 0 0 1px rgba(91, 125, 177, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  transition:
    transform .22s ease,
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.home-managed-plan-band .panel-price .btn-light::after {
  content: "→";
  display: inline-block;
  font-size: 1.08em;
  line-height: 1;
  transform: translateX(0);
  transition: transform .22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-managed-plan-band .panel-price .btn-light:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(91, 125, 177, 0.82), rgba(46, 74, 122, 0.64));
    border-color: rgba(255, 255, 255, 0.82);
    color: #ffffff;
    box-shadow:
      0 18px 38px rgba(7, 18, 38, 0.30),
      0 0 24px rgba(91, 125, 177, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.38);
  }

  .home-managed-plan-band .panel-price .btn-light:hover::after {
    transform: translateX(4px);
  }
}

.home-managed-plan-band .panel-price .btn-light:focus-visible {
  background: linear-gradient(135deg, rgba(91, 125, 177, 0.82), rgba(46, 74, 122, 0.64));
  border-color: #ffffff;
  color: #ffffff;
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
  box-shadow:
    0 18px 38px rgba(7, 18, 38, 0.30),
    0 0 24px rgba(91, 125, 177, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.home-managed-plan-band .panel-price .btn-light:active {
  transform: translateY(0) scale(0.985);
}

@media (prefers-reduced-motion: reduce) {
  .home-managed-plan-band .panel-price .btn-light,
  .home-managed-plan-band .panel-price .btn-light::after {
    transition: none;
  }

  .home-managed-plan-band .panel-price .btn-light:hover,
  .home-managed-plan-band .panel-price .btn-light:active,
  .home-managed-plan-band .panel-price .btn-light:hover::after {
    transform: none;
  }
}

/* 2026-08-25: Homepage managed-plan CTA stronger visual separation */
.home-managed-plan-band .panel-price .btn-light {
  min-height: 54px;
  padding: 0 12px 0 24px;
  gap: 16px;
  background: linear-gradient(135deg, rgba(103, 149, 219, 0.94), rgba(69, 105, 163, 0.88));
  border-color: rgba(255, 255, 255, 0.78);
  color: #ffffff;
  font-weight: 900;
  box-shadow:
    0 14px 32px rgba(5, 16, 36, 0.30),
    0 0 22px rgba(91, 125, 177, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(15, 35, 66, 0.20);
}

.home-managed-plan-band .panel-price .btn-light::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 1.05rem;
  line-height: 1;
  transform: translateX(0);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-managed-plan-band .panel-price .btn-light:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(120, 166, 233, 0.98), rgba(76, 116, 178, 0.94));
    border-color: #ffffff;
    box-shadow:
      0 20px 42px rgba(5, 16, 36, 0.36),
      0 0 30px rgba(91, 125, 177, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }

  .home-managed-plan-band .panel-price .btn-light:hover::after {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.52);
  }
}

/* 2026-08-25: Homepage managed-plan CTA matched to hero View Pricing button */
.home-managed-plan-band .panel-price .btn-light {
  min-height: 48px;
  padding: 0 22px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-weight: 800;
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.home-managed-plan-band .panel-price .btn-light::after {
  content: none;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .home-managed-plan-band .panel-price .btn-light:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.17);
    border-color: rgba(255, 255, 255, 0.48);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 18, 38, 0.18);
  }
}

.home-managed-plan-band .panel-price .btn-light:focus-visible {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  outline: 3px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
  box-shadow: 0 12px 28px rgba(7, 18, 38, 0.18);
}

.home-managed-plan-band .panel-price .btn-light:active {
  transform: translateY(0) scale(0.985);
}

/* 2026-08-25: Homepage managed-plan CTA dark contrast refinement */
.home-managed-plan-band .panel-price .btn-light {
  min-height: 50px;
  padding: 0 20px 0 22px;
  gap: 12px;
  background: linear-gradient(135deg, rgba(15, 29, 52, 0.96), rgba(27, 43, 75, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  box-shadow:
    0 12px 28px rgba(7, 18, 38, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.home-managed-plan-band .panel-price .btn-light::after {
  content: "→";
  display: inline-block;
  color: #ffffff;
  font-size: 1.08em;
  line-height: 1;
  transition: transform .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-managed-plan-band .panel-price .btn-light:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
    border-color: rgba(255, 255, 255, 0.56);
    color: #ffffff;
    box-shadow:
      0 16px 34px rgba(7, 18, 38, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .home-managed-plan-band .panel-price .btn-light:hover::after {
    transform: translateX(3px);
  }
}

.home-managed-plan-band .panel-price .btn-light:focus-visible {
  background: linear-gradient(135deg, #1B2B4B 0%, #2E4A7A 100%);
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
  outline: 3px solid rgba(255, 255, 255, 0.54);
  outline-offset: 4px;
  box-shadow: 0 14px 32px rgba(7, 18, 38, 0.32);
}

/* 2026-08-25: Homepage managed-plan CTA arrow cleanup */
.home-managed-plan-band .panel-price .btn-light::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  margin-left: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-size: 1.08em;
  line-height: 1;
  transform: translateY(1px);
  transition: transform .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-managed-plan-band .panel-price .btn-light:hover::after {
    transform: translate(3px, 1px);
    background: transparent;
    border-color: transparent;
  }
}


/* Services page visual rhythm refinement */
.services-core-panel{
  margin-top:42px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  border:1px solid rgba(91,125,177,.20);border-radius:28px;overflow:hidden;
  background:rgba(255,255,255,.90);box-shadow:0 18px 48px rgba(19,42,75,.06)
}
.services-core-item{display:grid;grid-template-columns:52px minmax(0,1fr);grid-template-rows:auto auto;column-gap:18px;padding:30px 32px;margin:0;background:transparent}
.services-core-item:nth-child(odd){border-right:1px solid rgba(91,125,177,.14)}
.services-core-item:not(:nth-last-child(-n+2)){border-bottom:1px solid rgba(91,125,177,.14)}
.services-core-item .services-service-icon{grid-row:1/span 2;width:48px;height:48px;margin:0;border-radius:15px;background:rgba(91,125,177,.10);color:#355C91;display:grid;place-items:center}
.services-core-item h3{margin:1px 0 7px;color:#152A4A;font-size:1.08rem}
.services-core-item p{margin:0;color:#52647C;line-height:1.65}

.services-growth-section{position:relative;overflow:hidden;background:radial-gradient(circle at 88% 16%,rgba(91,125,177,.10),transparent 28%),linear-gradient(180deg,#fff 0%,#f8fbff 100%)}
.services-growth-system{margin-top:44px;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border:1px solid rgba(91,125,177,.22);border-radius:30px;overflow:hidden;background:#fff;box-shadow:0 22px 58px rgba(20,45,78,.07)}
.services-growth-system-label{grid-column:1/-1;display:flex;align-items:center;gap:16px;padding:23px 28px;background:linear-gradient(100deg,#132b4d,#244d7c);color:#fff}
.services-growth-system-label .material-symbols-rounded{font-size:30px;color:#b9d6ff}
.services-growth-system-label div{display:flex;flex-direction:column;gap:2px}
.services-growth-system-label strong{font-size:1.05rem}
.services-growth-system-label span:last-child{color:rgba(255,255,255,.76);font-size:.92rem}
.services-growth-item{position:relative;padding:30px 28px 29px;background:#fff}
.services-growth-item:nth-child(2),.services-growth-item:nth-child(3),.services-growth-item:nth-child(5),.services-growth-item:nth-child(6){border-right:1px solid rgba(91,125,177,.13)}
.services-growth-item:nth-child(2),.services-growth-item:nth-child(3),.services-growth-item:nth-child(4){border-bottom:1px solid rgba(91,125,177,.13)}
.services-growth-item .services-service-icon{width:44px;height:44px;display:grid;place-items:center;margin:0 0 17px;border-radius:14px;background:rgba(91,125,177,.10);color:#355C91}
.services-growth-item h3{margin:0 0 8px;color:#152A4A;font-size:1.06rem}
.services-growth-item p{margin:0;color:#52647C;line-height:1.65}
.services-growth-item:nth-child(5){background:linear-gradient(145deg,rgba(226,239,255,.72),rgba(255,255,255,.98))}
.services-growth-item:nth-child(5)::after{content:"Content that keeps working";display:inline-block;margin-top:16px;padding:6px 10px;border-radius:999px;background:#e7f1ff;color:#315d93;font-size:.76rem;font-weight:800;letter-spacing:.02em}

.services-capability-groups{margin-top:42px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.services-capability-group{padding:29px 30px 27px;border:1px solid rgba(91,125,177,.18);border-radius:24px;background:#fff;box-shadow:0 14px 38px rgba(19,42,75,.045)}
.services-capability-group-head{display:flex;align-items:center;gap:12px;padding-bottom:17px;margin-bottom:4px;border-bottom:1px solid rgba(91,125,177,.13)}
.services-capability-group-head .material-symbols-rounded{color:#4c73a7;font-size:25px}
.services-capability-group-head h3{margin:0;color:#172d4d;font-size:1.08rem}
.services-capability-item{padding:17px 0 15px}
.services-capability-item+.services-capability-item{border-top:1px solid rgba(91,125,177,.11)}
.services-capability-item h4{margin:0 0 6px;color:#223a5d;font-size:.98rem}
.services-capability-item p{margin:0;color:#5a6b80;line-height:1.6;font-size:.94rem}

.services-final-cta-section{background:#fff}
.services-final-cta .services-final-actions{position:relative;z-index:2;display:flex;flex-wrap:wrap;justify-content:flex-end;gap:12px}
.services-final-cta .btn-secondary{border-color:rgba(255,255,255,.55);background:rgba(9,25,49,.34);color:#fff;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.services-final-cta .btn-secondary:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.82);color:#fff}

@media(max-width:820px){
  .services-core-panel,.services-capability-groups{grid-template-columns:1fr}
  .services-core-item:nth-child(odd){border-right:0}
  .services-core-item:not(:last-child){border-bottom:1px solid rgba(91,125,177,.14)}
  .services-growth-system{grid-template-columns:1fr}
  .services-growth-item{border-right:0!important;border-bottom:1px solid rgba(91,125,177,.13)!important}
  .services-growth-item:last-child{border-bottom:0!important}
  .services-final-cta .services-final-actions{justify-content:flex-start}
}
@media(max-width:560px){
  .services-core-panel,.services-growth-system{border-radius:22px}
  .services-core-item{grid-template-columns:44px minmax(0,1fr);padding:23px 20px;column-gap:14px}
  .services-core-item .services-service-icon{width:42px;height:42px;border-radius:13px}
  .services-growth-system-label{padding:20px}
  .services-growth-item{padding:24px 21px}
  .services-capability-group{padding:24px 21px 21px;border-radius:20px}
  .services-final-cta .services-final-actions{width:100%}
  .services-final-cta .services-final-actions .btn{width:100%;justify-content:center}
}


/* Services page: strengthen one-time project CTA */
.services-work-option-project .btn-outline {
  background: linear-gradient(135deg, #2E4A7A 0%, #1B2B4B 100%);
  border-color: #2E4A7A;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(27, 43, 75, .16);
}

.services-work-option-project .btn-outline:hover,
.services-work-option-project .btn-outline:focus-visible {
  background: #5B7DB1;
  border-color: #5B7DB1;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(27, 43, 75, .20);
  transform: translateY(-3px);
}


/* Sitewide closing CTA: approved Site Harbour ocean/lighthouse treatment */
.home-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 265px;
  padding: clamp(48px, 6vw, 72px);
  border-radius: 34px;
  background-color: #101F39;
  background-image:
    linear-gradient(rgba(10, 24, 47, .48), rgba(10, 24, 47, .48)),
    linear-gradient(90deg, rgba(10, 24, 47, .28) 0%, rgba(10, 24, 47, .12) 55%, rgba(10, 24, 47, .06) 100%),
    url("../assets/home-final-cta-waves.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0 30px 78px rgba(15,29,52,.22);
}

/* Remove the former grid/circle decorations. */
.home-final-cta::before,
.home-final-cta::after {
  display: none !important;
}

/* Keep CTA content above the image. */
.home-final-cta > * {
  position: relative;
  z-index: 2;
}

/* Approved lighthouse-like default glow for primary CTA. */
.home-final-cta .btn-light {
  background: #E8ECF2;
  border-color: rgba(255,255,255,.82);
  color: #1B2B4B;
  box-shadow:
    0 14px 34px rgba(0,0,0,.16),
    0 0 20px rgba(232,236,242,.24),
    0 0 42px rgba(232,236,242,.12);
}

@media (hover:hover) and (pointer:fine) {
  .home-final-cta .btn-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #1B2B4B;
    transform: translateY(-3px) scale(1.012);
    box-shadow:
      0 18px 40px rgba(0,0,0,.20),
      0 0 26px rgba(255,255,255,.38),
      0 0 58px rgba(232,236,242,.20);
  }
}


/* Services CRM title: lock approved desktop/laptop line breaks */
.services-system-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 620px;
  margin: 0 0 26px;
  font-size: clamp(3.15rem, 4.1vw, 5.15rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.services-system-title > span {
  display: block;
  white-space: nowrap;
}

@media (min-width: 821px) {
  .services-system-shell {
    grid-template-columns: minmax(520px, .95fr) minmax(0, 1.05fr);
    column-gap: clamp(54px, 5.5vw, 90px);
    align-items: center;
  }

  .services-system-copy {
    max-width: 620px;
    min-width: 0;
  }

  .services-system-showcase {
    min-width: 0;
  }
}

/* Let mobile/tablet reflow naturally instead of forcing wide desktop lines. */
@media (max-width: 820px) {
  .services-system-title {
    display: block;
    max-width: none;
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 1.02;
  }

  .services-system-title > span {
    display: inline;
    white-space: normal;
  }

  .services-system-title > span:not(:last-child)::after {
    content: " ";
  }
}


/* Services CRM showcase: keep both project cards the same width */
.services-system-project-hunt,
.services-system-project-twoguys {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}


/* Services CRM section: blueprint/system architecture background */
.services-systems-section {
  position: relative;
  overflow: hidden;
  background-color: #1A2F52;
  background-image:
    linear-gradient(90deg, rgba(18, 36, 64, .30) 0%, rgba(18, 36, 64, .18) 52%, rgba(18, 36, 64, .10) 100%),
    url("../assets/services-crm-background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.services-systems-section > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .services-systems-section {
    background-image:
      linear-gradient(rgba(18,36,64,.44), rgba(18,36,64,.44)),
      url("../assets/services-crm-background.webp");
    background-position: 68% center;
  }
}


/* Mobile QA fixes — prepared while travelling, not yet uploaded */
@media (max-width: 700px) {
  /* Align Website with Hosting, Security, Updates and Support. */
  .managed-system-node-website {
    justify-content: flex-start;
  }

  /* Keep the closing CTA heading on the approved two lines. */
  .home-final-cta h2 .cta-title-line {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 701px) {
  .home-final-cta h2 .cta-title-line {
    display: inline;
  }
}
