:root {
  --bg: #f6f8ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: rgba(16, 22, 61, 0.82);
  --text: #0d122b;
  --text-soft: #43507c;
  --indigo-deep: #171e4b;
  --indigo-main: #24338a;
  --indigo-accent: #5a6eea;
  --indigo-soft: #dce4ff;
  --cyan: #6ee7f5;
  --line: rgba(30, 49, 118, 0.12);
  --line-strong: rgba(118, 145, 255, 0.34);
  --shadow: 0 16px 44px rgba(20, 31, 78, 0.1);
  --shadow-strong: 0 22px 64px rgba(16, 23, 62, 0.2);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  /* The .section-contrast panel bleeds 40px past the page shell on purpose;
     clip keeps that bleed from making the whole page scroll sideways.
     `clip` rather than `hidden` so no scroll container is created and the
     sticky header keeps working. */
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 8%, rgba(110, 231, 245, 0.12), transparent 22%),
    linear-gradient(180deg, #f8faff 0%, #f2f5ff 100%);
}

body::before {
  content: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(122, 144, 241, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(39, 57, 136, 0.08);
}



.site-header .button-primary {
  background: linear-gradient(135deg, var(--indigo-main), var(--indigo-accent));
  color: white;
  box-shadow: 0 10px 24px rgba(55, 81, 208, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 3px 8px rgba(36, 51, 138, 0.16));
  flex: 0 0 auto;
}

.brand-text {
  font-size: 1.2rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--indigo-main);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.language-switcher-button {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  padding: 6px 8px;
  border: 0;
  border-radius: 999px;
  color: var(--text-soft);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-switcher-button.is-active {
  color: white;
  background: var(--indigo-main);
}

.language-switcher-button:focus-visible {
  outline: 3px solid rgba(90, 110, 234, 0.4);
  outline-offset: 2px;
}

.section {
  padding: 52px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
  min-height: 700px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--indigo-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.eyebrow::before {
  content: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 1.02;
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  margin-top: 20px;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.hero-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--indigo-main), var(--indigo-accent));
  color: white;
  box-shadow: 0 10px 24px rgba(55, 81, 208, 0.22);
}

.button-secondary,
.button-ghost {
  border-color: rgba(78, 101, 214, 0.18);
  background: rgba(255, 255, 255, 0.65);
  color: var(--indigo-deep);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(86, 111, 234, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--indigo-main);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.visual-orbit,
.visual-glow {
  position: absolute;
  inset: auto;
}

.visual-orbit {
  border: 1px solid rgba(119, 145, 255, 0.18);
  border-radius: 50%;
}

.visual-orbit-a {
  width: 480px;
  height: 480px;
  transform: rotate(22deg);
}

.visual-orbit-b {
  width: 560px;
  height: 360px;
  transform: rotate(-18deg);
}

.visual-glow {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(90, 110, 234, 0.28), rgba(90, 110, 234, 0.04) 58%, transparent 74%);
  filter: blur(14px);
}

.visual-card {
  position: relative;
  width: min(100%, 520px);
  padding: 20px 20px 17px;
  border: 1px solid rgba(129, 149, 255, 0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 245, 255, 0.66)),
    linear-gradient(135deg, rgba(132, 156, 255, 0.08), rgba(110, 231, 245, 0.08));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-strong);
  margin: 0 auto;
}

.visual-card::before {
  content: none;
}

.visual-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ---------- Hero booking calendar ---------- */
.booking {
  position: relative;
  display: grid;
  gap: 14px;
}

.booking-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.booking-month-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo-deep);
}

.booking-nav {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--indigo-main);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.booking-nav:hover:not(:disabled),
.booking-nav:focus-visible {
  border-color: var(--line-strong);
  background: #ffffff;
}

.booking-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-weekdays,
.booking-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-weekdays {
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.booking-day {
  height: 38px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--indigo-deep);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.booking-day:hover:not(:disabled),
.booking-day:focus-visible {
  border-color: var(--line-strong);
  background: #ffffff;
}

.booking-day:disabled {
  background: transparent;
  color: rgba(67, 80, 124, 0.35);
  cursor: not-allowed;
}

.booking-day.is-selected {
  background: var(--indigo-main);
  border-color: var(--indigo-main);
  color: #ffffff;
}

/* The plain hover rule carries an extra :not(), so it would otherwise repaint
   the selected day white and leave white text on it. */
.booking-day.is-selected:hover:not(:disabled),
.booking-day.is-selected:focus-visible {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
  color: #ffffff;
}

.booking-day-empty {
  visibility: hidden;
}

.booking-slots {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.booking-slots-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.booking-tz {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.8;
}

.booking-slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-slot {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--indigo-main);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.booking-slot:hover,
.booking-slot:focus-visible {
  border-color: var(--line-strong);
  background: #ffffff;
}

.booking-slot.is-selected {
  background: var(--indigo-main);
  border-color: var(--indigo-main);
  color: #ffffff;
}

.booking-slot.is-selected:hover,
.booking-slot.is-selected:focus-visible {
  background: var(--indigo-deep);
  border-color: var(--indigo-deep);
  color: #ffffff;
}

.booking-slot-empty {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.booking-field {
  display: grid;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text-soft);
}

.booking-field em {
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.booking-field-wide {
  grid-column: 1 / -1;
}

.booking-field input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.booking-field input:focus-visible {
  outline: none;
  border-color: var(--indigo-accent);
  box-shadow: 0 0 0 3px rgba(90, 110, 234, 0.16);
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-turnstile:empty {
  display: none;
}

.booking-submit {
  width: 100%;
}

.booking-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-soft);
}

.booking-status.is-error {
  color: #b3261e;
}

.booking-status.is-success {
  color: #176b4a;
}

.booking-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.info-card,
.platform-card,
.statement-card,
.step-card,
.cta-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.platform-card-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  margin-bottom: 18px;
}

.platform-card-brand img {
  display: block;
  width: auto;
  flex: 0 0 auto;
}

.platform-card-brand-sap img {
  height: 26px;
}

.platform-card-brand-azure img {
  height: 26px;
}

.platform-card-brand-aws img {
  height: 26px;
}

.platform-card-brand-gcp img {
  height: 22px;
}

.platform-logo-sap-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 28px;
  padding: 0 10px 0 8px;
  border-radius: 6px 14px 6px 6px;
  background: linear-gradient(135deg, #00b7f0 0%, #0b74de 100%);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.platform-card-brand h3 {
  line-height: 1;
}

.platform-card-sub {
  margin-top: -10px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p {
  margin-top: 14px;
  font-size: 1rem;
  color: var(--text-soft);
}

.section-contrast {
  position: relative;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 0 -28px;
  border-radius: var(--radius-xl);
  background: rgba(230, 236, 255, 0.62);
  z-index: -1;
}

.card-grid,
.platform-grid,
.split-grid,
.steps {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.platform-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.platform-card,
.step-card {
  padding: 22px;
}

.info-card p,
.platform-card ul,
.statement-card p,
.step-card p {
  margin-top: 14px;
}

.service-card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--indigo-main);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(90, 110, 234, 0.32);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  text-decoration-color: var(--indigo-main);
}

.card-tag {
  display: inline-flex;
  padding: 4px 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--indigo-soft);
  color: var(--indigo-main);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

ul {
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.7;
}

.split-grid {
  grid-template-columns: repeat(3, 1fr);
}

.statement-card {
  padding: 24px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--indigo-accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.section-cta {
  padding-bottom: 0;
}

.cta-block {
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(230, 236, 255, 0.82)),
    linear-gradient(180deg, rgba(90, 110, 234, 0.08), rgba(110, 231, 245, 0.06));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: block;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 600;
  color: var(--indigo-deep);
}

.contact-form .field-wide {
  grid-column: 1 / -1;
}

.chat-shell {
  padding: 22px;
  border: 1px solid rgba(78, 101, 214, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 255, 0.9)),
    radial-gradient(circle at top right, rgba(110, 231, 245, 0.16), transparent 30%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.chat-header strong {
  display: block;
  color: var(--indigo-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.chat-presence {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(78, 101, 214, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--indigo-main);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.contact-card-chat {
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.contact-chat-button {
  width: 100%;
  margin-top: 18px;
}

/* .contact-card a paints links indigo and outranks .button-primary, which
   left the label unreadable on the blue gradient. */
.contact-card a.button-primary {
  color: #ffffff;
}

a.chat-presence {
  transition: border-color 0.2s ease, background 0.2s ease;
}

a.chat-presence:hover,
a.chat-presence:focus-visible {
  border-color: var(--line-strong);
  background: #ffffff;
}

.chat-presence::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #11a75c;
  box-shadow: 0 0 0 6px rgba(17, 167, 92, 0.12);
}

.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.chat-prompt {
  padding: 10px 14px;
  border: 1px solid rgba(78, 101, 214, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--indigo-main);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.chat-prompt:hover,
.chat-prompt:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(78, 101, 214, 0.32);
  background: rgba(255, 255, 255, 0.98);
}

.chat-topic {
  margin-top: 18px;
}

.chat-topic-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--indigo-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.chat-topic-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.chat-message {
  margin-top: 18px;
}

.chat-message-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--indigo-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.chat-message-label::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--indigo-accent));
  box-shadow: 0 0 0 8px rgba(90, 110, 234, 0.09);
}

.chat-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(79, 105, 227, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(79, 105, 227, 0.38);
  box-shadow: 0 0 0 4px rgba(90, 110, 234, 0.12);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

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

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #0f766e;
}

.turnstile-slot {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 4px 0;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
}

.contact-card h3 {
  margin-top: 2px;
}

.contact-card p {
  margin-top: 14px;
}

.contact-card a {
  color: var(--indigo-main);
  font-weight: 700;
}

.legal-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
}

.legal-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30, 49, 118, 0.08);
}

.legal-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-list dt {
  color: var(--text-soft);
  font-weight: 700;
}

.legal-list dd {
  margin: 0;
  color: var(--indigo-deep);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 12px;
  color: var(--text-soft);
}

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

.footer-brand strong {
  display: inline-block;
  color: var(--indigo-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.footer-brand p,
.footer-meta p {
  margin-top: 8px;
}

.footer-meta {
  text-align: right;
}

.legal-ids span {
  white-space: nowrap;
}

.legal-ids span:not(:first-child)::before {
  content: "| ";
  color: var(--text-soft);
}

.footer-meta a {
  color: var(--indigo-main);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero,
  .card-grid,
  .platform-grid,
  .split-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .chat-header {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    top: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    border-radius: var(--radius-lg);
  }

  .site-header .brand {
    margin-right: auto;
  }

  .site-nav {
    order: 4;
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    overflow-x: auto;
    white-space: nowrap;
  }

  .section {
    padding: 48px 0;
  }

  .hero,
  .card-grid,
  .platform-grid,
  .split-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .chat-meta {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  h2 {
    max-width: 16ch;
  }

  .hero-visual {
    min-height: 440px;
  }

  .visual-orbit-a {
    width: 320px;
    height: 320px;
  }

  .visual-orbit-b {
    width: 380px;
    height: 240px;
  }

  .visual-glow {
    width: 280px;
    height: 280px;
  }

  .visual-card,
  .cta-block {
    padding: 20px;
  }

  .chat-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .footer-brand {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .contact-form .field-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Analytics consent */

.link-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--indigo-main);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(calc(100% - 32px), 620px);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
  animation: consent-in 220ms ease-out;
}

.consent-bar p {
  margin: 0;
}

.consent-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.consent-bar .button {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

@keyframes consent-in {
  from {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 620px) {
  .consent-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .consent-actions {
    margin-left: 0;
    justify-content: flex-end;
  }
}
