﻿:root {
  --bg: #f7f7f4;
  --bg-soft: #efefe9;
  --ink: #07111f;
  --ink-soft: #0f2035;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #17191d;
  --muted: #58606f;
  --line: rgba(23, 25, 29, 0.08);
  --line-strong: rgba(23, 25, 29, 0.14);
  --accent: #1e5fff;
  --accent-strong: #0b5cff;
  --accent-soft: rgba(30, 95, 255, 0.12);
  --shadow: 0 24px 70px rgba(13, 18, 29, 0.08);
  --shadow-soft: 0 18px 40px rgba(13, 18, 29, 0.05);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 95, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #fafaf8 0%, #f4f4ef 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section--tight { padding: 2rem 0 4rem; }

.hero,
#programas,
.video-section,
.authority,
.contact {
  background:
    radial-gradient(circle at 12% 10%, rgba(30, 95, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #f6f8fb;
}

.hero .eyebrow,
#programas .eyebrow,
.video-section .eyebrow,
.authority .eyebrow,
.contact .eyebrow {
  color: #8fb0ff;
}

.hero h1,
.hero h2,
.hero h3,
#programas h2,
#programas h3,
.video-section h2,
.video-section h3,
.authority h2,
.authority h3,
.contact h2,
.contact h3 {
  color: #ffffff;
}

.hero p,
#programas p,
.video-section p,
.authority p,
.contact p {
  color: rgba(246, 248, 251, 0.76);
}

#programas .service-card,
.video-embed,
.authority__aside,
.contact__content,
.contact .form {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact .form__row label {
  color: #ffffff;
}

.contact .contact__email-inline {
  color: #ffffff;
}

#programas .service-card,
.video-embed,
.authority .quote-card,
.contact .form {
  backdrop-filter: blur(14px);
}

#programas .service-card p,
#programas .service-card li,
.video-section .section-head p,
.authority .quote-card span,
.contact .form__privacy,
.contact .form__status,
.contact .hubspot-form__fallback {
  color: rgba(246, 248, 251, 0.74);
}

#programas .service-card h3,
.authority .quote-card p {
  color: #ffffff;
}

.hero .btn--secondary,
.video-section .btn--secondary,
.authority .btn--secondary,
.contact .btn--secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  color: #ffffff;
}

#programas .service-card--featured {
  background: linear-gradient(180deg, rgba(30, 95, 255, 0.26), rgba(255,255,255,0.09));
  border-color: rgba(143, 176, 255, 0.38);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.15rem, 4.25vw, 4.15rem); max-width: 16ch; }
h2 { font-size: clamp(1.85rem, 3.6vw, 3.2rem); max-width: 18ch; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; color: var(--muted); }

h2 + p,
h3 + p {
  margin-top: 0.85rem;
}

:focus-visible {
  outline: 3px solid rgba(30, 95, 255, 0.85);
  outline-offset: 4px;
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin-bottom: 2.8rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 247, 244, 0.76);
  border-bottom: 1px solid rgba(23, 25, 29, 0.05);
}

body.nav-open {
  overflow: hidden;
}

.topbar__inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand__name {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__role {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
  background: rgba(255,255,255,0.8);
}

.nav__link--cta {
  color: #ffffff;
  background: var(--accent-strong);
  border: 1px solid var(--accent-strong);
  text-align: center;
  justify-content: center;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.66);
}

.language-switcher__item {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.language-switcher__item:hover,
.language-switcher__item.is-current {
  color: var(--text);
  background: var(--surface-strong);
}

.lang-long { display: none; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  min-height: calc(86vh - var(--nav-h));
  display: grid;
  align-items: center;
  overflow: clip;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.hero__backdrop,
.contact__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 95, 255, 0.16), transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(30, 95, 255, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}

.hero__backdrop {
  background:
    radial-gradient(circle at 18% 18%, rgba(30, 95, 255, 0.34), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(143, 176, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(7,17,31,0), rgba(7,17,31,0.16));
}

.hero__grid,
.split__grid,
.contact__grid,
.authority__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero__grid {
  grid-template-rows: auto auto;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__lead {
  max-width: 62ch;
  font-size: 1.02rem;
  margin-top: 1.2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero__meta span {
  padding: 0.55rem 0 0.55rem 0.9rem;
  background: transparent;
  border-left: 2px solid rgba(143, 176, 255, 0.62);
  color: rgba(246, 248, 251, 0.82);
  font-size: 0.9rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero__support {
  margin-top: 0;
  font-size: 0.96rem;
}

.hero__support a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.hero__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 0.4rem;
}

.hero-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 560px;
  background: #dfe3eb;
}

.hero-card__image,
.media-block {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.hero-card__image {
  background-image:
    linear-gradient(180deg, rgba(13,18,29,0.04), rgba(13,18,29,0.35)),
    url('./img/conference.webp');
}

.hero-card__overlay {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  justify-content: flex-start;
}

.hero-card__tag {
  display: inline-flex;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(23,25,29,0.08);
  font-size: 0.9rem;
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn--primary {
  background: var(--accent-strong);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover { box-shadow: var(--shadow); }

.btn--secondary {
  background: rgba(255,255,255,0.84);
  border-color: var(--line);
  color: var(--text);
}

.btn--full { width: 100%; }

.stats__grid,
.services__grid,
.benefits__grid,
.formats__grid,
.testimonials,
.trust-grid {
  display: grid;
  gap: 1.25rem;
}

.stats__grid { grid-template-columns: repeat(4, 1fr); }

.stat,
.service-card,
.benefit,
.format-card,
.testimonial,
.quote-card,
.form,
.hubspot-form,
.logos,
.authority__aside,
.contact__content {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stat {
  padding: 1.5rem;
  min-height: 100%;
}

.stat--metric {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(239,244,255,0.92));
  border-color: rgba(30,95,255,0.2);
}

.stat__value {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.service-card {
  padding: 1.6rem;
  display: grid;
  gap: 1.15rem;
}

.services__grid { grid-template-columns: 1.15fr 1fr 1fr; }
.service-card--featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(239,244,255,0.9));
  border-color: rgba(30,95,255,0.18);
}

.quick-answer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-answer article {
  padding: 1.25rem 1.5rem;
}

.quick-answer article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-answer h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  color: #ffffff;
}

.quick-answer p {
  color: rgba(246, 248, 251, 0.76);
}

.service-card--platform {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(12, 32, 52, 0.94), rgba(10, 63, 128, 0.88)),
    radial-gradient(circle at 92% 12%, rgba(143, 176, 255, 0.35), transparent 32%);
  border-color: rgba(143, 176, 255, 0.32);
  color: #ffffff;
}

.service-card--platform .service-card__kicker {
  color: #9fbdff;
}

.service-card--platform h3 {
  color: #ffffff;
}

.service-card--platform p,
.service-card--platform li {
  color: rgba(246, 248, 251, 0.78);
}

.service-card__kicker {
  display: inline-flex;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-card ul {
  padding-left: 1.15rem;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 0.55rem;
}

.split__content,
.contact__content {
  display: grid;
  gap: 1rem;
}

.split__intro { font-size: 1.06rem; }

.feature-list {
  display: grid;
  gap: 1.35rem;
  margin-top: 0.8rem;
}

.feature-list article {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.media-block {
  min-height: 620px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-block--event {
  background-image:
    linear-gradient(180deg, rgba(13,18,29,0.08), rgba(13,18,29,0.18)),
    url('./img/event.jpg');
}

.media-block--podcast {
  background-image:
    linear-gradient(180deg, rgba(13,18,29,0.08), rgba(13,18,29,0.18)),
    url('./img/laia-podcast-2.jpg');
}

.media-block--tv {
  background-image:
    linear-gradient(180deg, rgba(13,18,29,0.06), rgba(13,18,29,0.16)),
    url('./img/tv.webp');
  min-height: 560px;
}

.benefits__grid,
.formats__grid,
.testimonials,
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit,
.format-card,
.testimonial,
.quote-card {
  padding: 1.5rem;
}

.format-card,
.testimonial,
.benefit {
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.benefit span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
  color: var(--accent);
}

.split__grid--reverse { grid-template-columns: 0.95fr 1.05fr; }

.authority__aside,
.contact__content {
  padding: 2rem;
}

.quote-card {
  height: 100%;
  display: grid;
  gap: 1rem;
  align-content: space-between;
}

.authority .quote-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
  padding: 1.5rem;
}

.authority .quote-card p {
  color: var(--text);
}

.authority .quote-card span {
  color: var(--muted);
}

.contact__content p,
.contact__support,
.contact .form__privacy,
.contact .form__status {
  color: rgba(255,255,255,0.88);
}

.contact__content {
  background: rgba(255,255,255,0.12);
}

.quote-card p {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.45;
}

.quote-card span,
.testimonial span,
.form__privacy,
.hero__support,
.contact__support {
  font-size: 0.94rem;
  color: var(--muted);
}

.logos {
  padding: 1.4rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.logos span {
  padding: 0.95rem 0.7rem;
  border-radius: 18px;
  background: rgba(23,25,29,0.03);
  color: #6e7684;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.82rem;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-section .section-head {
  max-width: none;
}

#videos-title {
  max-width: none;
  width: 100%;
  font-size: clamp(1.65rem, 2.6vw, 2.65rem);
  line-height: 1.12;
}

.testimonial-slider {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 1.5rem;
  padding: 0.2rem 0 1rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  min-width: 100%;
}

.testimonial-slide {
  scroll-snap-align: start;
  width: min(315px, calc(100vw - 3rem));
  min-height: 210px;
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
}

.testimonial-slide p {
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text);
}

.testimonial-slide span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.contact {
  overflow: clip;
}

.contact__grid,
.contact__layout {
  position: relative;
  z-index: 1;
}

.contact__layout {
  display: grid;
  gap: 1.35rem;
}

.contact__content--wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact__content--wide .eyebrow {
  grid-column: 1 / -1;
}

.contact__content--wide h2 {
  grid-column: 1;
  max-width: 16ch;
}

.contact__copy {
  grid-column: 2;
}

.contact__copy {
  display: grid;
  gap: 1rem;
}

.contact__email {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
}

.contact__email-inline {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.legal-page .topbar {
  background: rgba(247, 247, 244, 0.94);
}

.legal-content {
  background: var(--surface);
  color: var(--text);
}

.legal-content .container {
  max-width: 1040px;
}

.legal-content h1 {
  max-width: 920px;
  margin: 0 0 2rem;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  max-width: 860px;
  margin-top: 2.3rem;
  margin-bottom: 0.8rem;
}

.legal-content h2 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.legal-content h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.legal-content p,
.legal-content li {
  max-width: 860px;
  color: var(--muted);
  line-height: 1.78;
}

.legal-content ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
  padding-left: 1.35rem;
}

.legal-content a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-content code {
  padding: 0.12rem 0.35rem;
  border-radius: 5px;
  background: rgba(12, 32, 52, 0.08);
  color: var(--text);
  font-size: 0.94em;
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.25rem 0 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.legal-content table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.legal-content th,
.legal-content td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
  line-height: 1.6;
}

.legal-content th {
  background: rgba(12, 32, 52, 0.06);
  color: var(--text);
  font-weight: 800;
}

.legal-content td {
  color: var(--muted);
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

.form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.contact .form {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.contact .form .form__row--full,
.contact .form .btn,
.contact .form .form__privacy,
.contact .form .form__status {
  grid-column: 1 / -1;
}

.form__row {
  display: grid;
  gap: 0.6rem;
}

.form__row label {
  color: var(--text);
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  font-size: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.92);
  padding: 0.92rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(30,95,255,0.4);
  box-shadow: 0 0 0 4px rgba(30,95,255,0.08);
}

.form input[aria-invalid="true"],
.form select[aria-invalid="true"],
.form textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.1);
}

.form__status {
  min-height: 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
}

.hubspot-form {
  width: 100%;
  min-height: 420px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.hubspot-form.is-submitted {
  min-height: 0 !important;
  height: auto;
  align-content: start;
}

.hubspot-form.is-submitted > div,
.hubspot-form.is-submitted .hbspt-form,
.hubspot-form.is-submitted .hs-form,
.hubspot-form.is-submitted form,
.hubspot-form.is-submitted fieldset {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

.hubspot-form.is-submitted iframe {
  min-height: 0 !important;
}

.hubspot-form__fallback {
  margin: 0;
  color: var(--muted) !important;
}

.hubspot-form__fallback a {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hubspot-form iframe {
  width: 100% !important;
  min-height: 520px;
  border: 0;
}

.hubspot-form .hs-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hubspot-form .hs-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  width: 100%;
  min-width: 0;
  max-width: none !important;
  margin: 0;
  padding: 0;
  border: 0;
}

.hubspot-form .hs-form .form-columns-1 {
  grid-template-columns: 1fr;
}

.hubspot-form .hs-form fieldset .hs-form-field {
  width: 100% !important;
  float: none !important;
}

.hubspot-form .hs-form .input {
  margin-right: 0 !important;
}

.hubspot-form .hs-form-field {
  display: grid;
  gap: 0.6rem;
}

.hubspot-form .hs-form-field > label,
.hubspot-form .hs-form-field legend {
  color: var(--text) !important;
  font-weight: 600;
}

.hubspot-form .hs-form-field > label span,
.hubspot-form .hs-form-field legend span {
  color: var(--text) !important;
}

.hubspot-form .hs-form-required {
  color: var(--accent-strong) !important;
}

.hubspot-form .hs-input,
.hubspot-form input:not([type="submit"]),
.hubspot-form select,
.hubspot-form textarea {
  width: 100% !important;
  min-height: 52px;
  font-size: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  padding: 0.92rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hubspot-form textarea {
  min-height: 145px;
  resize: vertical;
}

.hubspot-form input[type="checkbox"],
.hubspot-form input[type="radio"] {
  width: 1.05rem !important;
  min-height: 1.05rem;
  margin: 0.18rem 0.55rem 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--accent-strong);
  flex: 0 0 auto;
}

.hubspot-form .inputs-list label {
  display: flex;
  align-items: flex-start;
  color: var(--muted) !important;
}

.hubspot-form .inputs-list label span {
  color: var(--muted) !important;
}

.hubspot-form .hs-input:focus,
.hubspot-form input:not([type="submit"]):focus,
.hubspot-form select:focus,
.hubspot-form textarea:focus {
  border-color: rgba(143, 176, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(143, 176, 255, 0.18);
}

.hubspot-form .hs-fieldtype-textarea,
.hubspot-form .legal-consent-container,
.hubspot-form .hs-dependent-field,
.hubspot-form .hs_error_rollup,
.hubspot-form .hs-submit,
.hubspot-form .hs-richtext {
  grid-column: 1 / -1;
}

.hubspot-form .legal-consent-container,
.hubspot-form .hs-richtext {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hubspot-form .legal-consent-container a,
.hubspot-form .hs-richtext a {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hubspot-form ul {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hubspot-form .hs-error-msgs label,
.hubspot-form .hs-error-msg,
.hubspot-form .hs-error-msgs .hs-main-font-element {
  color: #b42318;
  font-size: 0.92rem;
}

.hubspot-form .submitted-message {
  color: var(--text);
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  border-left: 6px solid var(--accent-strong);
  border-radius: 18px;
  background: rgba(30, 95, 255, 0.08);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.hubspot-form input[type="submit"],
.hubspot-form .hs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 52px;
  padding: 0 1.3rem;
  border: 1px solid var(--accent-strong);
  border-radius: 999px;
  background: var(--accent-strong);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hubspot-form input[type="submit"]:hover,
.hubspot-form .hs-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.footer {
  padding: 1.6rem 0 2.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer__links a:hover {
  color: var(--text);
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ok .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.motion-ok .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.12s; }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.28s; }

@media (max-width: 1180px) {
  .topbar__inner {
    gap: 1rem;
  }

  .brand__role {
    display: none;
  }

  .nav__toggle {
    display: inline-block;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 1rem;
    left: 1rem;
    max-height: calc(100vh - var(--nav-h) - 2rem);
    overflow-y: auto;
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    min-height: 44px;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
    border: 0;
    background: rgba(23,25,29,0.035);
    border-radius: 16px;
    padding: 0.35rem;
  }

  .language-switcher__item {
    flex: 1;
    min-height: 36px;
    font-size: 0.84rem;
    font-weight: 700;
  }

  .lang-short { display: none; }
  .lang-long { display: inline; }

  .nav__link--cta {
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background: var(--accent-strong);
    border-color: var(--accent-strong);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .split__grid,
  .split__grid--reverse,
  .contact__grid,
  .authority__grid,
  .services__grid,
  .stats__grid,
  .benefits__grid,
  .formats__grid,
  .testimonials,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services__grid > :first-child,
  .hero__content,
  .hero__visual,
  .split__content,
  .split__visual,
  .contact__content,
  .form {
    grid-column: span 2;
  }

  .contact__layout .contact__content,
  .contact__layout .form {
    grid-column: auto;
  }

  .hero-card,
  .media-block,
  .media-block--tv { min-height: 520px; }
  .logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  :root { --nav-h: 74px; }

  .section { padding: 4.5rem 0; }

  .topbar__inner { min-height: var(--nav-h); }

  .nav__toggle { display: inline-block; }

  .nav__menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav__menu.is-open { display: flex; }

  .nav__link { width: 100%; }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher__item {
    flex: 1;
  }

  .hero__grid,
  .split__grid,
  .split__grid--reverse,
  .contact__grid,
  .authority__grid,
  .services__grid,
  .stats__grid,
  .benefits__grid,
  .formats__grid,
  .testimonials,
  .trust-grid,
  .logos {
    grid-template-columns: 1fr;
  }

  .services__grid > :first-child,
  .hero__content,
  .hero__visual,
  .split__content,
  .split__visual,
  .contact__content,
  .form {
    grid-column: auto;
  }

  .hero__actions { flex-direction: column; }
  .btn { width: 100%; }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 0.85rem;
    font-size: 0.9rem;
  }

  .hero__footer {
    align-items: stretch;
  }

  .contact__content--wide {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact__content--wide .eyebrow,
  .contact__content--wide h2,
  .contact__copy {
    grid-column: 1;
  }

  .contact .form {
    grid-template-columns: 1fr;
  }

  .quick-answer {
    grid-template-columns: 1fr;
  }

  .quick-answer article {
    padding: 1.1rem 0;
  }

  .quick-answer article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hubspot-form .hs-form {
    grid-template-columns: 1fr;
  }

  .hubspot-form .hs-form fieldset {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .media-block,
  .media-block--tv { min-height: 400px; }

  .topbar { background: rgba(247,247,244,0.9); }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .section { padding: 3.75rem 0; }
  .hero__grid,
  .split__grid,
  .contact__grid,
  .authority__grid { gap: 2rem; }
  .hero-card,
  .media-block,
  .media-block--tv { min-height: 320px; border-radius: 24px; }
  .stat,
  .service-card,
  .benefit,
  .format-card,
  .testimonial,
  .quote-card,
  .form,
  .contact__content { padding: 1.15rem; border-radius: 20px; }
  .hero-card__tag { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

