/* ═══════════════════════════════════════════════════════════════════
   TRYCOMP – TITAN EMPORIUM  |  Design System v2
   Aesthetic: Industrial Precision — dark authority, teal energy,
   sharp geometry, commanding typography
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────────────── */
:root {
  --navy:       #0a0f1e;
  --navy-mid:   #111827;
  --navy-soft:  #1a2540;
  --teal:       #0e9f8e;
  --teal-dark:  #0b7a6c;
  --teal-glow:  rgba(14,159,142,0.15);
  --teal-line:  rgba(14,159,142,0.35);
  --ice:        #e8f4f2;
  --white:      #ffffff;
  --off-white:  #f7f9fb;
  --mid-grey:   #9aa5b4;
  --text:       #1c2432;
  --text-light: #4b5e7a;
  --border:     rgba(255,255,255,0.07);
  --border-lt:  #dde3ec;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --shadow-sm:  0 2px 8px rgba(10,15,30,0.10);
  --shadow-md:  0 8px 28px rgba(10,15,30,0.16);
  --shadow-lg:  0 20px 60px rgba(10,15,30,0.24);
  --radius:     10px;
  --radius-lg:  18px;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Top bar ─────────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--teal); }
.top-bar a:hover { color: #fff; }
.top-left { color: var(--mid-grey); }
.top-right { display: flex; gap: 20px; align-items: center; }
.top-right span { color: #cbd5e1; }

/* ── Navigation ──────────────────────────────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,15,30,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.main-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 60px;
}
.main-nav .logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav .logo::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--teal);
  border-radius: 2px;
}
.main-nav ul { list-style: none; display: flex; gap: 4px; }
.main-nav ul a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  display: block;
  letter-spacing: 0.01em;
}
.main-nav ul a:hover,
.main-nav ul a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 7px 16px !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* ── Nav Dropdown ─────────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #94a3b8;
  transition: transform 0.2s, border-top-color 0.2s;
  flex-shrink: 0;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  border-top-color: var(--white);
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #111827;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px !important;
  border-radius: 7px !important;
  font-size: 13px !important;
  color: #94a3b8 !important;
  transition: background 0.15s, color 0.15s;
  gap: 8px;
}
.nav-dropdown-menu a:hover {
  background: rgba(14,159,142,0.12) !important;
  color: var(--white) !important;
}
.nav-dropdown-menu .dd-kw {
  font-weight: 700;
  font-size: 14px;
  color: var(--teal);
  min-width: 38px;
}
.nav-dropdown-menu .dd-desc {
  flex: 1;
  font-size: 12px;
  color: #64748b;
  text-align: right;
}
.nav-dropdown-menu a:hover .dd-desc {
  color: #94a3b8 !important;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 4px;
}
.nav-dropdown-all {
  display: flex !important;
  justify-content: center !important;
  font-size: 12px !important;
  color: var(--teal) !important;
  font-weight: 600 !important;
  padding: 8px 14px !important;
  letter-spacing: 0.02em;
}
.nav-dropdown-all:hover {
  background: var(--teal-glow) !important;
  color: var(--teal) !important;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(14,159,142,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 20%, rgba(14,80,200,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
/* Grid noise texture */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 0 48px; }
  .hero-badge-stack { display: none; }
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14,159,142,0.12);
  border: 1px solid rgba(14,159,142,0.25);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.5); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
  display: block;
}
.hero-sub {
  font-size: 15px;
  color: #94a3b8;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 160px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-badge .num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.hero-badge .lbl {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(14,159,142,0.35);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(14,159,142,0.45);
  text-decoration: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--teal);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
}

/* ── Trust bar ───────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.03em;
  padding: 4px 12px;
  flex: 1;
  justify-content: center;
  border-right: 1px solid var(--border);
  text-transform: uppercase;
}
.trust-item:last-child { border-right: none; }
.trust-item .ti {
  color: var(--teal);
  font-size: 14px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .trust-item { border: none; flex: 0 0 50%; }
  .trust-bar .inner { justify-content: flex-start; }
}

/* ── Section base ────────────────────────────────────────────────── */
section { padding: 64px 0; }
section.alt { background: var(--white); }
section.dark {
  background: var(--navy);
  color: var(--white);
}
section.dark p, section.dark li { color: #94a3b8; }
section.tint { background: var(--off-white); }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
section.dark .section-title { color: var(--white); }
.section-body {
  font-size: 15px;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.7;
}
section.dark .section-body { color: #94a3b8; }

/* ── Cards / Grid ────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,159,142,0.2);
}
.card:hover::before { opacity: 1; }
section.dark .card {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
}
section.dark .card:hover { border-color: var(--teal-line); }
.card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
section.dark .card h3 { color: var(--white); }
.card-icon {
  width: 32px; height: 32px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
section.dark .card p { color: #64748b; }

/* ── Range band ──────────────────────────────────────────────────── */
.range-band {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}
.range-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(14,159,142,0.08) 0%, transparent 70%);
}
.range-band .inner { position: relative; z-index: 2; }
.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.range-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 8px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  display: block;
}
.range-pill:hover {
  background: rgba(14,159,142,0.12);
  border-color: var(--teal-line);
  transform: translateY(-2px);
  text-decoration: none;
}
.range-pill .kw-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.range-pill .kw-lbl {
  font-size: 10px;
  color: var(--mid-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}
.range-pill:hover .kw-num { color: var(--teal); }

/* ── Spec table ──────────────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
}
.spec-table thead { background: var(--navy); color: var(--white); }
.spec-table thead th {
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.spec-table tbody tr:nth-child(even) { background: var(--off-white); }
.spec-table tbody tr:nth-child(odd) { background: var(--white); }
.spec-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-lt);
  color: var(--text);
}
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table td:first-child { color: var(--text-light); font-weight: 500; }
.spec-table td strong { color: var(--teal); }

/* ── Location chips ──────────────────────────────────────────────── */
.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.chip {
  display: inline-block;
  padding: 7px 16px;
  background: var(--ice);
  color: var(--navy-soft);
  border: 1px solid #c8dbd8;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-decoration: none;
}
.chip:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  text-decoration: none;
}
.chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Quote section wrapper ───────────────────────────────────────── */
.quote-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,159,142,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
}
.quote-intro h2 { color: var(--white); margin-bottom: 16px; }
.quote-intro p { color: #64748b; margin-bottom: 20px; font-size: 14px; }
.quote-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.quote-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #94a3b8;
}
.q-icon {
  width: 26px; height: 26px;
  min-width: 26px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Quote form card (dark surface) ────────────────────────────── */
.quote-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Form: shared label ─────────────────────────────────────────── */
.quote-form label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 7px;
  margin-top: 18px;
}
.quote-form label:first-child,
.form-row > div:first-child label { margin-top: 0; }
.form-row > div label { margin-top: 0; }

/* ── Form inputs ON DARK background (inside .quote-form-card) ───── */
.quote-form-card .quote-form input,
.quote-form-card .quote-form select,
.quote-form-card .quote-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #f1f5f9;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.quote-form-card .quote-form input::placeholder,
.quote-form-card .quote-form textarea::placeholder {
  color: #475569;
}
.quote-form-card .quote-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.quote-form-card .quote-form select option {
  background: #1e293b;
  color: #f1f5f9;
}
.quote-form-card .quote-form input:focus,
.quote-form-card .quote-form select:focus,
.quote-form-card .quote-form textarea:focus {
  border-color: var(--teal);
  background: rgba(14,159,142,0.08);
  box-shadow: 0 0 0 3px rgba(14,159,142,0.15);
}
.quote-form-card .quote-form textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

/* ── Submit button ──────────────────────────────────────────────── */
.quote-form .submit-btn,
.quote-form button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  margin-top: 24px;
  background: var(--teal);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(14,159,142,0.4);
  text-decoration: none;
}
.quote-form .submit-btn:hover,
.quote-form button[type="submit"]:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,159,142,0.5);
}
.quote-form .submit-btn:active,
.quote-form button[type="submit"]:active {
  transform: translateY(0);
}

/* ── Form row (2-col grid) ──────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row > div { display: flex; flex-direction: column; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── Industries ──────────────────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal-glow), rgba(14,159,142,0.05));
  border: 1px solid var(--teal-line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.industry-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}
.industry-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.industry-card li {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.industry-card li::before {
  content: '→';
  color: var(--teal);
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}
.kw-rec {
  margin-top: 16px;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-light);
  border-left: 3px solid var(--teal);
}
.kw-rec strong { color: var(--teal); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-list details[open] { border-color: var(--teal-line); }
.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-list summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  content: '−';
}
.faq-list details p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border-lt);
}

/* ── Locations page ──────────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.location-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-card h3::before {
  content: '';
  width: 3px; height: 16px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}
.location-card p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.location-list { list-style: none; max-height: 240px; overflow-y: auto; }
.location-list::-webkit-scrollbar { width: 4px; }
.location-list::-webkit-scrollbar-thumb { background: var(--border-lt); border-radius: 4px; }
.location-list li { font-size: 13px; padding: 3px 0; border-bottom: 1px solid var(--border-lt); display: flex; gap: 6px; }
.location-list li:last-child { border-bottom: none; }
.location-list a { color: var(--teal-dark); font-weight: 500; }
.location-list a:hover { color: var(--teal); text-decoration: underline; }
.location-list strong { color: var(--text-light); min-width: 36px; font-size: 12px; }

/* ── Product hero (location pages) ──────────────────────────────── */
.product-hero { background: var(--off-white); padding: 40px 0 0; }
.product-hero-inner {
  display: flex;
  justify-content: center;
}
.product-hero-img {
  max-width: 420px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-lt);
}

/* ── Home page specifics ─────────────────────────────────────────── */
.home-intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .home-intro-grid { grid-template-columns: 1fr; }
  .home-intro-img-wrap { order: -1; }
}
.home-intro-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.home-intro-copy p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.7;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.check-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-line);
  border-radius: 50%;
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Stats strip ─────────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 12px;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
}

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0 0;
  font-size: 13px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  color: var(--mid-grey);
}
.breadcrumb a { color: var(--teal-dark); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border-lt); }

/* ── Page section headers ────────────────────────────────────────── */
.section-header { margin-bottom: 32px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-body { margin: 0 auto; }

/* ── Why-us checklist style ──────────────────────────────────────── */
.why-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}
.why-icon {
  width: 34px; height: 34px;
  background: var(--teal-glow);
  border: 1px solid var(--teal-line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: #94a3b8;
  font-size: 14px;
  position: relative;
}
footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 40%, rgba(14,159,142,0.3) 100%);
}

/* Top section: brand + columns */
.footer-top {
  padding: 60px 0 48px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* Brand column */
.footer-brand .logo-foot {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand .logo-foot::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 26px;
  background: var(--teal);
  border-radius: 3px;
  flex-shrink: 0;
}
.footer-brand .tagline {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-brand .main-site-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--teal);
  border: 1px solid var(--teal-line);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s;
  margin-bottom: 20px;
}
.footer-brand .main-site-link:hover {
  background: var(--teal-glow);
  text-decoration: none;
}
.footer-brand address {
  font-style: normal;
  font-size: 12.5px;
  color: #475569;
  line-height: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}
.footer-brand address strong {
  display: block;
  color: #94a3b8;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Footer columns */
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13.5px;
  color: #64748b;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--teal);
  padding-left: 4px;
  text-decoration: none;
}

/* Contact column pills */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.fci-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(14,159,142,0.1);
  border: 1px solid rgba(14,159,142,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--teal);
}
.fci-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.fci-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
}
.fci-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}
.fci-value a {
  color: var(--white);
  transition: color 0.2s;
}
.fci-value a:hover { color: var(--teal); text-decoration: none; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 12px;
  color: #334155;
}
.footer-legal {
  display: flex;
  gap: 20px;
  font-size: 12px;
}
.footer-legal a {
  color: #334155;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--teal); }

/* ── Utility ─────────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.text-teal  { color: var(--teal); }
.text-white { color: var(--white); }

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up {
  animation: fadeUp 0.55s ease both;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav ul { display: none; }
  section { padding: 44px 0; }
  .hero-inner { padding: 48px 0 40px; }
  .hero h1 { font-size: 38px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .spec-table { font-size: 13px; }
  .quote-form-card { padding: 22px; }
}
