
:root {
  --blue: #1b75bb;
  --blue-dark: #143b73;
  --navy: #0f1b2d;
  --text: #111827;
  --muted: #5b677a;
  --line: #dbeafe;
  --bg: #f7fbff;
  --card: #ffffff;
  --shadow: 0 22px 55px rgba(15, 23, 42, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}
a { color: inherit; }
.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}
.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 1.45rem;
}
.brand {
  flex: 0 0 300px;
  min-width: 300px;
  max-width: 300px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 292px;
  max-height: 86px;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.12rem;
  flex: 1 1 auto;
  min-width: 0;
}
.nav a {
  text-decoration: none;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
  font-size: .92rem;
}
.nav a:hover { color: var(--blue); }
.header-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: .82rem 1.15rem;
  border: 2px solid var(--blue);
  box-shadow: 0 12px 24px rgba(27, 117, 187, .18);
  white-space: nowrap;
}
.btn:hover { filter: brightness(.97); transform: translateY(-1px); }
.btn.secondary, .btn.ghost {
  background: white;
  color: var(--blue-dark);
  border-color: #bfdbfe;
  box-shadow: none;
}
.btn.big { padding: 1rem 1.3rem; font-size: 1rem; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: .65rem .85rem;
  font-size: 1.35rem;
  font-weight: 800;
}
.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(27,117,187,.16), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 58%, #ffffff 100%);
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .72fr;
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: .75rem;
}
h1 {
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  line-height: .98;
  letter-spacing: -0.055em;
  margin: 0;
}
h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}
h3 { margin: 0 0 .65rem; font-size: 1.25rem; }
p { color: var(--muted); line-height: 1.65; font-size: 1.05rem; }
.lead {
  font-size: 1.3rem;
  margin: 1.4rem 0 1.8rem;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 1.8rem 0 1.3rem;
}
.trust-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.trust-row span {
  padding: .48rem .78rem;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: .88rem;
}
.owner-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.owner-card img {
  display: block;
  width: 100%;
  height: auto;
}
.owner-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 25px rgba(15, 23, 42, .12);
}
.owner-caption strong { display: block; font-size: 1.2rem; }
.owner-caption span { color: var(--muted); font-weight: 700; }
.section { padding: 4.7rem 0; }
.section:nth-of-type(even) { background: var(--bg); }
.section-heading {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 2rem;
}
.section-heading.left { text-align: left; margin-left: 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card, .info-card, .panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .055);
}
.service-card {
  text-decoration: none;
  display: block;
}
.service-card span {
  color: var(--blue);
  font-weight: 900;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.split { background: var(--bg); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr .48fr;
  gap: 2rem;
  align-items: center;
}
.panel {
  background: linear-gradient(135deg, #0f3b73, #1b75bb);
  color: white;
}
.panel p, .panel li { color: rgba(255,255,255,.9); }
.panel.light {
  background: white;
  color: var(--text);
}
.panel.light p, .panel.light li { color: var(--muted); }
.check-list {
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}
.check-list li {
  margin: .75rem 0;
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.45;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.narrow { max-width: 980px; }
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0f3b73, #1b75bb);
}
.cta-box {
  text-align: center;
  color: white;
}
.cta-box h2 { color: white; }
.cta-box p { color: rgba(255,255,255,.9); }
.page-hero.compact {
  padding: 5rem 0 3rem;
  background: var(--bg);
}
.contact-card {
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.phone-big a {
  color: var(--blue);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 1000;
  text-decoration: none;
}
.prose h2 { margin-top: 2rem; font-size: 1.7rem; }
.site-footer {
  background: #071527;
  color: white;
  padding: 3rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 2rem;
}
.footer-logo {
  width: 300px;
  max-width: 100%;
  background: white;
  border-radius: 14px;
  padding: .7rem;
}
.site-footer p, .site-footer .small { color: rgba(255,255,255,.72); }
.site-footer a {
  display: block;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  margin: .55rem 0;
}
.site-footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem;
  padding-top: 1rem;
  color: rgba(255,255,255,.62);
  font-size: .9rem;
}
.small { font-size: .92rem; }
@media (max-width: 1080px) {
  .header-inner { min-height: 88px; }
  .brand { flex-basis: 250px; min-width: 250px; max-width: 250px; }
  .brand img { width: 240px; }
  .nav { gap: .75rem; }
  .nav a { font-size: .82rem; }
  .header-actions .btn { padding: .72rem .88rem; font-size: .9rem; }
}
@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 1rem; font-size: 1rem; }
  .header-actions { display: none; }
  .hero-grid, .split-grid, .two-col { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1160px); }
  .brand { min-width: 215px; max-width: 215px; flex-basis: 215px; }
  .brand img { width: 208px; }
  .hero { padding-top: 3.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}


/* Dual location contact update */
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.5rem 0;
}
.phone-grid > div {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 1.2rem;
}
.phone-grid span {
  display: block;
  color: #143b73;
  font-weight: 900;
  margin-bottom: .35rem;
}
.hero-actions {
  align-items: center;
}
.hero-actions .btn.secondary.big {
  background: #fff;
  color: #143b73;
}
@media (max-width: 720px) {
  .phone-grid {
    grid-template-columns: 1fr;
  }
}



/* Profile image sizing update */
.owner-card {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.owner-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

@media (min-width: 921px) {
  .hero-grid {
    grid-template-columns: 1.22fr .58fr;
  }
  .owner-card {
    max-width: 380px;
  }
}

@media (max-width: 920px) {
  .owner-card {
    max-width: 360px;
  }
}

@media (max-width: 620px) {
  .owner-card {
    max-width: 300px;
  }
}



/* Hero text cleanup */
.hero {
  padding: 4.2rem 0 3.4rem;
}

.hero .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  max-width: 760px;
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.hero h1 {
  font-size: clamp(2.05rem, 4vw, 3.95rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 760px;
}

.hero .lead {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  line-height: 1.55;
  max-width: 690px;
  margin: 1.05rem 0 1.35rem;
}

.hero-actions {
  margin: 1.35rem 0 1.05rem;
}

.trust-row span {
  font-size: 0.8rem;
  padding: 0.42rem 0.68rem;
}

@media (max-width: 620px) {
  .hero {
    padding: 3rem 0 2.7rem;
  }
  .hero .eyebrow {
    font-size: 0.62rem;
  }
  .hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.75rem);
  }
  .hero .lead {
    font-size: 1rem;
  }
}



/* Contact page cleanup */
.compact-contact {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.75rem;
}

.compact-contact h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.contact-intro {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.clean-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}

.phone-box {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 1.15rem;
}

.phone-box span {
  display: block;
  color: #143b73;
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.clean-phone {
  display: block;
  color: #1b75bb;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 1000;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}

.contact-service-area {
  margin: 1rem 0;
  font-size: 1rem;
}

.mailing-box {
  background: #ffffff;
  border: 1px solid #e5efff;
  border-radius: 18px;
  padding: 1rem;
  margin: 1.1rem 0 1.4rem;
  text-align: left;
}

.mailing-box strong,
.mailing-box span {
  display: block;
}

.mailing-box strong {
  color: #111827;
  margin-bottom: 0.5rem;
}

.mailing-box span {
  color: #5b677a;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

@media (max-width: 760px) {
  .clean-phone-grid {
    grid-template-columns: 1fr;
  }
  .compact-contact {
    padding: 1.25rem;
  }
}



/* Sitewide spacing and text cleanup */
.hero {
  padding: 3.35rem 0 2.8rem;
}

.hero-grid {
  gap: 2.1rem;
  align-items: center;
}

.hero .eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.35vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 720px;
}

.hero .lead {
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.55;
  max-width: 660px;
  margin: 0.9rem 0 1.15rem;
}

.hero-actions {
  margin: 1.1rem 0 0;
  gap: 0.7rem;
}

.hero-actions .btn.big {
  padding: 0.86rem 1.08rem;
  font-size: 0.94rem;
}

.owner-card {
  max-width: 330px;
  border-radius: 24px;
}

.owner-card img {
  max-height: 455px;
  object-fit: cover;
}

.owner-caption {
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 0.78rem;
  border-radius: 16px;
}

.owner-caption strong {
  font-size: 1.02rem;
}

.owner-caption span {
  font-size: 0.88rem;
}

.section {
  padding: 3.6rem 0;
}

.section-heading {
  margin-bottom: 1.55rem;
}

.section-heading p {
  font-size: 1rem;
  line-height: 1.55;
}

.service-card,
.info-card,
.panel {
  padding: 1.15rem;
  border-radius: 20px;
}

.service-card h3,
.info-card h3,
.panel h3 {
  font-size: 1.12rem;
}

.service-card p,
.info-card p,
.panel p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.cta-section {
  padding: 3rem 0;
}

.cta-box h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.cta-box p {
  font-size: 1rem;
}

.page-hero.compact {
  padding: 3.6rem 0 2.4rem;
}

.page-hero.compact h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.contact-card {
  padding: 1.55rem;
  border-radius: 22px;
}

.footer-grid {
  gap: 1.5rem;
}

.footer-logo {
  width: 250px;
}

.trust-row {
  display: none !important;
}

@media (min-width: 921px) {
  .hero-grid {
    grid-template-columns: 1.25fr .52fr;
  }
}

@media (max-width: 920px) {
  .hero {
    padding: 2.9rem 0 2.45rem;
  }
  .hero-grid {
    gap: 1.6rem;
  }
  .owner-card {
    max-width: 310px;
  }
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 2.45rem 0 2.1rem;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }
  .hero .lead {
    font-size: 0.98rem;
  }
  .owner-card {
    max-width: 275px;
  }
  .cards-grid {
    gap: 0.8rem;
  }
  .service-card,
  .info-card,
  .panel {
    padding: 1rem;
  }
}



/* Booking widget and cloud support update */
.booking-section {
  background: #f7fbff;
}

.booking-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 1.45rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.booking-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.square-booking-widget {
  margin-top: 1rem;
  min-height: 220px;
}

.square-booking-widget iframe,
.square-booking-widget > * {
  max-width: 100%;
}

.nav {
  gap: 1rem;
}

@media (max-width: 720px) {
  .booking-card {
    padding: 1.1rem;
  }
}



/* Remote support link update */
.contact-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}

.remote-support-section {
  background: #ffffff;
}

.remote-support-card {
  background: linear-gradient(135deg, #0f3b73, #1b75bb);
  color: #ffffff;
  border-radius: 24px;
  padding: 1.45rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.remote-support-card h2 {
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  margin-bottom: 0.35rem;
}

.remote-support-card p {
  color: rgba(255,255,255,0.88);
}

.remote-support-card .btn {
  background: #ffffff;
  color: #143b73;
  border-color: #ffffff;
}

@media (max-width: 620px) {
  .contact-button-row .btn {
    width: 100%;
  }
}



/* Cleaner menu with dropdowns */
.header-inner {
  gap: 1.15rem;
}

.nav {
  gap: 1.05rem;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-group > a::after {
  content: "▾";
  font-size: 0.72em;
  margin-left: 0.35rem;
  color: #1b75bb;
}

.submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.75rem);
  min-width: 230px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
  padding: 0.55rem;
  display: none;
  z-index: 200;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #111827;
}

.submenu a:hover {
  background: #f0f7ff;
  color: #1b75bb;
}

.header-actions .btn {
  padding: 0.82rem 1.15rem;
}

@media (max-width: 920px) {
  .nav-group {
    display: block;
  }

  .nav-group > a::after {
    content: "";
  }

  .submenu {
    position: static;
    display: block;
    min-width: 0;
    box-shadow: none;
    border: 0;
    background: #f7fbff;
    margin: 0.25rem 0 0.65rem;
    padding: 0.45rem;
  }

  .submenu a {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
}



/* Dropdown hover fix and network services menu */
.nav-group {
  position: relative;
  padding: 0.8rem 0;
  margin: -0.8rem 0;
}

.nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: -20px;
  top: 100%;
  height: 14px;
  background: transparent;
}

.submenu {
  top: 100%;
  margin-top: 0;
  padding-top: 0.6rem;
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.submenu:hover {
  display: block;
}

.submenu {
  min-width: 255px;
}

.submenu a {
  line-height: 1.15;
}

.compact-service-hero .owner-card {
  max-width: 300px;
}

@media (max-width: 920px) {
  .nav-group {
    padding: 0;
    margin: 0;
  }

  .nav-group::after {
    display: none;
  }

  .submenu {
    padding-top: 0.45rem;
  }
}



/* Longer services submenu support */
.submenu {
  min-width: 275px;
}



/* Reviews page */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.review-source {
  display: inline-flex;
  background: #f0f7ff;
  color: #143b73;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  margin-bottom: 0.8rem;
}

.review-card h3 {
  margin-bottom: 0.45rem;
}

.review-card p {
  font-size: 0.98rem;
}

.review-preview-note .panel.light {
  text-align: left;
}

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



/* Expanded service list menu */
.submenu {
  min-width: 305px;
}



/* Custom desktop configurator */
.config-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.config-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 1.35rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.config-card.featured {
  border-color: #1b75bb;
  box-shadow: 0 18px 42px rgba(27, 117, 187, 0.12);
}

.config-price {
  display: inline-flex;
  background: #0f3b73;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-weight: 1000;
  margin-bottom: 0.9rem;
}

.pricing-note {
  margin: 1.2rem 0;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 18px;
  padding: 1rem;
  line-height: 1.55;
}

.parts-link-card {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 1.15rem;
  margin-top: 1rem;
}

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



/* Clean slider desktop configurator */
.desktop-configurator {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}
.config-top {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.4rem;
}
.config-top h2 { margin-bottom: 0.45rem; }
.config-top p { margin: 0; font-size: 1rem; }
.config-price-box {
  background: linear-gradient(135deg, #0f3b73, #1b75bb);
  color: #ffffff;
  border-radius: 22px;
  padding: 1rem;
  text-align: center;
}
.config-price-box span,
.config-price-box small {
  display: block;
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}
.config-price-box strong {
  display: block;
  font-size: 2.15rem;
  line-height: 1;
  margin: 0.35rem 0;
}
.slider-wrap {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 1rem;
  margin-bottom: 1.15rem;
}
.slider-wrap label {
  display: block;
  font-weight: 900;
  color: #143b73;
  margin-bottom: 0.55rem;
}
.build-slider {
  width: 100%;
  accent-color: #1b75bb;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 900;
  color: #5b677a;
  font-size: 0.9rem;
  margin-top: 0.35rem;
}
.config-summary h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.spec-grid div {
  background: #ffffff;
  border: 1px solid #e5efff;
  border-radius: 16px;
  padding: 0.9rem;
}
.spec-grid span {
  display: block;
  color: #5b677a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.spec-grid strong {
  display: block;
  color: #111827;
  line-height: 1.3;
}
.compact-note { margin: 1rem 0; }
.config-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 780px) {
  .config-top,
  .spec-grid { grid-template-columns: 1fr; }
  .desktop-configurator { padding: 1.15rem; }
  .slider-labels { font-size: 0.82rem; }
}



/* Service page dual phone numbers */
.service-hero-actions {
  align-items: center;
}

.service-phone-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: 100%;
  margin-bottom: 0.25rem;
}

.service-phone-options a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 0.78rem 0.95rem;
  min-width: 190px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
}

.service-phone-options span {
  color: #5b677a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.service-phone-options strong {
  color: #1b75bb;
  font-size: 1.18rem;
  line-height: 1;
}

.cta-phone-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.9rem 0 1rem;
}

.cta-phone-strip a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
}

@media (max-width: 620px) {
  .service-phone-options a {
    width: 100%;
  }
}



/* Real review snippets */
.real-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.real-review-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.review-source-pill {
  display: inline-flex;
  background: #f0f7ff;
  color: #143b73;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  padding: 0.34rem 0.6rem;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.review-quote {
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 0.9rem;
}

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

.review-author strong {
  color: #111827;
}

.review-author span {
  color: #5b677a;
  font-size: 0.88rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .real-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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



/* Service area clarity update */
.service-area-clarity-section {
  padding: 2.2rem 0;
  background: #ffffff;
}

.service-area-clarity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.service-area-clarity > div {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 1.15rem;
}

.clarity-label {
  display: inline-flex;
  background: #ffffff;
  border: 1px solid #dbeafe;
  color: #143b73;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.8rem;
}

.service-area-clarity h3 {
  margin-bottom: 0.45rem;
}

.service-area-clarity p {
  font-size: 0.98rem;
  margin: 0 0 0.8rem;
}

.service-area-clarity a {
  color: #1b75bb;
  font-weight: 1000;
  text-decoration: none;
}

.contact-mode-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1rem 0 1.15rem;
}

.contact-mode-box > div {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  padding: 1rem;
}

.contact-mode-box strong,
.contact-mode-box span,
.contact-mode-box a {
  display: block;
}

.contact-mode-box strong {
  color: #143b73;
}

.contact-mode-box span {
  color: #5b677a;
  font-size: 0.94rem;
  line-height: 1.4;
  margin: 0.3rem 0 0.55rem;
}

.contact-mode-box a {
  color: #1b75bb;
  font-size: 1.2rem;
  font-weight: 1000;
  text-decoration: none;
}

@media (max-width: 780px) {
  .service-area-clarity,
  .contact-mode-box {
    grid-template-columns: 1fr;
  }
}



/* Cookie notice */
.cookie-notice {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-notice[hidden] {
  display: none !important;
}

.cookie-notice-text strong {
  display: block;
  color: #111827;
  margin-bottom: 0.2rem;
}

.cookie-notice-text p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: #5b677a;
}

.cookie-notice-text a {
  display: inline-block;
  margin-top: 0.35rem;
  color: #1b75bb;
  font-weight: 900;
  text-decoration: none;
}

.cookie-notice-actions {
  display: flex;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.cookie-btn {
  border: 2px solid #1b75bb;
  background: #1b75bb;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  font-weight: 900;
  cursor: pointer;
}

.cookie-btn.secondary {
  background: #ffffff;
  color: #143b73;
  border-color: #bfdbfe;
}

.cookie-btn:hover {
  filter: brightness(0.97);
}

@media (max-width: 720px) {
  .cookie-notice {
    flex-direction: column;
    align-items: stretch;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .cookie-notice-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}



/* Website accessibility improvements */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: #0f3b73;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 12px 12px;
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

.nav a,
.submenu a,
.btn,
.cookie-btn {
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}



/* Cleaner grouped navigation */
.nav-drop {
  white-space: nowrap;
}

.submenu {
  min-width: 235px;
}

@media (max-width: 900px) {
  .submenu {
    min-width: 100%;
  }
}



/* Build selector discount pricing */
.old-price {
  text-decoration: line-through;
  color: #7c8798;
  font-weight: 800;
  margin-right: 0.35rem;
}

.sale-price {
  color: #0f7a3b;
  font-weight: 1000;
}



/* Restored clean menu button styling */
.nav-drop {
  border: 0;
  background: transparent;
  color: #1f2a3d;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  padding: 0.45rem 0.15rem;
}

.nav-drop:hover,
.nav a:hover {
  color: #1b75bb;
}

.submenu {
  min-width: 255px;
}



/* Fixed build selector styling */
.build-selector-card {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 1.25rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.build-selector-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.build-pill {
  display: inline-flex;
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  color: #143b73;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.55rem;
}

.build-price {
  color: #143b73;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 1000;
  white-space: nowrap;
  text-align: right;
}

.build-slider {
  width: 100%;
  margin: 0.5rem 0 0.4rem;
}

.build-slider-labels {
  display: flex;
  justify-content: space-between;
  color: #5b677a;
  font-size: 0.85rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.build-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}

.build-spec-grid div {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 0.85rem;
}

.build-spec-grid span,
.build-spec-grid strong {
  display: block;
}

.build-spec-grid span {
  color: #5b677a;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.build-spec-grid strong {
  color: #111827;
}

.price-note {
  color: #5b677a;
  font-size: 0.94rem;
  line-height: 1.5;
}

.old-price {
  text-decoration: line-through;
  color: #7c8798;
  font-weight: 800;
  margin-right: 0.35rem;
}

.sale-price {
  color: #0f7a3b;
  font-weight: 1000;
}

@media (max-width: 820px) {
  .build-selector-top {
    flex-direction: column;
  }

  .build-price {
    text-align: left;
  }

  .build-spec-grid {
    grid-template-columns: 1fr;
  }
}



/* Build selector Ultra 9 update */
#buildNotes {
  line-height: 1.3;
}



/* Managed IT patching and savings section */
.managed-value-section .panel p {
  color: #334155;
  line-height: 1.58;
}

.compact-managed-value {
  padding-top: 2rem;
  padding-bottom: 2rem;
}



/* Managed services simple terms */
.managed-terms-section .panel {
  border-left: 5px solid #1b75bb;
}



/* Cleaner unified location + managed value sections */
.service-area-unified,
.managed-mini-box {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.service-area-unified h2,
.managed-mini-box h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  margin-bottom: 0.45rem;
}

.service-area-unified p,
.managed-mini-box p {
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.52;
  margin-bottom: 0.7rem;
}

.location-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.location-phone-row a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
}

.location-phone-row span {
  color: #5b677a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.location-phone-row strong {
  color: #1b75bb;
  font-size: 0.98rem;
}

.managed-terms-note {
  background: #f7fbff;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  padding: 0.7rem;
  margin-top: 0.75rem;
  font-weight: 700;
}

.compact-managed-value {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

@media (max-width: 680px) {
  .location-phone-row a {
    width: 100%;
    justify-content: space-between;
  }
}

