/* Blue Electrics — Matching bluetelecoms.com design language */
/* Navy/blue palette, Inter font, modern clean layout */

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

:root {
  /* Core palette — matching bluetelecoms.com */
  --navy: #0a1628;
  --navy-light: #121f36;
  --navy-mid: #0f2847;
  --blue: #0066ff;
  --blue-hover: #1a75ff;
  --blue-light: #3b82f6;
  --blue-glow: #60a5fa;
  --teal: #06b6d4;
  --white: #ffffff;

  /* Grays */
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  /* Accents */
  --green: #10b981;
  --orange: #f59e0b;

  /* Layout */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-hover); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER ===== */
.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(10, 22, 40, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 36px; width: auto; }

/* Navigation */
.nav-list { display: flex; list-style: none; align-items: center; gap: 0; }
.nav-item > a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.nav-item > a:hover { color: var(--white); }
.nav-cta > a {
  background: var(--blue);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-cta > a:hover { background: var(--blue-hover); }
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  min-width: 240px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 0.55rem 1.4rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.dropdown li a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO WITH VIDEO — transparent overlay behind text only ===== */
.hero-video {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  opacity: 0.85;
}
/* NO full overlay — video shows through */
.hero-video__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
  padding: 5rem 0;
}
/* Transparent panel behind text only */
.hero-video__panel {
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-video__badge {
  display: inline-block;
  background: rgba(0,102,255,0.2);
  color: var(--blue-glow);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0,102,255,0.3);
  letter-spacing: 0.03em;
}
.hero-video h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-video p {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,102,255,0.3);
}
.btn-primary:hover {
  background: var(--blue-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,102,255,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy-light { background: var(--navy-light); color: var(--white); }
.section-light { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.section-navy .section-header h2,
.section-navy-light .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}
.section-navy .section-header p,
.section-navy-light .section-header p { color: var(--gray-400); }

/* ===== ABOUT ROW ===== */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-row img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-row h2 {
  font-size: 2rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-row p { margin-bottom: 1rem; color: var(--gray-600); }
.about-specialties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.specialty-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.specialty-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 1.75rem; }
.service-card-body h3 {
  font-size: 1.15rem;
  color: var(--gray-800);
  margin-bottom: 0.3rem;
}
.service-card-body .badge {
  display: inline-block;
  background: rgba(0,102,255,0.08);
  color: var(--blue);
  padding: 0.2rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.service-card-body p { font-size: 0.9rem; color: var(--gray-500); }
.service-card-body .card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ===== VIDEO GALLERY ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.video-card iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-2px); }
.testimonial-card .stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-style: normal;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.65;
}
.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card .reviewer img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .reviewer strong { color: var(--gray-800); display: block; font-size: 0.9rem; }
.testimonial-card .reviewer small { color: var(--gray-500); font-size: 0.8rem; }

/* ===== WHY CHOOSE US / FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-card { text-align: center; padding: 2rem 1.25rem; }
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: rgba(0,102,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}
.section-navy .feature-icon { background: rgba(255,255,255,0.08); }
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}
.section-navy .feature-card h3 { color: var(--white); }
.feature-card p { font-size: 0.88rem; color: var(--gray-500); }
.section-navy .feature-card p { color: var(--gray-400); }

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition);
  border: 1px solid var(--gray-200);
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-body time {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.blog-card-body h3 { font-size: 1.05rem; margin: 0.5rem 0; color: var(--gray-800); line-height: 1.4; }
.blog-card-body h3 a { color: var(--gray-800); }
.blog-card-body h3 a:hover { color: var(--blue); }
.blog-card-body p { font-size: 0.88rem; color: var(--gray-500); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 0.75rem; position: relative; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1.05rem; color: var(--gray-400); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }

/* ===== PAGE CONTENT ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.page-header h1 { font-size: 2.4rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.page-subtitle { font-size: 1.05rem; color: var(--gray-400); }
.page-content { padding: 4rem 0; }
.page-content h2 { font-size: 1.8rem; color: var(--gray-800); margin: 2rem 0 1rem; letter-spacing: -0.01em; }
.page-content h3 { font-size: 1.3rem; color: var(--gray-800); margin: 1.5rem 0 0.75rem; }
.page-content p { margin-bottom: 1rem; color: var(--gray-600); }
.page-content ul, .page-content ol { margin: 1rem 0 1rem 1.5rem; color: var(--gray-600); }
.page-content li { margin-bottom: 0.4rem; }
.page-content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* Blog post */
.post-header { padding: 3rem 0; background: var(--gray-50); }
.post-hero-img { border-radius: var(--radius-lg); margin-bottom: 2rem; max-height: 420px; object-fit: cover; width: 100%; }
.post-header h1 { font-size: 2.2rem; color: var(--gray-800); letter-spacing: -0.02em; }
.post-meta { color: var(--gray-500); margin-top: 0.5rem; font-size: 0.9rem; }
.post-meta a { color: var(--blue); }
.post-content { padding: 3rem 0; max-width: 800px; }
.post-content h2 { font-size: 1.6rem; color: var(--gray-800); margin: 2rem 0 1rem; }
.post-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.75rem; }
.post-content p { margin-bottom: 1rem; color: var(--gray-600); }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-footer { padding: 2rem 0 4rem; border-top: 1px solid var(--gray-200); margin-top: 2rem; }
.back-link { font-weight: 600; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; font-weight: 600; }
.footer-col p { font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-col a { color: var(--gray-400); }
.footer-col a:hover { color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col li a { font-size: 0.88rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: var(--gray-500);
}
.footer-accreditations { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-accreditations .badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--gray-400);
  white-space: nowrap;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .about-row { gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.active { display: block; }
  .nav-list { flex-direction: column; }
  .nav-item > a { padding: 0.75rem 1rem; }
  .dropdown { position: static; box-shadow: none; padding-left: 1rem; display: none; border: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hero-video { min-height: 60vh; }
  .hero-video h1 { font-size: 2rem; }
  .hero-video__panel { padding: 2rem; }
  .about-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
  .hero-landing__grid { grid-template-columns: 1fr; }
  .hero-landing__image { display: none; }
  .hero-landing h1 { font-size: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .link-cards-grid { grid-template-columns: 1fr; }
  .area-tags { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .area-coverage-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}

/* ===== LANDING PAGE HERO ===== */
.hero-landing {
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-landing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-landing__content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  background: rgba(0,102,255,0.2);
  color: var(--blue-glow);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0,102,255,0.3);
  letter-spacing: 0.03em;
}
.hero-landing h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
}
.hero-stat span {
  font-size: 0.82rem;
  color: var(--gray-400);
}
.hero-landing__image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
  height: auto;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  background: var(--white);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.trust-item img {
  border-radius: 8px;
  object-fit: contain;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}
.process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(0,102,255,0.3);
}
.process-step h3 {
  font-size: 1.05rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FEATURED TESTIMONIAL ===== */
.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}
.testimonial-featured__stars {
  color: #f5a623;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 1.25rem;
}
.testimonial-featured blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-featured__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.testimonial-featured__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-featured__author strong {
  display: block;
  color: var(--gray-800);
  font-size: 0.95rem;
}
.testimonial-featured__author span {
  display: block;
  color: var(--gray-500);
  font-size: 0.82rem;
}

/* ===== TRUST CARDS (navy section) ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition);
}
.trust-card:hover { transform: translateY(-3px); }
.trust-card img {
  margin: 0 auto 1rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px;
}
.trust-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}
.trust-card p {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
a.product-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
a.product-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* Logo band — brand-coloured header where the logo sits */
.product-card .product-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 1.25rem 2rem;
  background: var(--brand-bg, #f8fafc);
}
.product-card .product-logo img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: var(--brand-logo-filter, none);
}

/* Brand colour modifiers — applied to individual cards.
   Logos now have transparent backgrounds (stripped/vector) so we just
   pick a background that complements each brand's logo colours. */
.product-card--tesla     { --brand-bg: #e31937; --brand-logo-filter: brightness(0) invert(1); } /* Tesla red + white logo via filter */
.product-card--sigenergy { --brand-bg: #1a1a1a; } /* SigEnergy: white wordmark + red icon on near-black */
.product-card--sunsynk   { --brand-bg: #0a2540; } /* dark navy; yellow Sunsynk logo pops */
.product-card--ecoflow   { --brand-bg: #0a2540; --brand-logo-filter: brightness(0) invert(1); } /* EcoFlow: dark logo → white on navy */
.product-card--solis     { --brand-bg: #ffffff; border-bottom: 1px solid var(--gray-200); } /* Orange Solis logo on clean white */
.product-card--aiko      { --brand-bg: #0a2540; --brand-logo-filter: brightness(0) invert(1); } /* dark logo → white on navy */
.product-card--jasolar   { --brand-bg: #e30613; --brand-logo-filter: brightness(0) invert(1); } /* JA Solar red; wordmark white */
.product-card--fogstar   { --brand-bg: #0b0f19; } /* Fogstar's native dark theme; white/silver wordmark */
.product-card--octopus   { --brand-bg: #100030; } /* Octopus deep purple */

.product-card h3 {
  font-size: 1.05rem;
  color: var(--gray-800);
  margin: 1.25rem 1.25rem 0.5rem;
}
.product-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  padding: 0 1.25rem 1.5rem;
  line-height: 1.6;
  flex: 1;
}

/* Legacy: for cards that still use bare <img> (product-photo style) */
.product-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
/* Dark variant for navy sections */
.product-card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.product-card--dark h3 { color: var(--white); }
.product-card--dark p { color: var(--gray-400); }

/* ===== LINK CARDS ===== */
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.link-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  color: inherit;
}
.link-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.link-card h3 {
  font-size: 1.05rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.link-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== AREA TAGS ===== */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.area-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--gray-300);
  font-weight: 500;
  transition: all var(--transition);
}
.area-tag:hover {
  background: rgba(0,102,255,0.2);
  border-color: rgba(0,102,255,0.4);
  color: var(--white);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.8rem;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}
.contact-methods {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-method__icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(0,102,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method h3 {
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.contact-method p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0.15rem;
}
.contact-link-big {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue) !important;
}
.contact-note {
  font-size: 0.82rem !important;
  color: var(--gray-400) !important;
}
.opening-hours {
  margin-top: 0.25rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  max-width: 280px;
}
.hours-row strong {
  color: var(--gray-800);
}
.contact-form-wrapper h2 {
  font-size: 1.8rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.contact-form-wrapper > p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.contact-form-container {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 2rem;
}
.form-fallback {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gray-400);
  text-align: center;
}

/* ===== AREA COVERAGE GRID ===== */
.area-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area-coverage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.area-coverage-card h3 {
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.area-coverage-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .hero-landing__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .link-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .area-coverage-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section Subtitle ---------- */
.section-subtitle {
  display: block;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* ---------- Team Cards (Initial Avatars) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  letter-spacing: 0.02em;
}
.team-card h3 {
  font-size: 1.15rem;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}
.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ===== ACCREDITATION PAGES ===== */

/* Accreditation Hero */
.accreditation-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4rem 0;
}
.accreditation-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.accreditation-hero__content {
  flex: 1;
}
.accreditation-hero__content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.accreditation-hero__content p {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.6;
}
.accreditation-hero__logo {
  flex-shrink: 0;
}
.accreditation-hero__logo img {
  width: 150px;
  height: auto;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Accreditation Content Layout (main + sidebar) */
.accreditation-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.accreditation-main h2 {
  font-size: 1.8rem;
  color: var(--gray-800);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.accreditation-main h2:first-child {
  margin-top: 0;
}
.accreditation-main h3 {
  font-size: 1.25rem;
  color: var(--gray-800);
  margin: 1.5rem 0 0.75rem;
}
.accreditation-main p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.accreditation-main ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--gray-600);
}
.accreditation-main li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* Benefit Cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.benefit-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition);
}
.benefit-card:hover {
  transform: translateY(-2px);
}
.benefit-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}
.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Accreditation Sidebar */
.accreditation-sidebar {
  position: sticky;
  top: 100px;
}
.accreditation-sidebar__card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}
.accreditation-sidebar__card h3 {
  font-size: 1.05rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.accreditation-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accreditation-sidebar__list li {
  margin-bottom: 0.75rem;
}
.accreditation-sidebar__list li:last-child {
  margin-bottom: 0;
}
.accreditation-sidebar__list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.accreditation-sidebar__list a:hover {
  background: var(--white);
  color: var(--blue);
}
.accreditation-sidebar__list img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
}
.accreditation-sidebar__cta {
  background: var(--navy);
  border-color: var(--navy);
}
.accreditation-sidebar__cta h3 {
  color: var(--white);
}
.accreditation-sidebar__cta p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.accreditation-sidebar__cta a {
  color: var(--blue-glow);
}

/* Accreditation Hub Hero */
.accreditation-hub-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0;
}
.accreditation-hub-hero .section-header h1 {
  font-size: 2.6rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.accreditation-hub-hero .section-header h2 {
  color: var(--white);
}
.accreditation-hub-hero .section-header p {
  color: var(--gray-300);
  max-width: 700px;
}

/* Accreditation Grid (Hub Page) */
.accreditation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.accreditation-grid__card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.accreditation-grid__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  color: inherit;
}
.accreditation-grid__logo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accreditation-grid__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.accreditation-grid__body h2 {
  font-size: 1.3rem;
  color: var(--gray-800);
  margin-bottom: 0.15rem;
}
.accreditation-grid__subtitle {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.75rem !important;
}
.accreditation-grid__body p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.accreditation-grid__body .card-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
}

/* Accreditation Stats */
.accreditation-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.accreditation-stat {
  padding: 1.5rem;
}
.accreditation-stat__number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.accreditation-stat__label {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* Responsive — Accreditation Pages */
@media (max-width: 1024px) {
  .accreditation-content {
    grid-template-columns: 1fr;
  }
  .accreditation-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .accreditation-sidebar__card {
    margin-bottom: 0;
  }
  .benefit-cards {
    grid-template-columns: 1fr 1fr;
  }
  .accreditation-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .accreditation-hero__inner {
    flex-direction: column;
    text-align: center;
  }
  .accreditation-hero__content h1 {
    font-size: 1.8rem;
  }
  .accreditation-hero__logo img {
    width: 120px;
  }
  .benefit-cards {
    grid-template-columns: 1fr;
  }
  .accreditation-sidebar {
    grid-template-columns: 1fr;
  }
  .accreditation-grid__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .accreditation-stats {
    grid-template-columns: 1fr 1fr;
  }
  .accreditation-stat__number {
    font-size: 1.8rem;
  }
}

/* ========================================================================
   Contact form (POSTs to Cloudflare Pages Function /api/contact)
   ======================================================================== */
.contact-form {
  display: grid;
  gap: var(--space-md, 1rem);
  max-width: 560px;
}
.contact-form .form-field {
  display: grid;
  gap: 0.35rem;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary, #0f172a);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: inherit;
  background: var(--white, #fff);
  border: 1px solid var(--gray-300, #cbd5e1);
  border-radius: var(--radius, 8px);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-500, #3b82f6);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form .btn {
  justify-self: start;
}
.contact-form .form-fallback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600, #475569);
}
.contact-form .form-message {
  padding: 0.8rem 1rem;
  border-radius: var(--radius, 8px);
  font-weight: 500;
}
.contact-form .form-message.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.contact-form .form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.form-honeypot {
  /* visually hidden but technically present for bots */
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========================================================================
   Manufacturer cards — richer variant used on the manufacturers landing.
   Product image on top, logo band below, then content + CTA.
   ======================================================================== */
.category-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.section-navy .category-label { color: var(--blue-glow); }

.manufacturers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .manufacturers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.manufacturer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.manufacturer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Product image band */
.manufacturer-card__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.manufacturer-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}

/* Logo band — coloured, using --brand-bg from .product-card--<slug> modifiers */
.manufacturer-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 0.85rem 1.5rem;
  background: var(--brand-bg, #f8fafc);
}
.manufacturer-card__logo img {
  max-height: 60%;
  max-width: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: var(--brand-logo-filter, none);
}

/* Logo-only fallback: larger, no product photo above */
.manufacturer-card--logo-only .manufacturer-card__logo {
  height: 200px;
}
.manufacturer-card--logo-only .manufacturer-card__logo img {
  max-height: 60%;
  max-width: 78%;
}

/* Body */
.manufacturer-card__body {
  padding: 1.5rem 1.5rem 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.manufacturer-card__body h3 {
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--gray-800);
  letter-spacing: -0.01em;
}
.manufacturer-card__tagline {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0 0 1.1rem;
  line-height: 1.55;
}
.manufacturer-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.manufacturer-card__specs li {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--gray-50);
  color: var(--gray-600, #475569);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  letter-spacing: 0.01em;
}
.manufacturer-card__cta {
  margin-top: auto;
  padding: 0 1.5rem 1.5rem;
}
.manufacturer-card__cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue);
  text-decoration: none;
}
.manufacturer-card__cta a:hover { color: var(--blue-hover); }
.manufacturer-card__cta a::after {
  content: "→";
  transition: transform var(--transition);
}
.manufacturer-card__cta a:hover::after { transform: translateX(3px); }

/* Trust lockup — accreditation badge row for the closing "why us" block */
.trust-lockup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
  align-items: center;
  margin: 0 auto 1.5rem;
  max-width: 720px;
}
.trust-lockup img {
  height: 64px;
  width: auto;
  opacity: 0.95;
}

/* Flagship products block on sub-pages */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.flagship-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.flagship-card h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--gray-800);
}
.flagship-card__spec {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 0.6rem;
  letter-spacing: 0.01em;
}
.flagship-card p {
  font-size: 0.9rem;
  color: var(--gray-600, #475569);
  line-height: 1.55;
  margin: 0;
}

/* ========================================================================
   Accessibility — focus styles, skip link, reduced motion
   ======================================================================== */
:focus-visible {
  outline: 2px solid var(--blue-glow, #3b82f6);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Remove default browser focus rings only when we have :focus-visible */
:focus:not(:focus-visible) {
  outline: none;
}

/* Skip link — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 1000;
  background: var(--navy, #0f172a);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--blue-glow, #3b82f6);
  outline-offset: 2px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-video__bg iframe,
  .hero-video iframe {
    display: none !important;
  }
  .hero-video {
    background-size: cover;
    background-position: center;
  }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { margin: 0 0.4rem; color: var(--gray-400); }

/* ---------- Area Pages ---------- */
.area-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  background: var(--gray-50, #f8fafc);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}
.area-summary__fact { display: flex; flex-direction: column; }
.area-summary__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}
.area-summary__value {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.area-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.area-related__card {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md, 0.5rem);
  text-decoration: none;
  color: var(--gray-800);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.area-related__card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.area-related__card strong { display: block; color: var(--primary); font-size: 1.05rem; }
.area-related__card small { color: var(--gray-500); font-size: 0.8rem; }

/* Areas hub index */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.area-card {
  display: block;
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.area-card h3 { color: var(--primary); margin-bottom: 0.25rem; font-size: 1.2rem; }
.area-card__meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}
.area-card__landmark {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.area-card__cta {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* ---------- Page Hero (service / area / about pages) ---------- */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 92, 180, 0.85) 0%,
    rgba(4, 107, 210, 0.75) 50%,
    rgba(4, 47, 92, 0.80) 100%
  );
  z-index: 1;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 900px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  max-width: 720px;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
}
.page-hero .breadcrumb a:hover { text-decoration-color: var(--white); }
.page-hero .breadcrumb span[aria-hidden] { color: rgba(255,255,255,0.6); }

@media (max-width: 640px) {
  .page-hero { min-height: 260px; }
  .page-hero__inner { padding: 2.5rem 1rem; }
}

/* ---------- Clickable product cards (EV chargers landing) ---------- */
.product-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.product-card--link:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.product-card--link { padding-bottom: 1.75rem; }
.product-card--link h3 { color: var(--gray-800); }
.product-card--link p { color: var(--gray-600); flex-grow: 1; }
.product-card__cta {
  display: inline-block;
  margin: 1.25rem auto 0;
  align-self: center;
  padding: 0.65rem 1.5rem;
  background: var(--blue, var(--primary));
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm, 0.5rem);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(4, 107, 210, 0.25);
}
.product-card--link:hover .product-card__cta {
  background: var(--blue-hover, var(--navy-mid));
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(4, 107, 210, 0.4);
}

/* ---------- Install photo figures ---------- */
.install-photo {
  margin: 2rem 0;
  padding: 0;
  border-radius: var(--radius-lg, 0.75rem);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-50, #f8fafc);
}
.install-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: cover;
}
.install-photo figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  font-style: italic;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
