/* ===========================
   BORNEXA – style.css
   System fonts · No Google Fonts · ~14KB
   =========================== */

/* ── Variables ── */
:root {
  --primary:       #00C896;
  --primary-dark:  #009E76;
  --primary-light: #E0FBF4;
  --secondary:     #0057FF;
  --dark:          #0C1018;
  --dark2:         #141C28;
  --dark3:         #1C2838;
  --light:         #FFFFFF;
  --bg:            #F6F8FB;
  --text:          #111827;
  --text-muted:    #6B7280;
  --border:        #E5E7EB;
  --font-body:     -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-head:     -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
  --r-sm:          8px;
  --r-md:          14px;
  --r-lg:          20px;
  --r-xl:          28px;
  --r-full:        9999px;
  --sh-sm:         0 2px 8px rgba(0,0,0,.06);
  --sh-md:         0 6px 20px rgba(0,0,0,.08);
  --sh-lg:         0 16px 40px rgba(0,0,0,.10);
  --sh-primary:    0 8px 32px rgba(0,200,150,.25);
  --t-fast:        150ms ease;
  --t-base:        300ms ease;
  --t-slow:        600ms ease;
  --container:     1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--light); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p  { font-size: 1rem; line-height: 1.7; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--dark2); color: var(--light); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); max-width: 620px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,.65); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: background var(--t-base), box-shadow var(--t-base);
}
.nav.scrolled {
  background: rgba(12,16,24,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px; max-width: var(--container); margin: 0 auto;
}
.nav-logo {
  font-size: 1.35rem; font-weight: 800; color: var(--light);
  letter-spacing: -.5px;
}
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: var(--dark) !important;
  padding: 10px 22px; border-radius: var(--r-full); font-weight: 700 !important;
  transition: background var(--t-fast), transform var(--t-fast) !important;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--light); border-radius: 2px; transition: var(--t-base); }
.nav-mobile { display: none; flex-direction: column; background: var(--dark); padding: 16px 24px 24px; }
.nav-mobile a { color: rgba(255,255,255,.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .95rem; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-cta { background: var(--primary); color: var(--dark) !important; text-align: center; border-radius: 12px; padding: 14px 18px; font-weight: 700; margin-top: 12px; border-bottom: none; }
.nav-mobile a.nav-cta:hover { filter: brightness(1.05); }
.nav-mobile .btn-lang { margin: 16px 0 0; align-self: flex-start; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #0A1420 100%);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,200,150,.12) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,150,.15); border: 1px solid rgba(0,200,150,.3);
  color: var(--primary); padding: 6px 16px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--light); margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 580px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-brands { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-brands-label { color: rgba(255,255,255,.45); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.brand-pill {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); padding: 6px 14px; border-radius: var(--r-full);
  font-size: .82rem; font-weight: 600;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-full); font-size: .95rem; font-weight: 700;
  transition: all var(--t-fast); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--dark); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--sh-primary); }
.btn-outline { background: transparent; color: var(--light); border: 2px solid rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--light); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .88rem; }

/* ── Stats bar ── */
.stats-bar { background: var(--primary); padding: 18px 0; }
.stats-bar-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; color: var(--dark); }
.stat-number { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.stat-label { font-size: .8rem; font-weight: 600; opacity: .75; margin-top: 2px; }

/* ── Why cards / Feature grid ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; transition: transform var(--t-base), box-shadow var(--t-base);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.why-card p { color: var(--text-muted); font-size: .92rem; }

/* ── Service cards ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg);
  padding: 36px 30px; transition: transform var(--t-base), border-color var(--t-base);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.service-icon { font-size: 2.2rem; margin-bottom: 20px; }
.service-card h3 { color: var(--light); margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,.6); font-size: .92rem; margin-bottom: 20px; }
.service-tag {
  display: inline-block; background: rgba(0,200,150,.15); color: var(--primary);
  padding: 4px 12px; border-radius: var(--r-full); font-size: .78rem; font-weight: 600;
}

/* ── Brand section ── */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.brand-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 30px; text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--primary); }
.brand-dot {
  width: 56px; height: 56px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 18px;
}
.brand-dot-tesla  { background: #cc0000; }
.brand-dot-wallbox{ background: #003087; }
.brand-dot-smappee{ background: #00b140; }
.brand-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.brand-features { margin: 16px 0; text-align: left; }
.brand-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-muted); padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.brand-features li:last-child { border-bottom: none; }
.brand-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.brand-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: .88rem; font-weight: 600; margin-top: 12px;
  transition: gap var(--t-fast);
}
.brand-link:hover { gap: 10px; }

/* ── Brand hero (brand pages) ── */
.brand-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 120px 0 80px; color: var(--light);
}
.brand-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.brand-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,150,.15); border: 1px solid rgba(0,200,150,.3);
  color: var(--primary); padding: 6px 16px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600; margin-bottom: 20px;
}
.brand-hero h1 { margin-bottom: 16px; }
.brand-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 500px; }
.brand-specs-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 28px;
}
.brand-specs-card h3 { color: var(--light); margin-bottom: 18px; font-size: 1.05rem; }
.brand-spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .9rem;
}
.brand-spec-row:last-child { border-bottom: none; }
.brand-spec-row .spec-label { color: rgba(255,255,255,.55); }
.brand-spec-row .spec-value { color: var(--primary); font-weight: 700; }

/* ── Brand model cards ── */
.brand-model-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; transition: transform var(--t-base), box-shadow var(--t-base);
}
.brand-model-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.brand-model-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.brand-model-power { color: var(--primary); font-weight: 700; font-size: .9rem; margin-bottom: 14px; }
.brand-model-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .85rem; color: var(--text-muted); padding: 4px 0;
}
.brand-model-feature::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* ── Area cards ── */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg);
  padding: 28px 24px; display: flex; flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base);
}
.area-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.area-badge {
  display: inline-block; background: rgba(0,200,150,.15); color: var(--primary);
  padding: 3px 10px; border-radius: var(--r-full); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px;
}
.area-card h3 { color: var(--light); margin-bottom: 8px; font-size: 1.05rem; }
.area-card p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 18px; flex: 1; }
.area-link { color: var(--primary); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.area-link:hover { gap: 9px; }

/* ── Process steps ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 24px 16px; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; margin: 0 auto 18px;
}
.process-step h3 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: .88rem; }

/* ── FAQ ── */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--light); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: .98rem; font-weight: 600; text-align: left;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--primary); }
.faq-q.active { color: var(--primary); }
.faq-icon { font-size: 1.2rem; font-weight: 300; flex-shrink: 0; transition: transform var(--t-base); }
.faq-q.active .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--text-muted); font-size: .93rem; line-height: 1.7; }
.faq-a.open { display: block; }

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--r-xl); padding: 60px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.cta-banner h2 { color: var(--dark); margin-bottom: 8px; }
.cta-banner p { color: rgba(0,0,0,.65); max-width: 500px; }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Contact form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: .88rem; color: var(--text-muted); font-weight: 500; }
.contact-detail span { font-weight: 600; }
.form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 40px 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: .95rem; background: var(--light); color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,200,150,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-muted); font-size: .92rem; line-height: 1.65; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-loc { color: var(--text-muted); font-size: .8rem; }

/* ── Blog / Posts ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: transform var(--t-base), box-shadow var(--t-base);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.blog-card-img { height: 180px; background: var(--bg); display: flex; flex-direction: column; overflow: hidden; }
.blog-card-img-inner { flex: 1; display: flex; align-items: center; justify-content: center; }
.blog-img-icon { width: 72px; height: 72px; background: var(--primary-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.blog-img-icon svg { width: 36px; height: 36px; stroke: var(--primary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.blog-card-tags { padding: 0 16px 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-tag { display: inline-block; background: var(--primary-light); color: var(--primary-dark); padding: 3px 10px; border-radius: var(--r-full); font-size: .75rem; font-weight: 700; }
.blog-card h2, .blog-card h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; font-weight: 700; }
.blog-card p { color: var(--text-muted); font-size: .85rem; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: .88rem; font-weight: 600; margin-top: 12px; transition: gap var(--t-fast); }
.blog-read-more:hover { gap: 10px; }
.blog-read-more svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Services page blocks ── */
.svc-block { padding: 80px 0; }
.svc-block-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.svc-visual { display: flex; justify-content: center; align-items: center; }
.svc-big-icon { width: 220px; height: 220px; background: var(--bg); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; }
.svc-big-icon svg { width: 96px; height: 96px; stroke: var(--primary); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-content .badge { margin-bottom: 14px; }
.svc-content h2 { margin-bottom: 12px; }
.svc-content > p { color: var(--text-muted); margin-bottom: 0; }
.svc-features { list-style: none; display: flex; flex-direction: column; margin: 24px 0; }
.svc-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--text-muted); padding: 9px 0; border-bottom: 1px solid var(--border); }
.svc-features li:last-child { border-bottom: none; }
.svc-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ── Local page hero ── */
.local-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0A1420 100%);
  padding: 120px 0 72px; color: var(--light);
}
.local-hero h1 { margin-bottom: 16px; }
.local-hero .lead { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 640px; margin-bottom: 32px; }
.local-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 24px; }
.local-breadcrumb a { color: rgba(255,255,255,.55); }
.local-breadcrumb a:hover { color: var(--primary); }
.local-breadcrumb span { color: var(--primary); }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand-name { font-size: 1.3rem; font-weight: 800; color: var(--light); margin-bottom: 12px; }
.footer-brand-name span { color: var(--primary); }
.footer-tagline { font-size: .88rem; line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
.footer-col h4 { color: var(--light); font-size: .9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; transition: color var(--t-fast); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; margin-bottom: 10px; }
.footer-contact li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--primary); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── Utilities ── */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.fw-700 { font-weight: 700; }

/* ── Compatibility aliases (local landing pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0A1420 100%);
  padding: 120px 0 72px; color: var(--light); position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,200,150,.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 620px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,150,.15); border: 1px solid rgba(0,200,150,.3);
  color: var(--primary); padding: 6px 16px; border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.why-num { color: var(--primary); font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: .88rem; font-weight: 600; margin-top: 14px;
  transition: gap var(--t-fast);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.service-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.5; margin-bottom: 16px; display: block; }
.area-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.5; margin-bottom: 12px; display: block; }
.area-main { border-color: var(--primary); }
.section-bg { background: var(--bg); }
.internal-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.internal-link-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md);
  padding: 20px; transition: border-color var(--t-base);
}
.internal-link-card:hover { border-color: var(--primary); }
.internal-link-card h4 { color: var(--light); font-size: .95rem; margin-bottom: 6px; }
.internal-link-card p { color: rgba(255,255,255,.5); font-size: .82rem; margin-bottom: 12px; }
.internal-link-card a { color: var(--primary); font-size: .82rem; font-weight: 600; }

/* ── Responsive 1024px ── */
@media (max-width: 1024px) {
  .why-grid,
  .brand-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-hero-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── Responsive 768px ── */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
  .why-grid,
  .brand-grid,
  .services-grid,
  .areas-grid,
  .testimonials-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-banner-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { gap: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .svc-block-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-block:nth-child(even) .svc-block-inner { direction: ltr; }
  .svc-big-icon { width: 140px; height: 140px; }
  .svc-big-icon svg { width: 60px; height: 60px; }
}

/* ── Responsive 480px ── */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.55rem; }
  .container { padding: 0 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { flex-direction: column; gap: 16px; }
  .form-card { padding: 28px 20px; }
}

/* ── Lang toggle ── */
.btn-lang {
  background: rgba(0,200,150,.18); border: 1px solid rgba(0,200,150,.55);
  color: var(--primary); padding: 5px 14px; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: all var(--t-fast); margin-left: 6px; flex-shrink: 0;
}
.btn-lang:hover { background: rgba(0,200,150,.32); }

/* ── Logo image ── */
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; display: block; }
.footer-brand-name { line-height: 1; }
.footer-brand-name img { height: 48px; width: auto; display: block; }

/* ── Footer contact items (local pages) ── */
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; margin-bottom: 12px; color: rgba(255,255,255,.7); }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ── Contact page info card ── */
.info-card { background: var(--dark2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-xl); padding: 36px 32px; color: var(--light); }
.info-card h3 { margin-bottom: 28px; font-size: 1.1rem; }
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
.info-item:last-of-type { margin-bottom: 0; border-bottom: none; }
.info-item-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: rgba(0,200,150,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item-icon svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-item-body strong { display: block; font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.info-item-body span { font-size: .93rem; color: rgba(255,255,255,.78); line-height: 1.5; }
.zones-box { margin-top: 24px; padding: 16px 18px; background: rgba(0,200,150,.07); border: 1px solid rgba(0,200,150,.2); border-radius: var(--r-md); }
.zones-box strong { display: block; font-size: .78rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.zones-box span { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.form-privacy { font-size: .8rem; color: var(--text-muted); margin: 12px 0 18px; line-height: 1.5; }
.form-btn { width: 100%; justify-content: center; }

/* ── FAQ aliases (local pages use faq-question / faq-answer) ── */
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: .98rem; font-weight: 600; text-align: left;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-base); }
.faq-question.active svg { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 20px; color: var(--text-muted); font-size: .93rem; line-height: 1.7; }
.faq-answer.open { display: block; }

/* ══════════════════════════════════════════
   MOBILE STICKY CTA
══════════════════════════════════════════ */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: rgba(12,16,24,.97); backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid rgba(0,200,150,.18);
  display: none;
  align-items: stretch; gap: 8px;
  padding: 10px 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}
.mcta-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 9px 6px; border-radius: var(--r-md);
  font-size: .72rem; font-weight: 700; letter-spacing: .3px;
  text-align: center; cursor: pointer; text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.mcta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.mcta-quote {
  background: var(--primary); color: var(--dark);
  fill: none; stroke: var(--dark); stroke-width: 2;
  box-shadow: 0 4px 16px rgba(0,200,150,.35);
}
.mcta-quote:hover, .mcta-quote:active { background: var(--primary-dark); transform: translateY(-1px); }
.mcta-quote svg { stroke: var(--dark); fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mcta-phone {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.12);
}
.mcta-phone:hover, .mcta-phone:active { background: rgba(255,255,255,.14); }
.mcta-phone svg { stroke: rgba(255,255,255,.88); fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.mcta-whatsapp {
  background: rgba(37,211,102,.12); color: #25D366;
  border: 1px solid rgba(37,211,102,.28);
}
.mcta-whatsapp:hover, .mcta-whatsapp:active { background: rgba(37,211,102,.22); }
.mcta-whatsapp svg { fill: #25D366; stroke: none; }

/* ══════════════════════════════════════════
   SIMULATOR PAGE
══════════════════════════════════════════ */
.sim-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0A1420 100%);
  padding: 120px 0 72px; color: var(--light); position: relative; overflow: hidden;
}
.sim-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(0,200,150,.13) 0%, transparent 60%);
}
.sim-hero-inner { position: relative; z-index: 1; }
.sim-hero h1 { margin-bottom: 16px; }
.sim-hero p { color: rgba(255,255,255,.72); max-width: 640px; font-size: 1.05rem; margin-bottom: 24px; }
.sim-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.sim-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,150,.14); border: 1px solid rgba(0,200,150,.28);
  color: var(--primary); padding: 5px 14px; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 600; letter-spacing: .4px;
}

.sim-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }

/* Simulator card (inputs) */
.sim-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 36px 32px; box-shadow: var(--sh-md);
}
.sim-card-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.sim-card-sub { color: var(--text-muted); font-size: .88rem; margin-bottom: 28px; }
.sim-sep { height: 1px; background: var(--border); margin: 20px 0; }

.sim-group { margin-bottom: 20px; }
.sim-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .87rem; font-weight: 600; color: var(--text); margin-bottom: 8px;
}
.sim-label-val {
  font-size: .84rem; font-weight: 700; color: var(--primary);
  background: var(--primary-light); padding: 2px 10px; border-radius: var(--r-full);
}
.sim-range {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 5px; border-radius: 3px; background: var(--border);
  outline: none; cursor: pointer; accent-color: var(--primary);
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); cursor: pointer;
  border: 3px solid white; box-shadow: 0 2px 8px rgba(0,200,150,.4);
}
.sim-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); cursor: pointer;
  border: 3px solid white; box-shadow: 0 2px 8px rgba(0,200,150,.4);
}
.sim-select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: .93rem; background: var(--light);
  color: var(--text); cursor: pointer; outline: none;
  transition: border-color var(--t-fast);
}
.sim-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,200,150,.1); }

/* Toggle switch */
.sim-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid var(--border);
}
.sim-toggle-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.sim-toggle-info { flex: 1; }
.sim-toggle-info strong { display: block; font-size: .9rem; font-weight: 600; }
.sim-toggle-info small { font-size: .78rem; color: var(--text-muted); }
.sim-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; margin-left: 12px; }
.sim-switch input { opacity: 0; width: 0; height: 0; }
.sim-track {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--border); border-radius: 24px;
  transition: background var(--t-fast);
}
.sim-track::before {
  content: ''; position: absolute; height: 18px; width: 18px;
  left: 3px; bottom: 3px; background: white; border-radius: 50%;
  transition: transform var(--t-fast);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.sim-switch input:checked + .sim-track { background: var(--primary); }
.sim-switch input:checked + .sim-track::before { transform: translateX(20px); }

/* Results sidebar */
.sim-results { display: flex; flex-direction: column; gap: 14px; }
.sim-result-card { border-radius: var(--r-lg); padding: 22px 24px; }
.sim-result-fuel { background: #FFF5F5; border: 1.5px solid #FED7D7; }
.sim-result-ev { background: var(--primary-light); border: 1.5px solid rgba(0,200,150,.28); }
.sim-result-savings { background: var(--dark); color: var(--light); }
.sim-result-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; margin-bottom: 6px;
}
.sim-result-fuel .sim-result-label { color: #c53030; }
.sim-result-ev .sim-result-label { color: var(--primary-dark); }
.sim-result-savings .sim-result-label { color: var(--primary); opacity: .85; }
.sim-result-amount { font-size: 2.1rem; font-weight: 800; line-height: 1.1; }
.sim-result-fuel .sim-result-amount { color: #c53030; }
.sim-result-ev .sim-result-amount { color: var(--primary-dark); }
.sim-result-savings .sim-result-amount { color: var(--primary); }
.sim-result-sub { font-size: .8rem; margin-top: 3px; color: var(--text-muted); }
.sim-result-ev .sim-result-sub { color: var(--primary-dark); opacity: .7; }
.sim-result-savings .sim-result-sub { color: rgba(255,255,255,.5); }
.sim-monthly-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; background: rgba(0,200,150,.08); border-radius: var(--r-md); margin-top: 6px;
}
.sim-monthly-row span { font-size: .82rem; color: rgba(255,255,255,.65); }
.sim-monthly-row strong { color: var(--primary); font-size: 1.05rem; }
.sim-cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--r-lg); padding: 22px 20px; color: var(--dark);
}
.sim-cta-card h4 { font-size: .98rem; font-weight: 800; margin-bottom: 5px; }
.sim-cta-card p { font-size: .83rem; opacity: .72; margin-bottom: 14px; line-height: 1.5; }
.sim-cta-card .btn { background: var(--dark); color: var(--light); width: 100%; justify-content: center; font-size: .88rem; padding: 11px 20px; }
.sim-cta-card .btn:hover { background: var(--dark2); }

/* Insight boxes */
.sim-insight {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 20px;
}
.sim-insight-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.sim-insight h4 { font-size: .93rem; margin-bottom: 4px; }
.sim-insight p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.insights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

@media (max-width: 1024px) { .sim-layout { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .sim-card { padding: 24px 20px; }
  .insights-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   COMPARATOR PAGE
══════════════════════════════════════════ */
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comp-brand-card {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px 26px; text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex; flex-direction: column;
}
.comp-brand-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--primary); }
.comp-brand-icon {
  width: 64px; height: 64px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 16px; color: white;
}
.comp-tesla-icon { background: linear-gradient(135deg, #cc0000, #990000); }
.comp-wallbox-icon { background: linear-gradient(135deg, #003087, #001f5a); }
.comp-smappee-icon { background: linear-gradient(135deg, #00b140, #007a2d); }
.comp-brand-name { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.comp-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-full);
  font-size: .75rem; font-weight: 700; margin-bottom: 14px;
}
.comp-badge-ev { background: rgba(204,0,0,.1); color: #cc0000; }
.comp-badge-smart { background: rgba(0,48,135,.1); color: #003087; }
.comp-badge-solar { background: var(--primary-light); color: var(--primary-dark); }
.comp-brand-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; text-align: left; }
.comp-feat-list { text-align: left; margin: 0 0 20px; flex: 1; }
.comp-feat-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .86rem; color: var(--text-muted); padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.comp-feat-list li:last-child { border-bottom: none; }
.comp-feat-list li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Comparison table */
.comp-table-wrap { overflow-x: auto; border-radius: var(--r-xl); box-shadow: var(--sh-md); }
.comp-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.comp-table thead { background: var(--dark); color: var(--light); }
.comp-table th { padding: 18px 20px; text-align: left; font-size: .87rem; font-weight: 700; }
.comp-table th:first-child { width: 180px; color: rgba(255,255,255,.55); font-weight: 400; font-size: .8rem; }
.comp-table .col-tesla { border-top: 3px solid #cc0000; }
.comp-table .col-wallbox { border-top: 3px solid #003087; }
.comp-table .col-smappee { border-top: 3px solid #00b140; }
.comp-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  font-size: .9rem; vertical-align: middle;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:nth-child(even) td { background: var(--bg); }
.comp-table td:first-child { font-weight: 600; font-size: .87rem; color: var(--text); }
.comp-check { color: var(--primary); font-weight: 700; font-size: 1rem; }
.comp-cross { color: #dc3545; font-weight: 700; }
.comp-partial { color: #F59E0B; font-weight: 700; }
.comp-highlight { background: rgba(0,200,150,.06) !important; }

/* Which to choose section */
.comp-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.comp-choice-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 26px 22px;
  transition: border-color var(--t-base);
}
.comp-choice-card:hover { border-color: var(--primary); }
.comp-choice-icon { font-size: 1.8rem; margin-bottom: 12px; }
.comp-choice-card h3 { color: var(--light); font-size: 1rem; margin-bottom: 8px; }
.comp-choice-card p { color: rgba(255,255,255,.55); font-size: .87rem; line-height: 1.6; }
.comp-choice-brand {
  display: inline-block; margin-top: 12px;
  background: rgba(0,200,150,.15); color: var(--primary);
  padding: 3px 12px; border-radius: var(--r-full); font-size: .8rem; font-weight: 700;
}

@media (max-width: 1024px) {
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .comp-choice-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .comp-grid { grid-template-columns: 1fr; }
  .comp-choice-grid { grid-template-columns: 1fr; }
  .comp-table th, .comp-table td { padding: 10px 12px; font-size: .82rem; }
}


/* ── Accessibility ── */
.sr-only{position:absolute !important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ── Breadcrumb visible sur pages locales ── */
.page-breadcrumb{font-size:.78rem;color:rgba(255,255,255,.55);margin-bottom:1rem;letter-spacing:.2px}
.page-breadcrumb a{color:rgba(255,255,255,.65);text-decoration:none;border-bottom:1px solid transparent;transition:border .15s}
.page-breadcrumb a:hover{color:var(--primary);border-color:var(--primary)}
.page-breadcrumb .sep{margin:0 .35rem;opacity:.5}

/* ── Certification strip (Tesla / Wallbox / Smappee Certified Installer) ── */
.cert-strip{background:linear-gradient(135deg,var(--dark) 0%,var(--dark2) 100%);padding:36px 0;position:relative;overflow:hidden}
.cert-strip::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 50% 0%,rgba(0,200,150,.06) 0%,transparent 70%);pointer-events:none}
.cert-intro{position:relative;text-align:center;color:rgba(255,255,255,.45);font-size:.74rem;text-transform:uppercase;letter-spacing:2.5px;margin-bottom:24px;font-weight:600}
.cert-grid{position:relative;display:grid;grid-template-columns:repeat(3,1fr);gap:14px;max-width:920px;margin:0 auto}
.cert-badge{display:flex;align-items:center;gap:14px;padding:16px 20px;background:rgba(255,255,255,.025);border:1px solid rgba(0,200,150,.18);border-radius:var(--r-md);text-decoration:none;transition:all var(--t-fast);position:relative}
.cert-badge:hover{background:rgba(0,200,150,.07);border-color:rgba(0,200,150,.45);transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,200,150,.12)}
.cert-icon{width:44px;height:44px;border-radius:50%;background:rgba(0,200,150,.12);border:1px solid rgba(0,200,150,.25);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.cert-icon svg{width:22px;height:22px;color:var(--primary)}
.cert-text{display:flex;flex-direction:column;line-height:1.3;color:rgba(255,255,255,.85);font-size:.9rem;flex:1;min-width:0}
.cert-text .cert-brand{color:#fff;font-size:1rem;font-weight:800;letter-spacing:-0.2px}
.cert-text .cert-program{color:rgba(255,255,255,.65);font-size:.78rem;line-height:1.3;margin-top:1px}
.cert-text .cert-label{color:var(--primary);font-style:normal;font-size:.66rem;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;margin-top:4px}
@media(max-width:768px){
  .cert-grid{grid-template-columns:1fr;gap:10px;padding:0 4px}
  .cert-strip{padding:24px 0}
  .cert-intro{font-size:.7rem;letter-spacing:2px;margin-bottom:18px}
}
.cert-badge.cert-badge-highlight{background:rgba(0,200,150,.1);border-color:rgba(0,200,150,.55);box-shadow:0 0 0 1px rgba(0,200,150,.25)}
.cert-badge.cert-badge-highlight .cert-brand{color:var(--primary)}
.footer-certs{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px;margin-bottom:18px}
.footer-cert-pill{display:inline-flex;align-items:center;gap:6px;padding:5px 11px;background:rgba(0,200,150,.08);border:1px solid rgba(0,200,150,.22);border-radius:var(--r-full);font-size:.72rem;font-weight:600;color:rgba(255,255,255,.88);letter-spacing:.2px}
.footer-cert-pill svg{width:11px;height:11px;color:var(--primary);flex-shrink:0}
.footer-cert-pill strong{color:#fff;font-weight:700}