/*
Theme Name:  Technical Enterprises Ltd.
Theme URI:   https://teltd.ca
Description: Custom theme for Technical Enterprises Ltd.
Author:      Technical Enterprises Ltd.
Version:     1.0.0
*/

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #0D2240;
  --navy-mid:  #1A3A5C;
  --cyan:      #00BFD4;
  --cyan-dk:   #0099AC;
  --white:     #FFFFFF;
  --text:      #1A2A3A;
  --muted:     #6B7280;
  --light:     #F5F7FA;
  --border:    #E5E7EB;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(13,34,64,0.10);
  --shadow-lg: 0 12px 40px rgba(13,34,64,0.16);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.75; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-dk); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { color: var(--navy); font-weight: 700; line-height: 1.25; }

/* ── Layout ───────────────────────────────────── */
.container { max-width: 1560px; margin: 0 auto; padding: 0 48px; }
.section-label {
  display: inline-block; background: var(--cyan); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.section-title { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-sub   { font-size: 1.05rem; color: var(--muted); max-width: 620px; }
.section-header { margin-bottom: 48px; }

/* ── Buttons ──────────────────────────────────── */
.btn { display: inline-block; padding: 13px 30px; border-radius: 6px; font-weight: 600; font-size: 15px; transition: all 0.2s; cursor: pointer; border: none; text-decoration: none; }
.btn-primary  { background: var(--cyan); color: var(--white) !important; }
.btn-primary:hover { background: var(--cyan-dk); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,191,212,0.35); }
.btn-outline  { background: transparent; color: var(--white) !important; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--navy) !important; border-color: var(--white); }
.btn-navy     { background: var(--navy); color: var(--white) !important; }
.btn-navy:hover { background: var(--navy-mid); }

/* ── Top Bar ──────────────────────────────────── */
.topbar { background: var(--cyan); color: var(--navy); font-size: 13px; font-weight: 600; text-align: center; padding: 8px 0; }
.topbar a { color: var(--navy); }

/* ── Header ───────────────────────────────────── */
#site-header { position: sticky; top: 0; z-index: 1000; background: var(--navy); box-shadow: 0 2px 20px rgba(0,0,0,0.3); border-bottom: 1px solid rgba(0,191,212,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 32px; position: relative; }
.site-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.site-logo img, .site-logo svg { height: 62px; width: auto; display: block; }
.logo-mark { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-mid); border: 2px solid var(--cyan); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: var(--cyan); flex-shrink: 0; }

/* Desktop Nav */
.primary-nav { flex: 1; display: flex; justify-content: flex-end; position: relative; }
.primary-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; }
.primary-nav ul li { position: static; }
.primary-nav ul li > a { color: rgba(255,255,255,0.78); font-weight: 500; font-size: 13.5px; padding: 8px 14px; border-radius: 5px; display: block; transition: color 0.15s, background 0.15s; text-decoration: none; white-space: nowrap; }
.primary-nav ul li > a:hover,
.primary-nav ul li.current-menu-item > a,
.primary-nav ul li.current-menu-ancestor > a { color: var(--white) !important; background: rgba(255,255,255,0.07); }

/* Dropdown */
.nav-inner { position: relative; }
.primary-nav { position: static; }
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .sub-menu {
  position: absolute; top: calc(100% + 16px); left: 0; right: auto; transform: translateY(-10px);
  background: #0b1e38;
  border-top: 3px solid var(--cyan);
  border-radius: 0 0 12px 12px;
  width: 520px;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  align-items: stretch;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all 0.22s ease; z-index: 999;
  list-style: none; margin: 0; padding: 0; overflow: hidden;
}
.primary-nav .menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu .menu-item { display: flex; align-items: stretch; }
.primary-nav .sub-menu .menu-item a {
  padding: 13px 16px !important;
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 !important;
  color: rgba(255,255,255,0.82) !important;
  display: flex !important;
  align-items: center;
  gap: 10px;
  transition: all 0.15s;
  text-decoration: none;
  width: 100%;
}
.primary-nav .sub-menu .menu-item a:hover {
  color: var(--white) !important;
  background: rgba(0,191,212,0.10) !important;
}

/* Icon via CSS ::before */
.primary-nav .sub-menu .menu-item a::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px; width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(0,191,212,0.15);
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}
.primary-nav .sub-menu a[href*="install-services"]::before    { content: "⚙"; }
.primary-nav .sub-menu a[href*="de-install"]::before          { content: "🔧"; }
.primary-nav .sub-menu a[href*="service-calls"]::before       { content: "📞"; }
.primary-nav .sub-menu a[href*="site-visits"]::before         { content: "📍"; }
.primary-nav .sub-menu a[href*="delivery"]::before            { content: "📦"; }
.primary-nav .sub-menu a[href*="outsourced-it"]::before       { content: "💻"; }
.primary-nav .sub-menu a[href*="it-rollout"]::before          { content: "🚀"; }
.primary-nav .sub-menu .menu-item a:hover::before             { background: rgba(0,191,212,0.28); }

.nav-arrow { font-size: 11px; opacity: 0.7; margin-left: 2px; }

/* View all services footer */
.dropdown-footer-item {
  grid-column: 1 / -1 !important;
  display: block !important;
  background: rgba(0,0,0,0.2);
}
.dropdown-footer-item a {
  text-align: right !important; color: var(--cyan) !important;
  font-size: 12.5px !important; font-weight: 600 !important;
  padding: 9px 18px !important; display: block !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.dropdown-footer-item a::before { display: none !important; }
.dropdown-footer-item a:hover { color: var(--white) !important; }

.nav-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.nav-cta { background: var(--cyan); color: var(--navy) !important; font-weight: 700; font-size: 13.5px; padding: 10px 22px; border-radius: 6px; white-space: nowrap; flex-shrink: 0; transition: all 0.2s; text-decoration: none; }
.nav-cta:hover { background: var(--white); color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* Mobile Nav */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 2000; background: var(--navy); flex-direction: column; padding: 80px 28px 40px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-size: 17px; font-weight: 600; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: block; text-decoration: none; }
.mobile-nav a:hover { color: var(--cyan); }
.mobile-close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 28px; cursor: pointer; background: none; border: none; }
.mobile-sub a { font-size: 14px !important; padding-left: 20px !important; color: rgba(255,255,255,0.65) !important; }

/* ── Hero ─────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4a6e 100%); padding: 100px 0 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: -200px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(0,191,212,0.08) 0%, transparent 70%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,191,212,0.15); border: 1px solid rgba(0,191,212,0.35); color: var(--cyan); padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 20px; }
.hero-badge::before { content: '●'; font-size: 8px; }
.hero h1 { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--cyan); }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.08rem; margin-bottom: 14px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 32px; }
.hero-panel h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; }
.hero-service-list { display: flex; flex-direction: column; gap: 12px; }
.hero-service-item { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); transition: all 0.2s; }
.hero-service-item:hover { background: rgba(0,191,212,0.12); border-color: rgba(0,191,212,0.3); }
.hero-service-icon { width: 32px; height: 32px; background: var(--cyan); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.hero-service-name { color: var(--white); font-size: 14px; font-weight: 500; }
.hero-service-range { color: var(--cyan); font-size: 12px; font-weight: 600; margin-left: auto; }

/* ── Trust Bar ────────────────────────────────── */
.trust-bar { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.trust-items { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 28px; }
.trust-text strong { display: block; font-weight: 700; color: var(--navy); font-size: 15px; }
.trust-text span   { font-size: 13px; color: var(--muted); }

/* ── Page Sections ────────────────────────────── */
.page-section { padding: 80px 0; }
.page-section.bg-light { background: var(--light); }
.page-section.bg-navy  { background: var(--navy); }
.page-section.bg-white { background: var(--white); }

/* ── Service Cards ────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { border: 1px solid var(--border); border-top: 4px solid var(--cyan); border-radius: var(--radius); padding: 28px 24px; transition: all 0.25s; position: relative; background: var(--white); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-top-color: var(--navy); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.service-card ul { margin-top: 12px; }
.service-card ul li { font-size: 13px; color: var(--muted); padding: 4px 0; padding-left: 16px; position: relative; }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.service-coverage { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; font-size: 12px; font-weight: 600; color: var(--cyan); background: rgba(0,191,212,0.08); padding: 4px 10px; border-radius: 12px; }
.service-arrow { position: absolute; top: 24px; right: 24px; color: var(--cyan); font-size: 18px; }

/* ── Why Choose Us ────────────────────────────── */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; background: var(--white); padding: 16px 18px; border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.2s; }
.why-item:hover { box-shadow: var(--shadow); border-color: var(--cyan); }
.why-check { width: 28px; height: 28px; background: var(--cyan); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); font-weight: 700; font-size: 13px; }
.why-item-text strong { display: block; font-weight: 600; color: var(--navy); font-size: 14px; }
.why-item-text span   { font-size: 13px; color: var(--muted); }
.why-visual { background: var(--navy); border-radius: 16px; padding: 40px; }
.why-visual h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.why-visual p  { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }
.why-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-num-box { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px; }
.why-num-box .num { font-size: 2rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.why-num-box .lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── Coverage ─────────────────────────────────── */
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.coverage-box { background: rgba(255,255,255,0.05); padding: 36px 32px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; transition: background 0.2s; }
.coverage-box:hover { background: rgba(0,191,212,0.08); }
.coverage-box:last-child { border-right: none; }
.coverage-km   { font-size: 3.5rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.coverage-label{ color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 600; margin: 8px 0 6px; }
.coverage-desc { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ── Customer Cards ───────────────────────────── */
.customers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.customer-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: all 0.2s; background: var(--white); }
.customer-card:hover { box-shadow: var(--shadow); border-color: var(--cyan); }
.customer-card .icon { font-size: 36px; margin-bottom: 12px; }
.customer-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.customer-card p  { font-size: 13px; color: var(--muted); }

/* ── FAQ ──────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; }
.faq-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: flex; gap: 10px; align-items: flex-start; }
.faq-item h4::before { content: 'Q'; color: var(--cyan); font-size: 13px; background: rgba(0,191,212,0.12); padding: 2px 7px; border-radius: 4px; flex-shrink: 0; }
.faq-item p { font-size: 14px; color: var(--muted); }

/* ── CTA Band ─────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dk) 100%); padding: 64px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.cta-band p  { color: rgba(13,34,64,0.75); font-size: 15px; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Careers ──────────────────────────────────── */
.careers-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.job-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; transition: all 0.2s; background: var(--white); }
.job-card:hover { box-shadow: var(--shadow); border-color: var(--cyan); }
.job-tag { display: inline-block; background: rgba(0,191,212,0.1); color: var(--cyan); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 12px; margin-bottom: 10px; }
.job-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.job-card p  { font-size: 13.5px; color: var(--muted); }
.careers-cta { background: var(--navy); border-radius: 16px; padding: 36px; }
.careers-cta h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.careers-cta p  { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }
.careers-cta ul li { color: rgba(255,255,255,0.8); font-size: 14px; padding: 6px 0 6px 22px; position: relative; }
.careers-cta ul li::before { content: '→'; position: absolute; left: 0; color: var(--cyan); }

/* ── Contact ──────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-box { background: var(--light); border-radius: 10px; padding: 20px; display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.contact-info-box .lbl { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.contact-info-box .val { font-weight: 600; color: var(--navy); font-size: 15px; }
.contact-form-wrap { background: var(--light); border-radius: 12px; padding: 36px; }
.contact-form-wrap h3 { font-size: 1.1rem; margin-bottom: 24px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; color: var(--text); background: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px rgba(0,191,212,0.15); }
.form-group textarea { height: 130px; resize: vertical; }
.wpcf7-form input[type="submit"] { width: 100%; background: var(--cyan); color: var(--white); border: none; padding: 13px; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.wpcf7-form input[type="submit"]:hover { background: var(--cyan-dk); }
.wpcf7 .wpcf7-text, .wpcf7 .wpcf7-email, .wpcf7 .wpcf7-tel, .wpcf7 .wpcf7-select, .wpcf7 .wpcf7-textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; margin-bottom: 14px; }

/* ── Avail dot ────────────────────────────────── */
.avail-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; display: inline-block; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── Inner Page ───────────────────────────────── */
.inner-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 60px 0; border-bottom: 4px solid var(--cyan); }
.inner-hero h1 { color: var(--white); font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.inner-hero p  { color: rgba(255,255,255,0.75); font-size: 1rem; }
.breadcrumb    { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 12px; }
.breadcrumb a  { color: var(--cyan); }
.page-content  { padding: 60px 0 80px; }
.page-content .entry-content h2 { font-size: 1.6rem; margin: 36px 0 14px; border-left: 4px solid var(--cyan); padding-left: 14px; }
.page-content .entry-content h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--navy-mid); }
.page-content .entry-content p  { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.page-content .entry-content ul { margin: 12px 0 20px 20px; }
.page-content .entry-content ul li { color: var(--muted); margin-bottom: 8px; list-style: disc; }
.page-content .entry-content ol { margin: 12px 0 20px 20px; }
.page-content .entry-content ol li { color: var(--muted); margin-bottom: 8px; }
.teltd-infobox { background: var(--light); border-left: 5px solid var(--cyan); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 24px 0; }
.teltd-coverage { background: var(--navy); color: var(--white); border-radius: 8px; padding: 20px 24px; margin: 24px 0; }
.teltd-coverage strong { color: var(--cyan); font-size: 1.4rem; }
.teltd-check ul { list-style: none; margin-left: 0; }
.teltd-check ul li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid var(--border); color: var(--muted); }
.teltd-check ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.teltd-check ul li:last-child { border-bottom: none; }
.teltd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 24px 0; }
.teltd-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--cyan); border-radius: var(--radius); padding: 24px; transition: all 0.2s; }
.teltd-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.teltd-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.teltd-card p  { color: var(--muted); font-size: 13.5px; }
.teltd-card a  { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 13px; color: var(--cyan); }

/* ── Footer ───────────────────────────────────── */
#site-footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 14px; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--cyan); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.15s; text-decoration: none; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact-item { margin-bottom: 12px; }
.footer-contact-item .lbl { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-contact-item .val { color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-contact-item .val a { color: var(--cyan); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; }
  .careers-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .primary-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inner-hero h1 { font-size: 1.6rem; }
}
