:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --ink: #0a0a0a;
  --ink-body: #1f2937;
  --ink-muted: #4b5563;
  --ink-faint: #9ca3af;
  --hairline: #e5e7eb;
  --hairline-em: #d4d4d4;
  --btn-bg: #0a0a0a;
  --btn-fg: #ffffff;
  --max-w: 1240px;
  --section-py: clamp(56px, 7vh, 96px);
  --gutter: 32px;
  --focus: #0d6fde;
  --font-sans: -apple-system, "Inter", "Segoe UI", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

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

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.landing-page {
  background: var(--bg);
}

.v59-page {
  min-height: 100vh;
  padding-bottom: 128px;
}

.v59-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
}

.v59-h1 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h2 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h3 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}

p {
  margin: 0;
}

.v59-kicker {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.v59-pharmacy-head .v59-kicker,
.v59-section .v59-kicker,
.v59-core .v59-kicker,
.v59-contact .v59-kicker {
  margin-bottom: 24px;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.v59-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    opacity 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.v59-btn:hover {
  opacity: 0.88;
}

.v59-btn-ghost {
  border-color: var(--hairline-em);
  background: transparent;
  color: var(--ink);
}

.v59-btn-ghost:hover {
  opacity: 1;
  border-color: var(--ink);
}

.v59-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.v59-nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.v59-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.v59-brand img {
  height: 34px;
  width: auto;
}

.v59-nav-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 32px;
  margin-left: 32px;
  min-width: 0;
}

.v59-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
}

.v59-nav-links a:hover {
  color: var(--ink);
}

.v59-nav-links .v59-btn {
  margin-left: auto;
  margin-right: -12px;
  color: var(--btn-fg);
}

.v59-nav-links .v59-btn:hover,
.v59-nav-links .v59-btn:visited,
.v59-nav-links .v59-btn:active {
  color: var(--btn-fg);
}

.v59-nav-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-left: 24px;
  margin-right: calc(-1 * clamp(24px, 4vw, 64px));
  flex-shrink: 0;
}

html[data-locale="fr"] .v59-nav-links {
  gap: 24px;
}

html[data-locale="fr"] .v59-nav-links a {
  font-size: 14px;
}

html[data-locale="fr"] .v59-nav-links .v59-btn {
  padding: 10px 18px;
  font-size: 14px;
}

html[data-locale="fr"] .v59-nav-utility {
  gap: 10px;
}

html[data-locale="fr"] .v59-login-btn {
  padding: 10px 18px;
  font-size: 14px;
}

.v59-lang-select,
.v59-mobile-select {
  min-height: 46px;
  border: 1px solid var(--hairline-em);
  border-radius: 4px;
  background-color: var(--bg);
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230A0A0A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.v59-lang-select {
  min-width: 72px;
  padding: 10px 34px 10px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.lang-select {
  min-width: 72px;
  min-height: 46px;
  padding: 10px 34px 10px 12px;
  border: 1px solid var(--hairline-em);
  border-radius: 4px;
  background-color: var(--bg);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230A0A0A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.v59-login-btn {
  min-height: 46px;
}

.v59-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
}

.v59-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.v59-drawer[aria-hidden="false"] {
  display: block;
}

.v59-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
}

.v59-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100%;
  box-sizing: border-box;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
  border-left: 1px solid var(--hairline);
}

.v59-drawer-close {
  align-self: flex-end;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.v59-drawer-lang {
  margin-bottom: 8px;
}

.v59-drawer-panel a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-body);
  border-bottom: 1px solid var(--hairline);
}

.v59-drawer-panel a:last-of-type {
  border-bottom: 0;
}

.v59-drawer-panel .v59-btn {
  display: inline-flex;
  width: 100%;
  align-self: stretch;
  box-sizing: border-box;
  min-height: 50px;
  padding: 0 16px;
  line-height: 1.2;
  margin-right: 0;
  border-bottom: 0;
  overflow: visible;
  flex: 0 0 auto;
}

.v59-drawer-panel .v59-drawer-cta,
.v59-drawer-panel .v59-drawer-cta:hover,
.v59-drawer-panel .v59-drawer-cta:visited,
.v59-drawer-panel .v59-drawer-cta:active {
  color: var(--btn-fg);
}

.v59-drawer-panel .v59-drawer-login,
.v59-drawer-panel .v59-drawer-login:hover,
.v59-drawer-panel .v59-drawer-login:visited,
.v59-drawer-panel .v59-drawer-login:active {
  border-color: var(--hairline-em);
  background: var(--bg);
  color: var(--ink);
}

.v59-drawer-login,
.v59-drawer-cta {
  width: 100%;
  margin-top: 8px;
  box-sizing: border-box;
}

.v59-drawer-login {
  margin-top: 16px;
}

.v59-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: var(--gutter);
  padding: 0 clamp(24px, 4vw, 64px);
  align-items: stretch;
  position: relative;
  z-index: 0;
}

.v59-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 64px) 0;
  max-width: 620px;
}

.v59-hero-copy .v59-h1 {
  margin-bottom: 28px;
}

.v59-hero-lead {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: 17px;
  color: var(--ink-body);
}

.v59-hero-sub {
  max-width: 560px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--ink-muted);
}

.v59-action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.v59-hero-photo {
  position: relative;
  overflow: hidden;
  margin-right: calc(-1 * clamp(24px, 4vw, 64px));
  min-height: 100%;
}

.v59-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.v59-proof {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}

.v59-proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.v59-proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  border-right: 1px solid var(--hairline);
}

.v59-proof-item:first-child {
  padding-left: 0;
}

.v59-proof-item:last-child {
  border-right: 0;
}

.v59-proof-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.v59-pharmacy,
.v59-section,
.v59-core,
.v59-contact {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.v59-contact {
  padding-bottom: calc(var(--section-py) + 24px);
}

.v59-pharmacy,
.v59-section,
.v59-core {
  border-top: 1px solid var(--hairline);
}

.v59-pharmacy-head {
  max-width: 640px;
  margin-bottom: 32px;
}

.v59-tab-list {
  display: flex;
  overflow-x: auto;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--hairline);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.v59-tab-list::-webkit-scrollbar {
  display: none;
}

.v59-tab {
  padding: 12px 24px;
  margin-bottom: -1px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.v59-tab:hover,
.v59-tab.active {
  color: var(--ink);
}

.v59-tab.active {
  border-bottom-color: var(--ink);
}

.v59-mobile-tab-select {
  display: none;
}

.v59-mobile-tab-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.v59-mobile-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
}

.v59-tab-panel,
.v59-split,
.v59-core-inner,
.v59-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
}

.v59-tab-panel {
  align-items: start;
}

.v59-split,
.v59-contact-inner {
  align-items: center;
}

.v59-core-inner {
  align-items: start;
}

.v59-split-reverse {
  direction: rtl;
}

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

.v59-tab-photo,
.v59-section-photo,
.v59-core-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.v59-tab-photo img,
.v59-section-photo img,
.v59-core-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v59-tab-photo img,
.v59-core-photo img {
  object-position: center 25%;
}

.v59-tab-copy,
.v59-section-copy,
.v59-core-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v59-tab-copy p,
.v59-section-copy p,
.v59-core-copy p,
.v59-contact-copy p,
.v59-contact-note {
  max-width: 62ch;
}

.v59-core-copy {
  gap: 24px;
}

.v59-caps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v59-caps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-body);
}

.v59-caps li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink-faint);
}

.v59-deploy-line {
  padding: 12px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.v59-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--hairline);
  background: var(--hairline);
}

.v59-feature-grid > div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg);
}

.v59-feature-grid strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.v59-feature-grid span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.v59-feature-grid > div:nth-child(5) {
  grid-column: 1 / -1;
}

.v59-contact-copy {
  max-width: 480px;
}

.v59-contact-copy h2 {
  margin-bottom: 20px;
}

.v59-contact-copy p {
  font-size: 16px;
  color: var(--ink-muted);
}

.v59-contact-card {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--hairline);
  background: var(--bg);
}

.v59-contact-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.v59-contact-email {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.v59-contact-note {
  max-width: 520px;
  font-size: 15px;
  color: var(--ink-muted);
}

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

.v59-footer {
  padding: 48px 0 72px;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}

.v59-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

.v59-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.v59-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v59-footer-brand img {
  height: 24px;
  width: auto;
}

.v59-footer-lang {
  flex-shrink: 0;
}

.v59-footer p {
  max-width: 600px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.v59-footer-legal {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-faint);
}

.v59-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.v59-footer-links a {
  font-size: 13px;
  color: var(--ink-muted);
  border-bottom: 1px solid transparent;
}

.v59-footer-links a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.v59-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  display: none;
  padding: 0 clamp(16px, 3vw, 32px) clamp(16px, 3vw, 32px);
  pointer-events: none;
}

.v59-cookie.visible {
  display: block;
}

.v59-cookie-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--hairline-em);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(10, 10, 10, 0.12);
  pointer-events: auto;
  border-radius: 10px;
}

.v59-cookie p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.v59-cookie a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.v59-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.v59-cookie-btn {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--hairline-em);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.v59-cookie-btn-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.legal-page {
  background: #f9fafb;
  color: #374151;
}

.legal-header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 16px 0;
}

.legal-header-inner,
.legal-main,
.legal-footer {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-header-start {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.back-link {
  font-size: 14px;
  color: var(--ink-muted);
}

.back-link:hover {
  color: var(--ink);
}

.divider {
  color: #d1d5db;
}

.wordmark {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.legal-main {
  padding-top: 40px;
  padding-bottom: 80px;
}

.legal-main h1 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.75rem;
  font-weight: 700;
}

.legal-version {
  margin: 0 0 40px;
  color: var(--ink-muted);
  font-size: 14px;
}

.legal-section {
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.75;
}

.legal-section h2 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f4f6;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-section p {
  margin: 12px 0 0;
}

.legal-section p:first-of-type {
  margin-top: 0;
}

.legal-section ul {
  margin: 8px 0 0;
  padding-left: 20px;
  list-style: disc;
}

.legal-section li + li {
  margin-top: 4px;
}

.legal-section a,
.legal-footer a {
  color: #0d6fde;
}

.legal-section a:hover,
.legal-footer a:hover {
  color: #0a0a0a;
}

.legal-emphasis {
  color: var(--ink-muted);
  font-style: italic;
}

.legal-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
}

.legal-footer p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-faint);
}

@media (max-width: 1320px) {
  :root {
    --section-py: clamp(44px, 6vh, 72px);
    --gutter: 24px;
  }

  .v59-nav {
    height: 64px;
  }

  .v59-brand img {
    height: 30px;
  }

  .v59-nav-links,
  .v59-nav-utility {
    display: none;
  }

  .v59-hamburger {
    display: flex;
    margin-left: auto;
  }

  .v59-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
    gap: 24px;
  }

  .v59-hero-copy {
    padding: 32px 0 24px;
    max-width: 100%;
  }

  .v59-hero-photo {
    position: relative;
    aspect-ratio: 16 / 9;
    margin-right: 0;
    max-height: none;
  }

  .v59-hero-photo img {
    position: relative;
    inset: auto;
  }

  .v59-proof-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
  }

  .v59-proof-item {
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .v59-proof-item:nth-child(even) {
    padding-left: 16px;
    border-left: 1px solid var(--hairline);
  }

  .v59-proof-item:nth-child(3),
  .v59-proof-item:nth-child(4) {
    border-bottom: 0;
  }

  .v59-mobile-tab-select {
    display: block;
    margin-bottom: 32px;
  }

  .v59-tab-list {
    display: none;
  }

  .v59-tab-panel,
  .v59-split,
  .v59-core-inner,
  .v59-contact-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .v59-split-reverse {
    direction: ltr;
  }

  .v59-feature-grid {
    grid-template-columns: 1fr;
  }

  .v59-feature-grid > div:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .v59-page {
    padding-bottom: 176px;
  }

  .v59-container,
  .v59-nav-inner,
  .v59-footer-inner,
  .v59-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .v59-h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .v59-action-row,
  .v59-contact-actions {
    flex-direction: column;
  }

  .v59-action-row .v59-btn,
  .v59-contact-actions .v59-btn {
    width: 100%;
  }

  html[data-locale="fr"] .v59-btn[data-i18n="hero.primaryCta"],
  html[data-locale="fr"] .v59-btn[data-i18n="contact.primaryCta"],
  html[data-locale="fr"] .v59-btn[data-i18n="nav.briefing"] {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    font-size: 14px;
    padding: 10px 14px;
  }

  .v59-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  .v59-cookie-actions {
    width: 100%;
  }

  .v59-cookie-btn {
    flex: 1;
  }

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

  .legal-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-header-start {
    flex-wrap: wrap;
  }

  .legal-main,
  .legal-footer,
  .legal-header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .v59-proof-inner {
    grid-template-columns: 1fr;
  }

  .v59-proof-item:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .v59-proof-item:last-child {
    border-bottom: 0;
  }
}

/* === Hotfix 2026-06-02: mobile hero-photo overflow === */
/* Below 1320px the .v59-hero-photo figure was inheriting a computed   */
/* width from the desktop two-column grid and bleeding ~22px past the  */
/* right edge of the viewport on phones. Force the figure and image    */
/* to respect the single-column grid track on tablet/mobile.           */
@media (max-width: 1320px) {
  .v59-hero {
    overflow: hidden;
  }
  .v59-hero-photo,
  .v59-hero-photo img {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* === Hotfix 2026-06-02 part 2: hero photo vertical sizing === */
/* The .v59-hero-photo figure inherited min-height:100% from the       */
/* desktop rule and had max-height:none on mobile, allowing it to grow */
/* beyond aspect-ratio. In landscape it reached 154% of viewport;      */
/* on iOS Safari, URL-bar collapse during scroll caused object-fit:    */
/* cover to rescale the image (visible as a zoom-in effect).           */
/* Reset min-height, switch to 3/2 for portrait, cap with svh (frozen  */
/* to URL-bar-visible viewport so no scroll-zoom), and hard-cap        */
/* landscape phones where the photo would otherwise dominate.          */
@media (max-width: 1320px) {
  .v59-hero-photo {
    min-height: 0;
    aspect-ratio: 3 / 2;
    max-height: 44vh;
    max-height: 44svh;
  }
  .v59-hero-photo img {
    height: 100%;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {
  .v59-hero-photo {
    max-height: 200px;
  }
}

/* === Hotfix 2026-06-02 part 3: hero photo centering === */
/* The <figure> HTML element has a browser user-agent default of       */
/* "margin: 1em 40px" (Chrome/Safari/WebKit). The desktop rule         */
/* overrode margin-right only; the mobile rules at line 1102 and 1278  */
/* did the same. Result: photo on mobile was pushed ~40px right of     */
/* center. "margin: 0" resets all four UA defaults (left, right, top,  */
/* bottom) on the mobile hero figure, centering the photo and removing */
/* the redundant 16px top/bottom margin that stacked on the grid gap.  */
@media (max-width: 1320px) {
  .v59-hero-photo {
    margin: 0;
  }
}
