@font-face {
  font-family: "MontserratLocal";
  src: url("assets/fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("assets/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("assets/fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("assets/fonts/montserrat-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg-main: #0b1236;
  --bg-elev: #141f4f;
  --bg-card: #1a275d;
  --bg-soft: #22326f;
  --text-main: #f1f4ff;
  --text-dim: #b8c3ee;
  --accent: #ffd21f;
  --accent-dark: #0f173f;
  --outline: #ffd21f;
  --pink-glow: #ff2f9f;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1180px;
  --cookie-space: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-main);
}

body {
  font-family: "MontserratLocal", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 47, 159, 0.42), transparent 42%),
    radial-gradient(circle at 82% 28%, rgba(255, 210, 31, 0.12), transparent 30%),
    linear-gradient(126deg, #08102e 0%, #111d4f 48%, #121942 100%);
  line-height: 1.55;
  padding-bottom: var(--cookie-space);
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.section {
  padding: 72px 0;
}

.section--soft {
  background: linear-gradient(165deg, rgba(93, 117, 197, 0.22) 0%, rgba(10, 19, 52, 0.15) 100%);
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 1.45rem + 1.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0.2px;
}

.section-subtitle {
  color: var(--text-dim);
  margin: 0 0 24px;
  font-size: 1.05rem;
  max-width: 840px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(9px);
  background: rgba(11, 18, 54, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: min(220px, 42vw);
  height: auto;
}

.main-nav {
  justify-self: center;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--accent);
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 260;
}

.lang-dropdown {
  position: relative;
  z-index: 260;
}

.lang-select--full {
  display: block;
}

.lang-select--compact {
  display: none;
}

.lang-dropdown-toggle {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 16, 46, 0.72);
  color: #fff;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-dropdown-toggle:hover,
.lang-dropdown-toggle:focus-visible {
  border-color: rgba(255, 210, 31, 0.78);
  background: rgba(16, 28, 76, 0.9);
}

.lang-dropdown-toggle--full {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.94rem;
}

.lang-dropdown-toggle--compact {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 224px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 16, 46, 0.98);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.36);
  z-index: 320;
}

.lang-dropdown.open .lang-dropdown-menu {
  display: flex;
}

.lang-dropdown-menu--compact {
  min-width: 58px;
  padding: 8px 6px;
}

.lang-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-item:hover,
.lang-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.lang-item.active {
  background: rgba(255, 210, 31, 0.2);
  color: #fff5c3;
}

.lang-item--compact {
  justify-content: center;
  padding: 8px;
  min-width: 44px;
}

.lang-item-flag {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.lang-item-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.lang-dropdown-toggle--compact .lang-item-flag,
.lang-item--compact .lang-item-flag {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(14, 24, 70, 0.86);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger-line {
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
}

.burger-line::before,
.burger-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #fff;
}

.burger-line::before {
  top: -6px;
}

.burger-line::after {
  top: 6px;
}

.hero {
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 1.3rem + 2.2vw, 3.5rem);
  line-height: 1.04;
}

.hero-copy p {
  color: var(--text-dim);
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  min-width: 164px;
  border-radius: 18px;
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: 0.35px;
  padding: 14px 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-outline {
  border: 2px solid var(--outline);
  color: var(--accent);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 210, 31, 0.08);
}

.btn-fill {
  border: 2px solid #ffe169;
  background: linear-gradient(180deg, #ffe35a 0%, #ffca0a 100%);
  color: #09153d;
  box-shadow: 0 12px 26px rgba(255, 188, 10, 0.35);
}

.hero-media {
  position: relative;
  justify-self: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: clamp(1120px, 116vw, 1960px);
  height: clamp(860px, 92vw, 1520px);
  background:
    radial-gradient(ellipse 74% 56% at 84% 20%, rgba(255, 76, 182, 0.95) 0%, rgba(236, 63, 177, 0.76) 33%, rgba(156, 58, 177, 0.38) 62%, rgba(156, 58, 177, 0) 84%),
    radial-gradient(ellipse 40% 30% at 88% 18%, rgba(255, 178, 228, 0.32) 0%, rgba(255, 178, 228, 0) 100%);
  filter: blur(14px);
  right: -168%;
  top: -56%;
  transform: rotate(-14deg);
  z-index: 0;
  border-radius: 52% / 50%;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  width: clamp(680px, 72vw, 1240px);
  height: clamp(560px, 60vw, 1040px);
  background: radial-gradient(ellipse 68% 58% at 84% 22%, rgba(255, 72, 182, 0.42) 0%, rgba(255, 72, 182, 0) 86%);
  filter: blur(20px);
  right: -120%;
  top: -12%;
  transform: rotate(-12deg);
  z-index: 0;
  border-radius: 52% / 50%;
  pointer-events: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  height: auto;
  aspect-ratio: 860 / 817;
  object-fit: contain;
  border-radius: 20px;
}

.content-grid {
  display: grid;
  gap: 18px;
}

.content-grid p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.05rem;
}


.about-layout {
  display: grid;
  gap: 18px;
}

.about-lead {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(12, 21, 58, 0.72);
  padding: clamp(16px, 2.2vw, 24px);
  display: grid;
  gap: 12px;
}

.about-lead p {
  margin: 0;
  color: var(--text-dim);
  font-size: 1.03rem;
}

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

.about-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(17, 29, 78, 0.78);
  padding: 14px;
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.about-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.96rem;
}

.info-table-wrap {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(14, 23, 62, 0.8);
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-table tr:last-child td,
.info-table tr:last-child th {
  border-bottom: 0;
}

.info-table th {
  width: 34%;
  color: #fff;
  font-size: 0.98rem;
}

.info-table td {
  color: var(--text-dim);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: play-steps;
  color: var(--text-dim);
  display: grid;
  gap: 12px;
}

.steps li {
  counter-increment: play-steps;
  position: relative;
  padding: 14px 16px 14px 58px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(17, 29, 78, 0.88), rgba(10, 18, 52, 0.94));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.steps li::before {
  content: counter(play-steps);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #ffe98a;
  background: linear-gradient(180deg, #ffe35a 0%, #ffca0a 100%);
  color: #08153e;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(255, 188, 10, 0.36);
}

.demo-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(130deg, rgba(15, 26, 79, 0.9), rgba(9, 15, 45, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.demo-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

.demo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 46, 159, 0.2), rgba(255, 46, 159, 0)),
    url("assets/images/hero-chicken-road.webp") center 20% / cover no-repeat;
  opacity: 0.2;
}

.demo-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.demo-inner h3 {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 1.18rem + 1.2vw, 2.2rem);
}

.demo-inner p {
  margin: 0 0 20px;
  color: var(--text-dim);
}

.demo-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-actions .btn {
  min-width: 150px;
}

.demo-embed-shell {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(9, 16, 46, 0.94);
  box-shadow: var(--shadow);
}

.demo-embed-shell[hidden] {
  display: none;
}

.demo-embed-shell iframe {
  width: 100%;
  min-height: 360px;
  height: min(70vh, 600px);
  border: 0;
  display: block;
  background: #070f30;
}

.cta-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(11, 18, 54, 0.94), rgba(12, 20, 58, 0.86)),
    url("assets/images/hero-chicken-road.webp") center right / cover no-repeat;
}

.cta-banner-content {
  padding: 26px clamp(18px, 3vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-banner h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.05rem + 0.8vw, 1.8rem);
}

.cta-banner p {
  margin: 8px 0 0;
  color: var(--text-dim);
  max-width: 720px;
}

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

.image-grid--gameplay .figure-card {
  display: block;
  background: rgba(10, 18, 52, 0.92);
}

.image-grid--gameplay .figure-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: none;
  display: block;
}

.image-grid--gameplay .figure-card.figure-card--portrait img {
  aspect-ratio: auto !important;
}

.image-grid--gameplay .figure-card figcaption {
  padding: 8px 10px 10px;
  font-size: 0.86rem;
  line-height: 1.35;
  min-height: 0;
}

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

.figure-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 28, 75, 0.8);
  box-shadow: var(--shadow);
}

.figure-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.figure-card.figure-card--portrait img {
  aspect-ratio: 7 / 10;
}

.figure-card figcaption {
  padding: 10px 12px 12px;
  color: var(--text-dim);
  font-size: 0.95rem;
}

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

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 29, 78, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body {
  padding: 16px;
}

.card h3,
.card h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.96rem;
}

.card-actions {
  margin-top: 14px;
}

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

.card--slot {
  position: relative;
  min-height: 0;
  aspect-ratio: 2 / 3;
  background: #0d1645;
}

.card--slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: linear-gradient(to top, rgba(5, 10, 30, 0.9) 0%, rgba(5, 10, 30, 0.12) 52%, rgba(5, 10, 30, 0.02) 100%);
}

.slot-overlay h3 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.slot-overlay .btn {
  width: auto;
  min-width: 96px;
  max-width: 100%;
  flex: 0 0 auto;
  align-self: center;
  padding: 8px 10px;
  font-size: 0.84rem;
  border-radius: 12px;
}

.casino-card {
  padding: 20px;
}

.casino-meta {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.casino-meta span {
  font-size: 0.95rem;
  color: var(--text-dim);
}

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

.review {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px;
  background: rgba(14, 24, 64, 0.84);
  box-shadow: var(--shadow);
}

.review blockquote {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.97rem;
}

.review cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 0.93rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 23, 64, 0.86);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-icon {
  color: var(--accent);
  flex: 0 0 auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 16px 14px;
  color: var(--text-dim);
}

.disclaimer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 15, 44, 0.65);
  color: var(--text-dim);
  font-size: 0.93rem;
}

.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 11, 33, 0.93);
}

.footer-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 110;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
  background: rgba(8, 14, 40, 0.98);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-content {
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
  max-width: 900px;
}

.cookie-actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-cookie {
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.btn-cookie.btn-cookie-accept {
  border-color: #ffe169;
  color: #08153e;
  background: linear-gradient(180deg, #ffe35a 0%, #ffca0a 100%);
}

.legal-hero {
  padding: 56px 0 26px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 1.66rem + 1.8vw, 3.2rem);
}

.legal-wrap {
  display: grid;
  gap: 16px;
}

.legal-wrap h2 {
  margin: 0;
  font-size: 1.35rem;
}

.legal-wrap p,
.legal-wrap li {
  margin: 0;
  color: var(--text-dim);
}

.legal-wrap ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

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

@media (max-width: 980px) {
  .topbar-row {
    grid-template-columns: auto 1fr auto;
    column-gap: 10px;
    row-gap: 0;
    min-height: 0;
    padding: 10px 0;
    align-content: center;
  }

  .burger {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
  }

  .brand {
    justify-self: center;
    grid-column: 2;
    grid-row: 1;
  }

  .brand img {
    width: min(204px, 47vw);
  }

  .topbar .lang-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    z-index: 320;
  }

  .lang-select--full {
    display: none;
  }

  .lang-select--compact {
    display: block;
  }

  .lang-dropdown-menu {
    top: calc(100% + 8px);
    right: 0;
    z-index: 340;
  }

  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 6px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .nav-list.is-open {
    display: flex;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-media {
    order: -1;
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .hero-ctas {
    width: 100%;
  }

  .btn {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }

  .section {
    padding: 56px 0;
  }

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

  .card-grid--slots {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .topbar-row {
    min-height: 0;
    padding: 10px 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 1.36rem + 2.1vw, 2.4rem);
  }

  .image-grid,
  .image-grid--two,
  .card-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 10px;
  }

  .steps li {
    padding: 12px 12px 12px 52px;
  }

  .steps li::before {
    left: 12px;
    width: 28px;
    height: 28px;
    font-size: 0.88rem;
  }

  .card-grid--slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .card--slot {
    min-height: 0;
  }

  .hero-media img {
    max-width: min(520px, 100%);
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  .info-table th {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .info-table td {
    padding-top: 0;
  }

  .cta-banner-content {
    padding: 20px;
  }

  .demo-actions {
    width: 100%;
  }

  .demo-actions .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 132px;
  }

  .demo-embed-shell--mobile-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .demo-embed-shell--mobile-full iframe {
    height: 74vh;
    min-height: 460px;
  }

  .footer-row {
    min-height: 84px;
  }

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

  .cookie-content {
    padding: 12px;
  }

  .btn-cookie {
    min-width: 108px;
  }
}


@media (max-width: 480px) {
  .cookie-content p {
    font-size: 0.86rem;
    line-height: 1.35;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

