:root {
  color-scheme: light;
  --bg-main: #fafafa;
  --bg-surface: #ffffff;
  --bg-muted: #f3f4f7;
  --text-primary: #222222;
  --text-secondary: #555b67;
  --text-subtle: #6f7582;
  --accent: #3a7afe;
  --accent-strong: #2554d4;
  --accent-soft: #e8f0ff;
  --border: #e4e7ee;
  --radius-large: 28px;
  --radius-medium: 20px;
  --radius-small: 12px;
  --shadow-soft: 0 12px 32px rgba(58, 122, 254, 0.12);
  --shadow-subtle: 0 4px 12px rgba(15, 23, 42, 0.04);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  color: #111111;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.header-inner,
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
}

.brand,
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark,
.site-brand .brand-mark,
.site-brand span:first-child {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.6rem;
  box-shadow: none;
}

.brand-text,
.site-brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-title {
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--text-subtle);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-subtle);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -0.5rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--accent-strong);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="rtl"] .header-inner,
[dir="rtl"] .hero,
[dir="rtl"] .content-section,
[dir="rtl"] .cta-block,
[dir="rtl"] .footer-grid {
  text-align: right;
}

[dir="rtl"] .header-controls,
[dir="rtl"] .hero-actions,
[dir="rtl"] .desktop-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .desktop-nav a::after {
  transform-origin: right;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.site-header .cta-button {
  padding: 0.55rem 1.35rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.cta-button.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: none;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--accent-strong);
  box-shadow: var(--shadow-subtle);
}

.cta-button.primary:hover,
.cta-button.primary:focus-visible {
  box-shadow: var(--shadow-soft);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.ghost-link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -0.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transition: opacity 160ms ease;
}

.ghost-link:hover,
.ghost-link:focus-visible {
  color: var(--accent-strong);
}

.ghost-link:hover::after,
.ghost-link:focus-visible::after {
  opacity: 1;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-switcher {
  position: relative;
}

.language-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-small);
  font-weight: 500;
  text-decoration: none;
  color: var(--text-subtle);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(58, 122, 254, 0.2);
  background: var(--accent-soft);
}

.language-switcher__flag {
  font-size: 1.1rem;
}

.language-switcher__code {
  font-variant: all-small-caps;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .language-switcher__toggle {
    gap: 0;
    padding-inline: 0.6rem;
  }

  .language-switcher__toggle::before {
    content: '🌐';
    font-size: 1.1rem;
  }

  .language-switcher__toggle .language-switcher__flag,
  .language-switcher__toggle .language-switcher__code {
    display: none;
  }
}

.language-switcher__dropdown {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 0.5rem);
  min-width: 220px;
  padding: 0.5rem 0.25rem;
  border-radius: var(--radius-medium);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 100;
  max-height: 320px;
  overflow: auto;
}

.language-switcher.is-open .language-switcher__dropdown {
  display: flex;
}

.language-switcher__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-small);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-subtle);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

[dir="rtl"] .language-switcher__option {
  flex-direction: row-reverse;
  text-align: right;
}

.language-switcher__option:hover,
.language-switcher__option:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(58, 122, 254, 0.2);
  background: var(--accent-soft);
}

.language-switcher__option[aria-selected='true'] {
  color: var(--accent-strong);
  background: rgba(58, 122, 254, 0.08);
  border-color: rgba(58, 122, 254, 0.25);
}

.language-switcher__label {
  flex: 1;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-small);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-subtle);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease;
}

.hamburger:hover,
.hamburger:focus-visible {
  border-color: rgba(58, 122, 254, 0.4);
  color: var(--accent-strong);
}

.hamburger svg {
  width: 22px;
  height: 22px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.35);
  z-index: 40;
}

.mobile-menu-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 88vw);
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  padding: 1.75rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 50;
  box-shadow: none;
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
  box-shadow: var(--shadow-soft);
}

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

.menu-logo {
  font-weight: 600;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-small);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.mobile-close {
  border: none;
  background: transparent;
  color: var(--text-subtle);
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-secondary);
}

.mobile-menu-title {
  font-size: 1.25rem;
  color: #111111;
  margin: 0;
}

.mobile-menu-text {
  margin: 0;
  color: var(--text-secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-link {
  color: var(--text-subtle);
  text-decoration: none;
  font-weight: 500;
}

.menu-link:hover,
.menu-link:focus-visible {
  color: var(--accent-strong);
}

.mobile-menu-footer {
  margin-top: auto;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  padding-bottom: 6rem;
}

.hero {
  position: relative;
  padding: 6rem 0 7rem;
  overflow: hidden;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.gradient-orbit {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(58, 122, 254, 0.18);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: #111111;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-section {
  position: relative;
  padding: 6rem 1.5rem 6.5rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.hero-overlay {
  display: none;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #111111;
}

.hero-title span {
  color: var(--accent-strong);
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section {
  position: relative;
}

.content-section {
  padding: 4.5rem 0;
  background: var(--bg-main);
}

.blog-widget {
  padding: 0;
  background: transparent;
}

.blog-widget__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 2.25rem 2.5rem;
  border-radius: var(--radius-large);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
}

.blog-widget__content {
  max-width: 640px;
}

.blog-widget__content h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.blog-widget__content p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.blog-widget__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-strong);
}

.blog-widget__link {
  flex-shrink: 0;
  padding-inline: 1.5rem;
  padding-block: 0.75rem;
  font-size: 0.95rem;
}

.content-section.alt {
  background: var(--bg-surface);
}

.content-section.final {
  background: var(--bg-muted);
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 0 0;
}

.section-header {
  max-width: 720px;
}

.section-header h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.15;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.intro {
  padding: 4.5rem 0;
}

.pill-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-subtle);
}

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

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

.feature-card {
  background: var(--bg-surface);
  border-radius: var(--radius-medium);
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #111111;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
}

.benefit-card {
  background: var(--bg-surface);
  border-radius: var(--radius-medium);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 160ms ease, border-color 160ms ease;
}

.benefit-card:hover,
.benefit-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(58, 122, 254, 0.3);
}

.icon {
  font-size: 1.8rem;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-secondary);
}

.workflow {
  padding: 4.5rem 0;
}

.workflow-steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-timeline li {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-subtle);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
}

.process-timeline h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: #111111;
}

.process-timeline p {
  margin: 0;
  color: var(--text-secondary);
}

.workflow-steps li {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow-subtle);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #ffffff;
  background: var(--accent);
}

.workflow-steps h3 {
  margin: 0;
  font-size: 1.25rem;
}

.workflow-steps p {
  margin: 0;
  color: var(--text-secondary);
}

.faq-list {
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #111111;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
}

.cases {
  padding: 4.5rem 0;
}

.case-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.case-card {
  background: var(--bg-surface);
  border-radius: var(--radius-large);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-subtle);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(58, 122, 254, 0.3);
  box-shadow: var(--shadow-soft);
}

.case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-muted);
}

.case-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.case-body h3 {
  margin: 0;
  font-size: 1.4rem;
}

.case-body p {
  margin: 0;
  color: var(--text-secondary);
}

.why-us {
  padding: 4.5rem 0;
}

.blog-preview {
  padding: 4.5rem 0;
  background: var(--bg-main);
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.blog-card figure {
  margin: 0;
  background: var(--bg-muted);
  display: flex;
  align-items: stretch;
}

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

.blog-card-body {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #111111;
}

.blog-card-body p {
  margin: 0;
  color: var(--text-secondary);
}

.blog-card-meta {
  font-size: 0.95rem;
  color: var(--text-subtle);
}

.blog-card a {
  align-self: flex-start;
  margin-top: auto;
}

.secondary-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.secondary-link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -0.2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  transition: opacity 160ms ease;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  color: var(--accent-strong);
}

.secondary-link:hover::after,
.secondary-link:focus-visible::after {
  opacity: 1;
}

.stats-strip {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat {
  background: var(--bg-surface);
  border-radius: var(--radius-medium);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
}

.stat-label {
  color: var(--text-subtle);
  font-size: 0.95rem;
}

.partner-logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #111111;
}

.contact-card p {
  margin: 0;
  color: var(--text-secondary);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta {
  padding: 5rem 0 6rem;
}

.cta-inner {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  padding: clamp(2.5rem, 8vw, 4rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.cta-inner p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 8rem;
  background: var(--bg-surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-subtle);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
}

.section-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.section-illustration {
  display: flex;
  justify-content: center;
}

.section-illustration img {
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-subtle);
}

.feature-list,
.audience-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-list li,
.audience-list li {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-small);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
  font-weight: 500;
}

.cta .cta-button {
  align-self: center;
}

.secondary-link {
  margin: 0;
  font-size: 0.95rem;
}

.secondary-link a {
  color: var(--accent-strong);
  text-decoration: none;
}

.secondary-link a:hover,
.secondary-link a:focus-visible {
  text-decoration: underline;
}

.examples-anchor {
  height: 1px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text-subtle);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent-strong);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.support-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 600;
}

.support-link:hover,
.support-link:focus-visible {
  text-decoration: underline;
}

.footer-inner {
  align-items: flex-start;
}

.mobile-bottom-nav {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  display: none;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  z-index: 60;
}

.mobile-bottom-nav .mobile-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-bottom-nav .mobile-nav-link:focus-visible,
.mobile-bottom-nav .mobile-nav-link:hover {
  color: var(--accent-strong);
}

.nav-icon {
  font-size: 1.35rem;
}

@media (max-width: 960px) {
  .blog-widget__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .blog-widget__link {
    width: 100%;
    justify-content: center;
  }
  .header-inner,
  .site-header-inner {
    padding: 1.1rem 0;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  main {
    gap: 4.5rem;
    padding-bottom: 7rem;
  }

  .hero {
    padding: 5rem 0 6rem;
  }

  .intro,
  .workflow,
  .cases,
  .why-us {
    padding: 3.5rem 0;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-illustration {
    order: -1;
  }

  .section-illustration img {
    max-width: min(360px, 90%);
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
  }

  .footer-right {
    align-items: flex-start;
  }

  .mobile-bottom-nav {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .header-inner {
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .brand {
    flex: 1 0 100%;
  }

  .header-controls {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .header-controls .language-switcher {
    flex-shrink: 0;
    margin-inline-start: auto;
  }

  .site-header .cta-button {
    flex: 1 0 100%;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }

  .blog-widget__inner {
    padding: 1.75rem;
  }

  .blog-widget__content h2 {
    font-size: 1.6rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    padding: 0.75rem 1.4rem;
  }

  .hero-badge {
    letter-spacing: 0.12em;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .cta .cta-button {
    width: 100%;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .cta-button,
  .hero-actions .ghost-link {
    width: 100%;
    justify-content: center;
  }

  .pill-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .case-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 420px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
