:root {
  color-scheme: light;
  --font-primary: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --text-primary: #1f2937;
  --text-strong: #111827;
  --text-muted: #4b5563;
  --text-soft: #6b7280;
  --bg-page: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f2f4f7;
  --section-muted: #f3f4f6;
  --accent: #c89b2c;
  --accent-hover: #a98018;
  --accent-soft: rgba(200, 155, 44, 0.14);
  --border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 22px 55px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 16px 36px rgba(15, 23, 42, 0.06);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --field-bg: rgba(255, 255, 255, 0.85);
  --error: #d64545;
  --hero-primary: #245df0;
  --hero-primary-hover: #1a45bd;
  --hero-secondary-border: rgba(36, 93, 240, 0.3);
  --hero-shell: rgba(36, 93, 240, 0.08);
  --hero-glow: radial-gradient(circle at 30% 20%, rgba(36, 93, 240, 0.15), transparent 55%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
}

.page {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 48px) 16px clamp(48px, 5vw, 90px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
}

.section {
  position: relative;
  padding: clamp(24px, 4.5vw, 52px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section.has-bg {
  color: var(--text-strong);
}

.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.35;
}

.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96) 10%, rgba(255, 255, 255, 0.86) 58%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 6vw, 40px);
  padding: clamp(32px, 7vw, 64px) clamp(16px, 6vw, 32px);
  background: transparent;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 6vw, 32px);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 4vw, 20px);
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(28px, 6vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.hero__subheadline {
  margin: 0;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--text-muted);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__trust {
  display: none;
}

.hero__trust-label {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.hero__logos img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
}

.events-hero {
  background: radial-gradient(circle at top left, rgba(36, 93, 240, 0.16), transparent 45%), #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.events-hero__inner {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
}

.events-hero__eyebrow {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-primary);
}

.events-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.events-hero__benefits span {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(36, 93, 240, 0.08);
}

.events-hero__video {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
  aspect-ratio: 16 / 9;
  background: #050c1a;
}

.events-hero__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid rgba(200, 155, 44, 0.6);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(200, 155, 44, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--accent-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
}

.btn--hero-primary {
  background: var(--hero-primary);
  border-color: var(--hero-primary);
  box-shadow: 0 20px 40px rgba(36, 93, 240, 0.25);
  color: #fff;
  min-height: 52px;
}

.btn--hero-primary:hover {
  transform: translateY(-2px);
  background: var(--hero-primary-hover);
}

.btn--hero-secondary {
  background: transparent;
  color: var(--hero-primary);
  border-color: var(--hero-secondary-border);
  box-shadow: none;
  min-height: 52px;
}

.btn--hero-secondary:hover {
  transform: translateY(-2px);
  background: rgba(36, 93, 240, 0.08);
}

.hero__actions .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .btn {
    width: auto;
    min-width: 220px;
  }
}

@media (min-width: 768px) {
  .hero__logos {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 20px;
  }

  .hero__actions {
    align-items: center;
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-left: clamp(24px, 4vw, 48px);
    padding-right: clamp(24px, 4vw, 48px);
  }

  .hero__logos {
    display: flex;
    gap: 24px;
  }

.hero__logos img {
  width: auto;
  }
}

.what-is {
  margin: clamp(24px, 5vw, 48px) auto;
  padding: clamp(36px, 7vw, 64px) clamp(24px, 6vw, 32px);
  max-width: 1100px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.06);
}

.what-is__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 48px);
  text-align: center;
}

.what-is__copy {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 18px);
}

.what-is__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-primary);
}

.what-is__copy h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.2;
  color: var(--text-strong);
}

.what-is__lead {
  margin: 0 auto;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 80%;
}

.events-definition {
  background: linear-gradient(180deg, #ffffff 0%, #eef1f9 100%);
}

.events-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.events-highlights__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  align-items: start;
}

.events-highlights__item span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  font-size: 1.5rem;
}

.events-highlights__item h3 {
  margin: 0;
  font-size: 1.1rem;
}

.events-highlights__item p {
  margin: 0;
  color: var(--text-muted);
  grid-column: 2 / -1;
}

.what-is__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.highlight-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 170px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

.highlight-card:nth-child(2) {
  animation-delay: 0.1s;
}

.highlight-card:nth-child(3) {
  animation-delay: 0.2s;
}

.highlight-card__icon {
  font-size: 36px;
}

.highlight-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f172a;
}

.highlight-card p {
  margin: 0;
  color: #475569;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .what-is__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .what-is {
    padding-left: clamp(48px, 6vw, 64px);
    padding-right: clamp(48px, 6vw, 64px);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-video {
  width: 100vw;
  margin: clamp(24px, 4vw, 48px) 0 0;
  transform: translateX(calc((100vw - 100%) / -2));
  padding: clamp(24px, 5vw, 40px) clamp(16px, 5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(135deg, rgba(10, 19, 40, 0.95), rgba(16, 30, 60, 0.88));
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.hero-video__header {
  text-align: center;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.hero-video__shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(5, 12, 26, 0.18);
  background: linear-gradient(135deg, rgba(5, 12, 26, 0.95), rgba(12, 20, 38, 0.85));
  isolation: isolate;
}

.hero-video__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-glow);
  z-index: -1;
}

.hero-video__frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.value-section {
  max-width: 1180px;
  margin: clamp(24px, 5vw, 48px) auto;
  padding: clamp(36px, 5vw, 60px) clamp(24px, 5vw, 32px);
  text-align: center;
}

.value-section__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 6vw, 40px);
}

.value-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-section__header h2 {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.3;
  font-weight: 600;
  color: #0f172a;
}

.value-section__intro {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 18px);
  color: #475569;
}

.value-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 190px;
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: default;
}

.value-card:focus-visible {
  outline: 3px solid rgba(36, 93, 240, 0.4);
  outline-offset: 4px;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
}

.value-card__icon {
  font-size: 36px;
  line-height: 1;
  color: var(--hero-primary);
}

.value-card h3 {
  margin: 0;
  font-size: 1.15rem;
  color: #0f172a;
}

.value-card p {
  margin: 0;
  font-size: 1rem;
  color: #475569;
}

.value-section__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.value-link {
  color: var(--hero-primary);
  text-decoration: none;
  font-size: 0.95rem;
}

.value-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .value-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
  }

  .value-section__links {
    flex-direction: row;
    gap: 20px;
  }
}

.section__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.section__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

.section__note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section__media {
  position: relative;
  z-index: 1;
  min-height: 220px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  background-image: var(--media-bg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}

.section__media--wide {
  min-height: 260px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  align-items: start;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-strong);
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  grid-column: 2 / -1;
}

.section-eyebrow {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-primary);
  font-weight: 600;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.audience-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
}

.audience-card__eyebrow {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-soft);
}

.audience-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.audience-card p {
  margin: 0;
  color: var(--text-muted);
}

.audience-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.audience-card__tag {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-soft);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.result-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
}

.result-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.inline-cta {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 600;
  color: var(--hero-primary);
  text-decoration: none;
}

.inline-cta:hover {
  text-decoration: underline;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.experience-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 8px;
}

.experience-card span {
  font-size: 1.3rem;
}

.experience-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.experience-card p {
  margin: 0;
  color: var(--text-muted);
}

.sponsor-list,
.tech-list {
  margin: 18px 0 0;
  padding-left: 1.3rem;
  color: var(--text-muted);
  display: grid;
  gap: 10px;
}

.case-study {
  align-items: stretch;
}

.case-study__media {
  border-radius: var(--radius-md);
  background-image: url('https://images.unsplash.com/photo-1485217988980-11786ced9454?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 280px;
  box-shadow: var(--shadow-card);
}

.case-study__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-weight: 600;
}

.case-study__stat {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 16px 0 24px;
}

.case-study__stat strong {
  font-size: 2.2rem;
  line-height: 1;
}

.case-study__stat span {
  color: var(--text-soft);
}

.quotes {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quote-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-card);
  font-weight: 600;
  color: var(--text-muted);
}

.section--muted {
  background: var(--section-muted);
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.section--muted.has-bg {
  box-shadow: var(--shadow-soft);
}

.section--muted.has-bg::after {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 60%, rgba(255, 255, 255, 0.78) 100%);
}

.section--highlight {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94) 20%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid rgba(200, 155, 44, 0.18);
}

.section--split {
  display: grid;
  gap: clamp(24px, 6vw, 48px);
}

.section--split .section__media {
  min-height: 280px;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.badge {
  flex: 1 1 160px;
  min-width: 150px;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  font-weight: 600;
  color: var(--text-muted);
}

.badge span {
  font-size: 1.3rem;
}

.contact {
  max-width: 1180px;
  margin: clamp(28px, 6vw, 56px) auto 0;
  padding: clamp(36px, 6vw, 64px) clamp(16px, 5vw, 32px);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  border-radius: 36px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08);
}

.contact__inner {
  display: grid;
  gap: clamp(24px, 6vw, 40px);
}

.contact__panel {
  background: #fff;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 65px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.contact__intro {
  display: grid;
  gap: 18px;
}

.contact__intro h2 {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 36px);
  line-height: 1.25;
}

.contact__text {
  margin: 0;
  color: var(--text-muted);
  max-width: 48ch;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(36, 93, 240, 0.08);
  color: var(--hero-primary);
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease;
}

.contact__link:hover {
  transform: translateY(-2px);
  background: rgba(36, 93, 240, 0.14);
}

.contact__form {
  display: grid;
  gap: 18px;
}

.contact__form .btn {
  justify-self: flex-start;
  min-width: 220px;
}

@media (min-width: 768px) {
  .contact__links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: stretch;
  }
}

.field {
  display: grid;
  gap: 6px;
}

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

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--field-bg);
  font: inherit;
  color: var(--text-primary);
  transition: border 140ms ease, box-shadow 140ms ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  outline: none;
  border-color: var(--hero-primary);
  box-shadow: 0 0 0 4px rgba(36, 93, 240, 0.15);
}

.field__error {
  min-height: 20px;
  font-size: 0.9rem;
  color: var(--error);
}

.form__feedback {
  min-height: 24px;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.footer {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.footer__meta {
  display: inline-flex;
  gap: 12px;
}

.footer__tagline {
  color: var(--text-muted);
}

.footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-toggle {
  border: none;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background 160ms ease, color 160ms ease;
}

.lang-toggle[aria-pressed="true"] {
  background: var(--accent-soft);
  color: var(--text-strong);
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer__divider {
  opacity: 0.4;
}

.page--chatbot {
  gap: clamp(32px, 5vw, 64px);
}

.chatbot-hero {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(36, 93, 240, 0.12), transparent 50%), var(--surface);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.chatbot-hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chatbot-hero__eyebrow {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-primary);
  font-weight: 600;
}

.chatbot-hero__lead {
  margin: 0;
  font-size: clamp(18px, 2.6vw, 22px);
  color: var(--text-strong);
}

.chatbot-hero__text {
  margin: 0;
  color: var(--text-muted);
}

.chatbot-hero__panel {
  padding: clamp(20px, 4vw, 32px);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chatbot-hero__panel h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
}

.chatbot-hero__panel ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 6px;
  color: var(--text-strong);
}

.chatbot-hero__note {
  margin: 0;
  color: var(--text-soft);
  font-weight: 600;
}

.chatbot-section__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: clamp(16px, 3vw, 24px);
}

.chatbot-section__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 600;
}

.chatbot-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.chatbot-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.chatbot-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.chatbot-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.chatbot-card p {
  margin: 0;
  color: var(--text-muted);
}

.chatbot-differentiator {
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.chatbot-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.chatbot-differentiator__closing {
  margin-top: 16px;
  font-weight: 600;
  color: var(--text-strong);
}

.chatbot-steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.chatbot-steps__item {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chatbot-steps__number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--text-strong);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.chatbot-steps__item p {
  margin: 0;
  color: var(--text-muted);
}

.chatbot-steps__note {
  margin-top: 18px;
  font-weight: 600;
  color: var(--text-soft);
}

.chatbot-pilot {
  background: linear-gradient(135deg, rgba(36, 93, 240, 0.06), rgba(200, 155, 44, 0.08));
}

.chatbot-pilot__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.chatbot-pilot__card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot-pilot__card h3 {
  margin: 0;
}

.chatbot-pilot__card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.chatbot-demo {
  text-align: center;
}

.chatbot-demo__hint {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.chatbot-demo__qr {
  margin: 0 auto;
  width: min(320px, 100%);
  min-height: 220px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-weight: 600;
  background: var(--surface-alt);
}

.chatbot-demo__qr img {
  width: min(220px, 70%);
  height: auto;
}

.chatbot-demo__text {
  margin-top: 16px;
  color: var(--text-muted);
}

h1,
h2,
h3 {
  color: var(--text-strong);
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }

  .events-hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .section--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .chatbot-hero .hero__actions {
    flex-direction: row;
  }
}

@media (max-width: 599px) {
  .btn {
    width: 100%;
  }

  .badge-row {
    flex-direction: column;
  }
}
