/* =========================================================
   FUZION ELECTRIK — styles.css
   Modern & bold: dark base + electric accent
   ========================================================= */

:root {
  /* Surfaces */
  --bg:        #080b11;
  --bg-2:      #0b1018;
  --surface:   #111824;
  --surface-2: #16202f;
  --border:    #1e2a3b;

  /* Text */
  --text:      #e8eef6;
  --muted:     #94a3b8;
  --muted-2:   #64748b;

  /* Accents */
  --accent:        #18d6ff;   /* electric cyan */
  --accent-2:      #2f7bff;   /* electric blue */
  --accent-soft:   rgba(24, 214, 255, 0.12);
  --energy:        #ffce2e;   /* warning/energy yellow (CTA) */
  --energy-dark:   #f0b400;

  /* Effects */
  --grad-accent: linear-gradient(135deg, #5eeaff 0%, #18c8ff 45%, #2f7bff 100%);
  --grad-text:   linear-gradient(135deg, #7df0ff 0%, #18d6ff 50%, #4f8bff 100%);
  --glow:        0 0 40px rgba(24, 214, 255, 0.25);
  --shadow:      0 18px 50px -12px rgba(0, 0, 0, 0.7);
  --shadow-sm:   0 8px 24px -8px rgba(0, 0, 0, 0.6);

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);

  --font: "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--accent); border-radius: 2px; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-intro { color: var(--muted); max-width: 620px; font-size: 1.05rem; }
.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }
.gradient-text {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--energy); color: #1a1400;
  box-shadow: 0 10px 28px -8px rgba(255, 206, 46, 0.55);
}
.btn-primary:hover { background: #ffd84d; box-shadow: 0 16px 38px -10px rgba(255, 206, 46, 0.7); }
.btn-accent {
  background: var(--grad-accent); color: #04121f;
  box-shadow: 0 10px 28px -8px rgba(24, 200, 255, 0.5);
}
.btn-accent:hover { box-shadow: 0 16px 40px -10px rgba(24, 200, 255, 0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text); border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8, 11, 17, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--border);
}
.header .container { max-width: 1320px; }
.nav { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; height: 76px; gap: 18px; }
.brand { justify-self: start; display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.01em; }
.brand img { width: 40px; height: 40px; }
.brand-name { font-size: 1.18rem; line-height: 1; }
.brand-name small {
  display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.32em;
  color: var(--accent); margin-top: 4px;
}

.nav-links { display: flex; align-items: center; justify-content: center; gap: 2px; justify-self: center; }
.nav-links a {
  padding: 8px 13px; border-radius: 10px; font-weight: 600; font-size: 0.92rem; color: var(--muted);
  white-space: nowrap; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; justify-self: end; }
.btn-quote-nav { padding: 10px 18px; font-size: 0.9rem; }

/* Language switch */
.lang-switch { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: none; background: transparent; color: var(--muted); font-weight: 700; font-size: 0.82rem;
  padding: 6px 13px; border-radius: 999px; transition: background .2s, color .2s;
}
.lang-switch button.active { background: var(--grad-accent); color: #04121f; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: .3s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 75% 15%, rgba(47, 123, 255, 0.18), transparent 70%),
    radial-gradient(50% 45% at 12% 30%, rgba(24, 214, 255, 0.16), transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(40, 80, 130, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 80, 130, 0.10) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 60% 25%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 60% 25%, #000 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid rgba(24, 214, 255, 0.3); color: var(--accent);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.1rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero p.lead { font-size: 1.18rem; color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust div { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.hero-trust svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: 26px; padding: 30px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.hero-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-accent); }
.hero-card .bolt-wrap {
  width: 84px; height: 84px; border-radius: 22px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); border: 1px solid rgba(24, 214, 255, 0.3); margin-bottom: 22px;
}
.hero-card .bolt-wrap svg { width: 46px; height: 46px; color: var(--accent); }
.hero-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.hero-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 22px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; }
.hero-stat .num { font-size: 1.7rem; font-weight: 800; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .lbl { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* ---------- Marquee strip ---------- */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 22px 0; overflow: hidden; }
.strip-track { display: flex; gap: 56px; align-items: center; white-space: nowrap; animation: scroll-x 30s linear infinite; width: max-content; }
.strip-track span { color: var(--muted-2); font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 12px; }
.strip-track span::after { content: "•"; color: var(--accent); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px;
  background: var(--grad-accent); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-card h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }
.service-card.is-feature { background: linear-gradient(160deg, rgba(24,214,255,0.10), var(--surface) 60%); border-color: rgba(24,214,255,0.32); }
.service-card .tag { display: inline-block; margin-top: 16px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--energy); }

/* ---------- EV feature ---------- */
.ev { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ev-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ev-visual {
  position: relative; border-radius: 24px; min-height: 360px; overflow: hidden;
  background: linear-gradient(150deg, #0d1826, #0a1119); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.ev-visual .glow-ring {
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,214,255,0.35), transparent 65%);
  position: absolute; filter: blur(8px); animation: pulse 3.5s ease-in-out infinite;
}
.ev-visual .ev-bolt { position: relative; z-index: 2; width: 120px; height: 120px; color: var(--accent); filter: drop-shadow(0 0 24px rgba(24,214,255,0.6)); }
.ev-visual .ev-chip { position: absolute; z-index: 3; background: rgba(8,11,17,0.85); border: 1px solid var(--border); backdrop-filter: blur(8px); border-radius: 12px; padding: 10px 14px; font-weight: 700; font-size: 0.84rem; display: flex; align-items: center; gap: 8px; }
.ev-visual .ev-chip svg { width: 16px; height: 16px; color: var(--energy); }
.ev-visual .chip-1 { top: 26px; left: 26px; }
.ev-visual .chip-2 { bottom: 26px; right: 26px; }
.ev-list { display: grid; gap: 16px; margin: 28px 0 32px; }
.ev-list li { display: flex; gap: 14px; align-items: flex-start; }
.ev-list .check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.ev-list .check svg { width: 15px; height: 15px; color: var(--accent); }
.ev-list b { display: block; font-weight: 700; }
.ev-list span { color: var(--muted); font-size: 0.95rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.why-card { text-align: center; padding: 28px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s; }
.why-card:hover { transform: translateY(-4px); border-color: rgba(24,214,255,0.3); }
.why-card .why-icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; }
.why-card .why-icon svg { width: 30px; height: 30px; color: var(--accent); }
.why-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; counter-reset: step; }
.step { position: relative; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step .step-num { font-size: 2.4rem; font-weight: 800; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.85; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Service area ---------- */
.area { background: var(--bg-2); border-top: 1px solid var(--border); }
.area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.area-tags span { padding: 9px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-weight: 700; font-size: 0.9rem; transition: border-color .25s, color .25s; }
.area-tags span:hover { border-color: var(--accent); color: var(--accent); }
.area-note { margin-top: 26px; padding: 16px 20px; background: var(--accent-soft); border: 1px solid rgba(24,214,255,0.3); border-radius: var(--radius-sm); color: var(--text); font-size: 0.95rem; display: flex; gap: 12px; align-items: center; }
.area-note svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.map-card { border: 1px solid var(--border); border-radius: 24px; overflow: hidden; background: var(--surface); min-height: 340px; position: relative; }
.map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.9); }

/* ---------- Testimonials ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.review .stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--energy); }
.review .stars svg { width: 18px; height: 18px; }
.review p { color: var(--text); font-size: 1rem; margin-bottom: 22px; flex-grow: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-accent); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #04121f; }
.review .who b { display: block; font-size: 0.95rem; }
.review .who span { color: var(--muted); font-size: 0.84rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 52px auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 14px; background: var(--surface); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); font-size: 1.05rem; font-weight: 700; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: 28px; padding: 60px; background: linear-gradient(135deg, #0e2036, #0a1422); border: 1px solid rgba(24,214,255,0.28); text-align: center; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(24,214,255,0.2), transparent 70%); }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-banner p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 52px; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color .25s; }
.contact-item:hover { border-color: rgba(24,214,255,0.3); }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item .ci-icon svg { width: 22px; height: 22px; color: var(--accent); }
.contact-item .ci-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.contact-item .ci-value { font-size: 1.08rem; font-weight: 700; word-break: break-word; }
.contact-item .ci-value a:hover { color: var(--accent); }
.contact-item .ci-sub { color: var(--muted); font-size: 0.88rem; }

/* Form */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.field label .req { color: var(--energy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 11px;
  color: var(--text); font-family: inherit; font-size: 0.98rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; padding: 16px; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); border-radius: 11px; color: #86efac; font-weight: 600; margin-bottom: 18px; align-items: center; gap: 10px; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color .25s, color .25s, transform .25s; color: var(--muted); }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; color: var(--text); }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.95rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 0.88rem; }
.footer-bottom .rbq { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-weight: 700; color: var(--text); }
.footer-bottom .rbq svg { width: 15px; height: 15px; color: var(--accent); }

/* ---------- Floating call button (mobile) ---------- */
.fab-call { position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--energy); color: #1a1400; display: none; align-items: center; justify-content: center; box-shadow: 0 12px 30px -6px rgba(255,206,46,0.6); animation: pulse-ring 2.5s infinite; }
.fab-call svg { width: 26px; height: 26px; }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(255,206,46,0.5); } 70% { box-shadow: 0 0 0 16px rgba(255,206,46,0); } 100% { box-shadow: 0 0 0 0 rgba(255,206,46,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Language visibility ---------- */
[data-lang-en], [data-lang-fr] { display: none; }
html[lang="en"] [data-lang-en] { display: revert; }
html[lang="fr"] [data-lang-fr] { display: revert; }
/* inline variants keep flow */
.lng { display: none; }
html[lang="en"] .lng.en { display: inline; }
html[lang="fr"] .lng.fr { display: inline; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner, .ev-inner, .area-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; width: 100%; margin: 0 auto; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Collapse the horizontal nav to a hamburger menu before the links can crowd
   the brand / actions (the 6 centered links + CTA need a wide bar). */
@media (max-width: 1240px) {
  /* hamburger mode: links are hidden, so use a simple flex bar (no centered grid) */
  .nav { display: flex; justify-content: space-between; gap: 12px; }
  .brand-name { white-space: nowrap; }
  .nav-links {
    display: none; position: fixed; top: 76px; left: 0; right: 0; width: 100vw;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 22px 24px;
    background: rgba(8,11,17,0.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-quote-nav { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .fab-call { display: flex; }
  .services-grid, .reviews-grid, .why-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 1.6rem; }
  .hero { padding: 120px 0 64px; }
  .hero p.lead { font-size: 1.08rem; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-trust { gap: 14px 20px; }
  .hero-card { padding: 24px; }
  .ev-visual { min-height: 280px; }
  .map-card, .map-card iframe { min-height: 300px; }
  .contact-grid { gap: 32px; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .nav { gap: 8px; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 1.02rem; }
  .brand-name small { font-size: 0.55rem; letter-spacing: 0.2em; }
  .lang-switch button { padding: 6px 11px; font-size: 0.78rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .section-title { font-size: 1.7rem; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}
