:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5edf8;
  background: #08111f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(139, 92, 246, 0.22), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(14, 165, 233, 0.18), transparent 30%),
    #08111f;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(8, 17, 31, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: #a8b4c7;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(148, 163, 184, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-trigger__bar {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #e5edf8;
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mobile-menu-trigger[aria-expanded="true"] .mobile-menu-trigger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-trigger[aria-expanded="true"] .mobile-menu-trigger__bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-trigger[aria-expanded="true"] .mobile-menu-trigger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.language-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.language-trigger {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  color: #a8b4c7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(148, 163, 184, 0.12);
}

.language-trigger__icon {
  color: #7dd3fc;
  font-size: 13px;
  line-height: 1;
}

.language-trigger__chevron {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.15s ease;
}

.language-trigger[aria-expanded="true"] .language-trigger__chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 80;
  min-width: 148px;
  padding: 6px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  background: #1e293b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  color: #d1d5db;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: rgba(99, 102, 241, 0.15);
}

.language-menu strong {
  color: #94a3b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 900;
}

.language-menu span {
  color: #d1d5db;
  font-size: 13px;
  font-weight: 750;
}

.language-menu button.is-active strong,
.language-menu button.is-active span {
  color: #a5b4fc;
}

.login-link {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease,
    color 0.16s ease;
  appearance: none;
  font-family: inherit;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #7c3aed);
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.34);
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 42px rgba(124, 58, 237, 0.5), 0 12px 28px rgba(14, 165, 233, 0.14);
}

.button-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.36);
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
}

.button-secondary,
.button-ghost {
  color: #dbeafe;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.56);
}

.button-secondary:hover,
.button-ghost:hover {
  color: #fff;
  border-color: rgba(125, 211, 252, 0.48);
  background: rgba(30, 41, 59, 0.78);
  transform: translateY(-1px);
}

.button-secondary:active,
.button-ghost:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 3px solid rgba(125, 211, 252, 0.36);
  outline-offset: 3px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.selector {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 66px;
}

.selector-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.selector-logo img {
  width: min(220px, 48vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 34px rgba(139, 92, 246, 0.34));
}

.selector-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: 64px;
  margin-bottom: 42px;
}

.selector-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 38px;
  margin: 0 0 26px;
  padding: 0 18px;
  border: 1px solid rgba(168, 85, 247, 0.58);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.16);
  color: #d8b4fe;
  font-size: 13px;
  font-weight: 950;
}

.selector-copy h1 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

.selector-copy p:not(.selector-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #bfdbfe;
  font-size: 19px;
  line-height: 1.65;
}

.selector-preview {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.selector-preview article {
  display: grid;
  gap: 5px;
  min-height: 78px;
  padding: 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.78);
}

.selector-preview span {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.selector-preview small {
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 700;
}

.line-menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.line-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  background: #111c31;
  color: #e5edf8;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.line-industrial { border-top: 4px solid #0ea5e9; }
.line-sales { border-top: 4px solid #22c55e; }
.line-onsite { border-top: 4px solid #eab308; }
.line-wellness { border-top: 4px solid #a855f7; }
.line-store { border-top: 4px solid #f59e0b; } /* Store: preparat per a un futur llançament, sense targeta visible */

.line-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  font-size: 24px;
  font-weight: 950;
  background: rgba(148, 163, 184, 0.13);
}

.line-industrial .line-icon { color: #38bdf8; background: rgba(14, 165, 233, 0.16); }
.line-sales .line-icon { color: #4ade80; background: rgba(34, 197, 94, 0.18); }
.line-onsite .line-icon { color: #fbbf24; background: rgba(234, 179, 8, 0.18); }
.line-wellness .line-icon { color: #c084fc; background: rgba(168, 85, 247, 0.18); }
.line-store .line-icon { color: #f59e0b; background: rgba(245, 158, 11, 0.18); }

/* Cercador de negoci amb IA */
.finder {
  margin: 0 0 42px;
  padding: 36px 32px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.55);
  text-align: center;
}

.finder-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 7px 18px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.finder h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 950;
  line-height: 1.15;
}

.finder-subtitle {
  max-width: 540px;
  margin: 0 auto 26px;
  color: #a8b4c7;
  font-size: 15.5px;
  line-height: 1.6;
}

.finder-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.finder-box textarea {
  flex: 1 1 280px;
  min-width: 0;
  resize: none;
  border: none;
  outline: none;
  background: transparent;
  color: #e5edf8;
  font-size: 15px;
  font-family: inherit;
  padding: 10px 12px;
  line-height: 1.5;
}

.finder-box button {
  flex-shrink: 0;
}

.finder-result {
  max-width: 720px;
  margin: 18px auto 0;
  padding: 22px 24px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

.finder-result--match {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.finder-result--nomatch {
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.finder-result--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  display: block;
  text-align: center;
}

.finder-result__label {
  font-size: 12.5px;
  font-weight: 700;
  color: #86efac;
  margin-bottom: 4px;
}

.finder-result__line {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
}

.finder-result__reason {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
  max-width: 460px;
}

.line-card h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.line-card strong {
  color: #dbeafe;
  font-size: 13px;
  line-height: 1.45;
}

.line-card p {
  margin: 24px 0 0;
  color: #a8b4c7;
  font-size: 15px;
  line-height: 1.65;
}

.hero {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 70px 0 64px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 46px 0 46px auto;
  width: min(560px, 48vw);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(14, 165, 233, 0.16), rgba(139, 92, 246, 0.14) 48%, rgba(249, 115, 22, 0.12)),
    rgba(15, 23, 42, 0.58);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.hero-art {
  position: absolute;
  right: min(4vw, 46px);
  top: 50%;
  width: min(500px, 42vw);
  transform: translateY(-50%);
  opacity: 0.72;
  filter: drop-shadow(0 34px 70px rgba(124, 58, 237, 0.3));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.strengths h2,
.band h2,
.contact h2 {
  margin: 0;
  color: #fff;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  font-weight: 950;
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 22px;
  color: #a8b4c7;
  font-size: 19px;
  line-height: 1.65;
}

.line-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 700px;
  margin-bottom: 30px;
}

.line-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.pill-industrial { color: #7dd3fc; }
.pill-wellness { color: #c4b5fd; }
.pill-store { color: #fed7aa; }
.pill-shared { color: #dbeafe; }

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.metrics {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: -24px auto 34px;
  position: relative;
  z-index: 2;
}

.metrics article,
.strengths article,
.strengths div,
.solution-grid article,
.pricing-grid article,
.contact,
.legal-block {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.metrics article {
  min-height: 112px;
  padding: 22px;
}

.metrics strong {
  display: block;
  color: #f59e0b;
  font-size: 34px;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 10px;
  color: #cbd5e1;
  font-weight: 800;
  line-height: 1.4;
}

.section {
  padding: 78px max(20px, calc((100vw - 1160px) / 2));
}

.strengths {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 18px;
  margin: 0 auto 34px;
}

.strengths article,
.strengths div {
  padding: 26px;
}

.strengths h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.strengths p {
  margin: 16px 0 0;
  color: #a8b4c7;
  font-size: 16px;
  line-height: 1.65;
}

.strengths div {
  display: grid;
  gap: 10px;
}

.strengths span {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  color: #dbeafe;
  background: rgba(2, 6, 23, 0.52);
  font-weight: 850;
  line-height: 1.4;
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-note {
  max-width: 780px;
  margin: 14px 0 0;
  color: #b8c4d6;
  font-size: 16px;
  line-height: 1.65;
}

.section-head h2,
.band h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 930;
}

.solution-grid,
.pricing-grid,
.advantage-grid,
.industrial-focus-grid,
.line-detail-grid {
  display: grid;
  gap: 16px;
}

.solution-grid,
.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-grid,
.industrial-focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.line-detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-grid article,
.pricing-grid article,
.advantage-grid article,
.industrial-focus-grid article,
.line-detail-grid article {
  padding: 24px;
}

.solution-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 9px;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.16);
  font-weight: 950;
}

.solution-grid h3,
.pricing-grid h3,
.advantage-grid h3,
.industrial-focus-grid h3,
.line-detail-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
}

.solution-grid p,
.pricing-grid p,
.advantage-grid p,
.industrial-focus-grid p,
.contact p,
.legal-block p {
  margin: 0;
  color: #a8b4c7;
  line-height: 1.6;
}

.advantage-grid article,
.industrial-focus-grid article,
.line-detail-grid article {
  min-height: 260px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.advantage-grid article,
.industrial-focus-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 28, 49, 0.94), rgba(7, 16, 30, 0.98)),
    linear-gradient(135deg, rgba(14, 165, 233, 0.12), transparent 42%);
}

.advantage-grid article::after,
.industrial-focus-grid article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.13) 1px, transparent 1px),
    linear-gradient(0deg, rgba(125, 211, 252, 0.13) 1px, transparent 1px);
  background-size: 17px 17px;
  opacity: 0.62;
  transform: rotate(7deg);
  pointer-events: none;
}

.advantage-grid h3,
.advantage-grid p,
.advantage-grid span,
.industrial-focus-grid h3,
.industrial-focus-grid p,
.industrial-focus-grid span {
  position: relative;
  z-index: 1;
}

.advantage-grid span,
.industrial-focus-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.14);
  font-size: 12px;
  font-weight: 950;
}

.industrial-focus {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 32%),
    #08111f;
}

.industrial-focus-grid article {
  background: rgba(2, 6, 23, 0.66);
}

.line-detail-grid h3 {
  font-size: 25px;
}

.line-detail-grid ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.line-detail-grid li {
  position: relative;
  padding-left: 20px;
  color: #cbd5e1;
  line-height: 1.5;
}

.line-detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #38bdf8;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr);
  gap: 42px;
  padding: 76px max(20px, calc((100vw - 1160px) / 2));
  color: #fff;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(249, 115, 22, 0.1)),
    #101827;
}

.band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.band li {
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe4f2;
  font-weight: 760;
}

.pricing-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-grid .featured {
  border-color: rgba(125, 211, 252, 0.48);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.22), 0 24px 70px rgba(14, 165, 233, 0.16);
}

.pricing-grid article > strong {
  display: block;
  margin-top: 18px;
  color: #7dd3fc;
  font-size: 42px;
  line-height: 1;
}

.pricing-grid span {
  color: #94a3b8;
  font-weight: 800;
}

.pricing-note {
  max-width: 760px;
  margin: -14px 0 24px;
  color: #a8b4c7;
  font-size: 16px;
  line-height: 1.6;
}

.pricing-features-banner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.pricing-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 13px;
  color: #a8b4c7;
}

.pricing-features-list span {
  color: #cbd5e1;
}

.plan-highlights {
  list-style: none;
  padding: 0;
  margin: 10px 0 16px;
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-highlights li { padding-left: 0; }
.plan-highlights strong {
  display: inline;
  margin: 0;
  color: #e5edf8;
  font-size: 14px;
  line-height: 1.35;
}

#preus .section-head {
  max-width: 680px;
  margin-bottom: 22px;
}

#preus .section-head h2 {
  max-width: 640px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.pricing-grid .badge {
  display: inline-block;
  padding: 3px 10px;
  background: #8b5cf6;
  color: white;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-addon-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: #a8b4c7;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.downloads {
  padding-top: 34px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.download-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.download-platform {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.14);
  font-size: 12px;
  font-weight: 950;
}

.download-grid h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 25px;
}

.download-grid p {
  flex: 1;
  margin: 0 0 22px;
  color: #a8b4c7;
  line-height: 1.65;
}

.contact {
  width: min(1160px, calc(100% - 40px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 54px;
  padding: 34px;
}

.contact p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 17px;
}

.contact-actions {
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}

.contact-modal__card {
  position: relative;
  width: min(480px, 100%);
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, #0d1f38, #0a1628);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.contact-modal__card h2 {
  margin: 0 36px 8px 0;
  color: #fff;
  font-size: 24px;
}

.contact-modal__card p {
  margin: 0 0 18px;
  color: #94a3b8;
  line-height: 1.55;
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  color: #cbd5e1;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__close:hover {
  background: rgba(148, 163, 184, 0.12);
}

.contact-modal form {
  display: grid;
  gap: 12px;
}

.contact-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-modal input,
.contact-modal select,
.contact-modal textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  color: #e5edf8;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  outline: none;
}

.contact-modal select option {
  background: #0a1628;
}

.contact-modal textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.5;
}

.contact-modal__status {
  min-height: 20px;
  margin: 0;
  color: #7dd3fc;
  font-size: 13px;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(20px, calc((100vw - 1160px) / 2));
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: #08111f;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer span {
  color: #fff;
  font-weight: 900;
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 84px;
}

.legal-main h1 {
  max-width: 780px;
  margin: 10px 0 28px;
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
}

.legal-block {
  margin-bottom: 14px;
  padding: 22px;
}

.legal-block h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

@media (max-width: 900px) {
  .mobile-menu-trigger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    background: #0b1626;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .selector-hero,
  .hero,
  .strengths,
  .band {
    grid-template-columns: 1fr;
  }

  .selector-hero {
    text-align: center;
    gap: 32px;
  }

  .selector-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .selector-copy p:not(.selector-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero::before,
  .hero-art {
    opacity: 0.16;
    width: 72vw;
    right: -18vw;
  }

  .metrics,
  .line-menu,
  .solution-grid,
  .pricing-grid,
  .advantage-grid,
  .industrial-focus-grid,
  .line-detail-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    height: 24px !important;
  }

  .button {
    width: 100%;
  }

  .site-header .button {
    width: auto;
    min-height: 40px;
    padding: 0 12px;
  }

  .hero,
  .selector,
  .metrics,
  .strengths,
  .contact {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 50px);
  }

  .selector-copy h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .hero-text {
    font-size: 16px;
  }

  .metrics,
  .line-menu,
  .solution-grid,
  .pricing-grid,
  .advantage-grid,
  .industrial-focus-grid,
  .line-detail-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .selector {
    padding-top: 44px;
  }

  .selector-logo {
    margin-bottom: 34px;
  }

  .selector-preview {
    padding: 14px;
  }

  .line-card {
    min-height: 0;
    padding: 24px;
  }

  .section,
  .band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact {
    padding: 22px;
  }

  .contact-modal__card {
    padding: 24px;
  }

  .contact-modal__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Banner de cookies ──────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 50%;
  width: min(calc(100vw - 32px), 860px);
  z-index: 200;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(20px);
  padding: 20px 22px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  transform: translateX(-50%);
  animation: cookie-slide-up 0.35s ease;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes cookie-slide-up {
  from { transform: translate(-50%, 18px); opacity: 0; }
  to   { transform: translate(-50%, 0);    opacity: 1; }
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  padding-right: 22px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.55;
}

.cookie-banner__text strong {
  color: #f8fafc;
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: 0;
}

.cookie-banner__text a {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-banner__btn-accept {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  background: #2563eb;
  color: white;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}

.cookie-banner__btn-accept:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.cookie-banner__btn-reject {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.cookie-banner__btn-reject:hover {
  border-color: rgba(148, 163, 184, 0.5);
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.07);
}

.cookie-banner__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #94a3b8;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.cookie-banner__close:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #f8fafc;
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 14px;
    width: calc(100vw - 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 16px 16px;
  }
  .cookie-banner__text {
    padding-right: 30px;
    font-size: 13px;
  }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column-reverse;
  }
  .cookie-banner__btn-accept,
  .cookie-banner__btn-reject {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
