:root {
  --bg: #07152c;
  --panel: #0b1d3a;
  --panel-2: #102a52;
  --text: #f2f6ff;
  --muted: #c9d7ef;
  --accent: #38bdf8;
  --accent-2: #0ea5e9;
  --line: rgba(255, 255, 255, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, #12376d 0%, var(--bg) 42%, #040a16 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 17, 34, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 20px;
  color: var(--muted);
  align-items: center;
}

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

.menu-inline-form {
  margin: 0;
}

.menu-link-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.menu-link-btn:hover {
  color: var(--text);
}

.chat-btn,
.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}

.chat-btn {
  white-space: nowrap;
}

.chat-btn,
.btn {
  color: #062038;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: transparent;
}

.hero {
  padding: 72px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  gap: 28px;
  align-items: center;
}

.hero-cover {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 12, 28, 0.84) 0%, rgba(6, 16, 37, 0.55) 55%, rgba(6, 16, 37, 0.7) 100%);
}

.hero-cover .hero-container {
  position: relative;
  z-index: 1;
}

.hero-oficio-rotator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(98vw, 1280px);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  z-index: 2;
}

.hero-oficio-item {
  width: 109px;
  height: 132px;
  flex: 0 0 auto;
  object-fit: contain;
  background: rgba(7, 21, 44, 0.35);
  border-radius: 10px;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translateX(-18px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-oficio-item.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translate(-240px, -90px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.botia-image {
  width: clamp(240px, 30vw, 380px);
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.36));
}

.hero-speech {
  position: absolute;
  left: 39%;
  top: 63%;
  width: min(340px, 68vw);
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(7, 21, 44, 0.85);
  color: #e8f4ff;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-visual.is-visible,
.hero-speech.is-visible {
  opacity: 1;
}

.hero-speech::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 72%;
  width: 18px;
  height: 18px;
  border-left: 1px solid rgba(56, 189, 248, 0.45);
  border-bottom: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(7, 21, 44, 0.85);
  transform: rotate(45deg) translateY(-50%);
}

.hero-cursor {
  display: inline-block;
  margin-left: 3px;
  animation: hero-blink 0.9s steps(1) infinite;
}

@keyframes hero-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-text h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
  max-width: 62ch;
}

.hero-text {
  transform: translate(94px, -26px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.hero-points {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-points li + li {
  margin-top: 5px;
}

.sectores,
.proceso {
  padding: 52px 0;
}

.sectores .container {
  width: min(1360px, 97%);
}

.section-head {
  margin-bottom: 22px;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.sectores-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sector {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 302px;
}

.sector:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.sector img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sector-content {
  margin-top: 10px;
  min-height: 104px;
}

.sector-chip {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 8px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bfe3ff;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
}

.sector-title {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #eaf4ff;
}

.sector-functions {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.3;
}

.sector-functions li + li {
  margin-top: 4px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.process-grid h3 {
  margin-top: 0;
}

.process-list {
  margin: 10px 0 10px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-list li + li {
  margin-top: 4px;
}

.process-meta {
  display: inline-block;
  margin-top: 6px;
  color: #d7e8ff;
  font-size: 0.84rem;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(56, 189, 248, 0.08);
}

.process-notes {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process-notes article {
  border: 1px dashed rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  padding: 12px;
  background: rgba(7, 21, 44, 0.4);
}

.process-notes strong {
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.process-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.value-section,
.kpi-section,
.cta-section {
  padding: 56px 0;
}

.bot-conv-section,
.panel-demo-section {
  padding: 56px 0;
}

.bot-conv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bot-conv-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.bot-conv-card .step {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  color: #bfe3ff;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.08);
}

.bot-conv-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.bot-conv-card p {
  margin: 0;
  color: var(--muted);
}

.bot-conv-cta {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.panel-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.panel-box {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.panel-box h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.panel-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.panel-box li + li {
  margin-top: 5px;
}

.value-grid,
.kpi-grid,
.trust-grid {
  display: grid;
  gap: 16px;
}

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

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

.value-card,
.kpi-card,
.trust-grid article {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.value-card ul {
  margin: 10px 0 8px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.value-card ul li + li {
  margin-top: 4px;
}

.value-impact {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.84rem;
  color: #d7e8ff;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(56, 189, 248, 0.08);
}

.kpi-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
  color: var(--accent);
}

.cta-section {
  padding-bottom: 72px;
}

.cta-inner {
  text-align: center;
  max-width: 760px;
}

.cta-inner h2 {
  margin-bottom: 10px;
}

.cta-inner p {
  color: var(--muted);
  margin-bottom: 18px;
}

.login-page,
.dashboard-page {
  padding: 58px 0;
}

.login-card {
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.login-card h1 {
  margin: 0 0 6px;
}

.login-subtitle {
  color: var(--muted);
  margin: 0 0 14px;
}

.login-form {
  display: grid;
  gap: 12px;
}

.login-form label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
}

.login-form input {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111c3f;
  color: var(--text);
  padding: 11px 12px;
}

.login-alert {
  border: 1px solid rgba(248, 113, 113, 0.45);
  color: #ffd6d6;
  background: rgba(248, 113, 113, 0.12);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 12px;
}

.login-success {
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: #d9ffe6;
  background: rgba(74, 222, 128, 0.12);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 12px;
}

.login-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.dashboard-card h3 {
  margin: 0 0 8px;
}

.dashboard-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}

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

.dashboard-panel {
  margin-top: 14px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 56px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(5, 14, 30, 0.9), rgba(5, 14, 30, 0.98));
}

.footer .container {
  padding: 34px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 10px;
}

.footer-grid h4 {
  margin: 0 0 10px;
  color: #eef6ff;
  font-size: 1rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 7px;
  font-size: 0.92rem;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-brand p {
  margin: 0 0 12px;
  max-width: 34ch;
}

.footer-bottom {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 14px;
  font-size: 0.88rem;
}

.chat {
  position: fixed;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.3);
  z-index: 60;
}

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

.chat-panel {
  width: min(420px, 94vw);
  margin: 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1430;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.chat-controls {
  display: flex;
  gap: 8px;
}

.chat-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
}

.chat-body {
  height: 320px;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  max-width: 88%;
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.35;
  font-size: 0.95rem;
}

.msg--bot {
  align-self: flex-start;
  background: #112047;
  border: 1px solid var(--line);
}

.msg--user {
  align-self: flex-end;
  background: #193860;
}

.typing {
  opacity: 0.7;
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111c3f;
  color: var(--text);
}

.chat-form button {
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
  color: #062038;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.chat.is-min .chat-body,
.chat.is-min .chat-form {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__panel {
  margin: 0 auto;
  max-width: 980px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 22, 46, 0.96), rgba(5, 14, 30, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}

.cookie-btn {
  width: auto;
  min-width: 104px;
  padding: 10px 14px;
}

.cookie-btn--accept {
  color: #031a2f;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
}

.cookie-btn--reject {
  color: #dbefff;
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
}

.cookie-btn--config {
  color: #e6f2ff;
  background: linear-gradient(135deg, #0f4c81, #0e7490);
}

.cookie-settings {
  width: 100%;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}

.cookie-settings h4 {
  margin: 0 0 8px;
}

.cookie-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--muted);
}

.cookie-check input {
  accent-color: #38bdf8;
}

.cookie-check--locked {
  opacity: 0.85;
}

.cookie-settings__actions {
  margin-top: 10px;
}

.cookie-page-form {
  margin-top: 10px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.cookie-page-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 56px 0;
}

.legal-content {
  max-width: 900px;
}

.legal-content h1 {
  margin-top: 0;
}

.legal-content h2 {
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .header .container {
    gap: 10px;
    padding: 10px 0;
  }

  .logo img {
    height: 32px;
  }

  .menu {
    display: none;
  }

  .chat-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    transform: none;
    margin: 0 auto;
  }

  .hero-cover {
    min-height: 64vh;
  }

  .hero-oficio-rotator {
    width: min(98vw, 720px);
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    bottom: 10px;
  }

  .hero-oficio-item {
    width: 92px;
    height: 115px;
  }

  .hero-visual {
    min-height: 350px;
    justify-content: center;
    transform: translateX(0);
  }

  .hero-speech {
    left: 50%;
    top: 6%;
    transform: translateX(-50%);
    width: min(92vw, 360px);
    text-align: left;
  }

  .hero-speech::after {
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-banner__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .sectores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sector {
    min-height: 286px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, 94%);
  }

  .chat-btn,
  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero {
    padding: 34px 0 18px;
  }

  .hero-cover {
    min-height: 78vh;
  }

  .hero-visual {
    min-height: 220px;
    justify-content: flex-start;
    align-items: flex-end;
    transform: translateX(0);
    padding-left: 8px;
  }

  .botia-image {
    width: clamp(130px, 30vw, 170px);
  }

  .hero-speech {
    left: clamp(78px, 22vw, 108px);
    right: 8px;
    top: 122px;
    transform: none;
    width: auto;
    max-width: 230px;
    min-height: 96px;
    padding: 10px 12px;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-speech::after {
    left: -9px;
    top: 68%;
    bottom: auto;
    transform: rotate(45deg) translateY(-50%);
  }

  .hero-text h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    line-height: 1.12;
  }

  .hero-text p {
    font-size: 0.96rem;
  }

  .hero-points {
    text-align: center;
    font-size: 0.9rem;
    list-style-position: inside;
    padding-left: 0;
  }

  .hero-oficio-rotator {
    display: none;
  }

  .login-card {
    padding: 16px;
    border-radius: 12px;
  }

  .login-form input {
    padding: 10px 10px;
  }

  .sectores-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-notes {
    grid-template-columns: 1fr;
  }

  .bot-conv-grid,
  .panel-demo-grid {
    grid-template-columns: 1fr;
  }

  .bot-conv-cta {
    justify-content: center;
    width: 100%;
  }

  .cookie-banner__panel {
    padding: 10px;
    gap: 8px;
  }

  .cookie-banner__text {
    font-size: 0.93rem;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .cookie-banner__actions .btn {
    width: auto;
    flex: 1 1 auto;
    padding: 10px 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-head {
    flex-direction: column;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-cover {
    min-height: 72vh;
  }

  .hero-text h1 {
    font-size: clamp(1.45rem, 7.6vw, 1.9rem);
  }

  .hero-speech {
    left: 72px;
    right: 6px;
    width: auto;
    max-width: 190px;
    min-height: 92px;
    font-size: 0.88rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
