:root {
  color-scheme: dark;
  --bg: #071016;
  --bg-deep: #04090d;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.105);
  --panel-border: rgba(255, 255, 255, 0.13);
  --text: #f5f8fb;
  --muted: #aab7c2;
  --muted-strong: #c8d2dc;
  --paper: #f7f9f8;
  --paper-text: #101820;
  --paper-muted: #53606d;
  --line: rgba(255, 255, 255, 0.1);
  --light-line: #dde4e2;
  --teal: #37d6bd;
  --teal-soft: rgba(55, 214, 189, 0.16);
  --charcoal: #111a22;
  --radius: 8px;
  --container: 1180px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 9, 13, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(55, 214, 189, 0.45);
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
}

.site-nav a,
.header-cta,
.language-button,
.button,
.contact-link {
  text-decoration: none;
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.language-button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.language-button.active {
  background: var(--teal);
  color: #03100d;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(55, 214, 189, 0.45);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 800;
}

html[data-current-lang="en"] [data-lang="es"],
html[data-current-lang="es"] [data-lang="en"] {
  display: none !important;
}

html[data-current-lang="en"] [data-lang="en"],
html[data-current-lang="es"] [data-lang="es"] {
  display: inline !important;
}

[data-lang-block] {
  display: none !important;
}

html[data-current-lang="en"] [data-lang-block="en"],
html[data-current-lang="es"] [data-lang-block="es"] {
  display: block !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 92px);
  padding: 96px 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(55, 214, 189, 0.075), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(135deg, var(--bg-deep), var(--bg) 58%, #0a151d);
  background-size: auto, 52px 52px, 52px 52px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(1.16rem, 1.55vw, 1.44rem);
  font-weight: 650;
}

.hero-support {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 900;
}

.button-primary {
  background: var(--teal);
  color: #03100d;
  box-shadow: 0 18px 42px rgba(55, 214, 189, 0.18);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.panel-topline span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.panel-topline span:first-child {
  background: var(--teal);
}

.signal-card {
  padding: 22px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: var(--panel);
}

.signal-card.featured {
  background: var(--panel-strong);
}

.signal-card p {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.signal-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.command-center {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 520px;
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(9, 20, 28, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.command-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.command-header p {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.command-header h2 {
  margin: 0;
  max-width: 360px;
  font-size: clamp(1.58rem, 2.25vw, 2.08rem);
  line-height: 1.02;
}

.panel-status {
  display: block;
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.live-indicator {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 8px;
  border: 1px solid rgba(55, 214, 189, 0.28);
  border-radius: 999px;
  background: rgba(55, 214, 189, 0.1);
}

.live-indicator i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(55, 214, 189, 0.11);
}

.command-description {
  max-width: 500px;
  margin: -4px 0 0;
  color: var(--muted-strong);
  font-size: 0.98rem;
}

.status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-badges > span {
  padding: 9px 12px;
  border: 1px solid rgba(55, 214, 189, 0.28);
  border-radius: 999px;
  background: rgba(55, 214, 189, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(4, 9, 13, 0.42);
}

.workflow-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  padding: 0 12px 0 0;
  background: transparent;
}

.workflow-step em {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(55, 214, 189, 0.14);
  color: var(--teal);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 950;
}

.workflow-step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 34px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(255, 255, 255, 0.18));
}

.workflow-step strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.08;
}

.workflow-step small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.workflow-visual > i {
  display: none;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.kpi-strip article {
  min-height: 112px;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 15px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.048);
}

.kpi-strip h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.16;
}

.kpi-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section {
  padding: clamp(70px, 8vw, 112px) 0;
  background: var(--paper);
  color: var(--paper-text);
}

.section-muted {
  background: #edf2f1;
}

.value-section {
  background:
    linear-gradient(135deg, #eaf1ef, #f7f9f8);
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section-intro {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-intro.compact {
  max-width: 700px;
}

.section h2,
.partner-section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-intro p:not(.eyebrow),
.partner-section p,
.contact-section p {
  margin: 18px 0 0;
  color: var(--paper-muted);
  font-size: 1.12rem;
}

.card {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.card::before,
.card::after,
.problem-card::before,
.problem-card::after,
.partner-card::before,
.partner-card::after,
.service-card::before,
.service-card::after,
.proof-card::before,
.proof-card::after,
.trust-card::before,
.trust-card::after {
  content: none;
  display: none;
  pointer-events: none;
}

.card h3,
.card strong,
.card p,
.card span,
.workflow-step strong,
.workflow-step small,
.trust-card h3,
.trust-card p {
  position: relative;
  z-index: 2;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.feature-grid,
.service-grid,
.process-grid,
.agent-capability-grid {
  display: grid;
  gap: 16px;
}

.feature-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.process-card,
.agent-capability-grid article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--paper-text);
}

.feature-card h3,
.service-card h3,
.process-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.feature-card p,
.service-card p,
.process-card p {
  margin: 12px 0 0;
  color: var(--paper-muted);
  line-height: 1.45;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card {
  background: #ffffff;
}

.process-card > span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: #087967;
  font-weight: 950;
}

.agent-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agent-capability-grid article {
  min-height: 150px;
}

.agent-capability-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: #087967;
  font-size: 0.82rem;
  font-weight: 950;
}

.agent-capability-grid p {
  margin: 0;
  color: var(--paper-text);
  font-weight: 850;
  line-height: 1.25;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-card {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.problem-card i {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(55, 214, 189, 0.13);
}

.problem-card * {
  position: relative;
  z-index: 2;
}

.problem-card strong,
.problem-card span,
.problem-card p {
  margin: 0;
  color: var(--paper-text);
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.problem-card strong {
  font-size: 1rem;
  font-weight: 850;
}

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

.service-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
}

.service-label {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 0 18px;
  border-radius: var(--radius);
  background: var(--teal-soft);
  color: #087967;
  font-weight: 950;
}

.service-card strong {
  margin-top: 28px;
  color: var(--paper-text);
  font-size: 1.03rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  padding: 28px;
  border: 1px solid var(--light-line);
  border-radius: var(--radius);
  background: #ffffff;
}

.comparison-card.after {
  border-color: rgba(55, 214, 189, 0.48);
  box-shadow: 0 20px 60px rgba(8, 121, 103, 0.1);
}

.comparison-card h3 {
  margin: 0 0 18px;
  font-size: 1.28rem;
}

.comparison-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--paper-muted);
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 18px;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.partner-section {
  padding: clamp(70px, 8vw, 112px) 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--charcoal);
  background-size: 44px 44px, 44px 44px, auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 56px;
  align-items: center;
}

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

.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.partner-card strong,
.partner-card span,
.partner-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: break-word;
}

.partner-card strong {
  font-weight: 850;
}

.contact-section {
  padding: clamp(70px, 8vw, 112px) 0;
  background: #ffffff;
  color: var(--paper-text);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 42px;
  align-items: center;
}

.contact-link {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--teal);
  font-weight: 950;
  text-align: center;
}

.contact-email {
  display: inline-flex;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.cta-section {
  padding: clamp(70px, 8vw, 112px) 0;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 20%, rgba(55, 214, 189, 0.14), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--bg-deep);
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.5fr);
  gap: 42px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.058);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1.02;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.cta-actions .button,
.cta-actions .contact-link {
  width: 100%;
}

.site-footer {
  padding: 34px 0;
  background: var(--bg-deep);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
}

.footer-grid strong {
  color: var(--text);
}

.footer-grid p {
  margin: 6px 0 0;
}

.sdi-concierge {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.concierge-trigger,
.concierge-close,
.concierge-questions button,
.concierge-email {
  font: inherit;
}

.concierge-trigger {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(55, 214, 189, 0.44);
  border-radius: 999px;
  background: rgba(5, 12, 17, 0.92);
  color: var(--text);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-weight: 900;
}

.concierge-trigger-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(55, 214, 189, 0.13);
}

.concierge-panel {
  width: min(390px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(7, 16, 22, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.concierge-panel[hidden] {
  display: none;
}

.concierge-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.concierge-header p {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concierge-header h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.1;
}

.concierge-close {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.concierge-intro,
.concierge-disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.concierge-questions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.concierge-questions button {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 800;
}

.concierge-questions button:hover,
.concierge-questions button.active {
  border-color: rgba(55, 214, 189, 0.42);
  background: rgba(55, 214, 189, 0.12);
}

.concierge-answer {
  min-height: 88px;
  display: grid;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(55, 214, 189, 0.22);
  border-radius: var(--radius);
  background: rgba(55, 214, 189, 0.09);
}

.concierge-answer p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.45;
}

.concierge-email {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #03100d;
  text-align: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 950;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
    padding-bottom: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.15rem, 9vw, 5rem);
  }

  .hero-panel,
  .command-center {
    max-width: 760px;
  }

  .feature-grid.four,
  .feature-grid.five,
  .proof-grid,
  .process-grid,
  .agent-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-grid,
  .contact-grid,
  .value-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .brand-text {
    white-space: normal;
  }

  .header-cta {
    width: 100%;
  }

  .header-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .language-switch {
    width: 100%;
  }

  .language-button {
    flex: 1;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.5vw, 3.8rem);
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel,
  .command-center {
    padding: 22px;
  }

  .signal-card {
    padding: 18px;
  }

  .feature-grid.four,
  .feature-grid.five,
  .proof-grid,
  .process-grid,
  .agent-capability-grid,
  .service-grid,
  .problem-grid,
  .comparison-grid,
  .partner-card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .workflow-visual,
  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: 92px;
    padding: 0 0 0 40px;
  }

  .workflow-step em {
    position: absolute;
    left: 0;
    top: 0;
  }

  .workflow-step:not(:last-of-type)::after {
    top: 32px;
    left: 13px;
    right: auto;
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, var(--teal), rgba(255, 255, 255, 0.16));
  }

  .workflow-visual > i {
    display: none;
  }

  .feature-card,
  .service-card,
  .process-card,
  .agent-capability-grid article {
    min-height: auto;
  }

  .section h2,
  .partner-section h2,
  .contact-section h2,
  .cta-box h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

@media (max-width: 520px) {
  .contact-email {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 0.95rem;
  }

  .sdi-concierge {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .concierge-trigger,
  .concierge-panel {
    width: 100%;
  }

  .concierge-trigger {
    justify-content: center;
  }
}
