:root {
  --navy: #0b1a30;
  --navy-2: #0f2340;
  --navy-3: #13294d;
  --green: #3ddc84;
  --blue: #2f8fe0;
  --gradient: linear-gradient(135deg, var(--green), var(--blue));
  --gradient-v: linear-gradient(180deg, var(--green), var(--blue));
  --text-dark: #10203a;
  --text-muted: #5a6b85;
  --bg-light: #f4f7fb;
  --white: #ffffff;
  --radius: 22px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px rgba(11, 26, 48, 0.08);
  --shadow-lg: 0 28px 60px rgba(11, 26, 48, 0.35);
  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3 { font-family: var(--font-heading); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.12rem; }

p { color: var(--text-muted); }

.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--gradient);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-heading);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #06121f;
  box-shadow: 0 14px 30px rgba(61, 220, 132, 0.3);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-whatsapp {
  background: #25D366;
  color: #06251a;
  padding: 10px 20px;
  border-radius: 999px;
}
.btn-block { width: 100%; justify-content: center; }
.icon { width: 20px; height: 20px; fill: currentColor; }

/* BRAND LOCKUP */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.brand-icon { height: 42px; width: 42px; }
.brand-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fa3c2;
  margin-top: 3px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 20, 38, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.nav {
  display: flex;
  gap: 30px;
}
.nav a {
  color: #dfe8f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--green); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* HERO */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(8,17,32,0.94) 0%, rgba(8,17,32,0.84) 34%, rgba(8,17,32,0.58) 66%, rgba(8,17,32,0.42) 100%),
    url('../assets/img/hero-general.jpg') center / cover no-repeat;
  color: #fff;
  padding: 120px 0 130px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-inner-solo {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
h1 { color: #fff; }
.hero-sub {
  color: #dbe3ef;
  font-size: 1.18rem;
  margin: 22px 0 34px;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #dfe8f5;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}
.mini-badge svg { width: 15px; height: 15px; fill: var(--green); flex-shrink: 0; }
.mini-badge-rating {
  text-decoration: none;
  color: #ffc84a;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}
.mini-badge-rating:hover { border-color: #ffc84a; }

/* REVIEWS */
.reviews-section { padding: 64px 0; text-align: center; background: var(--bg-light); }
.reviews-stars { color: #ffb020; font-size: 1.6rem; letter-spacing: 0.15em; margin-bottom: 8px; }
.reviews-section h2 { margin-bottom: 8px; }
.reviews-section p { max-width: 480px; margin: 0 auto 24px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  border: 1px solid #eef1f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card .review-stars { color: #ffb020; font-size: 0.9rem; letter-spacing: 0.1em; margin: 0; }
.review-quote { font-size: 0.92rem; color: var(--text-dark); line-height: 1.55; flex: 1; margin: 0; }
.review-author { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--text-muted); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-heading);
  transition: transform 0.15s ease;
}
.btn-outline-dark:hover { transform: translateY(-2px); background: var(--navy); color: #fff; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-whatsapp-lg {
  background: #25D366;
  color: #06251a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.sec-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  max-width: 420px;
}
.sec-card img.sec-logo-img { width: 74px; height: auto; flex-shrink: 0; object-fit: contain; }
.sec-card strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 3px; }
.sec-card p { font-size: 0.8rem; color: #93a5c2; margin: 0; }

.hero-form-wrap { position: relative; }
.hero-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 34px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--text-dark);
}
.hero-form h3 { font-size: 1.3rem; }
.hero-form > p { font-size: 0.88rem; margin-bottom: 4px; }
.hero-form label { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.hero-form label em { color: #e0554a; font-style: normal; }
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #dde4ee;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.form-row > div { display: flex; flex-direction: column; gap: 6px; }

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}
.chip-sec {
  bottom: -14px;
  left: 24px;
  background: var(--navy-2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.chip-sec img.sec-logo-img-sm { width: 52px; height: auto; object-fit: contain; }
.chip-sec span { color: #dfe8f5; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 46px;
  fill: var(--bg-light);
}

/* FLOATING TRUST STRIP */
.trust-float {
  position: relative;
  margin-top: -58px;
  margin-bottom: 20px;
  z-index: 5;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 26px 34px;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  flex: 1 1 200px;
}
.trust-item .icon {
  fill: #fff;
  background: var(--gradient);
  border-radius: 10px;
  padding: 6px;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* SECTION HEAD */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}
.section-head .eyebrow { justify-content: center; }
.section-head p { margin-top: 10px; }

/* SERVICES */
.services { padding: 44px 0 96px; background: var(--bg-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.services-grid-5 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #eef1f7;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(11,26,48,0.14); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}
.service-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.service-icon svg { width: 26px; height: 26px; fill: #fff; position: relative; z-index: 1; }
.service-icon .icon-cutout { fill: var(--navy); }
.service-icon .icon-check { fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-icon .icon-stroke path { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 8px; font-size: 1.04rem; }
.service-card p { font-size: 0.92rem; }

/* ABOUT */
.about { padding: 96px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}
.about-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 13px;
}
.about-list li {
  font-weight: 600;
  color: var(--text-dark);
  padding-left: 30px;
  position: relative;
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--white);
  background: var(--gradient);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  top: 1px;
}
.about-media { display: flex; justify-content: center; position: relative; }
.about-media::before {
  content: none;
}
.about-media-frame {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about-media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about p { margin-bottom: 14px; }

/* SEGMENTS */
.segments { padding: 96px 0; background: var(--bg-light); }
.segments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.segment-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
  border-image: var(--gradient);
  border-image-slice: 1;
}
.segment-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  display: block;
  margin-bottom: 6px;
}
.segment-card h3 { margin-bottom: 12px; color: var(--text-dark); }
.segment-card p { color: var(--text-muted); margin-bottom: 20px; }
.link-arrow {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}
.link-arrow:hover { text-decoration: underline; }

/* CONTACT */
.contact {
  position: relative;
  padding: 104px 0 84px;
  background: var(--navy);
  color: #fff;
}
.contact-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 46px;
  fill: var(--bg-light);
}
.contact h2 { color: #fff; }
.contact-info p { color: #b9c6dc; }
.contact-inner-single {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.contact-inner-single .eyebrow { justify-content: center; }
.contact-inner-single > p { color: #b9c6dc; margin-bottom: 8px; }
.pill-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 26px 0;
}
.pill-contact-center { align-items: center; }
.pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  width: fit-content;
}
.pill-item .icon {
  fill: #06121f;
  background: var(--gradient);
  border-radius: 50%;
  padding: 8px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.pill-item:hover { border-color: var(--green); }
.contact-detail { display: flex; flex-direction: column; gap: 3px; margin-bottom: 20px; }
.contact-detail-center { align-items: center; }
.contact-detail strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); }
.contact-detail span { color: #b9c6dc; font-weight: 600; }
.emergency-cta {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #ff8a75;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,138,117,0.35);
}

/* FOOTER */
.site-footer { background: #081222; color: #b9c6dc; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: #8494ad; font-size: 0.9rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-heading); color: #fff; margin-bottom: 14px; font-size: 0.95rem; }
.footer-col a { display: block; color: #b9c6dc; text-decoration: none; margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.82rem;
  color: #6d7d97;
  text-align: center;
}
.footer-credits-link { color: #6d7d97; margin-left: 10px; text-decoration: underline; }
.footer-credits-link:hover { color: var(--green); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  z-index: 200;
}
.whatsapp-float .icon { width: 30px; height: 30px; fill: #fff; }

/* SERVICE CARD LINKS (homepage) */
.service-card-link { text-decoration: none; display: block; color: inherit; }
.service-card-link .service-card { height: 100%; }
.service-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
}
.service-card-link:hover .service-card { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(11,26,48,0.14); }
.service-card-link:hover .service-card-more { text-decoration: underline; }

/* BREADCRUMB */
.breadcrumb {
  font-size: 0.82rem;
  font-weight: 600;
  color: #93a5c2;
  margin-bottom: 20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: #93a5c2; text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

/* PAGE HERO (service detail pages) */
.page-hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(8,17,32,0.94) 0%, rgba(8,17,32,0.86) 34%, rgba(8,17,32,0.64) 68%, rgba(8,17,32,0.48) 100%),
    url('../assets/img/hero-general.jpg') center / cover no-repeat;
  color: #fff;
  padding: 64px 0 100px;
  overflow: hidden;
}
.page-hero--instalaciones { background-image: linear-gradient(100deg, rgba(8,17,32,0.94) 0%, rgba(8,17,32,0.86) 34%, rgba(8,17,32,0.64) 68%, rgba(8,17,32,0.48) 100%), url('../assets/img/hero-instalaciones.jpg'); }
.page-hero--ev { background-image: linear-gradient(100deg, rgba(8,17,32,0.94) 0%, rgba(8,17,32,0.86) 34%, rgba(8,17,32,0.64) 68%, rgba(8,17,32,0.48) 100%), url('../assets/img/hero-ev.jpg'); }
.page-hero--emergencias { background-image: linear-gradient(100deg, rgba(8,17,32,0.94) 0%, rgba(8,17,32,0.86) 34%, rgba(8,17,32,0.64) 68%, rgba(8,17,32,0.48) 100%), url('../assets/img/hero-emergencias.jpg'); }
.page-hero--camaras { background-image: linear-gradient(100deg, rgba(8,17,32,0.94) 0%, rgba(8,17,32,0.86) 34%, rgba(8,17,32,0.64) 68%, rgba(8,17,32,0.48) 100%), url('../assets/img/hero-camaras.jpg'); }
.page-hero--certificaciones { background-image: linear-gradient(100deg, rgba(8,17,32,0.94) 0%, rgba(8,17,32,0.86) 34%, rgba(8,17,32,0.64) 68%, rgba(8,17,32,0.48) 100%), url('../assets/img/hero-certificaciones.jpg'); }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero-sub { color: #b9c6dc; font-size: 1.06rem; margin-bottom: 30px; max-width: 600px; }
.page-hero .hero-actions { margin-bottom: 0; }
.stat-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.stat-chip {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 20px;
  min-width: 200px;
}
.stat-chip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 2px;
}
.stat-chip span { color: #b9c6dc; font-size: 0.85rem; font-weight: 600; }

/* CONTENT SECTIONS (service detail pages) */
.content-section { padding: 84px 0; }
.content-section.alt { background: var(--bg-light); }
.content-section h2 { margin-bottom: 14px; }
.content-section > .container > p.lead { max-width: 680px; margin-bottom: 40px; font-size: 1.02rem; }

/* INCLUDES GRID */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.include-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #eef1f7;
}
.include-card .tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}
.include-card h3 { font-size: 0.98rem; margin-bottom: 4px; }
.include-card p { font-size: 0.88rem; margin: 0; }

/* PROCESS TIMELINE */
.process-timeline {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 0;
  counter-reset: step;
}
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 34px;
}
.process-step:last-child { padding-bottom: 0; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 27px;
  width: 2px;
  height: calc(100% - 56px);
  background: linear-gradient(var(--green), var(--blue));
  opacity: 0.35;
}
.process-step h3 { margin-bottom: 6px; padding-top: 12px; }
.process-step p { margin: 0; font-size: 0.94rem; }

/* CHECKLIST (info needed from client) */
.checklist {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.checklist li svg {
  width: 20px;
  height: 20px;
  fill: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* COMPARE (wallbox vs enchufe) */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 36px;
}
.compare-card {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid #eef1f7;
}
.compare-card.bad { background: #fff6f4; border-color: #f3dcd6; }
.compare-card.good { background: #f0fbf6; border-color: #cdeedd; }
.compare-card h3 { margin-bottom: 14px; font-size: 1rem; }
.compare-card ul { list-style: none; display: grid; gap: 10px; }
.compare-card li { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; padding-left: 22px; position: relative; }
.compare-card.bad li::before { content: "✕"; position: absolute; left: 0; color: #d1483a; font-weight: 800; }
.compare-card.good li::before { content: "✓"; position: absolute; left: 0; color: #1f9d63; font-weight: 800; }

/* FAQ (details/summary) */
.faq-list { margin-top: 36px; display: grid; gap: 12px; max-width: 780px; }
.faq-item {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 18px;
  padding: 4px 24px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 19px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 20px; margin: 0; font-size: 0.92rem; }

/* QUOTE SECTION (service detail pages) */
.quote-section {
  position: relative;
  padding: 96px 0;
  background: var(--navy);
  color: #fff;
}
.quote-section h2 { color: #fff; }
.quote-section .section-head p { color: #b9c6dc; }
.quote-wave {
  display: none;
}
.quote-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}
.quote-inner h2 { color: #fff; }
.quote-inner p { color: #b9c6dc; }
.quote-inner .hero-form-wrap { position: relative; }

/* COTIZADOR (step wizard) */
.calc-wizard {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 42px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-dark);
}
.calc-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.calc-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #b7c0cf;
}
.calc-step-dot span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef1f7;
  color: #9aa6b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
}
.calc-step-dot.active { color: var(--text-dark); }
.calc-step-dot.active span { background: var(--gradient); color: #fff; }
.calc-step-dot.done span { background: var(--navy); color: var(--green); }
.calc-step-line { width: 40px; height: 2px; background: #eef1f7; margin-bottom: 22px; }

.calc-panel h3 { margin-bottom: 8px; }
.calc-panel > p { margin-bottom: 22px; font-size: 0.92rem; }

.calc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}
.calc-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  background: #fff;
  border: 2px solid #e4e9f1;
  border-radius: 18px;
  padding: 22px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.calc-option-icon { font-size: 1.8rem; margin-bottom: 6px; }
.calc-option strong { font-family: var(--font-heading); font-size: 1rem; color: var(--text-dark); }
.calc-option span:not(.calc-option-icon) { font-size: 0.8rem; color: var(--text-muted); }
.calc-option:hover { border-color: var(--blue); }
.calc-option.selected { border-color: var(--green); background: #f0fbf6; }

.calc-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 22px;
}
.calc-checkbox input { width: 18px; height: 18px; }

.calc-label { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 4px; }
.calc-hint { font-size: 0.82rem; margin-bottom: 12px; }
.calc-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #dde4ee;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.calc-actions { display: flex; gap: 12px; margin-top: 26px; }
.calc-actions .btn { flex: 1; justify-content: center; }
.calc-restart {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.calc-summary-line { font-size: 0.92rem; font-weight: 600; color: var(--text-muted); margin-bottom: 20px; }
.calc-price-box {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  margin-bottom: 22px;
}
.calc-price-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.calc-price { display: block; font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800; margin: 6px 0; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc-price-note { font-size: 0.78rem; color: var(--text-muted); }
.calc-includes { list-style: none; display: grid; gap: 8px; margin-bottom: 24px; }
.calc-includes li { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

.calc-charger-photo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-light);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 18px;
}
.calc-charger-photo img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.calc-charger-photo span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.calc-panel label:not(.calc-checkbox) { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 4px; margin-top: 14px; }
.calc-panel input[type="text"],
.calc-panel input[type="tel"],
.calc-panel input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #dde4ee;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .floating-chip { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-media { order: -1; margin-bottom: 10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .segments-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-float { margin-top: 24px; flex-direction: column; gap: 16px; }
  .trust-item { flex: 0 0 auto; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px;
    display: none;
    gap: 16px;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .brand-text { font-size: 1.1rem; }
  .brand-icon { height: 36px; width: 36px; }
  .includes-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 44px 1fr; gap: 14px; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; }
  .process-step:not(:last-child)::before { left: 21px; top: 44px; height: calc(100% - 44px); }
  .calc-wizard { padding: 28px 22px; }
  .calc-steps-indicator { gap: 4px; }
  .calc-step-line { width: 18px; }
  .calc-step-dot { font-size: 0.68rem; }
  .calc-actions { flex-direction: column; }
  .calc-price { font-size: 1.9rem; }
}
