/* Corporate premium site styling */
:root {
  --primary: #0f52d6;
  --primary-dark: #0b2f78;
  --primary-light: #e7efff;
  --accent: #6f98ff;
  --dark: #081833;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --light: #f8fbff;
  --white: #ffffff;
  --surface: #ffffff;
  --font-primary: 'Manrope', sans-serif;
  --shadow-sm: 0 1px 2px rgba(8, 24, 51, 0.05);
  --shadow-md: 0 8px 24px rgba(8, 24, 51, 0.08);
  --shadow-lg: 0 18px 44px rgba(8, 24, 51, 0.12);
  --shadow-xl: 0 28px 80px rgba(8, 24, 51, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 86px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(111, 152, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #f9fbff 0%, #f5f9ff 100%);
  color: var(--slate-600);
  font-family: var(--font-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.anchor-offset {
  position: relative;
  top: calc(-1 * (var(--header-h) + 24px));
  display: block;
  height: 0;
  visibility: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--dark);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.9rem, 5.2vw, 5rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

p {
  margin: 0;
}

.eyebrow,
.section-header .tagline,
.trust-strip__label,
.use-case-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 82, 214, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 18px 40px rgba(11, 47, 120, 0.26);
}

.btn-secondary,
.btn-ghost {
  background: var(--white);
  color: var(--dark);
  border-color: var(--slate-300);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: rgba(15, 82, 214, 0.28);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
}

.site-header > .container {
  height: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  text-decoration: none;
}

.logo img {
  height: 46px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
  background: rgba(15, 82, 214, 0.06);
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--slate-600);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.lang-menu {
  position: absolute;
  top: 48px;
  right: 0;
  min-width: 140px;
  padding: 0.35rem;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: none;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-switcher.open .lang-menu {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lang-item {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--slate-600);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.lang-item:hover {
  background: var(--slate-100);
}

.lang-item.active {
  color: var(--primary-dark);
}

.mobile-sidebar__lang .lang-switcher {
  width: 100%;
  justify-content: center;
}

.mobile-sidebar__lang .lang-menu {
  top: 52px;
  left: 50%;
  right: auto;
  transform-origin: top center;
  transform: translate(-50%, 8px) scale(0.98);
}

.mobile-sidebar__lang .lang-switcher.open .lang-menu {
  transform: translate(-50%, 0) scale(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-menu-btn {
  display: none;
  padding: 0.35rem;
  border: none;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
}

.hero {
  padding: calc(var(--header-h) + 3.4rem) 0 4.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero-subtitle {
  max-width: 38rem;
  font-size: 1.12rem;
  color: var(--slate-600);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-notes {
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: 42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--slate-700);
}

.hero-notes li:before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(15, 82, 214, 0.1);
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
}

.studio-shell {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 244, 255, 0.96) 100%);
  box-shadow: var(--shadow-xl);
}

.studio-shell:after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 36px;
  background: radial-gradient(circle at top left, rgba(111, 152, 255, 0.18), transparent 50%);
}

.studio-shell__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.studio-shell__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 82, 214, 0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.studio-shell__meta {
  color: var(--slate-500);
  font-size: 0.88rem;
  font-weight: 700;
}

.studio-shell img,
.studio-shell picture img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(203, 213, 225, 0.74);
  border-radius: 24px;
}

.feature-media picture img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(203, 213, 225, 0.74);
  border-radius: 18px;
}

.studio-chip {
  position: absolute;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(8, 24, 51, 0.92);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.studio-chip--one {
  top: 6.2rem;
  right: 1.3rem;
}

.studio-chip--two {
  bottom: 5rem;
  left: 1.4rem;
}

.studio-chip--three {
  right: 1.8rem;
  bottom: 1.6rem;
}

/* Nav CTA button */
.btn-nav-cta {
  min-height: 42px;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(15, 82, 214, 0.18);
}

/* Metrics strip */
.metrics-strip {
  padding: 0 0 1rem;
  margin-top: -1.5rem;
}

.metrics-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.metrics-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.metrics-strip__number {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.metrics-strip__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Problem / Solution section */
.problem-section {
  background: var(--white);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.problem-side h2 {
  margin: 1rem 0 1.5rem;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 14px;
  background: rgba(254, 226, 226, 0.2);
  color: var(--slate-700);
  font-weight: 700;
  font-size: 0.95rem;
}

.problem-list li svg {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: #ef4444;
}

.solution-side {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #081833 0%, #0f377d 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.solution-side h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
}

.solution-side p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.solution-side .btn {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.solution-side .btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Inline CTA */
.inline-cta-section {
  padding: 2rem 0;
}

.inline-cta {
  padding: 3rem 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #081833 0%, #0f377d 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.inline-cta h2 {
  color: var(--white);
}

.inline-cta p {
  max-width: 600px;
  margin: 0.75rem auto 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.trust-strip {
  position: relative;
  margin-top: -0.5rem;
  padding-bottom: 1rem;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.trust-strip__logo {
  display: block;
  width: clamp(140px, 16vw, 210px);
  height: auto;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.trust-strip__inner p {
  color: var(--slate-700);
  font-weight: 700;
}

.section-header {
  max-width: 840px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header p {
  margin-top: 1rem;
  color: var(--slate-600);
  font-size: 1.04rem;
}

.section-header--left {
  max-width: none;
  margin: 0 0 2rem;
  text-align: left;
}

.partner-spotlight__grid,
.product-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.proof-card,
.step-card,
.use-case-card,
.legal-item,
.company-data div,
.article-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.info-card,
.proof-card,
.step-card,
.use-case-card,
.legal-item {
  padding: 1.5rem;
}

.info-card h3,
.proof-card h3,
.step-card h3,
.use-case-card h3 {
  margin-bottom: 0.65rem;
}

.info-card p,
.proof-card p,
.step-card p,
.use-case-card p {
  color: var(--slate-600);
}

.info-card {
  border-top: 4px solid var(--primary);
}

.partner-callout {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #0a1f49 0%, #133b81 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.partner-callout img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.22);
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.partner-callout p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.partner-callout .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.partner-callout .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.partner-note {
  padding-top: 1rem;
}

.partner-note__card {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid rgba(203, 213, 225, 0.84);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.partner-note__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.partner-note__logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.partner-note__logo {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.partner-note__content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.partner-note__content p {
  color: var(--slate-600);
  max-width: 58ch;
}

.product-proof {
  background: linear-gradient(180deg, rgba(231, 239, 255, 0.75) 0%, rgba(248, 251, 255, 0.8) 100%);
}

.product-proof__canvas {
  padding: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.product-proof__canvas img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.product-proof__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* Feature stack (7 alternating rows) */
.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.feature-row:nth-child(even) .feature-text {
  order: 2;
}

.feature-row:nth-child(even) .feature-media {
  order: 1;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.feature-text h3 {
  margin-bottom: 0.6rem;
}

.feature-text p {
  color: var(--slate-600);
  line-height: 1.7;
}

.feature-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(203, 213, 225, 0.74);
  border-radius: 18px;
}

.feature-media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(231, 239, 255, 0.5) 100%);
  color: var(--primary);
}

/* ROI section */
.roi-section {
  background: var(--white);
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.roi-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.roi-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary-dark);
}

.roi-card__label {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.roi-card h3 {
  margin-bottom: 0.5rem;
}

.roi-card p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

/* Use case grid 5 items */
.use-case-grid--five {
  grid-template-columns: repeat(3, 1fr);
}

.use-case-grid--five .use-case-card:nth-child(4),
.use-case-grid--five .use-case-card:nth-child(5) {
  max-width: none;
}

.product-proof__actions {
  margin-top: 2rem;
  text-align: center;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.product-gallery--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  margin-inline: auto;
  margin-top: 1.25rem;
}

.screen-card {
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.84);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
}

.screen-card__body {
  padding: 1.2rem 1.3rem 1.35rem;
}

.screen-card__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.screen-card__body p {
  color: var(--slate-600);
}

.pipeline {
  background: var(--white);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(15, 82, 214, 0.08), transparent 72%);
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
}

.comparison {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(231, 239, 255, 0.5) 100%);
}

.comparison-table__wrap {
  overflow-x: auto;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table thead th {
  padding: 1.2rem 1.25rem;
  background: var(--dark);
  color: var(--white);
  text-align: left;
  font-size: 0.96rem;
  font-weight: 800;
}

.comparison-table thead th:first-child {
  width: 28%;
  background: var(--slate-100);
  color: var(--slate-500);
}

.comparison-table tbody th,
.comparison-table tbody td {
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--slate-200);
  vertical-align: top;
}

.comparison-table tbody th {
  background: var(--slate-100);
  color: var(--dark);
  font-weight: 800;
  text-align: left;
}

.comparison-table tbody td:first-of-type {
  color: var(--primary-dark);
  font-weight: 700;
}

.use-case-showcase {
  background: transparent;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.use-case-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.use-case-card:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(15, 82, 214, 0.08), transparent 72%);
}

.use-case-card__label {
  margin-bottom: 1rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, #081833 0%, #0f377d 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.final-cta:after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
}

.final-cta h2,
.final-cta p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.final-cta p {
  max-width: 700px;
  margin: 1rem auto 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  backdrop-filter: blur(8px);
}

.form-group textarea {
  resize: vertical;
  min-height: 132px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0 0.3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(111, 152, 255, 0.18);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-1.6rem) scale(0.88);
  background: #0c2963;
  color: rgba(255, 255, 255, 0.92);
}

.btn-submit {
  align-self: center;
  min-width: 240px;
  margin-top: 0.8rem;
}

.dot-pulse {
  font-size: 1.5rem;
  letter-spacing: 0.14em;
}

.dot-pulse span {
  display: inline-block;
  animation: dotPulse 1.2s infinite both;
}

.dot-pulse span:nth-child(2) {
  animation-delay: 0.2s;
}

.dot-pulse span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
}

.form-status {
  display: none;
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.26);
}

.form-status.error {
  display: block;
  background: rgba(248, 113, 113, 0.18);
  color: #fecaca;
  border: 1px solid rgba(254, 202, 202, 0.26);
}

.form-field-url {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
}

.site-footer {
  padding: 4rem 0 2rem;
  text-align: center;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--slate-500);
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--primary-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

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

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(8, 24, 51, 0.96);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
}

.cookie-bar .cookie-bar__content {
  flex: 1;
}

.cookie-bar .cookie-bar__content p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-bar .cookie-bar__content a {
  color: #bfd1ff;
  text-decoration: underline;
}

.cookie-bar .cookie-bar__actions {
  display: flex;
  align-items: center;
}

.cookie-bar .cookie-bar__actions .btn {
  min-height: 46px;
  padding-inline: 1.2rem;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  height: 100vh;
  background: rgba(8, 24, 51, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  padding: 1rem;
  background: var(--white);
  box-shadow: -18px 0 40px rgba(8, 24, 51, 0.14);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mobile-sidebar__header {
  display: flex;
  justify-content: flex-end;
}

.sidebar-close {
  border: none;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  color: var(--dark);
  cursor: pointer;
}

.mobile-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.mobile-sidebar__links a {
  display: inline-block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate-200);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}

.mobile-sidebar__lang {
  display: flex;
  justify-content: center;
}

body.no-scroll {
  overflow: hidden;
}

/* Articles and legal pages */
.article-card {
  padding: 2rem;
}

.article-card h2 {
  margin-bottom: 1rem;
}

.article-hero-wrap {
  position: relative;
}

.article-card .article-hero {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  margin: 1rem 0 1.5rem;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
}

.article-hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: var(--white);
  text-align: center;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
}

.article-card p,
.article-card li,
.article-card dd,
.terms-card li {
  color: var(--slate-600);
}

.article-card h3 {
  margin: 2rem 0 0.6rem;
}

.article-card h4 {
  margin: 1.4rem 0 0.55rem;
}

.article-card ul,
.article-card ol,
.terms-card ol,
.terms-card ul,
.processors-list {
  margin: 0 0 1rem 1.25rem;
}

.article-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.article-media img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
}

.article-media figcaption {
  color: var(--slate-400);
  font-size: 0.86rem;
  text-align: center;
}

.article-link {
  text-decoration: none;
  color: var(--dark);
}

.article-link h3,
.article-link p {
  color: inherit;
}

.article-link p {
  color: var(--slate-600);
}

/* Bento grid for article teasers */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-teaser {
  display: flex;
  flex-direction: column;
}

.article-teaser .article-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-teaser img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  order: -1;
}

.article-teaser h3 {
  padding: 1.2rem 1.2rem 0.4rem;
  font-size: 1.1rem;
  margin: 0;
}

.article-teaser p {
  padding: 0 1.2rem 1.2rem;
  font-size: 0.92rem;
}

/* Partners page */
.partner-hero-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}
.partners-widget-embed { max-width: 900px; margin: 0 auto; }
.form-consent { margin-bottom: 0.75rem; text-align: left; }
.form-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--slate-300);
  cursor: pointer;
}
.form-consent__label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-consent__label a {
  color: var(--accent);
  text-decoration: underline;
}
.partners-widget-placeholder {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--slate-300);
  border-radius: var(--radius-lg);
  background: var(--slate-100);
  color: var(--slate-500);
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.legal-item a,
.company-link a {
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal-item p {
  color: var(--slate-500);
  font-size: 0.92rem;
}

.company-data {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.company-data div {
  padding: 0.95rem 1rem;
}

.company-data dt {
  margin-bottom: 0.35rem;
  color: var(--slate-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-data dd {
  margin: 0;
  color: var(--dark);
  font-weight: 800;
}

.company-link {
  margin-top: 1.5rem;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.about-partner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.about-partner__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 18px;
  background: #ffffff;
}

.about-partner__logo img {
  display: block;
  max-width: 200px;
  height: auto;
}

@media (max-width: 900px) {
  .about-grid,
  .about-partner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .hero-layout,
  .partner-spotlight__grid,
  .product-proof__grid,
  .partner-note__card,
  .problem-solution-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-text,
  .feature-row:nth-child(even) .feature-media {
    order: unset;
  }

  .info-grid,
  .pipeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-case-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-right > .btn-nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .logo img {
    height: 38px;
  }

  body.no-scroll .lang-switcher,
  body.menu-open .lang-switcher {
    visibility: hidden !important;
  }
}

@media (max-width: 900px) {
  .product-proof__cards,
  .product-gallery,
  .use-case-grid,
  .use-case-grid--five,
  .info-grid,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .metrics-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, 1280px);
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: calc(var(--header-h) + 2.2rem);
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-notes li {
    font-size: 0.96rem;
  }

  .studio-chip {
    display: none;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    padding: 1.4rem;
  }

  .article-card .article-hero {
    height: 240px;
  }

  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-bar .cookie-bar__actions {
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .mobile-sidebar__links a {
    padding: 1rem 0;
  }

  .partners-widget-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .btn,
  .hero-buttons .btn,
  .partner-callout .btn,
  .btn-submit {
    width: 100%;
  }

  .section-header p,
  .hero-subtitle,
  .trust-strip__inner p {
    font-size: 0.98rem;
  }

  .final-cta {
    padding: 3rem 1.2rem;
  }

  .comparison-table__wrap {
    margin: 0 -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .cookie-bar {
    width: calc(100% - 20px);
    bottom: 10px;
  }
}
