/* =============================================
   ELECTRICIAN SIDCUP — SHARED STYLESHEET
   ============================================= */

:root {
  --red: #e10600;
  --red-dark: #c00500;
  --bg: #0f0f0f;
  --bg2: #111111;
  --bg3: #161616;
  --bg4: #1a1a1a;
  --border: #1e1e1e;
  --border2: #2a2a2a;
  --white: #ffffff;
  --text: #cccccc;
  --muted: #888888;
  --dimmed: #555555;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f0f0f;
  border-bottom: 3px solid var(--red);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
  cursor: pointer;
}

.logo-main {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-red { color: var(--red); }

.logo-sub {
  font-size: 10px;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 2px;
}

.nav-link {
  color: #bbb;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 10px;
  cursor: pointer;
  transition: color 0.18s;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: var(--font);
}

.nav-link:hover,
.nav-link.active { color: #fff; }

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle svg {
  width: 11px;
  height: 11px;
  transition: transform 0.18s;
  flex-shrink: 0;
}

.dropdown-toggle.open svg { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border-top: 2px solid var(--red);
  min-width: 230px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.dropdown-menu.open { display: block; }

.dropdown-menu a {
  display: block;
  padding: 11px 16px;
  border-bottom: 1px solid #1c1c1c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #bbb;
  transition: color 0.15s, background 0.15s;
}

.dropdown-menu a:hover { color: #fff; background: #1a1a1a; }

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.18s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-whatsapp-nav:hover { background: var(--red-dark); color: #fff; }

.btn-whatsapp-nav svg { width: 15px; height: 15px; flex-shrink: 0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #111;
  border-top: 1px solid #1e1e1e;
}

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

.nav-mobile a,
.nav-mobile .mobile-section-label {
  display: block;
  padding: 14px 24px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #bbb;
  transition: color 0.15s;
}

.nav-mobile a:hover { color: #fff; }

.nav-mobile .mobile-section-label {
  color: #555;
  font-size: 11px;
  padding-top: 10px;
  padding-bottom: 6px;
}

.nav-mobile .mobile-sub a {
  padding-left: 40px;
  font-size: 12px;
}

.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 20px;
}

.btn-call-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.btn-wa-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border: 1px solid #2a2a2a;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: background 0.18s;
  text-decoration: none;
}

.btn-red:hover { background: var(--red-dark); color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.18s;
  text-decoration: none;
}

.btn-outline:hover { border-color: #fff; color: #fff; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── HERO ── */
.hero {
  background: var(--bg);
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero h1 .red { color: var(--red); }

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--dimmed);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Hero side panel */
.hero-panel {
  background: var(--bg2);
  border: 1px solid var(--border2);
  overflow: hidden;
}

.hero-panel-header {
  background: var(--bg3);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.hero-panel-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.hero-panel-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-cta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: border-color 0.18s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hero-cta-item:hover { border-color: var(--red); color: inherit; }

.hero-cta-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.hero-cta-icon svg { width: 18px; height: 18px; }

.hero-cta-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.hero-cta-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.trust-item:last-child { border-right: none; }

.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.9; }

/* ── SECTION BADGE ── */
.section-badge {
  display: inline-block;
  background: rgba(225,6,0,0.12);
  border: 1px solid rgba(225,6,0,0.35);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 14px;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.section-dark { background: var(--bg2); }
.section-darker { background: #090909; }

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.section-link:hover { opacity: 0.8; color: var(--red); }

/* ── SERVICE CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  color: inherit;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(225,6,0,0.1);
  border: 1px solid rgba(225,6,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
}

.service-card-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 60px 0;
}

.cta-banner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 560px;
}

.cta-banner .btn-red {
  background: #fff;
  color: var(--red);
}

.cta-banner .btn-red:hover {
  background: #f0f0f0;
  color: var(--red);
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.6);
}

.cta-banner .btn-outline:hover { border-color: #fff; }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover { border-color: var(--red); color: inherit; }

.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  background: rgba(225,6,0,0.14);
  border: 1px solid rgba(225,6,0,0.3);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-card-date {
  font-size: 11px;
  color: var(--dimmed);
}

.blog-card-more {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── INFO BOXES ── */
.info-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px;
}

.info-box h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.info-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.info-box ul li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.info-box ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── CHECKLIST ── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.checklist li::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TRUSTINDEX SECTION ── */
.trustindex-section {
  background: #090909;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.trustindex-container {
  background: var(--bg2);
  border: 1px solid var(--border2);
  padding: 48px 32px;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.trustindex-placeholder-text {
  font-size: 13px;
  color: var(--dimmed);
}

/* ── CONTACT FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: #fff;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font);
  width: 100%;
  transition: border-color 0.18s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── AREA TAGS ── */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.area-tag {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.area-tag:hover { border-color: var(--red); color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 12px;
  color: var(--dimmed);
}

.breadcrumb ol li::after { content: '›'; margin-left: 6px; }
.breadcrumb ol li:last-child::after { content: ''; }
.breadcrumb ol li a { color: var(--muted); transition: color 0.15s; }
.breadcrumb ol li a:hover { color: #fff; }
.breadcrumb ol li:last-child { color: var(--text); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: #090909;
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── GRID UTILITIES ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 24px;
}

.grid-2-fixed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── CONTENT PROSE ── */
.prose h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

.prose h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 8px;
}

.prose p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.prose ul {
  list-style: none;
  margin-bottom: 18px;
}

.prose ul li {
  font-size: 14px;
  color: var(--text);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.55;
}

.prose ul li::before {
  content: '›';
  color: var(--red);
  font-weight: 900;
  position: absolute;
  left: 0;
}

.prose strong { color: #fff; font-weight: 700; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-q::before {
  content: 'Q';
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 7px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 32px;
}

/* ── CONTACT BOXES ── */
.contact-box {
  background: var(--bg2);
  border: 1px solid var(--border2);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.18s;
  text-decoration: none;
  color: inherit;
}

.contact-box:hover { border-color: var(--red); color: inherit; }

.contact-box-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.contact-box-icon svg { width: 22px; height: 22px; }

.contact-box-label {
  font-size: 11px;
  color: var(--dimmed);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}

.contact-box-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.contact-box-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── FOOTER ── */
.footer {
  background: #080808;
  border-top: 3px solid var(--red);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-main { font-size: 20px; }

.footer-brand p {
  font-size: 13px;
  color: var(--dimmed);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--dimmed);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--dimmed);
}

.footer-bottom a { color: var(--red); }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: background 0.18s, transform 0.18s;
  text-decoration: none;
}

.float-wa:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }
.float-wa svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── BLOG POST ── */
.blog-post-content {
  max-width: 780px;
}

.blog-post-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 36px 0 12px;
}

.blog-post-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
}

.blog-post-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.blog-post-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.blog-post-content ul li {
  font-size: 14px;
  color: var(--text);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.6;
}

.blog-post-content ul li::before {
  content: '›';
  color: var(--red);
  font-weight: 900;
  position: absolute;
  left: 0;
}

.blog-cta-box {
  background: var(--red);
  padding: 32px;
  margin: 40px 0;
}

.blog-cta-box h3 {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.blog-cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-cta-box .btn-red {
  background: #fff;
  color: var(--red);
}

.blog-cta-box .btn-red:hover { background: #f0f0f0; }

/* ── EICR CODE CARDS ── */
.eicr-codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.eicr-code-card {
  padding: 20px 22px;
  border: 1px solid;
}

.eicr-code-badge {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.eicr-code-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.eicr-code-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #ccc;
}

.eicr-c1 { background: rgba(225,6,0,0.12); border-color: rgba(225,6,0,0.4); }
.eicr-c1 .eicr-code-badge { color: #e10600; }
.eicr-c2 { background: rgba(251,146,60,0.1); border-color: rgba(251,146,60,0.4); }
.eicr-c2 .eicr-code-badge { color: #fb923c; }
.eicr-c3 { background: rgba(250,204,21,0.08); border-color: rgba(250,204,21,0.3); }
.eicr-c3 .eicr-code-badge { color: #facc15; }
.eicr-fi { background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.3); }
.eicr-fi .eicr-code-badge { color: #818cf8; }

/* ── RED CTA BANNER ── */
.cta-banner-red {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}

.cta-banner-red h2 {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-banner-red p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.cta-banner-red .btn-red {
  background: #fff;
  color: var(--red);
}

.cta-banner-red .btn-red:hover { background: #f0f0f0; }

.cta-banner-red .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.cta-banner-red .btn-outline:hover { border-color: #fff; }

/* ── WHY CHOOSE US ── */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.why-choose-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--border2);
}

.why-choose-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 32px;
}

.why-choose-text h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.why-choose-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CHECK ITEMS ── */
.check-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border2);
}

.check-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.check-item-icon svg { width: 18px; height: 18px; }

.check-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.check-item-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FEATURE CARDS ── */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px;
  background: var(--bg2);
  border: 1px solid var(--border2);
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--red);
}

.feature-card-icon svg { width: 20px; height: 20px; }

.feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── NUMBERED STEPS ── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.step-row {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--border2);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SIGNS CARDS ── */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.sign-card {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--border2);
}

.sign-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.sign-icon svg { width: 18px; height: 18px; }

.sign-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.sign-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .btn-whatsapp-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-fixed { grid-template-columns: 1fr; }
  .seo-text-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 34px; }
  .trust-strip-inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .trust-item:last-child { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .float-wa span { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn-red,
  .btn-group .btn-outline { width: 100%; justify-content: center; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 48px 0; }
}
