/* Cable Force — site styles */
:root {
  --bg: #f4f7fb;
  --bg-muted: #e8eef6;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --border: #d3dde9;
  --text: #0f172a;
  --text-muted: #526273;
  /* Logo brand blue ("FORCE") */
  --accent: #00aeef;
  --accent-dim: #0090cc;
  --accent-glow: rgba(0, 174, 239, 0.12);
  --on-accent: #ffffff;
  --danger: #c62d3a;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 14px 40px rgba(15, 23, 42, 0.1);
  --max: 1140px;
  --header-h: 112px;
  --gutter: 1.25rem;
}

@media (max-width: 600px) {
  :root {
    --header-h: 76px;
    --gutter: 1rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(0, 174, 239, 0.11), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 5%, rgba(0, 120, 180, 0.06), transparent);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover {
  color: #0077aa;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 1rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  color: #ffffff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Header topbar ===== */
.header-topbar {
  background: var(--accent);
  font-size: 0.8rem;
}

.header-topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

.header-topbar-left a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.header-topbar-left a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.header-topbar .header-topbar-cta,
.header-topbar .header-topbar-cta:link,
.header-topbar .header-topbar-cta:visited {
  color: #ffffff !important;
  border: 1.5px solid #ffffff !important;
  font-size: 0.78rem !important;
  padding: 0.3rem 0.85rem !important;
}

.header-topbar-cta:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.header-topbar-cta .cta-arrow {
  border-color: #ffffff !important;
  width: 20px !important;
  height: 20px !important;
  color: #ffffff !important;
}

@media (min-width: 901px) {
  .header-nav-desktop .cta-small {
    display: none;
  }
}

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo-img {
  height: clamp(36px, 5.6vw, 48px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.header-nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.header-nav-desktop a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.15s, background-color 0.15s;
}

.header-nav-desktop a:hover,
.header-nav-desktop a[aria-current="page"]:not(.cta-small) {
  color: var(--text);
  background: var(--bg-muted);
}

.cta-small {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.42rem 0.42rem 1rem;
  background: transparent;
  color: var(--accent) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
  margin-left: 0.4rem;
  transition: background 0.2s, gap 0.2s;
}

.cta-small:hover {
  background: rgba(0, 174, 239, 0.07);
  gap: 0.85rem;
}

.cta-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cta-small:hover .cta-arrow {
  background: rgba(0, 174, 239, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.25rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
}

.mobile-nav-panel.is-open {
  display: flex;
}

.mobile-nav-panel a {
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 500;
}

.mobile-nav-panel a:hover {
  border-color: var(--accent-dim);
}

.mobile-nav-panel .cta-small {
  margin: 0.75rem 1rem 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  align-self: stretch;
  justify-content: center;
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
  border-radius: 999px;
}

.mobile-nav-panel .cta-small:hover {
  background: var(--accent-dim) !important;
  border-color: var(--accent-dim) !important;
}

.mobile-nav-panel .cta-small .cta-arrow {
  border-color: rgba(255,255,255,0.5) !important;
  color: #ffffff !important;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

/* ===== Sections ===== */
.section {
  padding: 4rem var(--gutter);
}

.section-tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.section-flush-top {
  padding-top: 0;
}

@media (max-width: 600px) {
  .section {
    padding: 3rem var(--gutter);
  }
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

/* ===== Hero ===== */
.hero {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.hero-content {
  max-width: 44rem;
}

.hero-content .lead {
  max-width: 40rem;
}

/* Hero with photo background */
.hero-photo {
  position: relative;
  padding: 0;
  background-color: #0c1726;
  background-image:
    linear-gradient(120deg, rgba(7, 18, 30, 0.92) 0%, rgba(7, 18, 30, 0.7) 45%, rgba(7, 18, 30, 0.45) 100%),
    url("assets/hero-toronto.jpg");
  background-size: cover;
  background-position: center 58%;
  background-repeat: no-repeat;
  color: #ffffff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-photo-inner {
  padding: clamp(4rem, 9vw, 6.5rem) var(--gutter);
  min-height: clamp(420px, 58vh, 560px);
  display: flex;
  align-items: center;
}

.hero-photo .eyebrow {
  color: #5dd5ff;
}

.hero-photo h1 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-photo .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-photo .btn-primary {
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.4);
}

.hero-photo .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-photo .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff;
}

/* ===== Typography ===== */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.8vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

h2 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.115rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.lead-tight {
  margin-bottom: 0;
}

/* ===== Trust strip ===== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.75rem var(--gutter);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}

.trust-item {
  text-align: center;
  padding: 0.25rem 0.75rem;
  border-left: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: none;
}

.trust-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.1;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

@media (max-width: 600px) {
  .trust-strip {
    padding: 1.25rem var(--gutter);
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .trust-item {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
  }

  .trust-item:first-child {
    border-top: none;
    padding-top: 0;
  }
}

/* ===== Buttons ===== */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s, transform 0.15s, background-color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: var(--on-accent);
  border: none;
  box-shadow: 0 2px 6px rgba(0, 120, 180, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: var(--on-accent);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent-dim);
  background: rgba(0, 174, 239, 0.08);
  color: var(--text);
}

/* ===== Card grids ===== */
.cards-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cards-grid-spaced {
  margin-top: 2rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(0, 174, 239, 0.55);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.card p:last-child {
  margin-bottom: 0;
}

/* ===== Two column ===== */
.two-col {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

/* ===== Section variants ===== */
.section-alt {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-tint {
  background: #e6f6fd;
  border-top: 1px solid rgba(0, 174, 239, 0.18);
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
}

.section-brand {
  background: #00AEEF;
  border-top: none;
  border-bottom: none;
}

.section-brand h2,
.section-brand p,
.section-brand .cta-banner p {
  color: #ffffff;
}

.section-brand .cta-banner p {
  color: rgba(255, 255, 255, 0.82);
}

.section-brand .cta-banner {
  background: none;
  border: none;
  box-shadow: none;
}

.section-brand .btn-primary {
  background: #ffffff;
  color: #00AEEF;
  border-color: #ffffff;
  box-shadow: none;
}

.section-brand .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  filter: none;
}

/* ===== Service area map ===== */
.two-col-map {
  align-items: center;
}

@media (min-width: 800px) {
  .two-col-map {
    grid-template-columns: 2fr 3fr;
  }
}

.service-map {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.service-map img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== About page — card icons ===== */
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #e6f6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== About page — process timeline ===== */
.about-timeline {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 800px) {
  .about-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.tl-col {
  display: flex;
  flex-direction: column;
}

.tl-item {
  display: flex;
  gap: 1rem;
}

.tl-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.tl-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tl-line {
  flex: 1;
  width: 2px;
  background: rgba(0, 174, 239, 0.2);
  min-height: 1.5rem;
  margin: 4px 0;
}

.tl-content {
  padding-bottom: 1.75rem;
}

.tl-item:last-child .tl-content {
  padding-bottom: 0;
}

.tl-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.15rem 0 0.35rem;
}

.tl-content p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===== CTA banner ===== */
.cta-banner {
  text-align: center;
  padding: 4.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(0, 120, 180, 0.08)),
    var(--bg-elevated);
  border: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.cta-banner h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.cta-banner p {
  color: var(--text-muted);
  margin: 0 auto 1.5rem;
  max-width: 36rem;
}

/* ===== Page hero ===== */
.page-hero {
  padding: 3rem var(--gutter) 2.75rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 0.65rem;
}

.page-hero .lead {
  margin-bottom: 0;
  max-width: none;
}

/* ===== Service filter pills ===== */
.service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.service-tile {
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.service-tile.is-hidden {
  display: none;
}

/* ===== Service tiles ===== */
.service-tiles {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .service-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-tile {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-tile:hover {
  border-color: rgba(0, 174, 239, 0.55);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.service-tile h3 {
  font-size: 1.2rem;
}

.service-tile p {
  color: var(--text-muted);
}

.service-meta {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.service-arrow {
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ===== Service hero (dark) ===== */
.service-hero {
  background: #0a1f3c;
  padding: 4rem var(--gutter) 3.5rem;
}

.service-hero .eyebrow {
  color: var(--accent);
}

.service-hero h1 {
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.service-hero .lead {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  max-width: none;
}

/* ===== Service detail content ===== */
.service-intro {
  margin: 0 0 2.5rem;
  max-width: none;
}

.service-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .service-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.25rem;
}

.ul-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ul-check li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.ul-check li:last-child {
  border-bottom: none;
}

.ul-check li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.42em;
  flex-shrink: 0;
}

.dual-lists {
  display: grid;
  gap: 2rem;
}

@media (min-width: 760px) {
  .dual-lists {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.ul-plain {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.ul-plain li {
  margin-bottom: 0.5rem;
}

.ul-plain li:last-child {
  margin-bottom: 0;
}

/* ===== FAQ tabs ===== */
.faq-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.faq-tabs::-webkit-scrollbar {
  display: none;
}

.faq-tab {
  flex-shrink: 0;
  padding: 0.85rem 1.25rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.faq-tab:hover {
  color: var(--text);
}

.faq-tab[aria-selected="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.faq-panel {
  display: none;
  padding-top: 2rem;
}

.faq-panel.is-active {
  display: block;
}

/* ===== FAQ ===== */
.faq-group {
  margin-bottom: 2.75rem;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-marker {
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.18s ease;
  display: inline-block;
}

details[open] > summary .faq-marker {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 0 1.15rem;
  color: var(--text-muted);
  max-width: 60ch;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 540px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }

}


label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.req {
  color: var(--accent);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

code {
  font-size: 0.9em;
  background: var(--bg-muted);
  color: var(--text);
  padding: 0.12em 0.4em;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field:last-child {
  margin-bottom: 1.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ── Multi-select dropdown ── */
.ms-wrap {
  position: relative;
}

.ms-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 2.75rem;
}

.ms-trigger:focus,
.ms-trigger[aria-expanded="true"] {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.ms-tags-wrap {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  padding: 0.1rem 0;
}

.ms-placeholder {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.6;
}

.ms-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
}

.ms-tag-remove {
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.ms-tag-remove:hover {
  color: var(--text);
}

.ms-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.ms-trigger[aria-expanded="true"] .ms-chevron {
  transform: rotate(180deg);
}

/* hide panel when [hidden] — overrides any browser quirks */
.ms-panel[hidden] { display: none; }

.ms-panel {
  display: block;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  z-index: 200;
  list-style: none;
  padding: 0.3rem 0;
  margin: 0;
}

/* remove bullets from li items */
.ms-panel li {
  list-style: none;
}

/* override global label styles inside the dropdown */
.ms-panel label.ms-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.95rem;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  margin-bottom: 0;
  transition: background 0.1s;
}

.ms-panel label.ms-option:hover {
  background: var(--bg-muted);
}

.ms-panel label.ms-option:has(input:checked) {
  background: rgba(0, 174, 239, 0.07);
}

/* override global input width:100% for checkboxes */
.ms-panel label.ms-option input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.ms-error,
.field-error {
  font-size: 0.82rem;
  color: var(--danger);
  margin-top: 0.35rem;
  margin-bottom: 0;
  min-height: 1.1em;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(198, 45, 58, 0.12);
}

.ms-trigger[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(198, 45, 58, 0.12);
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 174, 239, 0.1);
  border: 1px solid rgba(0, 174, 239, 0.35);
  color: var(--text);
  margin-bottom: 1rem;
}

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

.placeholder-badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  background: rgba(198, 45, 58, 0.1);
  color: var(--danger);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.info-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.info-card h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.info-card dl {
  margin: 0;
}

.info-card dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 1rem;
}

.info-card dt:first-child {
  margin-top: 0;
}

.info-card dd {
  margin: 0.3rem 0 0;
  font-weight: 500;
}

.info-card .danger-text {
  color: var(--danger);
}

.info-card .footnote {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===== Footer ===== */
.site-footer {
  background: #0a1f3c;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--gutter) 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-col-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid var(--accent);
  width: fit-content;
}

.footer-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.footer-address a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}

.footer-address a:hover {
  opacity: 0.8;
}

.footer-cols p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.85rem;
}

.footer-cols p:last-child {
  margin-bottom: 0;
}

.footer-cols strong {
  color: rgba(255, 255, 255, 0.88);
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  background: var(--accent);
  padding: 0.75rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom span {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 720px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ─── Service icon cards (home page) ─── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.svc-card {
  background-color: #0a1f3c;
  background-image:
    radial-gradient(ellipse at top left, rgba(0, 174, 239, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse at bottom right, rgba(0, 174, 239, 0.09) 0%, transparent 60%),
    radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: auto, auto, 18px 18px;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.svc-card:hover {
  border-color: var(--accent);
}

.svc-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #0f2d4f;
  border: 1px solid rgba(0, 174, 239, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  color: var(--accent);
}

.svc-card-icon svg {
  fill: var(--accent);
  width: 26px;
  height: 26px;
}

.svc-card-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin: 0 0 0.3rem;
}

.svc-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.svc-card-lm {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: auto;
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

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

/* ─── Why Cable Force — numbered list ─── */
.why-list {
  margin-top: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.why-item:last-child {
  border-bottom: none;
}

.why-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  min-width: 24px;
  padding-top: 3px;
  flex-shrink: 0;
}

.why-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.why-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
