﻿:root {
  --sr-bg: #f8fafc;
  --sr-panel: #ffffff;
  --sr-ink: #0f172a;
  --sr-muted: #64748b;
  --sr-soft: #94a3b8;
  --sr-line: #dbe7f3;
  --sr-line-soft: #eef3f8;
  --sr-brand: #0f172a;
  --sr-blue: #0284c7;
  --sr-green: #10b981;
  --sr-rose: #f43f5e;
  --sr-amber: #f59e0b;
  --sr-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --sr-shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.06);
  --sr-ease: cubic-bezier(0.32, 0.72, 0, 1);
  --sr-icon-label-font-size: 13px;
  --sr-icon-label-font-weight: 850;
  --sr-icon-label-line-height: 1.24;
  --sr-inline-label-font-size: 12px;
  --sr-inline-label-font-weight: 800;
  --sr-box-icon-size: 44px;
  --sr-box-icon-radius: 15px;
  --sr-box-icon-glyph-size: 20px;
  --sr-inline-icon-size: 15px;
}

html {
  scroll-behavior: smooth;
  background: var(--sr-bg);
  scrollbar-gutter: stable;
}

html.landing-scroll-locked {
  overflow: hidden;
  scrollbar-gutter: auto;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sr-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.98) 420px),
    var(--sr-bg);
  opacity: 0;
  transition: opacity 0.48s var(--sr-ease);
}

body.is-ready {
  opacity: 1;
}

.tippy-box[data-theme~="sidebar"] {
  background: #1e293b;
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
}

.tippy-box[data-theme~="sidebar"] .tippy-content {
  padding: 6px 12px;
}

.tippy-box[data-theme~="sidebar"] .tippy-arrow {
  display: none;
}

body.landing-scroll-locked {
  overflow: hidden;
  padding-right: var(--landing-scrollbar-width, 0px);
}

[hidden] {
  display: none !important;
}

#languageModal {
  z-index: 1100 !important;
}

* {
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.site-shell {
  min-height: 100vh;
}

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

.not-found-section {
  padding: 88px 0 96px;
}

.not-found-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  border: 1px solid var(--sr-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(16, 185, 129, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--sr-shadow);
  text-align: center;
  padding: 64px 24px;
}

.not-found-code {
  position: absolute;
  right: clamp(16px, 7vw, 96px);
  bottom: -34px;
  color: rgba(2, 132, 199, 0.06);
  font-size: clamp(130px, 23vw, 300px);
  font-weight: 950;
  line-height: 0.78;
  pointer-events: none;
}

.not-found-panel .eyebrow,
.not-found-panel .section-title,
.not-found-panel .section-copy,
.not-found-actions {
  position: relative;
  z-index: 1;
}

.not-found-panel .section-title {
  max-width: 720px;
  margin-top: 20px;
}

.not-found-panel .section-copy {
  max-width: 620px;
  margin-top: 16px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.sr-nav {
  position: sticky;
  top: 16px;
  z-index: 40;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  border: 1px solid var(--sr-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(22px) saturate(1.12);
  transition: opacity 0.22s ease, transform 0.22s var(--sr-ease), visibility 0.22s ease;
}

.sr-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #fff;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.sr-logo span {
  color: #38bdf8;
}

.landing-nav-flag {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.24s var(--sr-ease);
}

.landing-nav-flag:hover {
  transform: translateY(-1px);
  border-color: #e2e8f0;
  background: #f8fafc;
}

.landing-nav-flag img {
  width: 24px;
  height: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  object-fit: cover;
}

.landing-mobile-header-flag {
  background: #fff;
  border-color: #e2e8f0;
}

.landing-mobile-menu-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  color: #475569;
  font-size: 20px;
  transition: transform 0.24s var(--sr-ease), background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.landing-mobile-menu-btn:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.landing-mobile-flag {
  width: 22px;
  height: 22px;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.landing-mobile-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-auth-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.78);
}

.landing-auth-login,
.landing-auth-register {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  padding: 0 12px;
  font-size: 12.5px;
  font-weight: 780;
  line-height: 1;
  transition: transform 0.24s var(--sr-ease), background 0.22s ease, border-color 0.22s ease, box-shadow 0.24s var(--sr-ease), color 0.22s ease;
}

.landing-auth-login {
  color: #475569;
}

.landing-auth-login:hover {
  transform: translateY(-1px);
  background: #fff;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.landing-auth-register {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.landing-auth-register:hover {
  transform: translateY(-1px);
  background: #1e293b;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.landing-mobile-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #eef3f8;
}

.landing-mobile-auth-grid .landing-auth-login,
.landing-mobile-auth-grid .landing-auth-register {
  min-height: 42px;
  border: 1px solid #e2e8f0;
}

.landing-mobile-auth-grid .landing-auth-login {
  background: #fff;
}

.landing-mobile-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.landing-mobile-offcanvas-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.34);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 0.28s ease;
}

.landing-mobile-offcanvas-panel {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: min(calc(100vw - 20px), 390px);
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(219, 231, 243, 0.95);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 8%, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: -24px 24px 80px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateX(22px) scale(0.985);
  transition: opacity 0.22s ease, transform 0.34s var(--sr-ease);
  will-change: transform, opacity;
}

.landing-mobile-offcanvas.is-open .landing-mobile-offcanvas-backdrop {
  opacity: 1;
}

.landing-mobile-offcanvas.is-open {
  pointer-events: auto;
}

.landing-mobile-offcanvas.is-open .landing-mobile-offcanvas-panel {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.landing-mobile-offcanvas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef3f8;
}

.landing-mobile-offcanvas-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  color: #64748b;
  font-size: 20px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.landing-mobile-offcanvas-close:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.landing-mobile-offcanvas-links {
  display: grid;
  gap: 8px;
  overflow-y: auto;
  padding: 16px 0;
}

.landing-mobile-link {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 0 12px;
  background: transparent;
  color: #475569;
  font-size: 13.5px;
  font-weight: 800;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s var(--sr-ease);
}

.landing-mobile-link > i:first-child,
.landing-mobile-link .landing-mobile-flag {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 17px;
}

.landing-mobile-link:hover,
.landing-mobile-link.is-active {
  transform: translateY(-1px);
  border-color: #dbeafe;
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
}

.landing-mobile-link .ti-chevron-down {
  margin-left: auto;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.nav-link {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 12px;
  color: #475569;
  font-size: 13px;
  font-weight: 650;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #0f172a;
  background: #f8fafc;
}

.nav-group {
  position: relative;
}

.nav-group-trigger {
  cursor: default;
}

.nav-group-trigger i {
  color: #94a3b8;
  font-size: 14px;
  transition: transform 0.22s ease, color 0.22s ease;
}

.nav-group:hover .nav-group-trigger,
.nav-group:focus-within .nav-group-trigger {
  color: #0f172a;
  background: #f8fafc;
}

.nav-group:hover .nav-group-trigger i,
.nav-group:focus-within .nav-group-trigger i {
  color: #64748b;
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  width: 278px;
  display: grid;
  gap: 4px;
  padding: 16px 8px 8px;
  border: 1px solid #dbe7f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  background-clip: padding-box;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  visibility: hidden;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown a {
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  color: #475569;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
  background: #f8fafc;
  color: #0f172a;
}

.nav-dropdown a > i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 17px;
}

.nav-dropdown strong,
.nav-dropdown small {
  display: block;
}

.nav-dropdown strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.nav-dropdown small {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 11.5px;
  font-weight: 650;
  line-height: 1.35;
}

.mobile-nav-group {
  display: grid;
  gap: 4px;
}

.mobile-nav-group summary {
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.mobile-nav-group summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-group summary .ti-chevron-down {
  color: #94a3b8;
  transition: transform 0.22s ease;
}

.mobile-nav-group[open] summary .ti-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav-nested {
  display: grid;
  gap: 6px;
  margin: 6px 0 2px 4px;
  padding-left: 10px;
  border-left: 1px solid #dbeafe;
}

.mobile-nav-nested .landing-mobile-link {
  min-height: 42px;
  border-radius: 14px;
  font-size: 13px;
}

.btn-primary,
.btn-secondary,
.btn-soft {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.28s var(--sr-ease), box-shadow 0.28s var(--sr-ease), background 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.16);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #1e293b;
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
  background: #fff;
  color: #334155;
  border: 1px solid var(--sr-line);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: #cbd5e1;
  box-shadow: var(--sr-shadow-soft);
}

.btn-soft {
  background: #eff6ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.hero {
  padding: 72px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1fr);
  gap: 38px;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 12px;
  font-weight: 750;
}

.hero-title {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  color: #0b1220;
  overflow-wrap: break-word;
}

html[lang="el-gr"] .hero-title {
  max-width: 560px;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04;
}

.hero-copy {
  max-width: 650px;
  margin-top: 22px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.72;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--sr-line);
  background: rgba(255, 255, 255, 0.86);
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.pill.green {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}

.pill.blue {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}

.pill.amber {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 22px;
}

.section-title {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(26px) scale(0.992);
  transition:
    opacity 0.9s var(--sr-ease),
    filter 0.9s var(--sr-ease),
    transform 0.9s var(--sr-ease);
  will-change: opacity, filter, transform;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.reveal-child {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition:
    opacity 0.82s var(--sr-ease),
    filter 0.82s var(--sr-ease),
    transform 0.82s var(--sr-ease);
  transition-delay: calc(90ms + (var(--reveal-index, 0) * 70ms));
  will-change: opacity, filter, transform;
}

.reveal.is-visible .reveal-child {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.metric-card,
.language-showcase,
.explore-panel,
.academy-panel,
.price-card,
.landing-final-cta,
.contact-panel,
.faq-item {
  transition:
    transform 0.42s var(--sr-ease),
    box-shadow 0.42s var(--sr-ease),
    border-color 0.32s ease,
    background 0.32s ease;
}

.metric-card:hover,
.explore-choice-card:hover,
.academy-row:hover,
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.app-frame {
  border: 1px solid var(--sr-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--sr-shadow);
  overflow: hidden;
}

.hero .app-frame {
  width: min(100%, 628px);
  height: 356px;
  justify-self: center;
  display: flex;
  flex-direction: column;
}

.hero .app-frame > .flex {
  min-height: 0;
  flex: 1 1 auto;
}

.app-top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--sr-line-soft);
}

.app-side {
  width: 214px;
  flex: 0 0 214px;
  border-right: 1px solid var(--sr-line-soft);
  padding: 14px;
  background: #fff;
}

.app-tab {
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 10px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.app-tab.is-active {
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.app-main {
  flex: 1;
  min-width: 0;
  padding: 18px;
  background: #f8fafc;
}

.hero .app-main {
  overflow: hidden;
  padding: 16px 18px;
}

.record {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px 12px;
  border: 1px solid var(--sr-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.035);
}

.hero .record {
  min-height: 74px;
  padding: 18px 12px 12px;
  border-radius: 16px;
}

.hero .record + .record {
  margin-top: 14px;
}

.hero .record .pill {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 0 10px;
}

.hero-summary {
  width: min(100%, 650px);
  min-height: 392px;
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 0%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 96% 16%, rgba(16, 185, 129, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}

.hero-summary-top {
  min-height: 70px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.hero-summary-globe {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 24%, rgba(56, 189, 248, 0.2), transparent 34%),
    #f0f9ff;
  color: #0284c7;
  font-size: 23px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 26px rgba(14, 165, 233, 0.1);
}

.hero-summary-top p,
.hero-summary-card p,
.hero-summary-footer p {
  color: #64748b;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-summary-top strong {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: #0f172a;
  font-size: 14px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-summary-domain span {
  display: inline-block;
  min-width: 8.8em;
  color: #0369a1;
}

.hero-summary-domain span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  border-radius: 999px;
  background: #38bdf8;
  vertical-align: -0.13em;
  animation: heroTypeCaret 0.9s steps(1) infinite;
}

.hero-summary-status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 11.5px;
  font-weight: 850;
  white-space: nowrap;
}

@keyframes heroTypeCaret {
  50% {
    opacity: 0;
  }
}

.hero-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-summary-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: var(--sr-box-icon-size) minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  padding: 14px;
  border: 1px solid #dbe7f3;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.hero-summary-card.is-primary {
  background: linear-gradient(135deg, #f0f9ff, #fff);
}

.hero-summary-card > span {
  width: var(--sr-box-icon-size);
  height: var(--sr-box-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: var(--sr-box-icon-radius);
  background: #f0f9ff;
  color: #0284c7;
  font-size: var(--sr-box-icon-glyph-size);
}

.hero-summary-card p {
  display: flex;
  align-items: center;
  min-height: var(--sr-box-icon-size);
  margin: 0;
  overflow-wrap: anywhere;
}

.hero-summary-footer p {
  width: fit-content;
  padding: 0;
  background: transparent;
  color: #059669;
}

.hero-summary-card strong {
  grid-column: 1 / -1;
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.42;
}

.hero-health-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-health-strip span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: rgba(240, 249, 255, 0.72);
  color: #0369a1;
  font-size: 11.5px;
  font-weight: 720;
}

.hero-summary-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 1px solid #bbf7d0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.94), rgba(255, 255, 255, 0.9));
}

.hero-summary-footer strong {
  display: block;
  margin-top: 2px;
  color: #047857;
  font-size: 15px;
  font-weight: 780;
}

.bookings-hero .hero-title {
  max-width: 720px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.02;
  text-wrap: balance;
}

.bookings-hero .sr-container.hero-grid {
  width: min(1220px, calc(100% - 32px));
}

html[lang="el-gr"] .bookings-hero .hero-title {
  max-width: 100%;
  font-size: clamp(40px, 4.35vw, 56px);
  line-height: 1.08;
}

.booking-hero-copy-secondary {
  margin-top: 18px;
}

.bookings-hero .hero-summary {
  min-height: 510px;
}

.bookings-hero .hero-summary-top {
  min-height: 82px;
  padding: 14px;
}

.bookings-hero .hero-summary-top strong {
  font-size: 15px;
}

.bookings-hero .hero-summary-card {
  min-height: 132px;
  padding: 14px;
}

.bookings-hero .hero-summary-card strong {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.48;
}

.bookings-hero .hero-summary-footer small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
}

.bookings-metrics-section {
  padding-top: 28px;
}

.bookings-hero + .bookings-metrics-section {
  padding-top: 28px;
}

.bookings-hero ~ .section {
  padding-top: 42px;
  padding-bottom: 42px;
}

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

.booking-pricing-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.booking-pricing-benefits span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  background: rgba(236, 253, 245, 0.72);
  color: #047857;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.booking-resource-highlight {
  color: #0284c7;
}

.record + .record {
  margin-top: 14px;
}

.record-badges {
  position: absolute;
  top: -11px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge {
  min-width: 24px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  border-radius: 7px;
  border: 1px solid #86efac;
  background: #ecfdf5;
  color: #047857;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(4, 120, 87, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.badge.red {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #e11d48;
}

.badge.blue {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}

.badge.amber {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.record-badges .badge {
  width: 22px;
  min-width: 22px;
  padding: 0;
}

.record-badges .badge i {
  font-size: 13px;
}

.thumb {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #64748b;
}

.metric-card,
.feature-card,
.service-card,
.price-card {
  border: 1px solid var(--sr-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.045);
}

.pricing-free-word {
  color: #059669;
  text-shadow: 0 10px 28px rgba(16, 185, 129, 0.16);
}

.pricing-free-card {
  position: relative;
  overflow: hidden;
  border-color: #86efac !important;
  background:
    radial-gradient(circle at 88% 12%, rgba(16, 185, 129, 0.16), transparent 34%),
    linear-gradient(135deg, #ecfdf5, #ffffff 58%) !important;
  box-shadow: 0 22px 54px rgba(16, 185, 129, 0.12);
}

.pricing-free-card::after {
  content: "FREE";
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(16, 185, 129, 0.08);
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.pricing-free-card > * {
  position: relative;
  z-index: 1;
}

.pricing-free-price {
  color: #047857;
}

.pricing-free-label {
  color: #059669 !important;
}

.metric-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.metric-card > p {
  position: relative;
  z-index: 1;
}

.metric-card-watermark {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 0;
  color: #0284c7;
  font-size: 74px;
  line-height: 1;
  opacity: 0.08;
  transform: translateY(-50%) rotate(-4deg);
  pointer-events: none;
}

.metric-card-icon-stack {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 0;
  width: 86px;
  height: 64px;
  display: block;
  opacity: 0.42;
  transform: translateY(-50%);
  pointer-events: none;
}

.metric-card-icon-stack i {
  position: absolute;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 14px;
  background: rgba(240, 249, 255, 0.92);
  color: #0284c7;
  font-size: 19px;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.08);
}

.metric-card-icon-stack i:nth-child(1) {
  top: 0;
  right: 26px;
}

.metric-card-icon-stack i:nth-child(2) {
  right: 0;
  bottom: 0;
}

.metric-card-icon-stack i:nth-child(3) {
  left: 0;
  bottom: 2px;
}

.language-showcase-section {
  padding-top: 16px;
}

.language-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1fr);
  align-items: center;
  gap: 42px;
  overflow: hidden;
  min-height: 360px;
  padding: 34px;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.9), rgba(255, 255, 255, 0.94) 56%),
    #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.055);
}

.language-showcase-copy {
  min-width: 0;
  max-width: 520px;
}

.language-showcase-badge-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.language-supported-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: rgba(240, 249, 255, 0.9);
  color: #0369a1;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(14, 165, 233, 0.08);
}

.language-showcase-pills {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
}

.language-showcase-pills span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  background: rgba(236, 253, 245, 0.86);
  color: #047857;
  font-size: 12px;
  font-weight: 780;
  text-align: center;
}

.language-showcase-pills span:nth-child(2) {
  border-color: #bae6fd;
  background: rgba(240, 249, 255, 0.88);
  color: #0369a1;
}

.language-showcase-pills span:nth-child(3) {
  border-color: #e2e8f0;
  background: rgba(255, 255, 255, 0.88);
  color: #475569;
}

.language-showcase-visual {
  min-width: 0;
}

.language-visual-stage {
  position: relative;
  min-height: 270px;
  min-width: 0;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  padding: 36px 0;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 52% 40%, rgba(56, 189, 248, 0.18), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(14, 165, 233, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.72);
}

.language-flag-slider {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 13%, #000 87%, transparent);
}

.language-flag-slider::before {
  content: "";
  position: absolute;
  inset: 50% 9% auto;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.18), rgba(14, 165, 233, 0.1), transparent);
  filter: blur(12px);
  transform: translateY(-50%);
  pointer-events: none;
}

.language-flag-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: languageFlagSlide 46s linear infinite;
}

.language-flag-slider.is-reverse .language-flag-track {
  animation-direction: reverse;
  animation-duration: 52s;
}

.language-flag-item {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #dbe7f3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.045);
}

.language-flag-item img {
  width: 38px;
  height: 38px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  object-fit: cover;
}

.language-flag-slider:hover .language-flag-track {
  animation-play-state: paused;
}

.language-greeting-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(78%, 330px);
  height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
  transform: translate(-50%, -50%);
}

.language-greeting-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  border: 1px solid rgba(219, 234, 254, 0.9);
  pointer-events: none;
}

.language-greeting-badge span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  filter: blur(0);
  transform: translateY(-1px);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}

.language-greeting-badge.is-changing span {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(5px);
}

@keyframes languageFlagSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 7px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-flag-track {
    animation: none;
  }

  .language-greeting-badge span {
    transition: none;
  }
}

.feature-card,
.service-card {
  padding: 22px;
}

.icon-label-card,
.payment-feature-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.icon-label-card .feature-icon,
.payment-feature-card .feature-icon {
  grid-column: 1;
  grid-row: 1;
}

.icon-label-card h3,
.payment-feature-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0 !important;
}

.icon-label-card p,
.payment-feature-card p {
  grid-column: 1 / -1;
}

.payment-holding-note > .grid {
  align-items: center;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 20px;
}

.feature-icon > i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.icon-label-card .feature-icon,
.payment-feature-card .feature-icon,
.workspace-capability > span,
.booking-resource-panel .workspace-capability > span,
.academy-row .feature-icon,
.contact-panel .contact-card .feature-icon {
  width: var(--sr-box-icon-size);
  height: var(--sr-box-icon-size);
  border-radius: var(--sr-box-icon-radius);
  flex: 0 0 var(--sr-box-icon-size);
}

.icon-label-card .feature-icon > i,
.payment-feature-card .feature-icon > i,
.workspace-capability > span i,
.booking-resource-panel .workspace-capability > span i,
.academy-row .feature-icon > i,
.contact-panel .contact-card .feature-icon > i {
  width: var(--sr-box-icon-glyph-size);
  height: var(--sr-box-icon-glyph-size);
  font-size: var(--sr-box-icon-glyph-size);
  line-height: 1;
}

.icon-label-card h3,
.payment-feature-card h3,
.workspace-capability h3,
.booking-resource-panel .workspace-capability h3,
.academy-row h3,
.contact-panel .contact-card h3 {
  font-family: inherit;
  font-size: var(--sr-icon-label-font-size) !important;
  font-weight: var(--sr-icon-label-font-weight) !important;
  line-height: var(--sr-icon-label-line-height);
  letter-spacing: 0;
}

.eyebrow,
.pill,
.hero-health-strip span,
.language-showcase-pills span,
.workspace-final-pills span,
.booking-area-map-label,
.booking-training-step,
.booking-payment-node,
.suite-capability,
.service-status-pill,
.academy-soon-pill,
.booking-payment-trust-label {
  font-family: inherit;
  font-size: var(--sr-inline-label-font-size) !important;
  font-weight: var(--sr-inline-label-font-weight) !important;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-summary-top p,
.hero-summary-card p {
  font-family: inherit;
  font-size: var(--sr-inline-label-font-size) !important;
  font-weight: var(--sr-inline-label-font-weight) !important;
  line-height: 1.25;
  letter-spacing: 0;
}

.eyebrow i,
.pill i,
.hero-health-strip span i,
.language-showcase-pills span i,
.workspace-final-pills span i,
.booking-area-map-label i,
.booking-training-step i,
.booking-payment-node i,
.suite-capability i,
.service-status-pill i,
.academy-soon-pill i,
.booking-payment-trust-label i {
  width: var(--sr-inline-icon-size);
  height: var(--sr-inline-icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--sr-inline-icon-size) !important;
  line-height: 1;
}

.explore-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--sr-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 18%, rgba(16, 185, 129, 0.12), transparent 34%),
    radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--sr-shadow);
  padding: 28px;
}

.explore-panel-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.explore-actions-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.explore-choice-card {
  position: relative;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(186, 230, 253, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.9));
  color: #075985;
  text-align: left;
  box-shadow:
    0 16px 34px rgba(2, 132, 199, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(18px) saturate(1.08);
  transition: transform 0.3s var(--sr-ease), box-shadow 0.3s var(--sr-ease), border-color 0.22s ease, background 0.22s ease;
}

.explore-choice-card:hover {
  transform: translateY(-1px);
  border-color: #7dd3fc;
  background: #fff;
  box-shadow: 0 18px 38px rgba(2, 132, 199, 0.12);
}

.explore-choice-card > span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.78);
  border-radius: 10px;
  background:
    linear-gradient(180deg, #f0f9ff, #e0f2fe);
  color: #0284c7;
  font-size: 20px;
}

.explore-choice-card strong,
.explore-choice-card small,
.explore-choice-card em {
  display: block;
}

.explore-choice-card strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.explore-choice-card small {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 570;
  line-height: 1.55;
}

.explore-choice-card em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0369a1;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 850;
}

.explore-choice-card em i {
  font-size: 15px;
}

.explore-choice-card.is-guest {
  border-color: #bbf7d0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.9));
}

.explore-choice-card.is-guest > span {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #059669;
}

.explore-choice-card.is-guest em {
  color: #047857;
}

.workspace-preview-modal,
.menu-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
}

.workspace-preview-modal-backdrop,
.menu-demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0);
  backdrop-filter: blur(0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.workspace-preview-modal-viewport,
.menu-demo-modal-viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vw, 28px);
}

.workspace-preview-modal-panel,
.menu-demo-modal-panel {
  width: min(96vw, 1180px);
  height: min(86dvh, 720px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 243, 0.92);
  border-radius: clamp(22px, 2vw, 30px);
  background: #fff;
  box-shadow: 0 36px 110px rgba(15, 23, 42, 0.18);
  opacity: 0;
  transform: translateY(16px) scale(0.976);
  transition: opacity 0.34s ease, transform 0.42s var(--sr-ease);
}

.workspace-preview-modal.is-open .workspace-preview-modal-backdrop,
.menu-demo-modal.is-open .menu-demo-modal-backdrop {
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(4px);
}

.workspace-preview-modal.is-open .workspace-preview-modal-panel,
.menu-demo-modal.is-open .menu-demo-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.workspace-preview-modal-head,
.menu-demo-modal-head {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #eef3f8;
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.78), rgba(255, 255, 255, 0.94));
}

.workspace-preview-modal-head > div,
.menu-demo-modal-head > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.workspace-preview-modal-head span,
.menu-demo-modal-head span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #bae6fd;
  border-radius: 14px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 20px;
}

.workspace-preview-modal-head h2,
.menu-demo-modal-head h2 {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.workspace-preview-modal-head p,
.menu-demo-modal-head p {
  margin-top: 3px;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.45;
}

.workspace-preview-modal-head button,
.menu-demo-modal-head button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  color: #64748b;
  font-size: 20px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--sr-ease);
}

.workspace-preview-modal-head button:hover,
.menu-demo-modal-head button:hover {
  transform: translateY(-1px);
  background: #f8fafc;
  color: #0f172a;
}

.workspace-preview-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.6vw, 34px);
  background:
    radial-gradient(circle at 86% 20%, rgba(16, 185, 129, 0.12), transparent 32%),
    radial-gradient(circle at 10% 0%, rgba(14, 165, 233, 0.12), transparent 30%),
    #f8fafc;
}

.workspace-preview-modal.is-final-step .workspace-preview-modal-body {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #f8fafc;
}

.workspace-preview-step {
  width: min(100%, 1080px);
  min-height: min(100%, 520px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.88fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(219, 234, 254, 0.86);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.46);
}

.workspace-preview-copy {
  max-width: 540px;
  min-width: 0;
}

.workspace-preview-copy h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  margin-top: 14px;
  color: #0f172a;
  font-size: clamp(32px, 3.45vw, 48px);
  font-weight: 900;
  line-height: 1.02;
}

.workspace-preview-copy p {
  max-width: 560px;
  margin-top: 14px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.workspace-preview-domain {
  width: min(100%, 560px);
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 16px;
  border: 1px solid #bae6fd;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.08);
}

.workspace-preview-domain > i {
  color: #0284c7;
  font-size: 20px;
}

.workspace-preview-domain span {
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.workspace-preview-domain strong,
.workspace-preview-service em {
  display: inline-block;
  color: #0f172a;
  font-style: normal;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.workspace-preview-modal.is-typing [data-workspace-venue-typewriter] {
  opacity: 0.72;
  transform: translateY(1px);
}

.workspace-preview-services {
  display: grid;
  gap: 10px;
}

.workspace-preview-service {
  min-height: 82px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.workspace-preview-service > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 15px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 22px;
}

.workspace-preview-service p {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.workspace-preview-service strong {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-preview-service small {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: #f0f9ff;
  color: #0369a1;
  font-size: 11px;
  font-weight: 850;
}

.workspace-preview-service:not(.is-live) small {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.workspace-preview-service.is-live {
  border-color: #bbf7d0;
  background:
    radial-gradient(circle at 92% 50%, rgba(16, 185, 129, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.workspace-preview-service.is-live > span,
.workspace-preview-service.is-live small {
  border-color: #86efac;
  background: #ecfdf5;
  color: #047857;
}

.workspace-preview-step[hidden] {
  display: none;
}

.workspace-preview-product-note {
  align-items: flex-start;
  min-height: 64px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.workspace-preview-product-note strong {
  line-height: 1.3;
}

.workspace-product-preview {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.workspace-product-record {
  position: relative;
  width: min(100%, 560px);
  margin-top: 22px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 16%, rgba(14, 165, 233, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.08);
}

.workspace-product-image {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(224, 242, 254, 0.95), rgba(236, 253, 245, 0.84));
  color: #0284c7;
  font-size: 22px;
}

.workspace-product-content {
  min-width: 0;
}

.workspace-product-content h4 {
  overflow: hidden;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-product-record > button {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: #fff;
  color: #94a3b8;
  animation: workspaceProductMenuPulse 1.2s ease-in-out 1 forwards;
  animation-delay: 0.28s;
}

.workspace-allergen-record {
  grid-template-columns: minmax(0, 1fr) 38px;
}

.workspace-product-click-ripple {
  position: absolute;
  right: 33px;
  top: 50%;
  z-index: 3;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ef4444;
  opacity: 0;
  transform: translate(50%, -50%) scale(0.4);
  animation: workspaceProductClickDot 0.9s ease-out 1 forwards;
  animation-delay: 0.18s;
  pointer-events: none;
}

.workspace-product-click-ripple::before,
.workspace-product-click-ripple::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 2px solid rgba(239, 68, 68, 0.56);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.3);
  animation: workspaceProductClickRing 0.9s ease-out 1 forwards;
  animation-delay: 0.18s;
}

.workspace-product-click-ripple::after {
  inset: -24px;
  border-color: rgba(239, 68, 68, 0.28);
  animation-delay: 0.28s;
}

.workspace-product-dropdown-demo {
  width: min(100%, 560px);
  justify-self: stretch;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.workspace-product-dropdown-demo div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 9px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(8px);
  animation: workspaceProductDropdownItem 0.42s ease 1 forwards;
  animation-delay: calc(0.82s + (var(--item-index) * 0.08s));
}

.workspace-product-dropdown-demo i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 13px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 18px;
}

.workspace-product-dropdown-demo strong {
  display: block;
  color: #0f172a;
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.2;
}

.workspace-product-dropdown-demo small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 11.5px;
  line-height: 1.35;
}

.workspace-product-dropdown-demo div.is-danger i {
  border-color: #fecdd3;
  background: #fff1f2;
  color: #e11d48;
}

.workspace-product-dropdown-demo div.is-danger strong {
  color: #e11d48;
}

.workspace-language-note {
  width: min(100%, 560px);
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 13px 14px;
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 50%, rgba(16, 185, 129, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.9);
}

.workspace-language-note > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #86efac;
  border-radius: 14px;
  background: #ecfdf5;
  color: #047857;
  font-size: 20px;
}

.workspace-language-note strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.workspace-language-note small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.workspace-language-panel {
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.workspace-language-panel-head {
  min-height: 70px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid #eef3f8;
}

.workspace-language-panel-head > span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
  background: #f8fafc;
  color: #64748b;
  font-size: 19px;
}

.workspace-language-panel-head strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.workspace-language-panel-head small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 11.5px;
}

.workspace-language-panel-head button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.workspace-language-list {
  position: relative;
  height: 392px;
  overflow: hidden;
  padding: 12px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 9%, #000 91%, transparent);
}

.workspace-language-track {
  display: grid;
  gap: 9px;
  animation: workspaceLanguageScroll 54s linear infinite;
}

.workspace-language-list:hover .workspace-language-track {
  animation-play-state: paused;
}

.workspace-language-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 22px;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.workspace-language-row.is-active {
  border-color: #e2e8f0;
  background: #f8fafc;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.workspace-language-row > span {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.workspace-language-row img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.workspace-language-row strong {
  display: block;
  overflow: hidden;
  color: #334155;
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-language-row small {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: #94a3b8;
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-language-row > i {
  color: #cbd5e1;
  font-size: 19px;
  align-self: center;
  justify-self: center;
}

.workspace-language-row.is-active > i {
  color: #10b981;
}

.workspace-currency-note > span {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0284c7;
}

.workspace-currency-step {
  grid-template-columns: minmax(0, 0.62fr) minmax(540px, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

.workspace-currency-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.workspace-currency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.workspace-currency-card,
.workspace-currency-preview {
  min-height: 92px;
  padding: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.workspace-currency-card.is-wide {
  grid-column: span 1;
}

.workspace-currency-card:nth-child(2) {
  grid-column: span 1;
}

.workspace-currency-card:nth-child(3) {
  grid-column: span 1;
}

.workspace-currency-preview {
  grid-column: span 1;
}

.workspace-currency-position-card {
  grid-column: span 1;
}

.workspace-currency-card label,
.workspace-currency-preview label {
  display: block;
  color: #475569;
  font-size: 12px;
  font-weight: 850;
}

.workspace-currency-card small,
.workspace-currency-preview small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 10.5px;
  line-height: 1.32;
}

.workspace-currency-select {
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 820;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.workspace-currency-select.is-clicked {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  transform: translateY(-1px);
}

.workspace-currency-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  margin-top: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.workspace-currency-toggle.is-on {
  background: #10b981;
}

.workspace-currency-toggle span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.16);
  transform: translateX(16px);
}

.workspace-currency-card > strong {
  position: absolute;
  right: 16px;
  bottom: 10px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.workspace-currency-card > strong.is-changing {
  opacity: 0.45;
  transform: translateY(2px) scale(0.96);
}

.workspace-currency-card {
  position: relative;
}

.workspace-currency-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 9px;
}

.workspace-currency-options.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workspace-currency-options button {
  min-height: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #fff;
  color: #64748b;
  font-size: 11px;
  font-weight: 820;
}

.workspace-currency-options button.is-selected {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
}

.workspace-currency-preview {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.1), transparent 36%),
    rgba(248, 250, 252, 0.9);
}

.workspace-currency-preview strong {
  display: block;
  margin: 6px 0 3px;
  color: #0f172a;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.workspace-currency-preview.is-changing strong {
  opacity: 0.5;
  transform: translateY(2px);
}

.workspace-final-step {
  position: relative;
  grid-template-columns: 1fr;
  align-content: center;
  place-items: center start;
  width: 100%;
  max-width: none;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: clamp(28px, 4vw, 58px);
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.18), transparent 30%),
    radial-gradient(circle at 10% 8%, rgba(14, 165, 233, 0.16), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #f0f9ff 48%, #ecfdf5 100%);
  color: #0f172a;
}

.workspace-preview-modal.is-final-step .workspace-final-step {
  width: 100%;
  min-height: 100%;
}

.workspace-final-step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(125, 211, 252, 0.14) 44%, rgba(134, 239, 172, 0.16) 52%, transparent 66%);
  opacity: 0;
  transform: translateX(-45%);
  pointer-events: none;
}

.workspace-final-step.is-active::before {
  animation: workspaceFinalSweep 1.1s ease-out 1;
}

.workspace-final-step::after {
  content: "Si";
  position: absolute;
  right: clamp(28px, 8vw, 92px);
  top: 50%;
  color: rgba(14, 165, 233, 0.07);
  font-size: clamp(160px, 20vw, 280px);
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.workspace-final-intro {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(74px, auto);
  align-content: center;
  justify-items: center;
  gap: 14px;
  color: #0369a1;
  text-align: center;
  pointer-events: none;
}

.workspace-final-intro i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(186, 230, 253, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(2, 132, 199, 0.78);
  font-size: 24px;
  box-shadow: 0 20px 58px rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(18px);
}

.workspace-final-intro span {
  grid-row: 2;
  grid-column: 1;
  display: block;
  color: rgba(15, 23, 42, 0.78);
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(10px);
}

.workspace-final-step.is-active .workspace-final-intro {
  animation: workspaceFinalIntro 5.8s ease forwards;
}

.workspace-final-step.is-active .workspace-final-intro span:first-of-type {
  animation: workspaceFinalIntroMessageOne 2.35s ease 0.65s forwards;
}

.workspace-final-step.is-active .workspace-final-intro span:last-of-type {
  animation: workspaceFinalIntroMessageTwo 2.45s ease 3s forwards;
}

.workspace-final-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  opacity: 0;
}

.workspace-final-copy .eyebrow {
  border-color: #bae6fd;
  background: rgba(240, 249, 255, 0.9);
  color: #0369a1;
}

.workspace-final-step.is-active .workspace-final-copy .eyebrow,
.workspace-final-step.is-active .workspace-final-copy h3,
.workspace-final-step.is-active .workspace-final-copy > p,
.workspace-final-step.is-active .workspace-final-pills,
.workspace-final-step.is-active .workspace-final-action {
  opacity: 0;
  transform: translateY(18px);
  animation: workspaceFinalReveal 0.72s var(--sr-ease) 1 forwards;
}

.workspace-final-step.is-active .workspace-final-copy .eyebrow {
  animation-delay: 5.35s;
}

.workspace-final-step.is-active .workspace-final-copy h3 {
  animation-delay: 5.55s;
}

.workspace-final-step.is-active .workspace-final-copy > p {
  animation-delay: 5.78s;
}

.workspace-final-step.is-active .workspace-final-pills {
  animation-delay: 5.98s;
}

.workspace-final-step.is-active .workspace-final-action {
  animation-delay: 6.18s;
}

.workspace-final-step.is-active .workspace-final-copy {
  animation: workspaceFinalCopyStage 0.01s linear 5.18s forwards;
}

.workspace-final-copy h3 {
  margin-top: 16px;
  color: #0f172a;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 900;
  line-height: 0.98;
}

.workspace-final-copy h3 span {
  color: #059669;
}

.workspace-final-copy p {
  max-width: 620px;
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.workspace-final-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.workspace-final-pills span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(186, 230, 253, 0.76);
  border-radius: 999px;
  background: rgba(240, 249, 255, 0.96);
  color: #0369a1;
  font-size: 12px;
  font-weight: 850;
}

.workspace-final-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  width: fit-content;
  max-width: 760px;
  margin-top: 20px;
  padding: 12px;
  border: 1px solid rgba(186, 230, 253, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 46px rgba(14, 165, 233, 0.08);
  backdrop-filter: blur(16px);
}

.workspace-final-action > div {
  min-width: 280px;
  flex: 1 1 420px;
}

.workspace-final-action p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 800;
}

.workspace-final-action p i {
  color: #0284c7;
}

.workspace-final-action small {
  display: block;
  margin-top: 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.workspace-final-action a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 0 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #0284c7 0%, #10b981 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.18);
  isolation: isolate;
  overflow: hidden;
  animation: workspaceFinalCtaGlow 3.8s ease-in-out infinite;
}

.workspace-final-action a::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, #0284c7 0%, #10b981 100%);
}

.workspace-final-action a:hover {
  transform: translateY(-1px);
}

.workspace-final-pills span:first-child,
.workspace-final-pills span:last-child {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}

@keyframes workspaceFinalSweep {
  0% {
    opacity: 0;
    transform: translateX(-48%);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(46%);
  }
}

@keyframes workspaceFinalIntro {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.96) translateY(10px);
  }
  10% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
  }
  86% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.04) translateY(-14px);
  }
}

@keyframes workspaceFinalIntroMessageOne {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(12px);
  }
  22%,
  78% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-8px);
  }
}

@keyframes workspaceFinalIntroMessageTwo {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(12px);
  }
  22%,
  80% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-8px);
  }
}

@keyframes workspaceFinalCopyStage {
  to {
    opacity: 1;
  }
}

@keyframes workspaceFinalCtaGlow {
  0%,
  100% {
    box-shadow:
      0 16px 34px rgba(14, 165, 233, 0.18),
      0 0 0 rgba(16, 185, 129, 0);
  }
  50% {
    box-shadow:
      0 20px 46px rgba(14, 165, 233, 0.26),
      0 0 34px rgba(16, 185, 129, 0.22);
  }
}

@keyframes workspaceFinalReveal {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.workspace-currency-click-dot {
  position: absolute;
  left: var(--currency-click-x, 50%);
  top: var(--currency-click-y, 50%);
  z-index: 5;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ef4444;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
  pointer-events: none;
}

.workspace-currency-click-dot.is-clicking {
  animation: workspaceCurrencyClickDot 0.62s ease-out 1;
}

.workspace-currency-click-dot::before,
.workspace-currency-click-dot::after {
  content: "";
  position: absolute;
  inset: -13px;
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.25);
}

.workspace-currency-click-dot.is-clicking::before,
.workspace-currency-click-dot.is-clicking::after {
  animation: workspaceCurrencyClickRing 0.62s ease-out 1;
}

.workspace-currency-click-dot::after {
  inset: -22px;
  border-color: rgba(239, 68, 68, 0.24);
  animation-delay: 0.08s;
}

@keyframes workspaceLanguageScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, calc(-50% - 4.5px), 0);
  }
}

@keyframes workspaceCurrencyClickDot {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35);
  }
  22%, 48% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65);
  }
}

@keyframes workspaceCurrencyClickRing {
  0% {
    opacity: 0;
    transform: scale(0.25);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes workspaceProductClickDot {
  0%, 18% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0.35);
  }
  24%, 46% {
    opacity: 1;
    transform: translate(50%, -50%) scale(1);
  }
  70%, 100% {
    opacity: 0;
    transform: translate(50%, -50%) scale(0.65);
  }
}

@keyframes workspaceProductClickRing {
  0%, 18% {
    opacity: 0;
    transform: scale(0.25);
  }
  26% {
    opacity: 1;
  }
  78%, 100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes workspaceProductMenuPulse {
  0%, 38% {
    border-color: #e2e8f0;
    color: #94a3b8;
    box-shadow: none;
  }
  46%, 100% {
    border-color: #7dd3fc;
    color: #0284c7;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
  }
}

@keyframes workspaceProductDropdownItem {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.workspace-preview-nav {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transform: translateX(-50%);
}

.workspace-preview-nav button {
  min-width: 90px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 12px;
  color: #334155;
  font-size: 12px;
  font-weight: 850;
}

.workspace-preview-nav button:hover:not(:disabled) {
  background: #f8fafc;
}

.workspace-preview-nav button:disabled {
  opacity: 0.38;
}

.workspace-preview-nav span {
  min-width: 44px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.menu-demo-frame-wrap {
  flex: 1;
  min-height: 0;
  background: #f8fafc;
}

.menu-demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #fff;
}

.workspace-panel {
  border: 1px solid var(--sr-line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.96)),
    #fff;
  box-shadow: var(--sr-shadow);
  padding: 22px;
}

.workspace-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.booking-resource-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 30px;
}

.booking-resource-intro .section-title {
  max-width: 780px;
}

.booking-resource-intro .section-copy {
  margin-top: 22px;
  max-width: 600px;
}

.booking-resource-intro .trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, max-content));
  gap: 10px;
  margin-top: 20px;
}

.booking-resource-intro .pill {
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
  white-space: nowrap;
}

.booking-resource-orbit {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.12), transparent 38%),
    radial-gradient(circle at 78% 18%, rgba(16, 185, 129, 0.11), transparent 30%),
    rgba(255, 255, 255, 0.74);
}

.booking-resource-orbit::before,
.booking-resource-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(186, 230, 253, 0.9);
  border-radius: 999px;
  pointer-events: none;
}

.booking-resource-orbit::before {
  width: 230px;
  height: 130px;
  animation: bookingOrbitTilt 8s ease-in-out infinite;
}

.booking-resource-orbit::after {
  width: 300px;
  height: 170px;
  opacity: 0.62;
  transform: rotate(-18deg);
  animation: bookingOrbitTiltReverse 9s ease-in-out infinite;
}

.booking-resource-orbit-core {
  position: relative;
  z-index: 2;
  width: 168px;
  min-height: 142px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
  text-align: center;
  animation: bookingOrbitCore 4.8s ease-in-out infinite;
}

.booking-resource-orbit-core strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.booking-resource-orbit-core small {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
}

.booking-resource-orbit-item {
  position: absolute;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: rgba(240, 249, 255, 0.94);
  color: #0369a1;
  font-size: 11.5px;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.08);
  animation: bookingOrbitFloat 5.6s ease-in-out infinite;
}

.booking-resource-orbit-item i {
  font-size: 15px;
}

.booking-resource-orbit-item.is-one {
  top: 34px;
  left: 28px;
  border-color: #bbf7d0;
  background: rgba(236, 253, 245, 0.94);
  color: #047857;
}

.booking-resource-orbit-item.is-two {
  top: 38px;
  right: 26px;
  animation-delay: -1.4s;
}

.booking-resource-orbit-item.is-three {
  bottom: 36px;
  left: 32px;
  animation-delay: -2.6s;
}

.booking-resource-orbit-item.is-four {
  right: 32px;
  bottom: 34px;
  border-color: #fed7aa;
  background: rgba(255, 247, 237, 0.96);
  color: #c2410c;
  animation-delay: -3.8s;
}

@keyframes bookingOrbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes bookingOrbitCore {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes bookingOrbitTilt {
  0%,
  100% {
    transform: rotate(14deg) scale(1);
  }
  50% {
    transform: rotate(18deg) scale(1.04);
  }
}

@keyframes bookingOrbitTiltReverse {
  0%,
  100% {
    transform: rotate(-18deg) scale(1);
  }
  50% {
  transform: rotate(-23deg) scale(1.03);
  }
}

.booking-payment-panel {
  padding: 22px;
}

.booking-payment-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.58fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 22px;
}

.booking-payment-intro .section-title {
  max-width: 720px;
}

.booking-payment-intro .section-copy {
  max-width: 650px;
  margin-top: 20px;
}

.booking-payment-flow {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  padding: 20px;
  background:
    radial-gradient(circle at 78% 18%, rgba(14, 165, 233, 0.12), transparent 32%),
    radial-gradient(circle at 20% 82%, rgba(16, 185, 129, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.76);
}

.booking-payment-flow::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(186, 230, 253, 0.95);
  border-radius: 24px;
  pointer-events: none;
}

.booking-payment-node {
  position: relative;
  z-index: 1;
  min-height: 46px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 6px 12px 6px 6px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
  animation: bookingPaymentPulse 4.8s ease-in-out infinite;
}

.booking-payment-node i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 17px;
}

.booking-payment-node.is-provider {
  margin-left: 38px;
  animation-delay: -1.4s;
}

.booking-payment-node.is-business {
  margin-left: 76px;
  border-color: #bbf7d0;
  color: #047857;
  animation-delay: -2.8s;
}

.booking-payment-node.is-business i {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #059669;
}

.booking-payment-line {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 2px;
  margin-left: 54px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #10b981);
  overflow: hidden;
}

.booking-payment-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  animation: bookingPaymentLine 2.4s ease-in-out infinite;
}

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

.booking-payment-panel .payment-holding-note {
  box-shadow: none;
}

.booking-payment-trust {
  position: relative;
  overflow: hidden;
  border: 1px solid #86efac;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(16, 185, 129, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(236, 253, 245, 0.92), rgba(255, 255, 255, 0.92));
  padding: 20px;
}

.booking-payment-trust > .grid {
  position: relative;
  z-index: 1;
}

.booking-payment-trust-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #86efac;
  border-radius: 18px;
  background: #ecfdf5;
  color: #059669;
  font-size: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.booking-payment-trust-label {
  margin-bottom: 4px;
  color: #059669;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-payment-trust-watermark {
  position: absolute;
  right: 26px;
  top: 50%;
  color: #10b981;
  font-size: 112px;
  line-height: 1;
  opacity: 0.07;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
}

@keyframes bookingPaymentPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes bookingPaymentLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
  transform: translateX(100%);
  }
}

.booking-area-panel {
  padding: 22px;
}

.booking-area-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.56fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 22px;
}

.booking-area-intro .section-title {
  max-width: 760px;
}

.booking-area-intro .section-copy {
  max-width: 650px;
  margin-top: 20px;
}

.booking-area-map {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    linear-gradient(rgba(186, 230, 253, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 230, 253, 0.28) 1px, transparent 1px),
    radial-gradient(circle at 76% 20%, rgba(16, 185, 129, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.78);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.booking-area-map-zone {
  position: absolute;
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid #bae6fd;
  border-radius: 22px;
  background: rgba(240, 249, 255, 0.72);
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.07);
  animation: bookingAreaZone 6s ease-in-out infinite;
}

.booking-area-map-zone.is-a {
  width: 48%;
  height: 42%;
  left: 24px;
  top: 24px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr 10px;
  align-content: center;
}

.booking-area-map-zone.is-b {
  width: 38%;
  height: 36%;
  right: 24px;
  top: 38px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr 10px;
  align-content: center;
  animation-delay: -1.7s;
}

.booking-area-map-zone.is-c {
  width: 58%;
  height: 32%;
  right: 28px;
  bottom: 24px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto 1fr;
  align-content: center;
  border-color: #bbf7d0;
  background: rgba(236, 253, 245, 0.74);
  animation-delay: -3.2s;
}

.booking-area-map-zone em {
  width: 100%;
  height: 28px;
  display: inline-flex;
  border: 1px solid rgba(186, 230, 253, 0.9);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
}

.booking-area-map-zone strong {
  width: 100%;
  height: 8px;
  display: block;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.16);
}

.booking-area-map-zone.is-a em {
  border-radius: 10px 10px 4px 4px;
}

.booking-area-map-zone.is-b em {
  height: 30px;
  border-radius: 999px 999px 10px 10px;
}

.booking-area-map-zone.is-c em {
  height: 18px;
  border-color: rgba(187, 247, 208, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.booking-area-map-zone.is-b strong {
  background: rgba(14, 165, 233, 0.14);
}

.booking-area-map-zone.is-c::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 60%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.38), rgba(16, 185, 129, 0));
}

.booking-area-map-label {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0369a1;
  font-size: 11.5px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  animation: bookingOrbitFloat 5.6s ease-in-out infinite;
  white-space: nowrap;
}

.booking-area-map-label i {
  font-size: 15px;
}

.booking-area-map-zone.is-b .booking-area-map-label {
  animation-delay: -1.8s;
}

.booking-area-map-zone.is-c .booking-area-map-label {
  border-color: #bbf7d0;
  color: #047857;
  animation-delay: -3s;
}

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

@keyframes bookingAreaZone {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

.booking-training-panel {
  padding: 22px;
}

.booking-training-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.56fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 22px;
}

.booking-training-intro .section-title {
  max-width: 760px;
}

.booking-training-intro .section-copy {
  max-width: 650px;
  margin-top: 20px;
}

.booking-training-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    linear-gradient(rgba(186, 230, 253, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 230, 253, 0.22) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(14, 165, 233, 0.12), transparent 32%),
    radial-gradient(circle at 24% 82%, rgba(16, 185, 129, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.78);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
}

.booking-training-visual::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 150px;
  border: 1px solid rgba(186, 230, 253, 0.9);
  border-radius: 999px;
  transform: rotate(-12deg);
  animation: bookingOrbitTiltReverse 9s ease-in-out infinite;
}

.booking-training-screen {
  position: relative;
  z-index: 2;
  width: 180px;
  min-height: 142px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
  text-align: center;
  animation: bookingOrbitCore 4.8s ease-in-out infinite;
}

.booking-training-screen > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 16px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 22px;
}

.booking-training-screen strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.booking-training-screen small {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.45;
}

.booking-training-step {
  position: absolute;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: rgba(240, 249, 255, 0.94);
  color: #0369a1;
  font-size: 11.5px;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.08);
  animation: bookingOrbitFloat 5.6s ease-in-out infinite;
  white-space: nowrap;
}

.booking-training-step i {
  font-size: 15px;
}

.booking-training-step.is-one {
  top: 34px;
  left: 26px;
}

.booking-training-step.is-two {
  right: 24px;
  top: 58px;
  animation-delay: -1.8s;
}

.booking-training-step.is-three {
  left: 50%;
  bottom: 18px;
  border-color: #bbf7d0;
  background: rgba(236, 253, 245, 0.94);
  color: #047857;
  transform: translateX(-50%);
  animation-name: bookingTrainingBottomFloat;
  animation-delay: -3s;
}

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

@keyframes bookingTrainingBottomFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.booking-resource-panel .workspace-showcase {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.booking-resource-panel .workspace-preview,
.booking-resource-panel .workspace-capabilities {
  height: 100%;
}

.booking-resource-panel .workspace-preview {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.booking-resource-panel .workspace-preview-top {
  margin-bottom: 18px;
}

.booking-resource-panel .workspace-record {
  flex: 1 1 0;
  min-height: 86px;
  padding: 14px;
}

.booking-resource-panel .workspace-capabilities {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-resource-panel .workspace-capability {
  min-height: 112px;
  padding: 16px;
}

.booking-resource-panel .workspace-capability > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 15px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 21px;
}

.booking-resource-panel .workspace-capability > span i {
  font-size: 21px;
}

.booking-calculator-actions {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
  padding-top: 2px;
}

.booking-calculator-growth {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 170px;
  align-content: center;
  border: 1px solid #bae6fd;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.14), transparent 34%),
    linear-gradient(135deg, #f0f9ff, #ffffff 58%);
  padding: 16px;
}

.booking-calculator-growth::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0%, rgba(14, 165, 233, 0.12) 38%, rgba(16, 185, 129, 0.14) 52%, transparent 72%);
  opacity: 0;
  transform: translateX(-62%);
  pointer-events: none;
}

.cookie-modal.is-open .booking-calculator-growth::before {
  animation: bookingCalculatorLightPass 2.6s ease-out forwards;
}

.booking-calculator-growth-head,
.booking-calculator-meter,
.booking-calculator-growth-footer {
  position: relative;
  z-index: 1;
  transition: opacity 0.32s ease, transform 0.32s var(--sr-ease), visibility 0.32s ease;
}

.booking-calculator-growth-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.booking-calculator-growth-head > span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #7dd3fc;
  border-radius: 16px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 22px;
}

.booking-calculator-growth-head p {
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.booking-calculator-growth-head strong {
  display: block;
  margin-top: 2px;
  color: #0f172a;
  font-size: clamp(32px, 8.4vw, 42px);
  font-weight: 950;
  line-height: 1;
  transition: color 0.28s ease, transform 0.32s var(--sr-ease);
}

.booking-calculator-growth-head strong span {
  display: inline-block;
  transition: opacity 0.28s ease, transform 0.34s var(--sr-ease);
}

.booking-calculator-growth-head strong span.is-switching {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.booking-calculator-growth.is-final-label .booking-calculator-growth-head strong {
  color: #047857;
  transform: translateY(-1px);
}

.booking-calculator-stage {
  position: relative;
  z-index: 1;
  min-height: 28px;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.booking-calculator-stage span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #075985;
  font-size: 11.5px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 0.46s ease, transform 0.52s var(--sr-ease);
}

.booking-calculator-stage span.is-active {
  opacity: 1;
  transform: translateY(0);
}

.booking-calculator-meter {
  position: relative;
  z-index: 1;
  height: 12px;
  overflow: hidden;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.booking-calculator-meter i {
  width: var(--booking-calculator-progress, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #0284c7, #10b981);
  transition: width 0.3s ease;
}

.booking-calculator-growth-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.booking-calculator-growth-footer small {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #dbeafe;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  color: #075985;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.booking-calculator-growth-footer i {
  color: #0284c7;
  font-size: 15px;
}

.booking-calculator-complete-message {
  position: absolute;
  inset: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.36s ease, transform 0.42s var(--sr-ease), visibility 0.36s ease;
}

.booking-calculator-complete-message > span {
  position: absolute;
  right: -6px;
  top: 50%;
  z-index: -1;
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0284c7;
  font-size: 108px;
  opacity: 0.055;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
}

.booking-calculator-complete-message > div,
.booking-calculator-recalculate {
  position: relative;
  z-index: 1;
}

.booking-calculator-complete-message strong {
  display: block;
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.25;
}

.booking-calculator-complete-message p {
  margin-top: 6px;
  color: #047857;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.55;
}

.booking-calculator-recalculate {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #075985;
  padding: 0 11px;
  font-size: 11.5px;
  font-weight: 850;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s var(--sr-ease);
}

.booking-calculator-recalculate:hover {
  border-color: #7dd3fc;
  background: #f0f9ff;
  color: #0c4a6e;
  transform: translateY(-1px);
}

.booking-calculator-recalculate i {
  font-size: 14px;
}

.booking-calculator-growth.is-complete .booking-calculator-growth-head,
.booking-calculator-growth.is-complete .booking-calculator-stage,
.booking-calculator-growth.is-complete .booking-calculator-meter,
.booking-calculator-growth.is-complete .booking-calculator-growth-footer {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
}

.booking-calculator-growth.is-complete .booking-calculator-complete-message {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@keyframes bookingCalculatorLightPass {
  0% {
    opacity: 0;
    transform: translateX(-62%);
  }
  22% {
    opacity: 1;
  }
  58% {
    opacity: 0;
    transform: translateX(62%);
  }
  100% {
    opacity: 0;
    transform: translateX(62%);
  }
}

.booking-calculator-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid #dbeafe;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.booking-calculator-btn:hover {
  transform: translateY(-1px);
}

.booking-calculator-btn.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #475569;
}

.booking-calculator-btn.secondary:hover {
  border-color: #bae6fd;
  background: #f8fafc;
  color: #0f172a;
}

.booking-calculator-btn.primary {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.booking-calculator-btn.primary:hover {
  background: #111827;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.workspace-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: 16px;
}

.workspace-preview {
  min-width: 0;
  align-self: start;
  border: 1px solid #dbeafe;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.78), rgba(255, 255, 255, 0.98) 56%),
    #fff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  padding: 16px;
}

.workspace-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.workspace-record {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 12px 12px;
  border: 1px solid var(--sr-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.workspace-record + .workspace-record {
  margin-top: 15px;
}

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

.workspace-health div {
  min-height: 56px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--sr-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.workspace-capabilities {
  display: grid;
  gap: 10px;
}

.workspace-capability {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--sr-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.035);
}

.workspace-capability.is-primary {
  grid-template-columns: 44px minmax(0, 1fr);
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.82), rgba(255, 255, 255, 0.96)),
    #fff;
  border-color: #bae6fd;
}

.workspace-capability h3 {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.workspace-capability p {
  margin-top: 5px;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.62;
}

.capability-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 57px;
}

.capability-tags span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 10.5px;
  font-weight: 800;
}

.workspace-flow-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: end;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--sr-line-soft);
}

.workspace-flow-head h3 {
  margin-top: 12px;
  color: #0f172a;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.02;
}

.workspace-flow-head p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.workspace-panel .control-flow-panel {
  margin-top: 16px;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.76), rgba(255, 255, 255, 0.94)),
    #fff;
}

.ecosystem-panel {
  border: 1px solid var(--sr-line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94)),
    #fff;
  box-shadow: var(--sr-shadow);
  overflow: hidden;
}

.ecosystem-center {
  margin: 18px;
  padding: 18px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.94), rgba(255, 255, 255, 0.96) 58%, rgba(236, 253, 245, 0.9));
}

.suite-capability {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(186, 230, 253, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #0369a1;
  font-size: 12px;
  font-weight: 800;
}

.ecosystem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 18px 18px;
}

.service-node {
  min-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid var(--sr-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
  transition: transform 0.32s var(--sr-ease), box-shadow 0.32s var(--sr-ease), border-color 0.24s ease;
}

.service-node:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.09);
}

.service-node.is-ready {
  border-color: #bae6fd;
  background:
    linear-gradient(180deg, rgba(240, 249, 255, 0.72), rgba(255, 255, 255, 0.96) 48%),
    #fff;
}

.service-node h3 {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.service-node p {
  margin-top: 9px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}

.service-final-cta {
  position: relative;
  overflow: hidden;
}

.service-final-cta > .grid {
  position: relative;
  z-index: 1;
}

.service-final-cta-watermark {
  position: absolute;
  right: clamp(8px, 3.6vw, 54px);
  top: 54%;
  z-index: 0;
  color: rgba(15, 23, 42, 0.07);
  font-size: clamp(150px, 15vw, 240px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.8;
  transform: translateY(-50%) rotate(-5deg);
  pointer-events: none;
  user-select: none;
}

.service-final-cta-watermark span {
  color: rgba(2, 132, 199, 0.14);
}

.service-final-cta .btn-primary {
  border: 1px solid rgba(186, 230, 253, 0.9);
  background: rgba(255, 255, 255, 0.68);
  color: #0f172a;
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.service-final-cta .btn-primary:hover {
  border-color: #7dd3fc;
  background: rgba(255, 255, 255, 0.86);
  color: #075985;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.service-icon.amber {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #ea580c;
}

.service-icon.violet {
  border-color: #ddd6fe;
  background: #f5f3ff;
  color: #7c3aed;
}

.service-icon.green {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #059669;
}

.service-icon.indigo {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #4f46e5;
}

.service-node-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-status-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: #c2410c;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.service-status-pill.green {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}

.service-status-pill.amber {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

.service-status-pill.blue {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
}

.academy-node {
  grid-column: span 2;
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(238, 242, 255, 0.82), rgba(255, 255, 255, 0.96) 56%),
    #fff;
}

.node-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
}

.node-meta span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  font-size: 10.5px;
  font-weight: 800;
}

.ecosystem-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--sr-line-soft);
  background: rgba(255, 255, 255, 0.7);
}

.control-flow-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--sr-line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94)),
    #fff;
  box-shadow: var(--sr-shadow);
  padding: 18px;
}

.flow-steps {
  display: grid;
  gap: 10px;
  align-content: start;
}

.flow-step {
  min-height: 96px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--sr-line);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.28s var(--sr-ease);
}

.flow-step:hover,
.flow-step.is-active {
  border-color: #bae6fd;
  background: #f0f9ff;
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.08);
  transform: translateY(-1px);
}

.flow-step-number {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.flow-step.is-active .flow-step-number {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.flow-step-copy {
  display: grid;
  gap: 4px;
}

.flow-step-copy strong {
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 900;
}

.flow-step-copy small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.45;
}

.flow-step > i {
  color: #94a3b8;
}

.flow-preview {
  min-width: 0;
  border: 1px solid #dbeafe;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.82), rgba(255, 255, 255, 0.96) 48%, rgba(236, 253, 245, 0.72)),
    #fff;
  overflow: hidden;
}

.flow-preview-top,
.flow-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
}

.flow-preview-top {
  border-bottom: 1px solid rgba(219, 234, 254, 0.86);
}

.flow-preview-footer {
  border-top: 1px solid rgba(219, 234, 254, 0.86);
  background: rgba(255, 255, 255, 0.62);
}

.flow-screen {
  min-height: 340px;
  padding: 18px;
}

.flow-card-primary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--sr-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.flow-card-primary h3 {
  margin-top: 3px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.flow-card-primary p {
  margin-top: 8px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

.flow-mini-grid,
.service-picker-grid,
.flow-capability-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.flow-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-mini-grid span,
.flow-capability-grid span,
.service-picker,
.flow-record {
  border: 1px solid var(--sr-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.flow-mini-grid span {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

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

.flow-capability-grid span {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #475569;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

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

.service-picker {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  transition: transform 0.28s var(--sr-ease), border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-picker:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.service-picker i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  font-size: 19px;
}

.service-picker.is-ready i {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0284c7;
}

.service-picker strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.service-picker span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
}

.service-picker.is-ready span {
  color: #047857;
}

.flow-record-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.flow-record {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.flow-record span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.flow-record strong {
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.academy-panel {
  border: 1px solid #c7d2fe;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(238, 242, 255, 0.9), rgba(255, 255, 255, 0.96) 48%, rgba(240, 249, 255, 0.88)),
    #fff;
  box-shadow: var(--sr-shadow);
  padding: 22px;
}

.home-balanced-panel {
  padding: clamp(22px, 3.4vw, 40px);
}

.academy-panel .section-title {
  font-size: clamp(32px, 3.45vw, 46px);
}

.academy-panel .section-copy {
  max-width: 520px;
}

.academy-eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.academy-soon-pill {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.08);
}

.academy-stack {
  display: grid;
  gap: 10px;
}

.academy-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  height: 82px;
  padding: 13px 16px;
  border: 1px solid rgba(199, 210, 254, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition:
    transform 0.34s var(--sr-ease),
    box-shadow 0.34s var(--sr-ease),
    border-color 0.32s ease,
    background 0.32s ease;
}

.academy-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0%, rgba(14, 165, 233, 0.08) 38%, rgba(16, 185, 129, 0.1) 52%, transparent 72%);
  opacity: 0;
  transform: translateX(-55%);
  pointer-events: none;
}

.academy-panel.is-visible .academy-row.reveal-child::after {
  animation: academyRowLightPass 1.25s ease-out forwards;
  animation-delay: calc(0.36s + (var(--reveal-index, 0) * 95ms));
}

.academy-row .feature-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  flex: 0 0 44px;
}

.academy-row .feature-icon > i {
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
}

@keyframes academyRowLightPass {
  0% {
    opacity: 0;
    transform: translateX(-58%);
  }
  26% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(58%);
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

#faq .section-head {
  max-width: 100%;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 26px;
}

#faq .section-head .eyebrow {
  justify-content: flex-start;
}

#faq .section-head .section-title {
  max-width: 1040px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
  text-wrap: balance;
}

#faq .section-head .section-copy {
  max-width: 760px;
  padding-top: 0;
}

@media (min-width: 981px) {
  #faq .section-head .section-copy {
    font-size: 16px;
    line-height: 1.72;
  }
}

.faq-item {
  align-self: start;
  border: 1px solid var(--sr-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.faq-item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  cursor: pointer;
  list-style: none;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 850;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.faq-item summary i:last-child {
  color: #94a3b8;
  transition: transform 0.24s var(--sr-ease);
}

.faq-item[open] summary i:last-child {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 16px 16px 46px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

.contact-panel {
  border: 1px solid var(--sr-line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--sr-shadow);
  padding: 22px;
}

.contact-panel.home-balanced-panel {
  padding: clamp(22px, 3.4vw, 40px);
}

.contact-panel > .section-head {
  max-width: none;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.contact-panel > .section-head .section-title {
  max-width: none;
  text-wrap: balance;
}

.contact-panel > .section-head .section-copy {
  max-width: none;
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8fafc;
  color: #526986;
  font-size: 14px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--sr-line);
  border-radius: 24px;
  background: #f8fafc;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field span {
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #dbe7f3;
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-field input {
  height: 44px;
  padding: 0 13px;
}

.landing-phone-input-wrap {
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dbe7f3;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.landing-phone-input-wrap:focus-within {
  border-color: #bae6fd;
  box-shadow: 0 0 0 4px rgba(186, 230, 253, 0.3);
}

.landing-phone-code-label {
  height: 100%;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 8px 0 13px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.landing-phone-code-label:hover {
  color: #0f172a;
}

.landing-phone-input-wrap input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 8px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 400;
  outline: none;
}

.landing-phone-input-wrap input::placeholder {
  color: #94a3b8;
  font-weight: 400;
  opacity: 1;
}

.landing-phone-code-btn {
  width: 44px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.landing-phone-code-btn:hover {
  background: #f8fafc;
}

.landing-phone-code-btn img {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  object-fit: cover;
}

.form-field textarea {
  resize: vertical;
  min-height: 124px;
  padding: 12px 13px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #bae6fd;
  box-shadow: 0 0 0 4px rgba(186, 230, 253, 0.3);
}

.form-field .landing-phone-input-wrap input:focus {
  border-color: transparent;
  box-shadow: none;
}

.form-field input:-webkit-autofill,
.form-field input:-webkit-autofill:hover,
.form-field input:-webkit-autofill:focus,
.form-field textarea:-webkit-autofill,
.form-field textarea:-webkit-autofill:hover,
.form-field textarea:-webkit-autofill:focus,
.landing-phone-input-wrap input:-webkit-autofill,
.landing-phone-input-wrap input:-webkit-autofill:hover,
.landing-phone-input-wrap input:-webkit-autofill:focus,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #0f172a;
  caret-color: #0f172a;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  transition: background-color 9999s ease-out, color 9999s ease-out;
}

.contact-form-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.5;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.contact-form-status.is-hidden {
  opacity: 0;
  transform: translateY(-3px);
  pointer-events: none;
}

.contact-form-status::before {
  content: "";
  display: none;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 999px;
  position: relative;
  top: 1px;
}

.contact-form-status.is-loading::before {
  display: inline-block;
  border: 2px solid rgba(148, 163, 184, 0.28);
  border-top-color: currentColor;
  animation: contactStatusSpin 0.72s linear infinite;
}

.contact-form-status.is-countdown::before {
  display: inline-block;
  background: conic-gradient(currentColor var(--contact-status-angle), rgba(148, 163, 184, 0.18) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  animation: contactStatusCountdown 5.5s linear forwards;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status.is-sent {
  color: #047857;
}

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

@property --contact-status-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 360deg;
}

@keyframes contactStatusSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes contactStatusCountdown {
  from {
    --contact-status-angle: 360deg;
  }
  to {
    --contact-status-angle: 0deg;
  }
}

.contact-form-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.contact-form-bottom .contact-form-status {
  grid-column: 1 / -1;
  order: 3;
}

.contact-form-bottom .btn-primary {
  justify-self: end;
}

.contact-terms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.35;
  cursor: pointer;
}

.contact-terms input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-terms > span {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-terms i {
  position: absolute;
  inset: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1;
  transition: opacity 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.contact-terms i:last-child {
  color: #10b981;
  opacity: 0;
  transform: scale(0.82);
}

.contact-terms input:checked + span i:first-child {
  opacity: 0;
  transform: scale(0.82);
}

.contact-terms input:checked + span i:last-child {
  opacity: 1;
  transform: scale(1);
}

.contact-terms em {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  font-style: normal;
}

.contact-terms a {
  color: #0f172a;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #cbd5e1;
  text-underline-offset: 3px;
}

.sr-footer {
  padding: 22px 0 34px;
}

.sr-footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.6fr);
  gap: 28px;
  border: 1px solid rgba(219, 231, 243, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(14, 165, 233, 0.08), transparent 32%),
    radial-gradient(circle at 100% 10%, rgba(16, 185, 129, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.08);
  padding: 24px;
}

.sr-footer-brand {
  min-width: 0;
}

.sr-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0f172a;
}

.sr-footer-logo .sr-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 21px;
}

.sr-footer-logo .sr-logo span,
.sr-footer-logo strong > span {
  color: #0ea5e9;
}

.sr-footer-logo strong,
.sr-footer-column h3 {
  display: block;
  color: #0f172a;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.sr-footer-column h3 {
  font-size: 12px;
  font-weight: 720;
}

.sr-footer-logo small {
  display: block;
  margin-top: 2px;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}

.sr-footer-brand p {
  max-width: 360px;
  margin-top: 16px;
  color: #64748b;
  font-size: 13.5px;
  font-weight: 520;
  line-height: 1.62;
}

.sr-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.sr-social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: #0284c7;
  font-size: 18px;
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.06);
  transition: transform 0.2s var(--sr-ease), border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sr-social-links a:hover {
  transform: translateY(-2px);
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0f172a;
  box-shadow: 0 18px 34px rgba(14, 165, 233, 0.12);
}

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

.sr-footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.sr-footer-column h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.sr-footer-column h3 i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 14px;
}

.sr-footer-column a,
.sr-footer-column p,
.footer-cookie-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #475569;
  font-family: inherit;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.4;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s var(--sr-ease);
}

.sr-footer-column a:hover,
.footer-cookie-btn:hover {
  color: #0284c7;
  transform: translateX(2px);
}

.footer-cookie-btn {
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.sr-footer-contact a,
.sr-footer-contact p {
  width: auto;
  max-width: 100%;
}

.sr-footer-contact i {
  color: #0284c7;
  font-size: 15px;
}

.sr-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.86);
  padding-top: 18px;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.45;
}

.legal-page {
  max-width: 860px;
  margin: 72px auto 0;
  border: 1px solid rgba(219, 231, 243, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.08);
  padding: clamp(24px, 4vw, 42px);
}

.legal-page h1 {
  margin-top: 18px;
  color: #0f172a;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-page h2 {
  margin-top: 28px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.legal-page p {
  margin-top: 10px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.legal-page a {
  color: #0284c7;
  font-weight: 850;
}

.blog-hero-panel {
  border: 1px solid rgba(186, 230, 253, 0.95);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.7));
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.06);
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #dbeafe;
  border-radius: 22px;
  background: #f8fafc;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-hero-mark {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
}

.blog-hero-mark::before {
  content: "Si";
  color: rgba(15, 23, 42, 0.045);
  font-size: clamp(116px, 15vw, 210px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.04em;
}

.blog-hero-mark::first-letter {
  color: rgba(15, 23, 42, 0.06);
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: #bae6fd;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.075);
}

.blog-card-icon,
.blog-post-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 16px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 21px;
}

.blog-card h2,
.blog-card h3 {
  letter-spacing: 0;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-taxonomy span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  background: #f0f9ff;
  padding: 0 10px;
  color: #0369a1;
  font-size: 12px;
  font-weight: 800;
}

.blog-taxonomy span.is-category {
  border-color: #bbf7d0;
  background: #ecfdf5;
  color: #047857;
}

.blog-read-more {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 14px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.blog-read-more:hover {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
  transform: translateY(-1px);
}

.blog-card .blog-read-more {
  margin-top: auto;
  margin-left: auto;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-pagination button,
.blog-pagination span {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbeafe;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #64748b;
  font-size: 13px;
  font-weight: 850;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.blog-pagination button {
  cursor: pointer;
}

.blog-pagination button:hover {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
  transform: translateY(-1px);
}

.blog-pagination .is-active {
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
}

.blog-pagination .is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.blog-featured {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.blog-featured-preview {
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #f8fbff);
  padding: 18px;
}

.blog-post-shell {
  display: grid;
  gap: 28px;
  align-items: start;
}

.blog-article {
  border: 1px solid #dbeafe;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  padding: 28px;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.055);
}

.blog-article h2 {
  margin-top: 32px;
  color: #0f172a;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.blog-article p {
  margin-top: 16px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.9;
}

.blog-article ul {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.blog-article li {
  display: flex;
  gap: 10px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.blog-article li i {
  margin-top: 5px;
  color: #10b981;
  flex-shrink: 0;
}

.blog-sidebar-card {
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.045);
}

.landing-final-cta {
  position: relative;
  overflow: hidden;
}

.landing-final-cta::after {
  content: "Si";
  position: absolute;
  right: clamp(20px, 6vw, 76px);
  top: 50%;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(120px, 18vw, 230px);
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.landing-final-cta > * {
  position: relative;
  z-index: 1;
}

.cookie-consent {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 240;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.36s ease, transform 0.42s var(--sr-ease);
}

.cookie-consent.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-consent-card {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(219, 231, 243, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9));
  box-shadow: 0 26px 74px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(24px) saturate(1.12);
  padding: 14px;
}

.cookie-consent-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bae6fd;
  border-radius: 15px;
  background: #f0f9ff;
  color: #0284c7;
  font-size: 19px;
}

.cookie-consent-copy strong {
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
}

.cookie-consent-copy p {
  max-width: 520px;
  margin-top: 3px;
  color: #64748b;
  font-size: 12.5px;
  line-height: 1.55;
}

.cookie-consent-actions,
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 0 13px;
  font-size: 12.5px;
  font-weight: 850;
  transition: transform 0.22s var(--sr-ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn.dark {
  background: #0f172a;
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.cookie-btn[data-cookie-accept] {
  background: #059669;
  color: #fff;
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.18);
}

.cookie-btn[data-cookie-accept]:hover {
  background: #047857;
}

.cookie-btn.light,
.cookie-btn.ghost {
  border: 1px solid var(--sr-line);
  background: #fff;
  color: #475569;
}

.cookie-btn.ghost {
  border-color: transparent;
  background: transparent;
  color: #64748b;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
}

.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 0.2s ease;
}

.cookie-modal-viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-modal-panel {
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s var(--sr-ease);
}

.cookie-modal.is-open .cookie-modal-overlay {
  opacity: 1;
}

.cookie-modal.is-open .cookie-modal-panel {
  opacity: 1;
  transform: scale(1);
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.cookie-modal-head span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  font-size: 18px;
}

.cookie-modal-head h2 {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
}

.cookie-modal-head p {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 12px;
}

.cookie-modal-head button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #94a3b8;
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-modal-head button:hover {
  background: #f8fafc;
  color: #0f172a;
}

.cookie-modal-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.contact-blacklist-modal .cookie-modal-panel {
  width: min(100%, 500px);
}

.contact-blacklist-modal .cookie-modal-viewport {
  align-items: center;
  justify-content: center;
}

.contact-blacklist-modal .cookie-modal-head span {
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

.contact-blacklist-modal.is-success .cookie-modal-head span {
  color: #047857;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.contact-blacklist-modal.is-error .cookie-modal-head span {
  color: #be123c;
  background: #fff1f2;
  border-color: #fecdd3;
}

.contact-blacklist-state {
  padding: 2px 2px 4px;
}

.contact-blacklist-state p {
  margin: 0;
  color: #475569;
}

.contact-blacklist-lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.cookie-preference-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--sr-line);
  border-radius: 18px;
  background: #fff;
  padding: 13px;
  cursor: pointer;
}

.cookie-preference-row.is-locked {
  background: #f8fafc;
  cursor: default;
}

.cookie-preference-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-preference-row strong {
  display: block;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
}

.cookie-preference-row p {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.cookie-preference-row > span:not(.cookie-toggle) {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 11px;
  font-weight: 850;
  padding: 0 9px;
}

.cookie-toggle {
  width: 42px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e2e8f0;
  padding: 3px;
  transition: background 0.2s ease;
}

.cookie-toggle i {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s var(--sr-ease);
}

.cookie-preference-row input:checked + div + .cookie-toggle {
  background: #10b981;
}

.cookie-preference-row input:checked + div + .cookie-toggle i {
  transform: translateX(18px);
}

.cookie-modal-actions {
  justify-content: flex-end;
  border-top: 1px solid #f1f5f9;
  padding: 14px 16px;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-modal-panel {
  border-color: #bae6fd;
  box-shadow: none;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-modal-head span {
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #0284c7;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-modal-body {
  gap: 12px;
  padding: 18px 18px 0;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-modal-actions {
  justify-content: flex-end;
  gap: 10px;
  margin: 4px -18px 0;
  padding: 14px 18px 18px;
  border-top-color: #e0f2fe;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.cookie-modal[data-booking-subscribe-modal] .cookie-btn {
  min-width: 118px;
  min-height: 42px;
  border-radius: 14px;
  padding: 0 18px;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-btn.ghost {
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  color: #075985;
  box-shadow: none;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-btn.ghost:hover {
  border-color: #7dd3fc;
  background: #e0f2fe;
  color: #0c4a6e;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-btn.primary {
  background: linear-gradient(135deg, #0f172a, #123f63);
  color: #fff;
  box-shadow: none;
}

.cookie-modal[data-booking-subscribe-modal] .cookie-btn.primary:hover {
  background: linear-gradient(135deg, #111827, #075985);
  box-shadow: none;
}

.landing-phone-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
}

.landing-phone-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 0.2s ease;
}

.landing-phone-modal-viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.landing-phone-modal-panel {
  width: min(100%, 390px);
  min-height: 20rem;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s var(--sr-ease);
}

.landing-phone-modal.is-open .landing-phone-modal-overlay {
  opacity: 1;
}

.landing-phone-modal.is-open .landing-phone-modal-panel {
  opacity: 1;
  transform: scale(1);
}

.landing-phone-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.landing-phone-modal-head span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  font-size: 18px;
}

.landing-phone-modal-head h2 {
  color: #0f172a;
  font-size: 15px;
  font-weight: 850;
}

.landing-phone-modal-head p {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 12px;
}

.landing-phone-modal-head button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #94a3b8;
  transition: background 0.2s ease, color 0.2s ease;
}

.landing-phone-modal-head button:hover {
  background: #f8fafc;
  color: #0f172a;
}

.landing-phone-code-list {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 4px;
  overflow-y: auto;
  padding: 14px;
}

.landing-phone-code-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 48px 20px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-phone-code-item:hover,
.landing-phone-code-item.is-selected {
  border-color: #e2e8f0;
  background: #f8fafc;
}

.landing-phone-code-item.is-selected {
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.landing-phone-code-flag {
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.landing-phone-code-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-phone-code-country {
  min-width: 0;
}

.landing-phone-code-item strong {
  display: block;
  overflow: hidden;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-phone-code-country span {
  display: block;
  overflow: hidden;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-phone-code-item small {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.landing-phone-code-item em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-style: normal;
}

.landing-phone-code-item.is-selected em {
  color: #10b981;
}

.map-card {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  border: 1px solid #bae6fd;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(240, 249, 255, 0.9), rgba(236, 253, 245, 0.75)),
    #f8fafc;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.11) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, #000 0, transparent 72%);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid #bae6fd;
  background: #fff;
  color: #0284c7;
  font-size: 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.map-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  padding: 12px;
  color: #64748b;
  font-size: 12px;
}

.contact-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--sr-line);
  border-radius: 20px;
  background: #fff;
}

.contact-card a {
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
}

@media (min-width: 1024px) {
  .blog-featured {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .blog-post-shell {
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-head,
  .language-showcase,
  .workspace-intro,
  .workspace-showcase,
  .workspace-flow-head {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .hero .app-frame {
    width: 100%;
    height: 330px;
    justify-self: stretch;
  }

  .hero-summary {
    width: 100%;
    justify-self: stretch;
  }

  .language-showcase {
    padding: 22px;
  }

  .language-visual-stage {
    min-height: 250px;
  }

  .app-side {
    display: none;
  }

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

  .control-flow-panel {
    grid-template-columns: 1fr;
  }

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

  .flow-step {
    min-height: 116px;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .flow-step > i {
    display: none;
  }

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

  .academy-node {
    grid-column: span 2;
  }

  .ecosystem-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .explore-panel {
    grid-template-columns: 1fr;
  }

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

  .explore-choice-card {
    min-height: 150px;
  }

  .workspace-preview-step {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

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

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

  .sr-footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 1100px) {
  .blog-card,
  .blog-article,
  .blog-sidebar-card {
    border-radius: 24px;
    padding: 18px;
  }

  .sr-container,
  .sr-nav {
    width: min(100% - 20px, 1180px);
  }

  .sr-nav {
    top: 10px;
    margin-top: 10px;
    border-radius: 18px;
  }

  .sr-nav .hidden.lg\:flex {
    display: none !important;
  }

  .sr-nav .lg\:hidden {
    display: flex !important;
  }

  .hero-title {
    font-size: 42px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .bookings-hero .hero-title {
    max-width: 760px;
    font-size: 42px;
    line-height: 1.06;
  }

  .bookings-hero ~ .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

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

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

  .booking-resource-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .booking-resource-intro .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .booking-resource-intro .trust-row {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
  }

  .booking-resource-orbit {
    min-height: 240px;
  }

  .booking-payment-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .booking-payment-intro .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

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

  .booking-area-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .booking-area-intro .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

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

  .booking-training-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .booking-training-intro .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

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

  .booking-resource-panel .workspace-capabilities {
    grid-template-columns: 1fr;
  }

  .booking-area-map,
  .booking-resource-orbit,
  .booking-payment-flow,
  .booking-training-visual {
    width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
  }

  .bookings-hero ~ .section .eyebrow,
  .bookings-hero ~ .section .trust-row,
  .bookings-hero ~ .section .booking-pricing-benefits {
    justify-content: center;
  }

  .bookings-hero ~ .section .section-title,
  .bookings-hero ~ .section .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  #pricing .price-card > .grid,
  .service-final-cta > .grid {
    text-align: center;
  }

  #pricing .pricing-free-card {
    width: min(100%, 420px);
    justify-self: center;
  }

  .hero-title.reveal-child {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .hero-copy {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero .reveal:first-child {
    text-align: center;
  }

  .hero .reveal .reveal-child {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .hero .reveal:first-child .eyebrow {
    justify-content: center;
  }

  .hero .reveal:first-child .mt-7,
  .hero .reveal:first-child .trust-row {
    justify-content: center;
  }

  .section {
    padding: 38px 0;
  }

  .language-showcase {
    padding: 18px;
    border-radius: 22px;
    text-align: center;
  }

  .language-showcase-copy {
    justify-self: center;
    max-width: none;
  }

  .language-showcase-badge-row {
    justify-content: center;
  }

  .language-showcase-copy .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .language-showcase-pills {
    grid-template-columns: 1fr;
  }

  .language-visual-stage {
    min-height: 224px;
    padding: 28px 0;
    border-radius: 20px;
  }

  .language-flag-slider {
    padding: 8px 0;
  }

  .language-flag-track {
    gap: 10px;
    animation-duration: 38s;
  }

  .language-flag-item {
    width: 50px;
    height: 50px;
  }

  .language-flag-item img {
    width: 32px;
    height: 32px;
  }

  .language-greeting-badge {
    width: min(86%, 270px);
    height: 68px;
  }

  .explore-panel {
    padding: 18px;
    text-align: center;
  }

  .explore-panel-copy {
    max-width: none;
  }

  .explore-panel-copy .eyebrow {
    justify-content: center;
  }

  .explore-choice-card {
    align-items: center;
    min-height: 144px;
    text-align: center;
  }

  .workspace-preview-modal-panel,
  .menu-demo-modal-panel {
    width: min(100%, 440px);
    height: min(92dvh, 760px);
  }

  .workspace-preview-modal-head,
  .menu-demo-modal-head {
    align-items: flex-start;
  }

  .workspace-preview-modal-head p,
  .menu-demo-modal-head p {
    display: none;
  }

  .workspace-preview-modal-body {
    padding: 16px;
  }

  .workspace-preview-copy {
    text-align: center;
  }

  .workspace-preview-copy .eyebrow {
    justify-content: center;
  }

  .workspace-preview-copy h3 {
    font-size: 34px;
  }

  .workspace-preview-copy p {
    font-size: 14px;
  }

  .workspace-preview-domain {
    min-height: 54px;
    justify-content: center;
  }

  .workspace-preview-services {
    gap: 14px;
    padding-top: 8px;
  }

  .workspace-preview-service {
    position: relative;
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 84px;
    padding: 16px 12px;
    text-align: left;
  }

  .workspace-preview-service > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .workspace-preview-service small {
    position: absolute;
    top: 0;
    right: 18px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1;
    transform: translateY(-50%);
  }

  .workspace-product-record {
    grid-template-columns: 44px minmax(0, 1fr) 34px;
    gap: 10px;
    min-height: 76px;
    padding: 12px;
  }

  .workspace-allergen-record {
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .workspace-product-image {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .workspace-product-content h4 {
    font-size: 15px;
  }

  .workspace-product-dropdown-demo {
    justify-self: stretch;
  }

  .workspace-product-dropdown-demo div {
    min-height: 58px;
  }

  .workspace-language-note {
    text-align: left;
  }

  .workspace-language-note > div {
    justify-self: start;
    text-align: left;
  }

  .workspace-language-panel-head {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .workspace-language-row {
    grid-template-columns: 30px minmax(0, 1fr) 22px;
    align-items: center;
  }

  .workspace-currency-grid {
    grid-template-columns: 1fr;
  }

  .workspace-currency-card.is-wide,
  .workspace-currency-card:nth-child(2),
  .workspace-currency-card:nth-child(3),
  .workspace-currency-position-card,
  .workspace-currency-preview {
    grid-column: span 1;
  }

  .workspace-currency-options.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workspace-currency-preview {
    order: 10;
  }

  .workspace-final-step {
    align-content: start;
    place-items: center;
    margin: 0;
    padding: 22px 16px 88px;
    min-height: 100%;
  }

  .workspace-final-copy {
    text-align: center;
  }

  .workspace-final-copy .eyebrow,
  .workspace-final-pills,
  .workspace-final-action {
    justify-content: center;
  }

  .workspace-final-copy h3 {
    font-size: 32px;
  }

  .workspace-preview-nav {
    position: absolute;
    left: 50%;
    bottom: max(14px, env(safe-area-inset-bottom));
    justify-content: center;
    margin: 0;
    transform: translateX(-50%);
  }

  .workspace-preview-nav button {
    min-width: 80px;
  }

  .sr-footer {
    padding: 12px 0 24px;
  }

  .sr-footer-panel {
    gap: 18px;
    border-radius: 24px;
    padding: 16px;
  }

  .sr-footer-brand {
    display: grid;
    gap: 12px;
  }

  .sr-footer-logo {
    gap: 10px;
  }

  .sr-footer-logo .sr-logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 21px;
  }

  .sr-footer-logo strong {
    font-size: 19px;
  }

  .sr-footer-logo small {
    font-size: 11.5px;
  }

  .sr-footer-brand p {
    max-width: none;
    margin-top: 0;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.6;
  }

  .sr-footer-brand,
  .sr-footer-logo {
    justify-content: center;
  }

  .sr-social-links {
    justify-content: center;
    margin-top: 0;
  }

  .sr-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .sr-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sr-footer-column {
    gap: 5px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
  }

  .sr-footer-column {
    min-height: 132px;
  }

  .sr-footer-column h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #0f172a;
  }

  .sr-footer-column h3 i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    background: #f0f9ff;
    color: #0284c7;
    font-size: 14px;
  }

  .sr-footer-column a,
  .sr-footer-column p,
  .footer-cookie-btn {
    width: 100%;
    min-height: 28px;
    justify-content: center;
    border-radius: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 660;
    text-align: center;
  }

  .sr-footer-column a:hover,
  .footer-cookie-btn:hover {
    transform: none;
  }

  .sr-footer-contact a,
  .sr-footer-contact p {
    min-height: 32px;
  }

  .sr-footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding-top: 14px;
    font-size: 11.5px;
    text-align: center;
  }

  .app-main {
    padding: 12px;
  }

  .hero .app-frame {
    height: 314px;
    border-radius: 22px;
  }

  .hero-summary {
    min-height: auto;
    padding: 14px;
    border-radius: 22px;
  }

  .hero-summary-top {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .hero-summary-top strong.hero-summary-domain {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .hero-summary-domain span {
    min-width: 0;
    display: inline;
    overflow-wrap: anywhere;
  }

  .hero-summary-status {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .hero-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-health-strip {
    justify-content: center;
  }

  .hero-summary-footer {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .hero-summary-footer p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .app-main {
    padding: 14px;
  }

  .record {
    min-height: 78px;
  }

  .workspace-panel {
    padding: 14px;
  }

  .explore-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .workspace-health {
    grid-template-columns: 1fr;
  }

  .workspace-capability,
  .workspace-capability.is-primary {
    grid-template-columns: 1fr;
  }

  .capability-tags {
    padding-left: 0;
  }

  .ecosystem-center {
    margin: 12px;
    padding: 14px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    padding: 0 12px 12px;
  }

  .control-flow-panel {
    padding: 12px;
  }

  .flow-steps,
  .flow-mini-grid,
  .service-picker-grid,
  .flow-capability-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: 82px;
  }

  .flow-preview-top,
  .flow-preview-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-screen {
    min-height: auto;
    padding: 12px;
  }

  .flow-card-primary {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-node {
    min-height: 230px;
  }

  .academy-node {
    grid-column: span 1;
  }

  .academy-panel {
    padding: 14px;
  }

  .academy-panel > .grid > div:first-child {
    text-align: center;
  }

  .academy-panel > .grid > div:first-child .academy-eyebrow-row,
  .academy-panel > .grid > div:first-child .eyebrow,
  .academy-panel > .grid > div:first-child .trust-row {
    justify-content: center;
  }

  .academy-panel > .grid > div:first-child .btn-secondary {
    margin-left: auto;
    margin-right: auto;
  }

  .academy-row {
    align-items: center;
    flex-direction: row;
    height: auto;
    min-height: 92px;
    gap: 12px;
    padding: 16px 14px;
    text-align: left;
  }

  .academy-row p {
    line-height: 1.35;
  }

  .academy-row p + p {
    margin-top: 4px;
    line-height: 1.45;
  }

  .academy-row .feature-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px;
    flex-basis: 42px;
  }

  .price-card {
    padding: 18px !important;
    text-align: center;
  }

  .home-balanced-panel {
    padding: clamp(18px, 2.4vw, 26px) !important;
  }

  .price-card .eyebrow,
  .price-card .trust-row {
    justify-content: center;
  }

  .price-card .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-free-card {
    text-align: center;
  }

  .pricing-free-card .mt-3.flex {
    align-items: center;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
  }

  .pricing-free-card .pricing-free-label {
    padding-bottom: 0 !important;
  }

  .landing-final-cta {
    text-align: center;
  }

  .landing-final-cta .grid {
    justify-items: center;
  }

  .landing-final-cta p {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-final-cta .btn-primary {
    width: 100%;
    max-width: 360px;
  }

  .contact-panel {
    padding: 14px;
  }

  .contact-panel > .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .contact-panel > .section-head .eyebrow {
    justify-content: center;
  }

  .contact-panel > .section-head .section-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  #faq .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  #faq .section-head .eyebrow {
    justify-content: center;
  }

  #faq .section-head .section-copy {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }

  .contact-panel .map-copy,
  .contact-panel .contact-card {
    text-align: center;
  }

  .contact-panel .contact-card {
    position: relative;
    align-items: center;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    min-height: 112px;
  }

  .contact-panel .contact-card .feature-icon {
    position: absolute;
    right: -10px;
    top: 50%;
    z-index: 0;
    width: 96px !important;
    height: 96px !important;
    border: 0;
    background: transparent;
    color: #0284c7;
    font-size: 86px;
    opacity: 0.07;
    transform: translateY(-50%) rotate(-7deg);
    pointer-events: none;
  }

  .contact-panel .contact-card .feature-icon > i {
    width: auto;
    height: auto;
    font-size: inherit;
  }

  .contact-panel .contact-card > div {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 6px;
    justify-items: center;
    transform: translateY(-2px);
  }

  .contact-panel .contact-card > div > p:first-child {
    color: #64748b;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
  }

  .contact-form {
    padding: 14px;
    text-align: left;
  }

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

  .contact-form-bottom .btn-primary {
    width: 100%;
    justify-self: stretch;
  }

  .sr-footer {
    padding: 12px 0 24px;
  }

  .sr-footer-panel {
    gap: 18px;
    border-radius: 24px;
    padding: 16px;
  }

  .sr-footer-brand p {
    max-width: none;
    margin-top: 0;
  }

  .sr-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .sr-footer-column {
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-height: 150px;
    padding: 18px 14px;
    text-align: center;
  }

  .sr-footer-column a,
  .sr-footer-column p,
  .footer-cookie-btn {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 30px;
    justify-content: center;
    font-size: 13px;
  }

  .sr-footer-column h3 {
    position: relative;
    z-index: 1;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
    font-size: 13px;
  }

  .sr-footer-column h3 i {
    position: absolute;
    right: 8px;
    top: calc(50% + 16px);
    z-index: -1;
    display: inline-flex;
    width: auto;
    height: auto;
    color: #0284c7;
    font-size: 86px;
    line-height: 1;
    opacity: 0.055;
    transform: translateY(-50%) rotate(-7deg);
    pointer-events: none;
  }

  .sr-footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

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

  .cookie-consent-card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    border-radius: 22px;
    padding: 12px;
  }

  .cookie-consent-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .cookie-consent-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
  }

  .cookie-btn {
    min-height: 40px;
    padding: 0 10px;
  }

  .cookie-modal-viewport {
    align-items: flex-end;
    padding: 10px;
  }

  .cookie-modal-panel {
    width: 100%;
    border-radius: 24px;
  }

  .cookie-modal-head {
    align-items: flex-start;
    padding: 14px;
  }

  .cookie-modal-body {
    padding: 12px;
  }

  .cookie-preference-row {
    border-radius: 16px;
    padding: 12px;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .cookie-modal[data-booking-subscribe-modal] .cookie-modal-viewport,
  .cookie-modal[data-booking-calculator-modal] .cookie-modal-viewport {
    align-items: center;
    justify-content: center;
    bottom: auto;
    height: var(--landing-visual-viewport-height, 100dvh);
    min-height: 0;
    overflow-y: auto;
    padding: max(14px, env(safe-area-inset-top)) 10px max(14px, env(safe-area-inset-bottom));
    transform: translateY(var(--landing-visual-viewport-offset-top, 0));
  }

  .cookie-modal[data-booking-subscribe-modal] .cookie-modal-panel,
  .cookie-modal[data-booking-calculator-modal] .cookie-modal-panel {
    display: flex;
    flex-direction: column;
    max-height: calc(var(--landing-visual-viewport-height, 100dvh) - max(28px, env(safe-area-inset-top)) - max(28px, env(safe-area-inset-bottom)));
  }

  .cookie-modal[data-booking-subscribe-modal] .cookie-modal-body,
  .cookie-modal[data-booking-calculator-modal] .cookie-modal-body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .ecosystem-footer {
    padding: 14px 12px;
  }
}

@media (max-width: 640px) {
  .hero-title,
  .bookings-hero .hero-title,
  html[lang="el-gr"] .hero-title,
  html[lang="el-gr"] .bookings-hero .hero-title {
    box-sizing: border-box;
    inline-size: 100%;
    max-width: min(100%, 310px);
    font-size: 28px;
    line-height: 1.1;
    text-align: center;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: min(100%, 310px);
    overflow-wrap: anywhere;
  }

  .hero .reveal:first-child {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .hero .reveal:first-child > .hero-title,
  .hero .reveal:first-child > .hero-copy,
  .hero .reveal:first-child > .booking-hero-copy-secondary {
    width: 100%;
  }

  .hero .eyebrow {
    width: min(100%, 310px);
    max-width: 100%;
    min-height: 34px;
    height: auto;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero .trust-row {
    justify-content: center;
    width: 100%;
  }

  .hero .pill {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .bookings-hero ~ .section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .booking-area-panel,
  .booking-resource-panel,
  .booking-payment-panel,
  .booking-training-panel,
  #pricing .price-card,
  .service-final-cta {
    border-radius: 24px;
    padding: 16px;
  }

  .bookings-metric-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-resource-intro .trust-row {
    grid-template-columns: 1fr;
  }

  .booking-resource-intro .pill {
    width: 100%;
  }

  .booking-area-map,
  .booking-resource-orbit,
  .booking-payment-flow,
  .booking-training-visual {
    width: 100%;
  }

  .booking-resource-orbit {
    min-height: 300px;
  }

  .booking-resource-panel .workspace-capability,
  .booking-resource-panel .workspace-capability.is-primary {
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
  }

  .booking-resource-panel .workspace-capability > span {
    grid-column: 1;
    grid-row: 1;
  }

  .booking-resource-panel .workspace-capability > div {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .booking-resource-orbit-item.is-one {
    top: 22px;
    left: 18px;
  }

  .booking-resource-orbit-item.is-two {
    top: 72px;
    right: 16px;
  }

  .booking-resource-orbit-item.is-three {
    bottom: 70px;
    left: 18px;
  }

  .booking-resource-orbit-item.is-four {
    right: 18px;
    bottom: 22px;
  }

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

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

  .booking-area-map {
    min-height: 280px;
  }

  .booking-area-map-zone.is-a {
    width: 52%;
    left: 14px;
    top: 22px;
  }

  .booking-area-map-zone.is-b {
    width: 42%;
    right: 14px;
    top: 52px;
  }

  .booking-area-map-zone.is-c {
    width: calc(100% - 38px);
    right: 19px;
    bottom: 22px;
  }

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

  .booking-training-visual {
    min-height: 320px;
  }

  .booking-training-step.is-one {
    top: 22px;
    left: 16px;
  }

  .booking-training-step.is-two {
    top: 70px;
    right: 16px;
  }

  .booking-training-step.is-three {
    bottom: 18px;
  }

  .booking-payment-node.is-provider,
  .booking-payment-node.is-business {
    margin-left: 0;
  }

  .booking-payment-line {
    margin-left: 38px;
  }

  .service-final-cta .btn-primary {
    width: 100%;
  }

  .booking-payment-trust {
    text-align: center;
  }

  .booking-payment-trust > .grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .booking-payment-trust-watermark {
    right: 50%;
    font-size: 130px;
    transform: translate(50%, -50%) rotate(-8deg);
  }

  .bookings-hero ~ .section .workspace-capability,
  .bookings-hero ~ .section .workspace-capability.is-primary {
    grid-template-columns: 44px minmax(0, 1fr) !important;
    align-items: center;
  }

  .bookings-hero ~ .section .workspace-capability > span {
    grid-column: 1;
    grid-row: 1;
  }

  .bookings-hero ~ .section .workspace-capability > div {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .explore-actions-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-child {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
