/*
Theme Name: Computer Larry
Theme URI: https://computerlarry.com
Author: Computer Larry
Description: Custom dynamic WordPress theme for Computer Larry IT support and computer repair.
Version: 1.0
Text Domain: computer-larry
*/

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-800-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
}

:root {
  --navy: #0B2545;
  --navy-deep: #081A33;
  --blue: #1D5FA8;
  --blue-light: #2E7BD6;
  --sky: #EFF5FB;
  --sky-dim: #E3EDF6;
  --slate: #51606F;
  --ink: #0F1F30;
  --line: #DFE6ED;
  --white: #FFFFFF;
  --gold: #C9922C;
  --success: #1A8A6B;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(11, 37, 69, .06), 0 8px 24px rgba(11, 37, 69, .06);
  --shadow-hover: 0 4px 10px rgba(11, 37, 69, .08), 0 14px 32px rgba(11, 37, 69, .10);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.01em;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .04em;
}

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

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

ul {
  list-style: none;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.narrow {
  max-width: 800px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- HEADER / NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 37, 69, .02);
}

.topbar {
  background: var(--navy);
  color: #B9C9DB;
  font-size: 12.5px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar .phones {
  display: flex;
  gap: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

.topbar .phones a:hover {
  color: var(--white);
}

.topbar .tag {
  letter-spacing: .04em;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
}

.logo .plug {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0;
}

nav.mainnav>ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
}

nav.mainnav>ul>li {
  position: relative;
}

nav.mainnav>ul>li>a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.005em;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  transition: color .15s, background .15s;
}

nav.mainnav>ul>li:not(.btn-call):not(.nav-cta)>a:hover,
nav.mainnav>ul>li.active:not(.btn-call):not(.nav-cta)>a,
nav.mainnav>ul>li.current-menu-item:not(.btn-call):not(.nav-cta)>a,
nav.mainnav>ul>li.current_page_item:not(.btn-call):not(.nav-cta)>a,
nav.mainnav>ul>li.current-menu-ancestor:not(.btn-call):not(.nav-cta)>a,
nav.mainnav>ul>li.current-menu-parent:not(.btn-call):not(.nav-cta)>a,
nav.mainnav>ul>li.current_page_parent:not(.btn-call):not(.nav-cta)>a,
nav.mainnav>ul>li.current_page_ancestor:not(.btn-call):not(.nav-cta)>a {
  color: var(--blue);
  background: var(--sky);
}

.dropdown,
nav.mainnav>ul>li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 230px;
  box-shadow: var(--shadow-hover);
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 99;
}

nav.mainnav>ul>li:hover .dropdown,
nav.mainnav>ul>li:hover .sub-menu {
  display: flex;
}

.dropdown a,
nav.mainnav>ul>li .sub-menu a {
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--slate);
  border-radius: 6px;
  font-weight: 500;
  display: block;
}

.dropdown a:hover,
nav.mainnav>ul>li .sub-menu a:hover {
  background: var(--sky);
  color: var(--blue);
}

a.nav-cta,
nav.mainnav a.nav-cta,
nav.mainnav>ul>li.btn-call>a,
nav.mainnav>ul>li.nav-cta>a {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 7px;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  transition: background .15s;
}

a.nav-cta:hover,
nav.mainnav a.nav-cta:hover,
nav.mainnav>ul>li.btn-call>a:hover,
nav.mainnav>ul>li.nav-cta>a:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

nav.mainnav>ul>li.nav-cta,
nav.mainnav>ul>li.btn-call {
  background: transparent !important;
  padding: 0 !important;
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .15s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--navy);
  background: var(--white);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--sky);
}

.btn-ghost.on-dark {
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
  background: transparent;
}

.btn-ghost.on-dark:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--white);
}

/* ---------- HOME HERO ---------- */
.hero {
  padding: 30px 0 35px;
  background: linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
  background-image: radial-gradient(circle at 1px 1px, rgba(29, 95, 168, .14) 1.5px, transparent 0), linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
  background-size: 26px 26px, 100% 100%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 123, 214, .16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 44, .12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero h1 span {
  color: var(--blue);
}

.hero p.lede {
  font-size: 17px;
  color: var(--slate);
  max-width: 48ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--slate);
  font-weight: 600;
}

.hero-trust .item svg {
  flex-shrink: 0;
}

.stats-panel {
  background: var(--navy);
  border-radius: 16px;
  padding: 6px;
  box-shadow: var(--shadow-hover);
}

.stats-panel-inner {
  background: var(--navy-deep);
  border-radius: 12px;
  padding: 22px 22px;
}

.stats-panel .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.stats-panel .head .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
}

.stats-panel .head span {
  color: #B9C9DB;
  font-size: 12.5px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .06em;
}

.stats-panel .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stats-panel .stat b {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 23px;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 2px;
}

.stats-panel .stat span {
  font-size: 11.5px;
  color: #8DA3BC;
  letter-spacing: .02em;
}

.stats-panel .foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12.5px;
  color: #B9C9DB;
}

.stats-panel .foot strong {
  color: var(--white);
}

/* ---------- SUBPAGE HERO / BREADCRUMB ---------- */
.page-hero {
  background: var(--sky);
  background-image: radial-gradient(circle at 1px 1px, rgba(29, 95, 168, .12) 1.5px, transparent 0);
  background-size: 24px 24px;
  padding: 15px 0 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--slate);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--blue);
}

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

.page-hero h1 {
  color: var(--navy);
  font-size: 34px;
  max-width: 26ch;
}

.page-hero .lede {
  color: var(--slate);
  max-width: 64ch;
  margin-top: 14px;
  font-size: 15.5px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: center;
}

.hero-graphic {
  background: var(--navy);
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.hero-graphic .place {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
  margin-top: 16px;
}

.hero-graphic .place-sub {
  color: #8DA3BC;
  font-size: 12.5px;
  margin-top: 3px;
}

.hero-graphic .place-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12.5px;
  color: #B9C9DB;
}

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

  .hero-graphic {
    max-width: 280px;
    margin: 28px auto 0;
  }
}

/* ---------- SECTIONS ---------- */
section {
  padding: 15px 0;
}

.section-head {
  max-width: 64ch;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 29px;
}

.section-head p {
  color: var(--slate);
  font-size: 15.5px;
  margin-top: 10px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.bg-sky {
  background: var(--sky);
}

/* ---------- SERVICE CARDS ---------- */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

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

.tag-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.tag-grid.cols-5 .tag-card {
  padding: 20px 16px;
}

.tag-grid.cols-5 .tag-card .icon {
  width: 38px;
  height: 38px;
  font-size: 17px;
  margin-bottom: 14px;
}

.tag-grid.cols-5 .tag-card h3 {
  font-size: 15px;
  margin-bottom: 7px;
}

.tag-grid.cols-5 .tag-card p {
  font-size: 12.5px;
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.tag-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: transparent;
}

.tag-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 9px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--blue);
}

.tag-card h3 {
  font-size: 17.5px;
  margin-bottom: 9px;
}

.tag-card p {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.more {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}

.more:hover {
  text-decoration: underline;
}

.tag-card .more {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tag-card:hover .more {
  text-decoration: underline;
}

/* ---------- ARTICLE LAYOUT ---------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.article h2 {
  font-size: 23px;
  margin: 38px 0 14px;
}

.article h2:first-child {
  margin-top: 0;
}

.article p {
  color: var(--slate);
  font-size: 15.5px;
  margin-bottom: 14px;
}

.article ul.check-list {
  margin: 6px 0 22px;
}

.article ul.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  font-size: 15px;
  color: var(--slate);
}

.article ul.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  background: var(--sky);
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.steps {
  counter-reset: step;
  margin: 8px 0 26px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 18px 18px 62px;
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--slate);
  transition: border-color .15s;
}

.steps li:hover {
  border-color: var(--blue);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps li strong {
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
  font-size: 15.5px;
  font-family: 'Manrope', sans-serif;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
}

.sidebar-box h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 600;
}

.sidebar-box ul li {
  margin-bottom: 2px;
}

.sidebar-box ul li a {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.sidebar-box ul li:last-child a {
  border-bottom: none;
}

.sidebar-box ul li a:hover {
  color: var(--blue);
}

/* Post Tags & Chips */
.post-tags {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tag-chip {
  background: var(--sky);
  color: var(--blue);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  border: 1px solid var(--line);
  transition: all .15s ease;
  display: inline-flex;
  align-items: center;
}

.tag-chip:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.sidebar-cta {
  background: var(--navy);
  border: none;
  padding: 26px;
}

.sidebar-cta h4 {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
  font-weight: 700;
}

.sidebar-cta p {
  font-size: 13px;
  color: #B9C9DB;
  margin-bottom: 18px;
}

.sidebar-cta .phones {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  margin-bottom: 16px;
}

.sidebar-cta .phones a {
  color: var(--white);
  font-weight: 600;
}

.sidebar-cta .phones a:hover {
  color: var(--gold);
}

/* ---------- DARK SECTION ---------- */
.on-navy {
  background: var(--navy);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .06) 1.5px, transparent 0);
  background-size: 26px 26px;
  color: var(--white);
}

.on-navy .section-head h2,
.on-navy .eyebrow {
  color: var(--white);
}

.on-navy .eyebrow {
  color: var(--gold);
}

.on-navy .eyebrow::before {
  background: var(--gold);
}

.on-navy .section-head p {
  color: #B9C9DB;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.check-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .15s, background .15s;
}

.check-item:hover {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
}

.check-item .mono {
  font-size: 11px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: .06em;
}

.check-item h3 {
  color: var(--white);
  font-size: 17.5px;
  margin-bottom: 9px;
}

.check-item p {
  font-size: 14px;
  color: #B9C9DB;
  margin-bottom: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.check-item .more {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- PRODUCTS ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.prod-card {
  text-align: left;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow .18s ease, transform .18s ease;
}

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

.prod-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
  color: var(--blue);
}

.prod-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: var(--navy);
  margin-bottom: 6px;
}

.prod-card p {
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- ABOUT ---------- */
.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.photo-frame {
  aspect-ratio: 4/3;
  border-radius: 14px;
  border: 2px dashed #B7C7D6;
  background: var(--sky);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}

.photo-frame .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
}

.photo-frame .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
}

.photo-frame .sub {
  font-size: 11.5px;
  color: var(--slate);
  max-width: 22ch;
  line-height: 1.5;
}

.meet-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.meet-grid.photo-lg {
  grid-template-columns: 1.2fr .8fr;
}

.meet-grid.photo-sm {
  grid-template-columns: .5fr 1.5fr;
}

.meet-grid.photo-lg .photo-frame {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1/1;
}

.meet-grid.photo-sm .photo-frame {
  max-width: 230px;
}

.larry-photo-wrap,
.larry-photo-wrap img,
.meet-grid img {
  border-radius: var(--radius);
  overflow: hidden;
}

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

  .photo-frame {
    max-width: 280px;
    margin: 0 auto;
  }
}

.stat b {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  display: block;
  color: var(--blue);
  font-weight: 800;
}

.stat span {
  font-size: 12.5px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--sky);
}

.quote-card {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 44px 44px;
  position: relative;
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.quote-card .big-quote {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 500;
}

.quote-who {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.quote-who .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.quote-who .name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
}

.quote-who .loc {
  font-size: 12.5px;
  color: var(--slate);
}

/* ---------- SERVICE AREAS ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.area-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.area-col h3 {
  font-size: 18px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.area-col .count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 20px;
  display: block;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.city-chips a {
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  transition: background .15s, border-color .15s;
}

.city-chips a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.city-chips a.hq {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.area-note {
  background: var(--sky);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--slate);
}

/* ---------- PROCESS ---------- */
.process-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: left;
}

.process-step .num {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  background: var(--sky);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--slate);
}

/* ---------- CTA / FOOTER ---------- */
.cta {
  background: var(--navy);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .07) 1.5px, transparent 0);
  background-size: 26px 26px;
  color: var(--white);
  text-align: center;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 20px;
}

.cta .phones {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta .phones a {
  color: var(--white);
}

.cta .phones a:hover {
  color: var(--gold);
}

.cta .email {
  font-size: 14.5px;
  color: #B9C9DB;
}

.cta .email:hover {
  color: var(--gold);
}

footer {
  background: var(--navy-deep);
  color: #8DA3BC;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr .9fr 1fr;
  gap: 28px;
  margin-bottom: 5px;
}

.footer-grid .logo {
  color: var(--white);
}

.footer-grid .logo .plug {
  background: var(--blue);
}

.footer-grid h5 {
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid ul li {
  margin-bottom: 5px;
}

.footer-grid ul li a {
  font-size: 13.5px;
  color: #8DA3BC;
}

.footer-grid ul li a:hover {
  color: var(--gold);
}

.footer-grid p {
  font-size: 13px;
  color: #8DA3BC;
  max-width: 32ch;
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 20px;
  text-align: center;
  font-size: 12.5px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:900px) {
  .topbar .wrap {
    padding: 8px 20px;
  }

  header {
    position: relative;
  }

  nav.mainnav {
    display: none;
  }

  nav.mainnav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-hover);
    padding: 8px 20px 20px;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  nav.mainnav.open>ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  nav.mainnav.open>ul>li>a {
    display: block;
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  nav.mainnav.open .dropdown,
  nav.mainnav.open .sub-menu {
    position: static;
    display: block !important;
    box-shadow: none;
    border: none;
    background: var(--sky);
    border-radius: 8px;
    margin: 4px 0 8px;
    padding: 6px;
  }

  nav.mainnav.open .dropdown a,
  nav.mainnav.open .sub-menu a {
    padding: 10px 12px;
    font-size: 14px;
  }

  nav.mainnav.open .nav-cta,
  nav.mainnav.open li.btn-call a,
  nav.mainnav.open li.nav-cta a {
    display: block;
    text-align: center;
    margin: 14px 4px 4px;
  }

  .burger {
    display: block;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
  }

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

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

  .tag-grid.cols-3 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .page-hero h1 {
    font-size: 26px;
  }

  .process-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats-panel .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
  }
}