﻿:root {
  --primary: #0d4ea6;
  --primary-dark: #0a3f86;
  --accent: #1aa3a8;
  --success: #12b76a;
  --ink: #0e2f5a;
  --muted: #475467;
  --bg: #f2f7fc;
  --card: #ffffff;
  --border: #d5e1ef;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(13, 78, 166, 0.08) 0, rgba(13, 78, 166, 0) 38%),
    radial-gradient(circle at 92% 10%, rgba(26, 163, 168, 0.09) 0, rgba(26, 163, 168, 0) 35%),
    linear-gradient(180deg, #f5f9fd 0%, #eef6fc 100%);
  line-height: 1.5;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 16px; top: 16px; z-index: 10000;
  background: #fff; padding: 10px 12px; border-radius: 8px;
}

.container { width: min(1120px, 92vw); margin-inline: auto; }
.section { padding: 56px 0; }
.section-alt { background: linear-gradient(180deg, rgba(13, 78, 166, 0.05) 0%, rgba(26, 163, 168, 0.06) 100%); }

h1,h2,h3 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: -0.02em;
}
h1 { font-size: 2rem; line-height: 1.12; }
h2 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 12px; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #0d4ea6;
  background: #dce9f8;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead { font-size: 1rem; max-width: 62ch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  border-radius: 10px;
  width: 190px;
}

.logo-link img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 4vw 14px;
}

.main-nav a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 600;
}

.main-nav.is-open { display: block; }

.menu-toggle {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}

.nav-cta { display: none; }

@media (max-width: 959px) {
  .nav-cta { display: none !important; }
  .logo-link { width: 150px; }
  .menu-toggle { padding: 8px 10px; }
}

.hero { padding-top: 36px; }
.hero-grid { display: grid; gap: 24px; }
.hero-cta { display: grid; gap: 10px; margin: 20px 0; }

.hero-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.hero-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
}
.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media { overflow: hidden; }
.hero-media img {
  border-bottom: 1px solid var(--border);
  filter: saturate(0.95) contrast(1.05);
}

.kpi-row { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 12px; }
.kpi-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}
.kpi-item strong { display: block; margin-bottom: 4px; }
.kpi-item span { color: var(--muted); font-size: 0.9rem; }

.trust-strip { border-block: 1px solid var(--border); background: #fff; }
.trust-grid { display: grid; gap: 12px; padding: 16px 0; }
.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid #dfe8f7;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.trust-dot {
  margin-top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0057ff 0%, #00a86b 100%);
  box-shadow: 0 0 0 4px rgba(0, 87, 255, 0.12);
}
.trust-item strong {
  display: block;
  font-size: 1rem;
}
.trust-item p {
  margin: 3px 0 0;
  font-size: 0.9rem;
}

.card-grid { display: grid; gap: 14px; }
.feature-card,.action-card,.testimonial,.step { padding: 18px; }
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e3f4;
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fcff 100%),
    linear-gradient(135deg, rgba(0,87,255,0.06) 0%, rgba(0,168,107,0.06) 100%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid transparent;
  background: linear-gradient(140deg, rgba(0, 87, 255, 0.32), rgba(0, 168, 107, 0.3)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: #c8d8f4;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}
.feature-index {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d4ea6;
  background: #dce9f8;
}
.section-kicker {
  margin: 0 0 8px;
  color: #1f4cab;
  font-family: Poppins, Inter, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.step span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: Poppins, Inter, sans-serif;
  color: #0d4ea6;
  background: #dce9f8;
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.steps-grid {
  position: relative;
  display: grid;
  gap: 14px;
}
.step {
  position: relative;
  min-height: 208px;
  border: 1px solid #d8e3f4;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,87,255,.35) 0%, rgba(0,168,107,.45) 100%);
}
.step > span,
.step > h3,
.step > p {
  position: relative;
  z-index: 1;
  margin-left: 16px;
}
.step h3 { margin-top: 4px; }
.step:hover {
  transform: translateY(-4px);
  border-color: #c8d8f4;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.flow-line {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid #b8cdee;
  display: grid;
  gap: 10px;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding-left: 12px;
}

.flow-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0d4ea6;
  color: #fff;
  font-weight: 700;
  font-family: Poppins, Inter, sans-serif;
  margin-top: 2px;
}

.flow-item h3 {
  margin: 0 0 4px;
}

.flow-item p {
  margin: 0;
}

.who-hero-section {
  position: relative;
  padding: 72px 0;
}
.who-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.who-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
}
.who-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.who-hero-wrap {
  position: relative;
  z-index: 1;
}
.who-hero-card {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.32);
}
.who-hero-side-image {
  min-height: 280px;
}
.who-hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.who-hero-content {
  padding: 28px;
  color: #0f172a;
}
.who-hero-content p {
  color: #172a4a;
}
.who-hero-stats {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}
.who-hero-stats article {
  border: 1px solid #d8e3f4;
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
}
.who-hero-stats strong {
  display: block;
  color: #0b2553;
  font-size: .95rem;
}
.who-hero-stats span {
  color: #4e6285;
  font-size: .84rem;
}
.who-hero-list {
  margin: 0 0 10px;
  padding-left: 18px;
  color: #203257;
  display: grid;
  gap: 4px;
}
.who-hero-actions {
  display: grid;
  gap: 8px;
}
.who-hero-content .btn-primary {
  margin-top: 8px;
  background: linear-gradient(135deg, #0d4ea6 0%, #0a3f86 100%);
  border-color: #0d4ea6;
}
.who-hero-content .btn-secondary {
  border: 1px solid #b8cbef;
  color: #1649b7;
  background: #eef4ff;
}
.actions-intro {
  max-width: 68ch;
  margin-bottom: 14px;
}
.action-card {
  position: relative;
  border: 1px solid #d8e3f4;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.action-card:hover {
  transform: translateY(-4px);
  border-color: #bfd3f2;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.13);
}
.action-chip {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #0b4fcf;
  background: #e2edff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.actions-cta {
  margin-top: 16px;
  border: 1px solid #d4e2f7;
  border-radius: 14px;
  background: linear-gradient(110deg, #f7fbff 0%, #eff8f3 100%);
  padding: 14px;
  display: grid;
  gap: 10px;
  align-items: center;
}
.actions-cta p {
  margin: 0;
  color: #1f355b;
  font-weight: 500;
}

.use-cases {
  display: grid;
  gap: 10px;
}

.use-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid #d6e2f3;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.use-icon {
  min-width: 44px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: .74rem;
  font-weight: 700;
  color: #0d4ea6;
  background: #e8f1ff;
  border: 1px solid #c7daf6;
  font-family: Poppins, Inter, sans-serif;
}

.use-item h3 {
  margin: 0 0 2px;
  font-size: 1.03rem;
}

.use-item p {
  margin: 0;
}

.car-strip-wrap {
  border-radius: 18px;
  border: 1px solid #173e90;
  background: linear-gradient(100deg, #0e356d 0%, #0d4ea6 45%, #1a8f96 100%);
  color: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 16px;
  align-items: center;
}
.car-strip-wrap h2,
.car-strip-wrap p { color: #fff; }
.car-strip-content h2 { margin-bottom: 6px; }
.car-claim {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}
.car-claim strong {
  color: #ffd84d;
}
.car-strip-visual {
  width: 100%;
  max-width: 210px;
  justify-self: start;
}
.car-strip-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}
.car-mini {
  color: #cde0ff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--ink); }
.faq-item p { margin-top: 10px; }

.reviews-block {
  border: 1px solid #d3e0ee;
  border-radius: 16px;
  background: linear-gradient(140deg, #0e3b7a 0%, #0d4ea6 46%, #1a8f96 100%);
  padding: 18px;
}
.reviews-block h2 {
  color: #fff;
  margin: 0 0 12px;
}
.reviews-block .section-kicker {
  color: #bfe6ff;
  opacity: .95;
}
.reviews-marquee {
  overflow: hidden;
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: reviews-scroll 38s linear infinite;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}
.review-card {
  width: min(340px, 80vw);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(8, 25, 52, 0.26);
  color: #e9f2ff;
}
.review-card p {
  color: #e9f2ff;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.review-head small {
  display: block;
  color: #c6daf8;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.review-stars {
  margin: 0 0 8px;
  color: #ffd84d !important;
  letter-spacing: 1px;
  font-weight: 700;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

.cta-final {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e356d 0%, #0d4ea6 45%, #1a8f96 100%);
}
.cta-final::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -90px;
  top: -120px;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 70%);
}
.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 880px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 18px;
  background: rgba(8, 39, 86, 0.22);
  backdrop-filter: blur(3px);
  padding: 24px 18px;
}
.cta-box h2,
.cta-box p { color: #fff; }
.cta-box .btn-primary {
  background: #ffffff;
  color: #0a3f86;
  border-color: #ffffff;
  box-shadow: 0 10px 24px rgba(8, 28, 67, 0.28);
}
.cta-box .btn-primary:hover {
  background: #e9f2ff;
  color: #08356f;
  border-color: #e9f2ff;
}
.cta-kicker {
  margin: 0 0 8px;
  color: #bfe6ff;
  font-family: Poppins, Inter, sans-serif;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.cta-trust {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.cta-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  color: #edf6ff;
  background: rgba(255,255,255,.08);
  font-size: .9rem;
}

.contact-grid { display: grid; gap: 18px; }
.contact-info-panel {
  border: 1px solid #d8e3f3;
  border-radius: 16px;
  background: linear-gradient(170deg, #ffffff 0%, #f4f9ff 100%);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.contact-list a { color: var(--primary-dark); }

.map-card {
  margin-top: 14px;
  border: 1px solid #d2deef;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}
.map-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.map-card p {
  margin: 0 0 10px;
  color: #395276;
}
.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #c8d7ee;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.contact-form {
  padding: 20px;
  display: grid;
  gap: 10px;
  border: 1px solid #cfdcf0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.form-kicker {
  margin: 0;
  color: #0d4ea6;
  font-family: Poppins, Inter, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.contact-form h3 {
  margin: 0 0 6px;
}

.contact-form label { font-weight: 600; font-size: 0.94rem; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd5df;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

.contact-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #45608a 50%),
    linear-gradient(135deg, #45608a 50%, transparent 50%),
    linear-gradient(#fff, #fff);
  background-position:
    calc(100% - 19px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px),
    100% 0;
  background-size: 6px 6px, 6px 6px, 2.8em 100%;
  background-repeat: no-repeat;
}

.contact-form select option {
  color: #102b52;
  background: #fff;
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a8da8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #b8d2ff;
  border-color: var(--primary);
}

.honey { position: absolute; left: -9999px; top: -9999px; }
.form-note { font-size: 0.86rem; margin-top: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  min-height: 48px;
  padding: 12px 16px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  border: 1px solid var(--primary);
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.28);
}

.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.85);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.hero-cta .btn-secondary,
.cookie-actions .btn-secondary,
.contact-form .btn-secondary,
.site-footer .btn-secondary,
.content-side .btn-secondary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
}

.btn-lg { padding-inline: 24px; }

.site-footer {
  background: #0f172a;
  color: #c9d4e6;
  padding: 38px 0 20px;
}

.site-footer h3 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.site-footer p,.site-footer a,.site-footer li { color: #c9d4e6; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-grid { display: grid; gap: 22px; }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #f3f8ff;
  border: 1px solid #d4e3f8;
}
.footer-logo-wrap img {
  width: 170px;
  height: auto;
  display: block;
}
.footer-copy {
  border-top: 1px solid rgba(228, 231, 236, 0.2);
  margin-top: 18px;
  padding-top: 14px;
}
.footer-copy p { margin: 0; font-size: 0.88rem; }

.float-stack {
  position: fixed;
  right: 14px;
  bottom: 16px;
  z-index: 95;
  display: grid;
  gap: 10px;
}

.mail-float,
.whatsapp-float {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-family: Poppins, Inter, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35);
}

.mail-float { background: linear-gradient(135deg, #3276ff 0%, #2149b8 100%); }
.whatsapp-float {
  background: linear-gradient(135deg, #25d366 0%, #1aa34a 100%);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.cookie-modal {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 94;
  width: min(430px, calc(100vw - 24px));
  border: 1px solid #2d3a58;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f1f44 0%, #11244f 65%, #144a45 100%);
  color: #f7fbff;
  padding: 14px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.cookie-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  color: #d4e5ff;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-modal p { color: #dfe9f7; margin-bottom: 10px; }
.cookie-links { margin: 8px 0 0; font-size: 0.85rem; }
.cookie-links a { color: #b9d3ff; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.cookie-minimized {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 93;
  border: 1px solid #31589c;
  border-radius: 999px;
  padding: 8px 12px;
  color: #fff;
  background: #14336f;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cookie-icon {
  font-size: 1rem;
  line-height: 1;
}

.hidden { display: none !important; }

.page-hero { padding-top: 34px; }
.page-hero-grid { display: grid; gap: 18px; }
.page-hero-media img {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  filter: grayscale(12%) contrast(1.03);
}

.content-layout { display: grid; gap: 16px; }

.content-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.content-block + .content-block {
  margin-top: 14px;
}
.content-block {
  border: 1px solid #d7e3f2;
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.content-main h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.content-main p {
  font-size: 1rem;
  line-height: 1.6;
  color: #334d73;
}
.content-main p + p { margin-top: 8px; }
.content-main ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--ink);
}
.content-main li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.content-side {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(165deg, #0b5fff 0%, #00a86b 100%);
  color: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.content-side p,
.content-side li { color: #eff8ff; }

.content-side ul { margin: 8px 0 0; padding-left: 18px; }

.page-legal .content-layout {
  grid-template-columns: minmax(0, 1fr);
}

.page-legal .content-main {
  max-width: none;
}

.page-legal .content-side {
  background: linear-gradient(150deg, #0d4ea6 0%, #1a8f96 100%);
}

.ev-layout {
  display: grid;
  gap: 16px;
}

.ev-card {
  padding: 20px;
}

.ev-badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #dce9f8;
  color: #0d4ea6;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}
.ev-highlight {
  margin: 10px 0 0;
  display: inline-block;
  line-height: 1.35;
  border-radius: 999px;
  background: #e8f4ff;
  border: 1px solid #c1d9f8;
  color: #0b3f86;
  font-weight: 600;
  padding: 8px 14px;
}
.ev-highlight strong {
  color: #0d4ea6;
  white-space: nowrap;
}
.check-grid .card {
  padding: 16px;
}

@media (max-width: 699px) {
  .ev-highlight {
    display: block;
    border-radius: 14px;
    padding: 10px 12px;
    font-size: 1.05rem;
  }

  .float-stack {
    right: 12px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    gap: 10px;
  }

  .mail-float,
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .cookie-modal {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 84px;
  }
  .map-embed iframe {
    height: 200px;
  }
  .car-strip-visual {
    max-width: 100%;
    justify-self: stretch;
  }
  .car-strip-visual img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
  }
}

@media (min-width: 700px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .kpi-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .car-strip-wrap { grid-template-columns: 1.1fr auto auto; }
  .car-strip-visual { justify-self: center; }
  .who-hero-card { display: grid; grid-template-columns: 0.95fr 1.05fr; }
  .who-hero-side-image { min-height: 360px; }
  .who-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .who-hero-actions { grid-template-columns: repeat(2, minmax(0, max-content)); justify-content: start; }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .actions-cta { grid-template-columns: 1fr auto; }
  .cta-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .use-cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .section { padding: 88px 0; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }

  .menu-toggle { display: none; }
  .nav-wrap { grid-template-columns: auto 1fr auto; gap: 14px; }
  .logo-link { width: 220px; }
  .main-nav { gap: 16px; }

  .main-nav {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom: 0;
    padding: 0;
    background: transparent;
  }

  .main-nav a { padding: 6px 0; }
  .nav-cta { display: inline-flex; }

  .hero-grid {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 28px;
  }

  .hero-cta { grid-template-columns: auto auto; justify-content: start; }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .card-grid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .steps-grid::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0,87,255,.4) 0%, rgba(0,168,107,.5) 100%);
  }
  .step::before {
    left: 18px;
    top: 22px;
    bottom: auto;
    width: calc(100% - 36px);
    height: 3px;
  }

  .flow-line {
    border-left: 0;
    border-top: 2px solid #b8cdee;
    padding-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .flow-item {
    padding-left: 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .use-cases { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .page-hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    align-items: center;
  }

  .content-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .page-legal .content-layout {
    grid-template-columns: 1.45fr 0.55fr;
    gap: 18px;
  }

  .page-legal .content-side {
    position: sticky;
    top: 96px;
    align-self: start;
  }

  .ev-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .who-hero-card { grid-template-columns: .9fr 1.1fr; }
  .who-hero-side-image { min-height: 420px; }

  .who-stats { grid-template-columns: 1fr; }

  .narrow { width: min(860px, 92vw); }
}


/* Definicion CAE: layout centrado + toggles */
.page-definicion .content-layout {
  grid-template-columns: minmax(0, 1fr);
}

.page-definicion .content-main {
  max-width: 860px;
  margin-inline: auto;
}

.page-definicion .content-side {
  max-width: 700px;
  margin: 14px auto 0;
  background: linear-gradient(150deg, #0d4ea6 0%, #1a8f96 100%);
}

.content-accordion {
  display: grid;
  gap: 10px;
}

.content-toggle {
  border: 1px solid #cbdaf1;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
}

.content-toggle summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0e2f5a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-toggle summary::-webkit-details-marker {
  display: none;
}

.content-toggle summary::after {
  content: "+";
  color: #0d4ea6;
  font-size: 1.2rem;
  font-weight: 700;
}

.content-toggle[open] summary::after {
  content: "−";
}

.toggle-body {
  padding: 0 14px 12px;
}

.toggle-body p {
  margin: 0 0 8px;
}

.toggle-body ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

@media (min-width: 960px) {
  .page-definicion .content-side {
    position: static;
    top: auto;
  }
}

/* Definicion CAE: refinement visual */
.page-definicion .content-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.page-definicion .content-main {
  max-width: none;
  margin-inline: 0;
}

.page-definicion .content-side {
  max-width: none;
  margin: 0;
  border: 1px solid #2b7db2;
}

.content-toggle summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.content-toggle summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #b5cdef;
  background: #eef5ff;
  color: #0d4ea6;
  font-size: 1rem;
  font-weight: 700;
}

.content-toggle[open] summary::after {
  content: "−";
}

.toggle-body {
  border-top: 1px solid #d7e4f4;
  padding: 12px 16px 14px;
}

@media (min-width: 960px) {
  .page-definicion .content-layout {
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }

  .page-definicion .content-side {
    position: sticky;
    top: 96px;
  }
}
