/* ============================================================
   ELETRICISTA PARTICULAR RJ — Global Stylesheet
   Versão 2026 | SEO + Performance + UX
   ============================================================ */

/* ── Fontes ── */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Nunito:wght@300;400;600;700;800;900&display=swap');

/* ── Custom Properties ── */
:root {
  --blue-deep:   #060f1e;
  --blue-dark:   #0a1628;
  --blue-nav:    #0d1f3c;
  --blue-mid:    #0e3a7d;
  --blue-main:   #1565c0;
  --blue-bright: #1e88e5;
  --blue-light:  #42a5f5;
  --blue-glow:   #64b5f6;
  --yellow:      #ffd600;
  --green:       #25d366;
  --green-dark:  #1aab52;
  --white:       #ffffff;
  --off-white:   #f0f4ff;
  --text-dark:   #0d1b2a;
  --text-gray:   #455a72;
  --text-light:  rgba(255,255,255,0.7);
  --border:      rgba(30,136,229,0.2);
  --border-h:    rgba(30,136,229,0.5);
  --card-bg:     rgba(13,33,68,0.65);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --shadow-glow: 0 0 30px rgba(21,101,192,0.2);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--blue-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Canvas Sparks ── */
#sparks-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,15,30,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 14px rgba(21,101,192,0.5);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--white);
}
.logo-text span {
  display: block;
  color: var(--blue-light);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav.main-nav { display: flex; gap: 6px; align-items: center; }
nav.main-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
nav.main-nav a:hover { color: var(--white); background: rgba(30,136,229,0.1); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.45) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(6,15,30,0.98);
  position: fixed;
  top: 68px; left: 0; right: 0;
  padding: 16px 5%;
  z-index: 999;
  border-bottom: 1px solid var(--border);
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--blue-light); }
.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  z-index: 1;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 65% at 50% -5%, rgba(21,101,192,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(14,58,125,0.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,136,229,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,136,229,0.06) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridPulse 5s ease-in-out infinite alternate;
}
@keyframes gridPulse { 0%{opacity:.3} 100%{opacity:.9} }

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,101,192,0.2);
  border: 1px solid rgba(30,136,229,0.45);
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 26px;
  animation: fadeDown .8s ease both;
}
.hero-badge::before { content: '⚡'; animation: blink 1.8s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

h1.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
  animation: fadeDown .9s .1s ease both;
}
h1.hero-title em {
  font-style: normal;
  color: var(--blue-light);
  position: relative;
}
h1.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--text-light);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 38px;
  animation: fadeDown 1s .2s ease both;
}

.hero-ctas {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeDown 1s .35s ease both;
}

.hero-stats {
  display: flex; justify-content: center;
  gap: 44px; margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeUp 1s .55s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--blue-light); line-height: 1;
  text-shadow: 0 0 24px rgba(100,181,246,0.65);
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all .25s;
  border: none; cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border-h);
}
.btn-secondary:hover {
  border-color: var(--blue-light);
  background: rgba(30,136,229,0.12);
  transform: translateY(-3px);
}
.btn-blue {
  background: var(--blue-main);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21,101,192,0.4);
}
.btn-blue:hover {
  background: var(--blue-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(21,101,192,0.55);
}

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }
.section-light { background: var(--off-white); color: var(--text-dark); }
.section-dark   { background: #0a1930; }
.section-deeper { background: var(--blue-deep); }
.section-mid    { background: #0d2040; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 5%;
}
.container-sm { max-width: 820px; margin: 0 auto; padding: 80px 5%; }

.section-tag {
  display: inline-block;
  background: rgba(21,101,192,0.12);
  border: 1px solid rgba(21,101,192,0.38);
  border-radius: 4px;
  padding: 4px 14px;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
}
.section-light .section-tag { background: rgba(21,101,192,0.07); border-color: rgba(21,101,192,0.28); color: var(--blue-mid); }

h2.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
}
.section-light h2.section-title { color: var(--text-dark); }

.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 640px;
}
.section-light .section-desc { color: var(--text-gray); }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-main), var(--blue-light));
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--border-h); box-shadow: 0 18px 45px rgba(14,58,125,0.55); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(21,101,192,0.28), rgba(14,58,125,0.45));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 18px;
  border: 1px solid rgba(30,136,229,0.22);
}
h3.service-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.18rem; font-weight: 700;
  margin-bottom: 10px; color: var(--white);
}
.service-desc { font-size: 0.87rem; line-height: 1.65; color: rgba(255,255,255,0.58); }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-light); font-size: 0.82rem; font-weight: 700;
  margin-top: 14px; text-decoration: none;
  transition: gap .2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-mid));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(21,101,192,0.35);
}
.why-list-text strong { display: block; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; font-size: 0.95rem; }
.why-list-text p { font-size: 0.87rem; color: var(--text-gray); line-height: 1.65; }

.why-visual-card {
  background: linear-gradient(145deg, #0a1628, #060f1e);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), var(--shadow-glow);
}
.why-big-icon { font-size: 5rem; line-height: 1; filter: drop-shadow(0 0 22px rgba(100,181,246,0.75)); animation: floatIcon 3.5s ease-in-out infinite; }
@keyframes floatIcon { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.why-visual-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; margin: 18px 0 8px; }
.why-visual-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.badge-item {
  background: rgba(21,101,192,0.14);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 0.78rem;
  color: var(--blue-light);
  font-weight: 800;
  display: flex; align-items: center; gap: 7px;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 28px; margin-top: 50px;
}
.process-step { text-align: center; padding: 28px 18px; }
.step-num {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.55rem; font-weight: 700; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 10px rgba(21,101,192,0.12), 0 0 22px rgba(21,101,192,0.3);
}
.process-step h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* ── AREAS ── */
.areas-wrapper { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.area-tag {
  background: rgba(21,101,192,0.12);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.83rem; font-weight: 700;
  color: var(--blue-light);
  transition: all .2s; text-decoration: none;
}
.area-tag:hover { background: rgba(21,101,192,0.28); border-color: var(--blue-light); }
.area-tag.primary { background: rgba(21,101,192,0.22); border-color: var(--blue-bright); color: var(--white); font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 22px; margin-top: 50px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--text-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.91rem; line-height: 1.72; color: var(--text-gray); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: white; font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 800; font-size: 0.88rem; color: var(--text-dark); }
.author-loc { font-size: 0.76rem; color: var(--text-gray); }

/* ── FAQ ── */
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  color: white; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.97rem;
  padding: 20px 24px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-chevron { font-size: 1.2rem; transition: transform .3s; color: var(--blue-light); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease; padding: 0 24px;
  font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.78;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 22px; }

/* ── CTA BANNER ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-main) 50%, #0a1628 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '⚡'; position: absolute;
  font-size: 22rem; opacity: 0.035;
  top: -50px; right: -50px; line-height: 1; pointer-events: none;
}
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; padding: 84px 5%; }
.cta-inner h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; margin-bottom: 16px;
}
.cta-inner p { font-size: 1.06rem; color: rgba(255,255,255,0.78); margin-bottom: 38px; line-height: 1.7; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: rgba(21,101,192,0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
}
.trust-strip-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.trust-item span:first-child { font-size: 1.2rem; }

/* ── FOOTER ── */
footer {
  background: #04090f;
  border-top: 1px solid rgba(30,136,229,0.12);
  padding: 64px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 50px; max-width: 1160px; margin: 0 auto;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo-wrap { margin-bottom: 18px; }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 20px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(21,101,192,0.16);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 16px;
  font-size: 0.83rem; font-weight: 700;
  color: var(--blue-light); text-decoration: none;
  transition: all .2s;
}
.footer-social a:hover { background: rgba(21,101,192,0.35); border-color: var(--blue-light); }
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li span {
  color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 0.86rem; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px; margin: 30px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.77rem; color: rgba(255,255,255,0.25);
  flex-wrap: wrap; gap: 10px;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  z-index: 2000; display: flex; align-items: center; gap: 12px;
}
.whatsapp-bubble {
  background: var(--white); color: var(--text-dark);
  font-size: 0.8rem; font-weight: 800;
  padding: 10px 16px; border-radius: 14px 14px 0 14px;
  box-shadow: 0 4px 22px rgba(0,0,0,0.2);
  max-width: 200px;
  opacity: 0; transform: translateX(10px);
  animation: bubbleIn 1s 2.5s ease forwards;
  pointer-events: none;
}
@keyframes bubbleIn { to{opacity:1;transform:translateX(0)} }
.whatsapp-btn {
  width: 62px; height: 62px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  transition: all .25s; text-decoration: none;
  animation: pulseGreen 2.8s infinite;
  flex-shrink: 0;
}
@keyframes pulseGreen {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.55),0 0 0 0 rgba(37,211,102,0.4)}
  50%{box-shadow:0 6px 24px rgba(37,211,102,0.55),0  0 0 16px rgba(37,211,102,0)}
}
.whatsapp-btn:hover { transform: scale(1.12); background: var(--green-dark); }
.whatsapp-btn svg { width: 32px; height: 32px; fill: white; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 86px 5% 0;
  max-width: 1160px; margin: 0 auto;
  position: relative; z-index: 2;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; }
.breadcrumb li a { color: var(--blue-light); text-decoration: none; }
.breadcrumb li a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; z-index: 1;
  padding: 100px 5% 70px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(21,101,192,0.42) 0%, transparent 65%),
    linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-deep) 100%);
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,136,229,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,136,229,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--blue-light); }
.page-hero p { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; max-width: 600px; margin: 0 auto 32px; }

/* ── CONTENT SECTION (prose) ── */
.content-section { max-width: 900px; margin: 0 auto; padding: 70px 5%; }
.content-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--white); margin: 48px 0 16px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.content-section ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.content-section ul li {
  color: var(--text-light); line-height: 1.75;
  padding: 6px 0 6px 24px; position: relative;
}
.content-section ul li::before { content: '⚡'; position: absolute; left: 0; color: var(--blue-light); font-size: 0.85rem; top: 8px; }

/* ── PRICE TABLE ── */
.price-table {
  width: 100%; border-collapse: collapse; margin: 28px 0;
}
.price-table th {
  background: rgba(21,101,192,0.2);
  padding: 14px 18px; text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue-light); border-bottom: 1px solid var(--border);
}
.price-table td {
  padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem; color: var(--text-light);
}
.price-table tr:hover td { background: rgba(21,101,192,0.06); }
.price-table .price-val { color: var(--white); font-weight: 800; }

/* ── INFO BOXES ── */
.info-box {
  background: rgba(21,101,192,0.1);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-bright);
  border-radius: var(--radius-sm);
  padding: 20px 22px; margin: 24px 0;
}
.info-box p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.93rem; }
.info-box.warning { border-left-color: var(--yellow); background: rgba(255,214,0,0.07); }
.info-box.success { border-left-color: var(--green); background: rgba(37,211,102,0.07); }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from{opacity:0;transform:translateY(-22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)}  to{opacity:1;transform:translateY(0)} }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { gap: 22px; }
  .stat-num { font-size: 2.1rem; }
  .whatsapp-bubble { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .trust-strip-inner { gap: 18px; }
  .breadcrumb { padding-top: 80px; }
}
