:root {
  --red: #DA192E;
  --red-dark: #b91427;
  --red-light: #fff1f3;
  --navy: #18253a;
  --dark: #202631;
  --text: #3e4754;
  --muted: #737d8b;
  --white: #fff;
  --light: #f7f8fa;
  --border: #e2e5e9;
  --shadow: 0 12px 35px rgba(20, 31, 48, .10);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

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

button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.top-bar {
  background: var(--navy);
  color: #dbe1e9;
  font-size: 13px;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-links {
  display: flex;
  gap: 22px;
}

.top-links a:first-child {
  color: var(--white);
  font-weight: 800;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #edf0f3;
  transition: box-shadow .2s ease;
}

.header.scrolled { box-shadow: 0 5px 22px rgba(20,31,48,.10); }

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  min-width: 155px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo img {
  max-width: 150px;
  max-height: 55px;
  object-fit: contain;
  
}

.brand-logo.has-image img { display: block; }




.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav > a,
.nav-item > a {
  padding: 30px 0;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}

.nav > a:hover,
.nav-item > a:hover { color: var(--red); }

.nav-item { position: relative; }

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chevron { font-size: 15px; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -15px;
  width: 225px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: .2s ease;
}

.nav-item:hover .dropdown,
.nav-item.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text);
}

.dropdown a:hover {
  color: var(--red);
  background: var(--red-light);
}

.button {
  min-height: 48px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  transition: .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-red:hover { background: var(--red-dark); }

.button-white {
  background: var(--white);
  color: var(--red);
}

.button-white-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.8);
}

.button-white-outline:hover {
  background: var(--white);
  color: var(--red);
}

.header-button { min-height: 45px; }

.mobile-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 7px;
  border: 0;
  background: transparent;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--navy);
  transition: .2s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) { opacity: 0; }

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* HERO */
.hero {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
  padding: 74px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}

.red-kicker,
.section-kicker,
.promise-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  margin-bottom: 13px;
}

.red-kicker { color: #ffe4e7; }

.hero h1 {
  max-width: 650px;
  margin: 0 0 18px;
  font-size: clamp(44px, 5.3vw, 67px);
  line-height: 1.03;
  letter-spacing: -1.8px;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  color: #fff2f3;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.hero-benefits {
  display: flex;
  margin-top: 38px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.25);
}

.hero-benefits div {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.25);
}

.hero-benefits div:first-child { padding-left: 0; }
.hero-benefits div:last-child { border-right: 0; }

.hero-benefits strong,
.hero-benefits span { display: block; }

.hero-benefits strong { font-size: 14px; }
.hero-benefits span { color: #ffdadd; font-size: 12px; }

.hero-visual {
  position: relative;
  min-height: 425px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}

.visual-circle {
  position: absolute;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}

.circle-one {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -100px;
}

.circle-two {
  width: 250px;
  height: 250px;
  left: -100px;
  bottom: -110px;
}

.device-monitor {
  position: absolute;
  width: 60%;
  height: 46%;
  top: 14%;
  left: 10%;
}

.monitor-screen {
  height: 100%;
  padding: 14px;
  border: 10px solid #d8e0e8;
  border-radius: 10px;
  background: var(--navy);
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
}

.screen-bar {
  width: 42%;
  height: 8px;
  border-radius: 4px;
  background: var(--red);
}

.screen-lines {
  margin-top: 25px;
}

.screen-lines i {
  display: block;
  width: 70%;
  height: 7px;
  margin: 12px 0;
  border-radius: 5px;
  background: #53657b;
}

.screen-lines i:nth-child(2) { width: 52%; }
.screen-lines i:nth-child(3) { width: 82%; }

.monitor-stand {
  width: 62px;
  height: 35px;
  margin: 0 auto;
  background: #b7c3ce;
}

.device-laptop {
  position: absolute;
  width: 60%;
  right: 3%;
  bottom: 12%;
}

.laptop-screen {
  height: 120px;
  border: 9px solid #c8d2dc;
  border-radius: 8px 8px 3px 3px;
  background: #233c5b;
}

.laptop-base {
  height: 15px;
  margin: 0 -8%;
  background: #aab8c5;
  border-radius: 2px 2px 12px 12px;
}

.device-phone {
  position: absolute;
  width: 50px;
  height: 100px;
  left: 6%;
  bottom: 14%;
  border: 6px solid #d8e0e8;
  border-radius: 11px;
  background: #263f5f;
}

.signal {
  position: absolute;
  right: 7%;
  top: 10%;
  border: 5px solid var(--white);
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(0deg);
}

.signal-one { width: 105px; height: 55px; }
.signal-two { width: 75px; height: 39px; right: 12%; top: 17%; }
.signal-three { width: 43px; height: 22px; right: 18%; top: 25%; }

/* GENERAL */
section { scroll-margin-top: 90px; }

.promo-section,
.computer-section,
.services-section,
.why-section,
.business-section,
.reviews-section,
.areas-section,
.blog-section,
.callback-section {
  padding: 92px 0;
}

.promo-section,
.services-section,
.areas-section { background: var(--light); }

.promo-grid,
.computer-grid,
.business-grid,
.callback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}

.section-kicker { color: var(--red); }

.section-heading {
  margin-bottom: 43px;
}

.section-heading.centered {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.promo-copy h2,
.computer-copy h2,
.business-copy h2,
.callback-copy h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(33px, 4vw, 49px);
  line-height: 1.08;
  letter-spacing: -.9px;
}

.section-heading p,
.promo-copy p,
.computer-copy > p,
.business-copy > p,
.callback-copy > p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 25px;
  color: var(--red);
  font-weight: 800;
}

.promo-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 12px;
  background: #e7ebef;
}

.promo-device {
  position: absolute;
  width: 65%;
  height: 55%;
  left: 17%;
  top: 18%;
  border: 13px solid #c0cbd5;
  border-radius: 9px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.promo-screen {
  position: absolute;
  width: 42%;
  height: 30%;
  left: 29%;
  top: 31%;
  background: var(--red);
  opacity: .85;
}

.computer-section { background: var(--white); }

.check-list {
  padding: 0;
  margin: 23px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.computer-visual {
  position: relative;
  min-height: 410px;
  border-radius: 12px;
  background: var(--red-light);
  overflow: hidden;
}

.computer-card {
  position: absolute;
  width: 66%;
  left: 17%;
  top: 17%;
}

.computer-screen {
  height: 205px;
  border: 13px solid #bac6d1;
  border-radius: 10px;
  background: var(--navy);
}

.computer-keyboard {
  height: 22px;
  margin: 0 -6%;
  background: #aab8c5;
  border-radius: 2px 2px 12px 12px;
}

.floating-card {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 205px;
  padding: 17px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span { display: block; }

.floating-card strong { color: var(--red); }
.floating-card span { margin-top: 4px; color: var(--muted); font-size: 12px; }

/* PROMISE */
.promise {
  padding: 44px 0;
  background: var(--red);
  color: var(--white);
}

.promise-inner {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 26px;
  align-items: center;
}

.promise-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  font-size: 31px;
  font-weight: 900;
}

.promise-kicker { color: #ffdce0; }

.promise h2 {
  margin: 0 0 5px;
  font-size: 29px;
  line-height: 1.2;
}

.promise p {
  margin: 0;
  color: #ffe8ea;
}

/* TRUST */
.trust-strip {
  padding: 29px 0;
  background: var(--navy);
  color: var(--white);
}

.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.trust-stars,
.review-stars {
  color: #ffc44e;
  letter-spacing: 3px;
}

.trust-score {
  font-size: 28px;
  font-weight: 900;
}

.trust-score span {
  color: #bdc8d4;
  font-size: 13px;
  font-weight: 500;
}

.trust-inner p {
  margin: 0;
  color: #ccd6e0;
  font-size: 14px;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 28px;
  min-height: 335px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
  transition: .2s ease;
}

.service-card:hover {
  border-color: rgba(218,25,46,.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-size: 23px;
  font-weight: 900;
}

.service-card h3 {
  margin: 18px 0 7px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.service-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.service-card ul {
  padding-left: 17px;
  margin: 0 0 17px;
  color: #697381;
  font-size: 12px;
}

.service-card li { margin: 4px 0; }

.service-card > a {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

/* WHY */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 27px;
}

.why-item {
  padding-top: 20px;
  border-top: 3px solid var(--red);
}

.number {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.why-item h3 {
  margin: 9px 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* BUSINESS */
.business-section { background: var(--red-light); }

.business-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.business-list div {
  padding: 18px;
  background: var(--white);
  border: 1px solid #f1d5d9;
  border-radius: 5px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

/* REVIEWS */
.reviews-section { background: var(--white); }

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

.review {
  padding: 31px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.review p {
  margin: 18px 0;
  color: var(--text);
  font-size: 14px;
}

.review strong,
.review span { display: block; }

.review strong { color: var(--navy); }
.review span { color: var(--muted); font-size: 12px; }

/* AREAS */
.areas-box {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
}

.area-tabs {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.area-tab {
  padding: 14px 17px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  text-align: left;
  font-weight: 800;
}

.area-tab.active,
.area-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.area-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: start;
  gap: 11px;
}

.area-results a {
  padding: 17px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.area-results a:hover {
  color: var(--red);
  border-color: var(--red);
}

.area-callout {
  margin-top: 27px;
  padding: 19px 23px;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
}

.area-callout span {
  color: #cbd4de;
  font-size: 13px;
}

.area-callout a {
  margin-left: auto;
  color: var(--red);
  font-weight: 900;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--white);
}

.blog-image {
  min-height: 190px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
}

.blog-content { padding: 23px; }

.blog-content small {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}

.blog-content h3 {
  margin: 9px 0 17px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.blog-content a {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

/* CALLBACK */
.callback-section {
  background: var(--navy);
}

.callback-copy h2 { color: var(--white); }

.callback-copy > p { color: #cbd5df; }

.call-now {
  margin-top: 29px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.call-now span {
  display: block;
  color: #bdc9d5;
  font-size: 12px;
}

.call-now a {
  display: inline-block;
  margin-top: 3px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.callback-form {
  padding: 31px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,.20);
}

.callback-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid #cfd6de;
  border-radius: 4px;
  outline: none;
  color: var(--text);
  background: var(--white);
  resize: vertical;
}

.callback-form input:focus,
.callback-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(218,25,46,.10);
}

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

.callback-form .button { width: 100%; border: 0; }

.form-message {
  min-height: 20px;
  margin-top: 10px;
  color: var(--red);
  font-size: 12px;
}

/* FOOTER */
.footer {
  padding-top: 58px;
  background: #0c1728;
  color: #aeb9c6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-about p {
  max-width: 320px;
  margin: 18px 0;
  font-size: 13px;
  color: #96a3b2;
}

.footer-phone {
  color: var(--white);
  font-weight: 800;
}

.footer-column h4 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 14px;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  color: #98a6b6;
  font-size: 12px;
}

.footer-column a:hover { color: var(--red); }

.footer-bottom {
  min-height: 68px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}


/* ================================
   SERVICES MEGA MENU
   ================================ */
.services-mega-wrap {
  position: static;
}

.services-trigger {
  display: flex !important;
  align-items: center;
  gap: 7px;
}

.mega-chevron {
  color: var(--red);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.services-mega-menu {
  position: absolute;
  z-index: 1200;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eceef1;
  border-bottom: 1px solid #e3e5e8;
  box-shadow: 0 16px 35px rgba(20,31,48,.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.services-mega-wrap:hover .services-mega-menu,
.services-mega-wrap.menu-active .services-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  width: min(calc(100% - 120px), 1350px);
  margin: 0 auto;
  padding: 31px 0 35px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  column-gap: 55px;
  align-items: start;
}

.mega-column {
  min-width: 0;
}

.mega-column h3 {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 21px;
  color: #111820;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.35px;
}

.mega-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  align-items: start;
}

.mega-links a,
.mega-single-links a {
  display: block;
  margin: 0;
  padding: 7px 0;
  color: #161b21;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}

.mega-links a:hover,
.mega-single-links a:hover {
  color: var(--red);
}

.mega-other-title {
  margin-top: 42px !important;
}

@media (max-width: 1200px) {
  .mega-inner {
    width: min(calc(100% - 60px), 1150px);
    column-gap: 30px;
  }

  .mega-column h3 {
    font-size: 19px;
  }

  .mega-links a,
  .mega-single-links a {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .services-mega-wrap {
    position: relative;
  }

  .services-mega-menu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .services-mega-wrap.menu-active .services-mega-menu {
    display: block;
  }

  .mega-inner {
    width: 100%;
    padding: 8px 0 15px 12px;
    display: block;
  }

  .mega-column {
    padding: 2px 0 12px;
  }

  .mega-column h3 {
    margin: 10px 0 8px;
    font-size: 17px;
  }

  .mega-links {
    display: block;
  }

  .mega-links a,
  .mega-single-links a {
    padding: 6px 0;
    font-size: 13px;
  }

  .mega-other-title {
    margin-top: 18px !important;
  }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .nav { gap: 14px; }
  .nav > a, .nav-item > a { font-size: 12px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .header-button { display: none; }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 120px;
    height: calc(100vh - 120px);
    padding: 15px 20px 30px;
    display: block;
    overflow-y: auto;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
  }

  .nav.open { transform: translateX(0); }

  .nav > a,
  .nav-item > a {
    display: flex;
    justify-content: space-between;
    padding: 15px 5px;
    border-bottom: 1px solid var(--border);
  }

  .dropdown {
    position: static;
    width: auto;
    padding: 4px 0 8px 15px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero-grid,
  .promo-grid,
  .computer-grid,
  .business-grid,
  .callback-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual { max-width: 700px; width: 100%; margin: auto; }

  .promise-inner {
    grid-template-columns: 65px 1fr;
  }

  .promise-inner .button {
    grid-column: 2;
    justify-self: start;
  }

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

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

  .review-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .review,
  .blog-card { max-width: 680px; width: 100%; margin: auto; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--container)); }

  .top-bar-inner {
    min-height: 35px;
    justify-content: center;
  }

  .top-bar-inner > span { display: none; }

  .header-inner { min-height: 68px; }

  .brand-logo { min-width: auto; }
  .logo-placeholder { font-size: 18px; }

  .nav {
    top: 103px;
    height: calc(100vh - 103px);
  }

  .hero { padding: 54px 0; }

  .hero h1 { font-size: 42px; }

  .hero-copy > p { font-size: 16px; }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button { width: 100%; }

  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
  }

  .hero-benefits div {
    padding: 0;
    border-right: 0;
  }

  .hero-visual { min-height: 340px; }

  .promo-section,
  .computer-section,
  .services-section,
  .why-section,
  .business-section,
  .reviews-section,
  .areas-section,
  .blog-section,
  .callback-section {
    padding: 65px 0;
  }

  .section-heading h2,
  .promo-copy h2,
  .computer-copy h2,
  .business-copy h2,
  .callback-copy h2 {
    font-size: 34px;
  }

  .promo-image,
  .computer-visual { min-height: 300px; }

  .promise-inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .promise-inner .button {
    grid-column: auto;
  }

  .trust-inner {
    flex-wrap: wrap;
    gap: 8px 13px;
  }

  .trust-inner p {
    width: 100%;
    text-align: center;
  }

  .service-grid,
  .why-grid,
  .business-list {
    grid-template-columns: 1fr;
  }

  .areas-box {
    grid-template-columns: 1fr;
  }

  .area-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .area-results {
    grid-template-columns: 1fr 1fr;
  }

  .area-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .area-callout a { margin-left: 0; }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .callback-form { padding: 22px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

  .footer-about { grid-column: 1 / -1; }

  .footer-bottom {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 37px; }

  .area-results { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
}



   <style>
    .services-hero{background:#fff;padding:30px 0 0}
    .services-crumb{font-size:13px;color:#687382;margin:0 0 32px}
    .services-hero-grid{display:grid;grid-template-columns:1fr 1fr;min-height:390px;align-items:stretch}
    .services-hero-copy{padding:48px 55px 55px 0}
    .services-hero-copy h1{margin:0 0 18px;color:var(--navy);font-size:clamp(42px,5vw,62px);line-height:1.03;letter-spacing:-1.5px}
    .services-hero-copy p{max-width:650px;margin:0 0 27px;color:var(--muted);font-size:17px;line-height:1.65}
    .services-hero-art{position:relative;overflow:hidden;background:var(--red)}
    .services-hero-art:before{content:"";position:absolute;width:480px;height:480px;right:-170px;top:-180px;border:80px solid rgba(255,255,255,.10);border-radius:50%}
    .services-hero-art:after{content:"";position:absolute;width:260px;height:260px;left:-110px;bottom:-140px;border:45px solid rgba(255,255,255,.09);border-radius:50%}
    .service-art-card{position:absolute;z-index:2;left:17%;top:17%;width:66%;height:62%;padding:30px;border-radius:12px;background:#fff;box-shadow:0 25px 45px rgba(0,0,0,.18)}
    .service-art-screen{height:65%;border-radius:7px;background:var(--navy);position:relative}
    .service-art-screen:before{content:"";position:absolute;left:12%;top:18%;width:76%;height:10px;background:var(--red);border-radius:4px;box-shadow:0 28px 0 #758296,0 56px 0 #758296}
    .service-art-base{width:60%;height:12px;margin:13px auto 0;background:#c7cfd8;border-radius:0 0 8px 8px}
    .services-intro{padding:78px 0 48px;background:#f7f8fa}
    .services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:40px}
    .service-card{background:#fff;border:1px solid #e0e4e8;border-radius:7px;padding:28px 24px;transition:.2s ease}
    .service-card:hover{transform:translateY(-4px);border-color:rgba(218,25,46,.35);box-shadow:var(--shadow)}
    .service-icon{width:52px;height:52px;display:grid;place-items:center;border-radius:50%;background:#fff0f2;color:var(--red);font-size:22px;font-weight:900;margin-bottom:18px}
    .service-card h3{margin:0 0 9px;color:var(--navy);font-size:19px}
    .service-card p{margin:0 0 16px;color:var(--muted);font-size:13px;line-height:1.6}
    .service-card a{color:var(--red);font-size:12px;font-weight:800}
    .service-detail{padding:85px 0;background:#fff}
    .service-detail.alt{background:#f7f8fa}
    .service-detail-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:65px;align-items:center}
    .service-detail.reverse .service-detail-grid{grid-template-columns:1.2fr .8fr}
    .service-detail.reverse .service-detail-visual{order:2}
    .service-detail-visual{min-height:390px;border-radius:9px;background:var(--navy);position:relative;overflow:hidden}
    .service-detail-visual.red{background:var(--red)}
    .detail-circle{position:absolute;width:340px;height:340px;right:-110px;top:-100px;border:55px solid rgba(255,255,255,.09);border-radius:50%}
    .detail-window{position:absolute;left:14%;top:17%;width:72%;height:60%;background:#fff;border-radius:9px;box-shadow:0 20px 35px rgba(0,0,0,.16);padding:18px}
    .detail-window-line{height:12px;width:70%;background:var(--red);border-radius:5px;margin:12px 0}
    .detail-window-line.small{width:48%;background:#c8d0d8}
    .detail-window-box{height:42%;background:#eef1f4;border-radius:6px;margin-top:20px}
    .service-detail-copy .section-kicker{color:var(--red)}
    .service-detail-copy h2{margin:0 0 15px;color:var(--navy);font-size:clamp(31px,4vw,45px);line-height:1.08}
    .service-detail-copy>p{margin:0 0 18px;color:var(--muted);font-size:15px;line-height:1.7}
    .service-checks{display:grid;grid-template-columns:1fr 1fr;gap:8px 20px;margin:22px 0 25px;padding:0;list-style:none}
    .service-checks li{position:relative;padding-left:22px;color:var(--text);font-size:13px}
    .service-checks li:before{content:"✓";position:absolute;left:0;color:var(--red);font-weight:900}
    .why-services{padding:82px 0;background:#f7f8fa}
    .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:40px}
    .why-card{padding:30px;background:#fff;border:1px solid #e0e4e8;border-radius:7px}
    .why-number{color:var(--red);font-size:12px;font-weight:900}
    .why-card h3{margin:10px 0 8px;color:var(--navy);font-size:19px}
    .why-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.6}
    .service-cta{padding:75px 0;background:var(--red);text-align:center;color:#fff}
    .service-cta h2{margin:0 auto 14px;max-width:720px;font-size:clamp(34px,4vw,46px);line-height:1.08}
    .service-cta p{max-width:590px;margin:0 auto 24px;color:#ffe7ea}
    @media(max-width:1000px){
      .services-grid{grid-template-columns:repeat(2,1fr)}
      .service-detail-grid,.service-detail.reverse .service-detail-grid{grid-template-columns:1fr;gap:38px}
      .service-detail.reverse .service-detail-visual{order:0}
    }
    @media(max-width:800px){
      .services-hero-grid{grid-template-columns:1fr}
      .services-hero-copy{padding-right:0}
      .services-hero-art{min-height:330px}
      .why-grid{grid-template-columns:1fr}
    }
    @media(max-width:600px){
      .services-hero{padding-top:20px}
      .services-hero-copy{padding:30px 0 45px}
      .services-hero-copy h1{font-size:42px}
      .services-intro,.service-detail,.why-services{padding:60px 0}
      .services-grid{grid-template-columns:1fr}
      .service-detail-visual{min-height:300px}
      .service-checks{grid-template-columns:1fr}
      .service-cta{padding:60px 0}
    }
  </style>



  
  /* =========================================
   SERVICES DROPDOWN - MOBILE FIX
========================================= */

@media (max-width: 900px) {

  .services-mega-wrap {
    position: relative !important;
    width: 100% !important;
  }

  .services-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    cursor: pointer !important;
  }

  .mega-chevron {
    display: inline-block !important;
    color: #DA192E !important;
    transition: transform 0.25s ease !important;
  }

  /* CLOSED */
  .services-mega-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    width: 100% !important;
    max-width: none !important;

    display: none !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: none !important;

    background: #f8f8f8 !important;

    border: 0 !important;
    box-shadow: none !important;
  }

  /* OPEN */
  .services-mega-wrap.menu-active > .services-mega-menu {
    display: block !important;
  }

  /* Rotate arrow */
  .services-mega-wrap.menu-active .mega-chevron {
    transform: rotate(180deg);
  }

  /* MENU INNER */
  .mega-inner {
    width: 100% !important;
    margin: 0 !important;

    display: block !important;

    padding: 12px 10px 20px !important;
  }

  /* COLUMNS */
  .mega-column {
    width: 100% !important;

    display: block !important;

    padding: 0 0 18px !important;
    margin: 0 !important;
  }

  /* HEADINGS */
  .mega-column h3 {
    display: flex !important;
    align-items: center !important;

    gap: 9px !important;

    margin: 14px 0 8px !important;

    color: #151c26 !important;

    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  /* ICONS */
  .mega-icon {
    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 28px !important;
    height: 28px !important;

    flex: 0 0 28px !important;

    color: #DA192E !important;
  }

  /* COMPUTER SUPPORT */
  .mega-links {
    display: block !important;

    width: 100% !important;
  }

  .mega-links > div {
    display: block !important;

    width: 100% !important;
  }

  /* ALL LINKS */
  .mega-links a,
  .mega-single-links a {
    display: block !important;

    width: 100% !important;

    padding: 7px 5px 7px 37px !important;

    margin: 0 !important;

    border: 0 !important;

    color: #555 !important;

    font-size: 13px !important;

    line-height: 1.45 !important;

    text-decoration: none !important;
  }

  .mega-links a:hover,
  .mega-single-links a:hover {
    color: #DA192E !important;
  }

  .mega-other-title {
    margin-top: 25px !important;
  }

}