:root {
  --brand-orange: #f36a1c;
  --ink: #121212;
  --muted: #5b5b5b;
  --bg: #fbfbfc;
  --card: #ffffff;
  --border: rgba(18, 18, 18, 0.08);
  --shadow: 0 10px 30px rgba(18, 18, 18, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

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

li {
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
  background: rgba(251, 251, 252, 0.85);
  backdrop-filter: blur(10px);
}

.nav-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(18, 18, 18, 0.06);
}

.brand img {
  height: 32px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  background: transparent;
  border: none;
  font: inherit;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  padding: 0 2px;
  display: flex;
  align-items: center;
  line-height: 1.2;
  appearance: none;
  height: 28px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 28px;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
  pointer-events: auto;
  z-index: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 2;
}

.nav-dropdown a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle-btn {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  min-width: 48px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.cta.primary {
  background: var(--brand-orange);
  color: #fff;
}

.cta.ghost {
  border-color: rgba(18, 18, 18, 0.2);
  color: var(--ink);
  background: transparent;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  padding: 24px;
  transition: right 0.2s ease;
  z-index: 101;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-panel.is-open {
  right: 0;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-panel-header img {
  height: 28px;
}

.nav-panel-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-panel-links a,
.nav-panel-links button {
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  border: none;
  font: inherit;
  text-align: left;
  padding: 6px 0;
  font-weight: 600;
  cursor: pointer;
}

.nav-panel .nav-dropdown {
  position: static;
  box-shadow: none;
  border: none;
  padding: 0 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.nav-panel .nav-dropdown.is-open {
  max-height: 220px;
}

.nav-panel-ctas {
  display: grid;
  gap: 10px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-orange);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  max-width: 540px;
}

@media (min-width: 900px) {
  .page-pricing h1 {
    max-width: none;
    white-space: nowrap;
  }
}

.subhead {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  margin-top: 12px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.home-hero {
  padding: 80px 20px 40px;
}

.home-hero-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
}

.hero-media {
  border-radius: 24px;
  padding: 0;
  border: none;
  background: transparent;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: block;
  object-fit: cover;
}

.section-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.home-overview {
  padding: 20px 20px 40px;
}

.home-solutions {
  padding: 20px 20px 60px;
}

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

.section-heading p {
  color: var(--muted);
}

.solutions-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.solution-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
}

.solution-card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
}

.solution-card p {
  color: var(--muted);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(243, 106, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  background: rgba(243, 106, 28, 0.08);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.home-framework {
  padding: 10px 20px 50px;
}

.home-framework .section-shell {
  text-align: center;
}

.framework-visual {
  display: flex;
  justify-content: center;
  margin: 24px auto 18px;
  max-width: 980px;
}

.framework-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.framework-visual.reveal {
  transform: translateY(16px) scale(0.98);
}

.framework-visual.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.framework-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 18px auto 20px;
  max-width: 920px;
}

.framework-pillars span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.05);
  font-weight: 600;
}

.home-cta {
  padding: 20px 20px 70px;
}

.cta-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-placeholder {
  padding: 40px 20px 60px;
}

.contact-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.hero {
  padding: 64px 20px 24px;
}

.hero-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.header-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.solutions-intro {
  padding: 24px 20px 12px;
}

.solutions-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(243, 106, 28, 0.06);
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(243, 106, 28, 0.2);
}

.solutions-shell h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.solutions-shell p {
  color: var(--muted);
  font-size: 15px;
}

.pricing-section {
  position: relative;
  padding: 48px 20px 96px;
  overflow: hidden;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(243, 106, 28, 0.08), rgba(255, 255, 255, 0.9));
  z-index: 0;
}

.pricing-shell {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-flow {
  display: grid;
  gap: 28px;
}

.pricing-row {
  display: grid;
  gap: 20px;
}

.pricing-row--three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-row--two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-heading h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.pricing-card p,
.addons-card p {
  font-size: 14.5px;
  color: var(--muted);
}

.module-bullets {
  margin: 12px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14.5px;
  list-style: disc;
  list-style-position: outside;
}

.module-bullets li {
  margin-bottom: 0;
}

.module-bullets li::marker {
  color: var(--brand-orange);
}

.addons-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card-title {
  margin-bottom: 16px;
}

.card-title h2 {
  font-size: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.module-list {
  display: grid;
  gap: 16px;
}

.module-list h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.module-list p {
  font-size: 14.5px;
  color: var(--muted);
}

.guest-volume-callout {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(243, 106, 28, 0.08);
  border: 1px solid rgba(243, 106, 28, 0.2);
  display: grid;
  gap: 8px;
}

.guest-volume-callout h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.guest-volume-callout p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.guest-volume-callout .example {
  color: #6b3b1f;
  font-weight: 600;
}

.tier-table {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
}

.tier-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.tier-row:last-child {
  border-bottom: none;
}

.tier-row.highlight {
  background: rgba(243, 106, 28, 0.08);
}

.inline-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.addon-grid {
  display: grid;
  gap: 16px;
}

.addon-grid ul {
  font-size: 14px;
  color: var(--muted);
}

.support-table {
  display: grid;
  gap: 10px;
}

.support-row {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
}

.support-row.header {
  font-weight: 600;
  border-bottom: 2px solid var(--brand-orange);
}

.notes-card ul li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-calculator {
  position: relative;
  top: auto;
  align-self: stretch;
}

.calc-group {
  margin-bottom: 18px;
}

.calc-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-inputs {
  display: grid;
  gap: 12px;
}

input[type="number"],
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

input[type="range"] {
  accent-color: var(--brand-orange);
}

.toggle-grid {
  display: grid;
  gap: 10px;
}

.toggle-row {
  display: flex;
  align-items: center;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: rgba(243, 106, 28, 0.1);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(243, 106, 28, 0.2);
  cursor: pointer;
  position: relative;
}

.toggle input {
  position: absolute;
  opacity: 0;
}

.toggle-ui {
  width: 36px;
  height: 20px;
  background: rgba(18, 18, 18, 0.2);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.toggle-ui::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
}

.toggle input:checked + .toggle-ui {
  background: var(--brand-orange);
}

.toggle input:checked + .toggle-ui::after {
  transform: translateX(16px);
}

.toggle-text {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.info-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(243, 106, 28, 0.4);
  background: #fff;
  color: var(--brand-orange);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  position: relative;
}

.info-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  top: 34px;
  width: 260px;
  background: #1f140e;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  white-space: pre-line;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.info-icon:hover::after,
.info-icon:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.warning {
  color: #b54700;
  background: rgba(243, 106, 28, 0.16);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-top: 10px;
}

.calc-summary {
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}

.summary-row.divider {
  font-size: 16px;
  font-weight: 700;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.summary-row.muted {
  color: var(--muted);
}

.contact-sales {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.05);
}

.contact-sales h3 {
  margin-bottom: 6px;
}

.page-hero {
  padding: 80px 20px 32px;
}

.page-hero-shell {
  max-width: 1000px;
  margin: 0 auto;
}

.page-content {
  padding: 24px 20px 80px;
}

.page-shell {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-grid,
.placeholder-grid,
.capability-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.placeholder-card,
.capability-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
}

.placeholder-card {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.solution-hero {
  padding: 80px 20px 30px;
}

.solution-section {
  padding: 20px 20px 40px;
}

.about-section {
  padding: 50px 20px 80px;
}

.about-shell {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-shell h2 {
  font-size: 24px;
  margin-bottom: 22px;
}

.about-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(243, 106, 28, 0.04);
}

.about-card--germany {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

.germany-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 10px 10px;
  background: linear-gradient(90deg, #000 0%, #000 33%, #dd0000 33%, #dd0000 66%, #ffce00 66%, #ffce00 100%);
}

.about-card h3 {
  margin: 12px 0 8px;
}

.about-list li {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 40px 20px 60px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.footer-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 3fr);
}

.footer-brand img {
  height: 32px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 240px;
}

.footer-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .pricing-row--three,
  .pricing-row--two {
    grid-template-columns: 1fr;
  }

  .home-hero-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    padding: 10px 12px;
  }

  .home-hero {
    padding: 60px 16px 24px;
  }

  .hero {
    padding: 48px 16px 24px;
  }

  .pricing-section {
    padding: 40px 16px 72px;
  }

  .card {
    padding: 18px;
  }

  .support-row {
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
  }
}
