/* AquaGuard WD — shared styles for legal, video, and future multi-section landings.
   Turkish home (tr/index.html) is a self-contained full-screen showcase: inline CSS + JS, no styles.css.
   Fonts load from each page’s <link>; avoid @import here (blocks first paint + duplicate requests). */
:root {
  --bg: #f4f6f9;
  --surface: #ffffff;
  --surface-2: #eef1f6;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --brand: #0369a1;
  --brand-hover: #075985;
  --accent: #0d9488;
  --accent-soft: rgba(13, 148, 136, 0.1);
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ar: "Noto Sans Arabic", "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 68px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--font-ar);
}

html[dir="rtl"] .hero-billboard__title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .showcase-split h2,
html[dir="rtl"] .mosaic-item h3,
html[dir="rtl"] .critical-item h3,
html[dir="rtl"] .logo {
  font-family: var(--font-ar);
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}

a:hover {
  color: var(--brand-hover);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  /* Slightly more opaque + lighter blur = less GPU work while scrolling than heavy glassmorphism */
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: var(--shadow-sm);
}

.logo--image .logo__mark {
  display: none;
}

/* Logo PNG has generous whitespace; keep min height so mark + wordmark stay readable */
.logo-img {
  display: block;
  height: clamp(52px, 6.2vw, 64px);
  width: auto;
  max-width: min(320px, 78vw);
  object-fit: contain;
  object-position: center center;
}

.logo--text {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--text);
  line-height: 1.15;
}

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

.lang-page__logo.logo--text {
  justify-content: center;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav a:hover {
  color: var(--text);
  background: var(--surface-2);
}

.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.lang-switcher a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.lang-switcher a[aria-current="true"] {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(13, 148, 136, 0.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.45rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-wrap {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
    box-shadow: var(--shadow);
  }

  .nav-wrap.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-wrap .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap .lang-switcher {
    margin-top: 0.6rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }
}

@media (min-width: 901px) {
  .nav-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(3, 105, 161, 0.35);
}

.btn--primary:hover {
  background: var(--brand-hover);
  color: #fff;
  box-shadow: 0 6px 20px rgba(3, 105, 161, 0.4);
}

.btn--secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

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

.btn--ghost:hover {
  background: var(--surface-2);
}

/* -------- Hero billboard (MeetPlat-style top) -------- */
.hero-billboard {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-billboard__inner {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.hero-billboard__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
}

.hero-billboard__lead {
  margin: 0 auto 1.75rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 42rem;
}

.hero-billboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 0;
}

.hero-billboard__stores {
  margin-top: 1.25rem;
}

.hero-billboard__stores-caption {
  margin: 0 auto 0.65rem;
  max-width: 42rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-billboard__stores-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}

.store-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-badge:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.store-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.store-badge svg {
  display: block;
  height: 40px;
  width: auto;
}

@media (min-width: 960px) {
  .hero-billboard__layout .hero-billboard__stores-badges {
    justify-content: flex-start;
  }

  .hero-billboard__layout .hero-billboard__stores-caption {
    margin-left: 0;
    margin-right: 0;
  }
}

.tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Hero + real media (split layout) */
.hero-billboard__copy {
  text-align: center;
}

.hero-billboard__layout {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-billboard__layout {
    grid-template-columns: 1fr 1.12fr;
    gap: 3rem;
  }

  .hero-billboard__layout .hero-billboard__copy {
    text-align: start;
  }

  .hero-billboard__layout .hero-billboard__actions {
    justify-content: flex-start;
  }
}

.hero-billboard__copy .hero-billboard__lead {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 960px) {
  .hero-billboard__copy .hero-billboard__lead {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-billboard__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  background: transparent;
}

/* Centered hero: soft “stage” under copy */
.hero-billboard__stage {
  width: 100%;
  margin-inline: auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 85% 65% at 50% 42%, rgba(3, 105, 161, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}

/* Dedektör / vana — üst üste grid; kare kutu ve beyaz zemin yok */
.hero-billboard__rotate {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: min(620px, 100%);
  margin-inline: auto;
  background: transparent;
}

.hero-billboard__rotate-img {
  grid-area: 1 / 1;
  max-width: min(100%, 620px);
  width: auto;
  height: auto;
  max-height: min(520px, 58vh);
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.hero-billboard__rotate-img.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-billboard__store {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 960px) {
  .hero-billboard__layout:not(.hero-billboard__layout--stacked) .hero-billboard__store {
    justify-content: flex-start;
  }
}

.store-badge {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover .store-badge,
.store-badge-link:hover .store-badge {
  transform: scale(1.03);
  opacity: 0.92;
}

/* -------- Split showcase -------- */
.showcase-split {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.showcase-split--muted {
  background: var(--surface-2);
  border-block: 1px solid var(--border);
}

.showcase-split__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase-split__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .showcase-split--reverse .showcase-split__grid {
    direction: rtl;
  }

  .showcase-split--reverse .showcase-split__grid > * {
    direction: ltr;
  }
}

html[dir="rtl"] .showcase-split--reverse .showcase-split__grid {
  direction: ltr;
}

html[dir="rtl"] .showcase-split--reverse .showcase-split__grid > * {
  direction: rtl;
}

.showcase-split h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.showcase-split .lead,
.showcase-split p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.showcase-split p:last-child {
  margin-bottom: 0;
}

.showcase-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

.showcase-figure > img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* Mock device frame */
.device-mock {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  max-height: 380px;
}

.device-mock__bar {
  height: 36px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  gap: 6px;
}

.device-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.device-mock__body {
  flex: 1;
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  background: linear-gradient(165deg, #f8fafc 0%, #e2e8f0 100%);
}

.device-mock__row {
  height: 52px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.device-mock__row--accent {
  border-color: rgba(13, 148, 136, 0.35);
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.08) 0%, #fff 40%);
}

/* -------- Easy band + checklist -------- */
.band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.band--muted {
  background: var(--surface-2);
  border-block: 1px solid var(--border);
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-intro {
  margin: 0 0 1.75rem;
  color: var(--text-secondary);
  max-width: 720px;
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-width: 100%;
}

.check-list li {
  position: relative;
  margin: 0;
  padding: 0.85rem 1.15rem 0.85rem 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff 0%, rgba(248, 250, 252, 0.92) 100%);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text);
  box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.check-list li:hover {
  border-color: rgba(3, 105, 161, 0.18);
  box-shadow: 0 10px 28px -12px rgba(3, 105, 161, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  transform: translateY(-1px);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #14b8a6 0%, #0891b2 45%, #0369a1 100%);
  box-shadow: 0 0 12px -2px rgba(3, 105, 161, 0.45);
}

html[dir="rtl"] .check-list li {
  padding: 0.85rem 1.2rem 0.85rem 1.15rem;
}

html[dir="rtl"] .check-list li::before {
  left: auto;
  right: 0;
  border-radius: 999px 0 0 999px;
}

@media (prefers-reduced-motion: reduce) {
  .check-list li,
  .check-list li:hover {
    transition: none;
    transform: none;
  }
}

.band__split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 840px) {
  .band__split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.band__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.band__figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* -------- Mosaic features (small tiles) -------- */
.mosaic {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.mosaic-head {
  margin-bottom: 2rem;
}

.mosaic-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mosaic-item {
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.mosaic-item:hover {
  border-color: rgba(3, 105, 161, 0.28);
  background: rgba(3, 105, 161, 0.02);
}

.mosaic-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mosaic-item__thumb {
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
}

.mosaic-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(3, 105, 161, 0.14) 0%,
    rgba(13, 148, 136, 0.1) 100%
  );
  color: var(--brand);
}

.mosaic-icon {
  display: block;
  width: 26px;
  height: 26px;
}

.mosaic-item__list {
  margin: 0;
  padding-inline-start: 1.125rem;
  list-style-position: outside;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.48;
}

.mosaic-item__list li {
  margin: 0 0 0.35rem;
  padding-inline-start: 0.2rem;
}

.mosaic-item__list li:last-child {
  margin-bottom: 0;
}

.mosaic-item__list li::marker {
  color: rgba(3, 105, 161, 0.5);
  font-size: 0.85em;
}

/* -------- Critical strip -------- */
.critical {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(135deg, #0e7490 0%, #0369a1 55%, #0f172a 100%);
  color: #e2e8f0;
}

.critical .section-title {
  color: #fff;
}

.critical .section-intro {
  color: rgba(226, 232, 240, 0.88);
  max-width: 48rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.critical-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .critical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .critical-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.critical-item {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.critical-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.critical-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.88);
}

/* -------- Scenario cards -------- */
.scenarios {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
}

.scenario-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .scenario-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.scenario-card {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.scenario-card__icon {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
}

.scenario-card__icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(3, 105, 161, 0.14) 0%,
    rgba(13, 148, 136, 0.1) 100%
  );
  color: var(--brand);
}

.scenario-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.scenario-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.scenario-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* -------- Highlight strip (same gradient as .critical) -------- */
.cta-strip {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  background: linear-gradient(135deg, #0e7490 0%, #0369a1 55%, #0f172a 100%);
  border: none;
}

.cta-strip--message .container {
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.cta-strip__message {
  margin: 0;
  text-align: center;
  font-size: clamp(0.95rem, 2.1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.94);
}

/* -------- Contact -------- */
.contact {
  padding: clamp(1.5rem, 3.5vw, 2rem) 0;
  background: var(--bg);
}

.contact__box {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(0.85rem, 2vw, 1.15rem) clamp(1rem, 2.5vw, 1.35rem);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.9rem;
  box-sizing: border-box;
}

.contact__intro {
  min-width: 0;
}

.contact__intro .section-title {
  margin: 0 0 0.28rem;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
}

.contact__subtitle {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.42;
  color: var(--text-secondary);
  max-width: 20rem;
}

@media (min-width: 768px) {
  .contact__box {
    grid-template-columns: auto minmax(14rem, 20rem);
    column-gap: clamp(1.1rem, 3vw, 1.65rem);
    row-gap: 0.75rem;
    align-items: start;
    justify-items: start;
  }

  .contact__list {
    width: 100%;
  }
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact__list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.contact__list li:last-child {
  border-bottom: none;
}

.contact__list strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

/* -------- Footer -------- */
.site-footer {
  padding: 1.25rem 0 2rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--text-muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
  }
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.site-footer__legal a {
  color: var(--text-secondary);
}

.site-footer__legal a:hover {
  color: var(--brand);
}

.site-footer__copy {
  margin: 0;
}

/* -------- Lang landing -------- */
.lang-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.lang-page__logo {
  margin-bottom: 1.75rem;
}

.lang-page__logo.logo--image .logo__mark {
  display: none;
}

.lang-page__logo .logo-img {
  height: clamp(80px, 18vw, 128px);
  width: auto;
  max-width: min(420px, 92vw);
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
}

.lang-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lang-page > p {
  margin: 0 0 1.75rem;
  color: var(--text-secondary);
  max-width: 420px;
  font-size: 0.95rem;
}

.lang-grid {
  display: grid;
  gap: 0.65rem;
  width: min(400px, 100%);
}

.lang-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.lang-grid a:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  color: var(--brand);
}

.lang-page__footer {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.lang-page__footer button {
  background: none;
  border: none;
  color: var(--brand);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.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;
}

/* Video stub pages */
.video-stub {
  padding: 3rem 0 4rem;
}

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

.video-stub h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 800;
}

.video-stub p {
  color: var(--text-secondary);
  max-width: 560px;
}

/* Prototype video page: centered “phone-style” player inside a card */
.video-page {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.video-page__inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.video-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.video-page__lead {
  margin: 0 auto 1.5rem;
  max-width: 42rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.video-page__card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.video-page__frame {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-page__player {
  margin: 0;
  width: auto;
  max-width: 100%;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.video-page__player video {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.video-page__actions {
  margin-top: 1.5rem;
  text-align: center;
}

/* Legal / policy pages */
.legal-page {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.legal-page__inner {
  max-width: 44rem;
  margin: 0 auto;
}

.legal-page h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.legal-page__meta {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-page__callout {
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-page__callout p {
  margin: 0 0 0.65rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-page__callout p:last-child {
  margin-bottom: 0;
}

.legal-page h2 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-page h2:first-of-type {
  margin-top: 0;
}

.legal-page p {
  margin: 0 0 0.85rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-page ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-page li {
  margin-bottom: 0.35rem;
}

.legal-page li:last-child {
  margin-bottom: 0;
}

html[dir="rtl"] .legal-page ul {
  padding-left: 0;
  padding-right: 1.25rem;
}

.legal-page__back {
  margin-top: 1.5rem;
}

/* Cookie info strip (dismissible, no blocking overlay) */
.cookie-notice {
  position: fixed;
  z-index: 2000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px -8px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.cookie-notice.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
}

.cookie-notice__inner {
  display: flex;
  align-items: center;
  gap: 0.65rem 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-notice__text {
  margin: 0;
  flex: 1 1 240px;
  max-width: 42rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}

.cookie-notice__link {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.cookie-notice__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}

.cookie-notice__close:hover {
  background: rgba(3, 105, 161, 0.08);
  color: var(--brand);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice {
    transition: none;
  }
}

body.cookie-notice-visible {
  padding-bottom: 3.75rem;
}

@media (min-width: 768px) {
  body.cookie-notice-visible {
    padding-bottom: 3.25rem;
  }
}

