:root {
  --navy: #0A1F3D;
  --navy-light: #14315C;
  --brass: #9C7A2E;
  --brass-light: #D4AF6A;
  --cream: #F2EFE8;
  --white: #FFFFFF;
  --ink: #222222;
  --gray: #666666;
  --line: #E0DCD2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  margin: 0;
}

a { color: inherit; }

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

/* Header */
header.site-header {
  background: var(--navy);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 22px;
  color: var(--brass-light);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.brand span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  color: #9DB3CC;
  letter-spacing: 0.5px;
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 6px;
}
nav.main-nav a {
  color: #CBD8E8;
  text-decoration: none;
  font-size: 13px;
  margin-left: 18px;
  white-space: nowrap;
}
.brand { flex-shrink: 0; }
@media (min-width: 1080px) {
  nav.main-nav { flex-wrap: nowrap; }
}
nav.main-nav a:hover { color: var(--brass-light); }

/* Hero */
.hero {
  background: var(--cream);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  max-width: 14ch;
}
.hero p.lede {
  font-size: 17px;
  color: var(--gray);
  max-width: 46ch;
  margin-top: 18px;
}
.hero .eyebrow {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--brass);
  font-weight: bold;
  margin-bottom: 10px;
}
.trust-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
}
.trust-panel .stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.trust-panel .stat:last-child { border-bottom: none; }
.trust-panel .stat strong {
  color: var(--navy);
  font-size: 16px;
}

/* Category nav strip */
.cat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  position: sticky;
  top: 64px;
  z-index: 10;
}
.cat-strip .wrap {
  display: flex;
  gap: 28px;
  overflow-x: auto;
}
.cat-strip a {
  white-space: nowrap;
  text-decoration: none;
  font-size: 14px;
  color: var(--navy);
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.cat-strip a:hover { border-bottom-color: var(--brass); }

/* Category sections */
.category {
  padding: 56px 0;
}
.category:nth-of-type(even) { background: var(--cream); }
.category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 14px;
}
.category-head h2 { font-size: 26px; }
.category-head .tag {
  font-size: 13px;
  color: var(--gray);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.category:nth-of-type(even) .product-card { background: var(--white); }
.product-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.product-card h3 {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.product-card p.desc {
  font-size: 13.5px;
  color: var(--gray);
  flex-grow: 1;
  margin-bottom: 16px;
}
.buy-row {
  display: flex;
  gap: 10px;
}
.buy-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 3px;
}
.buy-btn.amazon {
  background: var(--navy);
  color: var(--brass-light);
}
.buy-btn.walmart {
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--line);
}
.buy-btn:hover { opacity: 0.88; }

/* CTA banner */
.install-cta {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}
.install-cta h2 {
  color: var(--white);
  font-size: 26px;
  max-width: 28ch;
  margin: 0 auto 12px;
}
.install-cta p {
  color: #B9C7D9;
  max-width: 52ch;
  margin: 0 auto 24px;
  font-size: 15px;
}
.install-cta .buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
}
.btn-primary { background: var(--brass-light); color: var(--navy); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid #3A537A; }

/* Disclosure */
.disclosure {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.disclosure p {
  font-size: 12.5px;
  color: var(--gray);
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
}

/* Footer */
footer.site-footer {
  background: var(--navy);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-grid h4 {
  color: var(--brass-light);
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.footer-grid a {
  display: block;
  color: #B9C7D9;
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 8px;
}
.footer-grid a:hover { color: var(--brass-light); }
.footer-bottom {
  border-top: 1px solid #23355A;
  padding-top: 18px;
  font-size: 12px;
  color: #7E93B3;
  text-align: center;
}

/* Category head "view all" link */
.category-head .view-all {
  font-size: 13.5px;
  font-weight: bold;
  color: var(--brass);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 16px;
}
.category-head .view-all:hover { color: var(--navy); }
.category-head-text { display:flex; align-items:baseline; gap: 12px; flex-wrap: wrap; }

/* Breadcrumb / page hero for category pages */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 32px;
}
.page-hero .crumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
}
.page-hero .crumb a { color: var(--navy); text-decoration: none; font-weight: bold; }
.page-hero h1 { font-size: 32px; }
.page-hero p { color: var(--gray); max-width: 60ch; margin-top: 10px; font-size: 15px; }

/* Two-column layout for category pages */
.cat-layout {
  padding: 48px 0 8px;
}
.cat-layout .wrap {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.cat-layout .grid { grid-template-columns: repeat(2, 1fr); }
.sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 20px; }

/* --- Ad units (own-brand lead-gen, not affiliate) --- */
.ad-eyebrow {
  font-size: 11px;
  letter-spacing: 0.5px;
  font-weight: bold;
  opacity: 0.85;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.ad-icon { width: 34px; height: 34px; margin-bottom: 14px; }

/* Sidebar / rectangle ad card */
.ad-card {
  border-radius: 8px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
}
.ad-card h3 { font-size: 20px; line-height: 1.25; margin-bottom: 10px; }
.ad-card p { font-size: 13.5px; margin: 0 0 20px; }
.ad-card .ad-btn {
  display: inline-block;
  font-size: 13.5px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}
.ad-card.giganet {
  background: linear-gradient(150deg, #0A1F3D 0%, #123055 65%, #17406F 100%);
  color: #DCE6F2;
}
.ad-card.giganet .ad-eyebrow { color: var(--brass-light); }
.ad-card.giganet h3 { color: var(--white); font-family: Georgia, serif; }
.ad-card.giganet .ad-btn { background: var(--brass-light); color: var(--navy); }

.ad-card.supertech {
  background: linear-gradient(150deg, #EADFC4 0%, #D4AF6A 70%, #C79A4B 100%);
  color: #3A2E14;
}
.ad-card.supertech .ad-eyebrow { color: #6B5220; }
.ad-card.supertech h3 { color: var(--navy); font-family: Georgia, serif; }
.ad-card.supertech .ad-btn { background: var(--navy); color: var(--brass-light); }

/* Full-width leaderboard ad (homepage inline placement) */
.ad-leaderboard {
  margin: 0 auto;
  border-radius: 8px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.ad-leaderboard .ad-copy { display: flex; align-items: center; gap: 20px; }
.ad-leaderboard h3 { font-size: 20px; margin-bottom: 4px; }
.ad-leaderboard p { margin: 0; font-size: 13.5px; }
.ad-leaderboard .ad-eyebrow { margin-bottom: 4px; }
.ad-leaderboard-wrap { padding: 8px 0 8px; }
.ad-leaderboard-wrap.tight { padding-top: 0; }

/* Two-brand ad rail (replaces old plain install-cta banner) */
.partner-ads {
  padding: 56px 0;
  background: var(--white);
}
.partner-ads .lead {
  text-align: center;
  margin-bottom: 32px;
}
.partner-ads .lead h2 { font-size: 26px; }
.partner-ads .lead p { color: var(--gray); font-size: 15px; max-width: 56ch; margin: 10px auto 0; }
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.partner-grid .ad-card { padding: 36px; }
.partner-grid .ad-card h3 { font-size: 24px; }
.partner-grid .ad-card p { font-size: 14.5px; max-width: 40ch; }

@media (max-width: 860px) {
  .cat-layout .wrap { grid-template-columns: 1fr; }
  .cat-layout .grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { position: static; flex-direction: row; overflow-x: auto; }
  .sidebar .ad-card { min-width: 260px; }
  .partner-grid { grid-template-columns: 1fr; }
  .ad-leaderboard { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-strip { top: 0; position: static; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .cat-layout .grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 26px; }
}

/* ================= HotelWifiTV.com rebuild — additional components ================= */

/* ---------- Page hero (shared across inner pages) ---------- */
.page-hero-lg {
  background: var(--cream);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-hero-lg .eyebrow { font-size: 13px; color: var(--brass); font-weight: bold; margin-bottom: 12px; }
.page-hero-lg h1 { font-size: 38px; max-width: 20ch; line-height: 1.2; }
.page-hero-lg p.lede { font-size: 16px; color: var(--gray); max-width: 62ch; margin-top: 16px; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 26px; }
.btn-primary-lg, .btn-outline-lg {
  display: inline-block; padding: 14px 26px; border-radius: 4px; font-weight: bold; font-size: 14.5px; text-decoration: none;
}
.btn-primary-lg { background: var(--navy); color: var(--brass-light); }
.btn-outline-lg { border: 1px solid var(--navy); color: var(--navy); }
.hero-phone { font-weight: bold; color: var(--navy); text-decoration: none; font-size: 14.5px; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.badge-pill {
  font-size: 12.5px; color: var(--navy); background: var(--white); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px;
}
.badge-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); display: inline-block; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--navy); padding: 36px 0; }
.stats-bar .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stats-bar .stat-item { text-align: center; }
.stats-bar .stat-item strong { display: block; font-family: Georgia, serif; font-size: 34px; color: var(--brass-light); }
.stats-bar .stat-item span { font-size: 13px; color: #B9C7D9; }

/* ---------- Section shell ---------- */
.section { padding: 64px 0; }
.section.alt { background: var(--cream); }
.section-head { max-width: 68ch; margin-bottom: 40px; }
.section-head .eyebrow { font-size: 13px; color: var(--brass); font-weight: bold; margin-bottom: 10px; }
.section-head h2 { font-size: 30px; }
.section-head p { color: var(--gray); font-size: 15px; margin-top: 12px; }

/* ---------- Service summary cards (homepage) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px; }
.service-card .icon { width: 36px; height: 36px; margin-bottom: 16px; }
.service-card h3 { font-family: Arial, sans-serif; font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--gray); margin-bottom: 14px; }
.service-card a { font-size: 13px; font-weight: bold; color: var(--brass); text-decoration: none; }

/* ---------- Industry preview strip (homepage) ---------- */
.industry-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.industry-tile {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 22px 14px;
  text-align: center; text-decoration: none; color: var(--navy); font-size: 13.5px; font-weight: bold;
}
.industry-tile .emoji { font-size: 26px; display: block; margin-bottom: 10px; }
.industry-tile:hover { border-color: var(--brass); }

/* ---------- Brand pills ---------- */
.brand-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-pills span {
  font-size: 13px; color: var(--gray); background: var(--cream); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 100px;
}

/* ---------- Pillars (why us) ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pillar-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px; }
.pillar-card .num { font-family: Georgia, serif; font-size: 22px; color: var(--brass); margin-bottom: 10px; }
.pillar-card h3 { font-size: 17px; margin-bottom: 8px; }
.pillar-card p { font-size: 13.5px; color: var(--gray); margin-bottom: 12px; }
.pillar-card .tag { font-size: 12px; color: var(--navy); font-weight: bold; }

/* ---------- Service detail blocks (services.html) ---------- */
.service-detail { padding: 64px 0; border-bottom: 1px solid var(--line); }
.service-detail.alt { background: var(--cream); }
.service-detail .num-eyebrow { font-family: Georgia, serif; font-size: 15px; color: var(--brass); font-weight: bold; margin-bottom: 8px; }
.service-detail h2 { font-size: 28px; margin-bottom: 14px; }
.service-detail > .wrap > p.lede { font-size: 15.5px; color: var(--gray); max-width: 70ch; margin-bottom: 24px; }
.detail-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 0 0 20px; }
.check-list li { font-size: 14px; color: var(--ink); padding: 7px 0 7px 24px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--brass); font-weight: bold; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12px; color: var(--navy); background: var(--white); border: 1px solid var(--line); padding: 5px 12px; border-radius: 100px; text-decoration: none; display: inline-block; }
.callout-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.callout { background: var(--white); border-left: 3px solid var(--brass); border-radius: 0 4px 4px 0; padding: 16px 18px; }
.callout .callout-title { font-size: 11.5px; font-weight: bold; letter-spacing: 0.4px; color: var(--brass); margin-bottom: 6px; text-transform: uppercase; }
.callout p { font-size: 13px; color: var(--gray); margin: 0; }
.service-detail.alt .callout { background: var(--white); }

/* ---------- Cert strip ---------- */
.cert-strip { background: var(--navy); padding: 44px 0; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-item { text-align: center; }
.cert-item .icon { width: 34px; height: 34px; margin: 0 auto 12px; }
.cert-item h4 { color: var(--white); font-family: Arial, sans-serif; font-size: 14.5px; margin-bottom: 4px; }
.cert-item span { color: #91A6C4; font-size: 12.5px; }

/* ---------- Tabs (industries.html) ---------- */
.tab-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  font-size: 13.5px; font-weight: bold; padding: 12px 20px; border-radius: 100px; border: 1px solid var(--line);
  background: var(--white); color: var(--navy); cursor: pointer; font-family: Arial, sans-serif;
}
.tab-btn.active { background: var(--navy); color: var(--brass-light); border-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; margin-bottom: 40px; align-items: start; }
.tab-hero .eyebrow { font-size: 13px; color: var(--brass); font-weight: bold; margin-bottom: 10px; }
.tab-hero h2 { font-size: 28px; margin-bottom: 14px; }
.tab-hero p.lede { color: var(--gray); font-size: 15px; margin-bottom: 18px; }
.quote-block { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 24px; }
.quote-block p.quote-text { font-style: italic; color: var(--ink); font-size: 14.5px; margin-bottom: 12px; }
.quote-block .attribution { font-size: 12.5px; color: var(--gray); }
.tab-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.tab-stats .stat-item { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 18px; text-align: center; }
.tab-stats .stat-item strong { display: block; font-family: Georgia, serif; font-size: 24px; color: var(--navy); }
.tab-stats .stat-item span { font-size: 12px; color: var(--gray); }
.tab-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.tab-feature-grid .feature-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 20px; }
.tab-feature-grid h4 { font-size: 15px; margin-bottom: 8px; }
.tab-feature-grid p { font-size: 13px; color: var(--gray); margin: 0; }

/* ---------- Comparison table (why-us.html) ---------- */
.compare-table-wrap { overflow-x: auto; }
table.compare-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 13.5px; min-width: 720px; }
table.compare-table th, table.compare-table td { padding: 12px 14px; border: 1px solid var(--line); text-align: center; }
table.compare-table th { background: var(--navy); color: var(--white); font-weight: bold; font-size: 12.5px; }
table.compare-table td:first-child, table.compare-table th:first-child { text-align: left; font-weight: bold; color: var(--navy); }
table.compare-table td.yes { color: var(--brass); font-weight: bold; }
table.compare-table td.no { color: var(--line); }
table.compare-table tr:nth-child(even) td { background: var(--cream); }

/* ---------- Timeline (about.html) ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.timeline-item { border-top: 3px solid var(--brass); padding-top: 16px; }
.timeline-item .year { font-family: Georgia, serif; color: var(--navy); font-size: 20px; margin-bottom: 8px; }
.timeline-item h4 { font-size: 14.5px; margin-bottom: 6px; }
.timeline-item p { font-size: 13px; color: var(--gray); margin: 0; }

/* ---------- Two-company cards (about.html) ---------- */
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.company-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 30px; }
.company-card .mark {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--brass-light);
  display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-weight: bold; margin-bottom: 16px;
}
.company-card h3 { font-size: 19px; margin-bottom: 4px; }
.company-card .subtitle { font-size: 12.5px; color: var(--brass); font-weight: bold; margin-bottom: 14px; }
.company-card p { font-size: 13.5px; color: var(--gray); margin-bottom: 16px; }

/* ---------- Team cards ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 26px; text-align: center; }
.team-card .avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--cream); border: 1px solid var(--line); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-size: 20px; font-weight: bold;
  margin: 0 auto 14px;
}
.team-card h3 { font-size: 16px; margin-bottom: 2px; }
.team-card .role { font-size: 12.5px; color: var(--brass); font-weight: bold; margin-bottom: 12px; }
.team-card p { font-size: 13px; color: var(--gray); }

/* ---------- Values grid ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card .num { font-family: Georgia, serif; font-size: 20px; color: var(--brass); margin-bottom: 8px; }
.value-card h4 { font-size: 15px; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--gray); margin: 0; }

/* ---------- Quote form ---------- */
.quote-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: bold; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: Arial, sans-serif; font-size: 14px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 4px; color: var(--ink);
}
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink); }
.form-submit {
  background: var(--navy); color: var(--brass-light); border: none; font-weight: bold; font-size: 14.5px;
  padding: 14px 28px; border-radius: 4px; cursor: pointer; width: 100%;
}
.form-disclaimer { font-size: 12px; color: var(--gray); margin-top: 12px; }
.next-steps { display: flex; flex-direction: column; gap: 18px; }
.next-step { display: flex; gap: 14px; }
.next-step .num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: var(--brass-light);
  display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-weight: bold; font-size: 14px;
}
.next-step h4 { font-size: 14.5px; margin-bottom: 4px; }
.next-step p { font-size: 13px; color: var(--gray); margin: 0; }
.sidebar-contact { background: var(--cream); border-radius: 6px; padding: 22px; margin-top: 24px; }
.sidebar-contact a { color: var(--navy); font-weight: bold; text-decoration: none; display: block; margin-bottom: 6px; }

/* ---------- CTA banner (shared) ---------- */
.final-cta { background: var(--navy); padding: 52px 0; text-align: center; }
.final-cta h2 { color: var(--white); font-size: 28px; margin-bottom: 10px; }
.final-cta p { color: #B9C7D9; margin-bottom: 24px; font-size: 15px; }
.final-cta .buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-strip { grid-template-columns: repeat(3, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-hero { grid-template-columns: 1fr; }
  .tab-stats { grid-template-columns: repeat(2, 1fr); }
  .tab-feature-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .company-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .industry-strip { grid-template-columns: repeat(2, 1fr); }
  .tab-feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero-lg h1 { font-size: 28px; }
}

/* ---------- Header nav actions (phone + CTA button) ---------- */
.site-header .wrap { justify-content: space-between; }
.nav-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-phone-pill {
  font-size: 12px; color: #B9C7D9; border: 1px solid #23355A; padding: 6px 12px; border-radius: 100px;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.nav-phone-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4CD964; display: inline-block; }
.nav-cta-btn {
  background: var(--brass-light); color: var(--navy); font-weight: bold; font-size: 13px; padding: 10px 18px;
  border-radius: 4px; text-decoration: none; white-space: nowrap;
}
@media (max-width: 1180px) {
  .nav-phone-pill { display: none; }
}

/* ---------- Responsive pillar-grid column variants (replaces inline overrides) ---------- */
.pillar-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.pillar-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .pillar-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillar-grid.cols-3 { grid-template-columns: 1fr; }
  .pillar-grid.cols-4 { grid-template-columns: 1fr; }
}
