/* KVS Affiliate — commercial landing (Hostinger-ready) */
:root {
  --accent: #ea580c;
  --accent-hover: #f97316;
  --success: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c0e12;
  --bg-elevated: #141820;
  --bg-card: #1a1f28;
  --border: #2a3140;
  --text: #f1f3f6;
  --text-muted: #9aa3b2;
  --accent-soft: rgba(234, 88, 12, 0.12);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  --header-bg: rgba(12, 14, 18, 0.88);
  --cta-band-bg: linear-gradient(135deg, #1a1208 0%, var(--bg-card) 50%, #0f1419 100%);
  --mockup-bg: #0a0c10;
  --hero-glow: rgba(234, 88, 12, 0.12);
  --config-note-border: rgba(234, 88, 12, 0.25);
  --theme-switch-bg: #1a1f28;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f5f8;
  --bg-elevated: #eceef2;
  --bg-card: #ffffff;
  --border: #d8dee8;
  --text: #0f1419;
  --text-muted: #5c6578;
  --accent-soft: rgba(234, 88, 12, 0.1);
  --shadow: 0 20px 40px rgba(15, 20, 25, 0.08);
  --header-bg: rgba(244, 245, 248, 0.92);
  --cta-band-bg: linear-gradient(135deg, #fff7ed 0%, var(--bg-card) 55%, #f4f5f8 100%);
  --mockup-bg: #e8eaef;
  --hero-glow: rgba(234, 88, 12, 0.08);
  --config-note-border: rgba(234, 88, 12, 0.35);
  --theme-switch-bg: #eceef2;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--accent);
}

.header-toolbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.15rem 0.35rem 0.45rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.lang-dropdown-toggle:hover,
.lang-dropdown-toggle[aria-expanded="true"] {
  color: var(--text);
  background: var(--accent-soft);
}

.lang-dropdown-chevron {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 0.15rem;
  transition: transform 0.15s;
}

.lang-dropdown-toggle[aria-expanded="true"] .lang-dropdown-chevron {
  transform: rotate(225deg) translateY(1px);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 120;
  min-width: 8.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.lang-dropdown-menu[hidden] {
  display: none;
}

.lang-dropdown-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.65rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.lang-dropdown-option:hover {
  color: var(--text);
  background: var(--bg-elevated);
}

.lang-dropdown-option[aria-selected="true"] {
  color: var(--accent);
  font-weight: 600;
}

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

.nav a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: #fff !important;
  background: var(--accent);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto -20%;
  height: 70%;
  background: radial-gradient(ellipse, var(--hero-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-trust strong {
  color: var(--text);
}

.hero-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--bg-card);
}

.hero-visual img {
  width: 100%;
}

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.section-intro {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 2.5rem;
  font-size: 1.1rem;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.branding-callout {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  border: 1px solid var(--config-note-border);
  border-left: 4px solid var(--accent);
}

.branding-callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.branding-callout p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.55;
  max-width: 52rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 0.5rem;
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Configuration / personalization */
.config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.config-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  border-left: 3px solid var(--accent);
}

.config-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  color: var(--text);
}

.config-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.config-list li {
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.45;
}

.config-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.config-note {
  margin: 2rem 0 0;
  padding: 1.15rem 1.25rem;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.975rem;
  border: 1px solid var(--config-note-border);
}

.config-note strong {
  color: var(--text);
}

/* Features */
.feature-block {
  margin-bottom: 3rem;
}

.feature-block h3 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.975rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
}

.feature-see-more {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Promo carousel */
.promo-carousel {
  margin-top: 0.5rem;
}

.promo-carousel-stage {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.promo-carousel-btn {
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.promo-carousel-btn--side {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.5rem;
  padding: 0;
}

.promo-carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.promo-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding: 0 2.5rem;
}

.promo-carousel-dot {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.promo-carousel-dot[aria-selected="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.promo-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.promo-carousel-viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.promo-carousel-track {
  display: flex;
  gap: 0;
}

.promo-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  min-width: 0;
  margin: 0 auto;
  padding: 0 0.25rem;
  box-sizing: border-box;
}

.promo-slide.showcase-item {
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.promo-slide .showcase-media-wrap {
  width: 100%;
  flex-shrink: 0;
}

.promo-slide figcaption {
  text-align: center;
  width: 100%;
  flex-shrink: 0;
}

.showcase-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.showcase-item figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.promo-slide .showcase-media {
  margin-inline: auto;
}

.showcase-item strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.25rem;
}

.showcase-media-wrap {
  background: var(--mockup-bg);
  padding: 0.5rem;
}

.showcase-media-wrap--center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}

.showcase-media--tall {
  max-width: 220px;
  width: 100%;
  height: auto;
}

/* Table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.975rem;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.pricing-card h3 {
  margin: 0 0 0.25rem;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.75rem 0;
  line-height: 1.2;
}

.pricing-amount {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-tax,
.pricing-unit {
  display: inline;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-unit {
  margin-left: 0.15rem;
}

.pricing-amount--quote {
  font-size: 1.35rem;
  display: inline;
}

.pricing-stripe-note {
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-paid-banner {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.975rem;
}

.btn--checkout-disabled {
  opacity: 0.85;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.pricing-card li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 42rem;
}

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

.faq-item summary {
  padding: 1.1rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* CTA band */
.cta-band {
  background: var(--cta-band-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0 0;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.footer-copy p {
  margin: 0.25rem 0;
}

/* Theme switch (footer) */
.theme-switch {
  display: inline-flex;
  padding: 4px;
  gap: 2px;
  background: var(--theme-switch-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.theme-switch-btn {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  color: var(--text-muted);
  background: transparent;
  transition: background 0.15s, color 0.15s;
}

.theme-switch-btn:hover {
  color: var(--text);
}

.theme-switch-btn[aria-pressed="true"] {
  background: var(--bg-card);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .theme-switch-btn[aria-pressed="true"] {
  box-shadow: 0 1px 4px rgba(15, 20, 25, 0.1);
}

/* Alt section bg */
.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* Corporate homepage */
.container--narrow {
  max-width: 720px;
}

.section-intro--lead {
  font-size: 1.15rem;
  line-height: 1.65;
}

.logo--corp span {
  color: var(--accent);
}

.nav-home {
  color: var(--text-muted);
  font-weight: 500;
}

.nav-home:hover {
  color: var(--text);
}

.hero--corp {
  padding-bottom: 4rem;
}

.hero-grid--corp {
  align-items: center;
}

.hero-visual--corp {
  display: flex;
  justify-content: center;
}

.corp-visual-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--cta-band-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.corp-visual-card::before {
  content: "";
  position: absolute;
  inset: -20% 30% 40% -30%;
  background: radial-gradient(circle, var(--hero-glow) 0%, transparent 70%);
  pointer-events: none;
}

.corp-visual-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.corp-visual-title {
  margin: 0.25rem 0 0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.corp-visual-sub {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-teaser {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 42%);
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 2rem;
}

.product-teaser h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.product-teaser p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.product-teaser-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mockup-bg);
  border: 1px solid var(--border);
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius);
  color: var(--text);
}

.form-success p {
  margin: 0;
}

.corp-contact-cta {
  margin-top: 1.75rem;
}

.cta-band--form {
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-widget--band .contact-form {
  margin-top: 1.5rem;
}

.contact-form-widget--band .form-note {
  text-align: left;
}

.form-load-error,
.form-error,
.form-config-warning {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.form-error {
  border-color: rgba(220, 38, 38, 0.45);
  background: rgba(220, 38, 38, 0.08);
}

.form-error p {
  margin: 0;
  color: var(--text);
}

.form-config-warning {
  border-color: rgba(234, 88, 12, 0.45);
  background: var(--accent-soft);
}

.cta-band--form .form-success {
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .cards-3,
  .cards-4,
  .product-teaser,
  .steps,
  .pricing-grid,
  .config-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .site-header .container {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .header-toolbar {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .menu-toggle {
    display: block;
    order: 1;
  }

  .nav {
    display: none;
    order: 2;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 1rem 0 0.25rem;
    margin-top: 0.25rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav .nav-cta {
    text-align: center;
  }

  .lang-dropdown {
    align-self: flex-end;
  }

  .lang-dropdown-menu {
    right: 0;
    left: auto;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .promo-carousel-stage {
    gap: 0.35rem;
  }

  .promo-carousel-btn--side {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.2rem;
  }

  .promo-carousel-dots {
    padding: 0;
    margin-top: 1rem;
  }
}
