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

html {
  overflow-x: hidden;
}

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

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(calc(var(--reveal-shift, 16px) + var(--scroll-shift, 0px)));
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--scroll-shift, 0px));
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: translateY(var(--scroll-shift, 0px));
  }
}

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

.nav-user-login {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-user-login:hover,
.nav-user-login:focus-visible {
  background: #f5f5f5;
  border-color: rgba(18, 18, 18, 0.2);
}

.nav-user-login svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
  align-items: center;
  gap: 10px;
}

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

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

.section-shell > h2 {
  margin-bottom: 10px;
}

.section-shell > p {
  margin-top: 6px;
  margin-bottom: 18px;
  color: var(--muted);
}

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

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

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

.section-heading p {
  color: var(--muted);
  margin-top: 8px;
}

.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);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.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:
    radial-gradient(circle at 4% 8%, rgba(243, 106, 28, 0.12), transparent 45%),
    linear-gradient(150deg, #ffffff 0%, #f7f7f9 100%);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 12px;
}

.contact-copy h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  max-width: 480px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-note {
  font-size: 14px;
  margin-top: 6px;
}

.contact-calendar-link {
  width: fit-content;
}

.contact-calendar-wrap {
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 18px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.08);
}

.contact-calendar-frame {
  width: 100%;
  min-height: 700px;
  border: 0;
  border-radius: 12px;
  background: #ffffff;
}

.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);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

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

.solution-hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.solution-hero-copy {
  flex: 1 1 360px;
  min-width: 0;
}

.solution-hero-visual {
  flex: 0 1 320px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

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

.framework-module .section-heading {
  margin-bottom: 20px;
}

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

.framework-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.framework-card summary {
  list-style: none;
  cursor: pointer;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.framework-card summary::-webkit-details-marker {
  display: none;
}

.framework-card summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 600;
  color: var(--muted);
}

.framework-card[open] summary::after {
  content: "-";
  color: var(--brand-orange);
}

.framework-card-text {
  flex: 1;
  min-width: 0;
}

.framework-card-text h3 {
  font-size: 18px;
}

.framework-card-text p {
  margin-top: 6px;
}

.framework-card-body {
  padding: 0 18px 18px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.framework-card[open] .framework-card-body {
  max-height: 280px;
  opacity: 1;
}

.framework-card[open] {
  border-color: rgba(243, 106, 28, 0.35);
  box-shadow: 0 12px 26px rgba(18, 18, 18, 0.08);
}

.framework-note-cta {
  margin-top: 18px;
  display: inline-flex;
}

.framework-pillars-section .section-heading {
  margin-bottom: 22px;
}

.pillar-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.pillar-row {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pillar-row summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
}

.pillar-row summary::-webkit-details-marker {
  display: none;
}

.pillar-row summary::after {
  content: "+";
  margin-left: auto;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
}

.pillar-row[open] summary::after {
  content: "-";
  color: var(--brand-orange);
}

.pillar-summary {
  flex: 1;
  min-width: 0;
}

.pillar-summary h3 {
  margin-top: 4px;
  font-size: 22px;
}

.pillar-summary p {
  margin-top: 6px;
  color: var(--muted);
}

.pillar-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.45s ease, opacity 0.3s ease, padding-bottom 0.3s ease;
}

.pillar-row[open] .pillar-body {
  max-height: 260px;
  opacity: 1;
  padding-bottom: 18px;
}

.pillar-row[open] {
  border-color: rgba(243, 106, 28, 0.35);
  box-shadow: 0 12px 26px rgba(18, 18, 18, 0.08);
}

@media (min-width: 980px) {
  .pillar-timeline {
    padding: 4px 0;
  }

  .pillar-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(243, 106, 28, 0.2), rgba(18, 18, 18, 0.1));
    transform: translateX(-0.5px);
  }

  .pillar-row {
    width: calc(50% - 22px);
  }

  .pillar-row--right {
    margin-left: auto;
  }

  .pillar-row:hover {
    transform: translateY(-2px);
  }
}

.visual-card {
  width: 100%;
  background: rgba(18, 18, 18, 0.03);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.visual-card--wide {
  justify-content: flex-start;
}

.visual-caption {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.solution-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.solution-list li {
  margin-bottom: 8px;
}

.numbered-list {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.numbered-list li {
  margin-bottom: 8px;
}

.card-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.card-list li {
  margin-bottom: 6px;
}

.definition-card {
  background: rgba(243, 106, 28, 0.06);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(243, 106, 28, 0.2);
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.05);
}

.definition-card h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.capability-card .icon-badge,
.solution-card .icon-badge,
.about-card .icon-badge {
  margin-bottom: 0;
}

.capability-card h3,
.solution-card h3,
.about-card h3,
.stat-card h3 {
  margin: 0;
}

.capability-card p,
.solution-card p,
.about-card p,
.stat-card p {
  margin: 0;
  color: var(--muted);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.logo-pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px dashed var(--border);
  background: #ffffff;
  font-weight: 600;
  color: var(--muted);
}

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

.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.stat-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
}

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

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item ul {
  margin: 0 18px 16px 36px;
  color: var(--muted);
}

.faq-item .persona-meta {
  margin: 0 18px 16px;
  color: var(--muted);
  font-weight: 600;
}

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

@media (max-width: 900px) {
  .solution-hero-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .solution-hero-visual {
    justify-content: flex-start;
  }

  .pillar-summary h3 {
    font-size: 20px;
  }

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

  .contact-copy h2 {
    max-width: none;
  }

  .contact-calendar-frame {
    min-height: 760px;
  }
}

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

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

  .page-hero,
  .solution-hero {
    padding: 56px 16px 24px;
  }

  .solution-section,
  .home-overview,
  .home-solutions,
  .home-framework,
  .home-cta,
  .about-section,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .solution-section {
    padding-top: 16px;
    padding-bottom: 28px;
  }

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

  .section-shell > h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .capability-card,
  .solution-card,
  .about-card,
  .visual-card,
  .definition-card,
  .pillar-row {
    border-radius: 14px;
    padding: 16px;
  }

  .pillar-row summary {
    padding: 16px;
  }

  .pillar-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-shell {
    padding: 18px;
    border-radius: 16px;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-calendar-wrap {
    border-radius: 14px;
    padding: 6px;
  }

  .contact-calendar-frame {
    min-height: 680px;
    border-radius: 10px;
  }
}
