:root {
  --primary: #004385;
  --accent: #05b2dc;
  --ink: #2b2b2b;
  --muted: #5b6369;
  --bg: #f6fbff;
  --bg-alt: #e8f6fb;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(0, 67, 133, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --gutter: 24px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: linear-gradient(120deg, #f7fcff 0%, #edf7fb 45%, #ffffff 100%);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), 100% - 2 * var(--gutter));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 252, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 67, 133, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
}

.brand img {
  display: block;
  height: calc(clamp(2.4rem, 3vw, 3.6rem) - 5px);
  width: auto;
}

.brand-text {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.logo-loaded .brand img {
  display: block;
}

.logo-loaded .brand-text {
  display: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.nav-services {
  position: relative;
}

.nav-services summary {
  list-style: none;
  position: relative;
  padding-bottom: 6px;
  cursor: pointer;
}

.nav-services summary::-webkit-details-marker {
  display: none;
}

.nav-services summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-services:hover summary::after,
.nav-services[open] summary::after {
  width: 100%;
}

.nav-services-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 67, 133, 0.12);
  background: #ffffff;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-services-menu a {
  margin-bottom: 0;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-services-menu a:hover,
.nav-services-menu a:focus-visible {
  background: rgba(0, 67, 133, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  transition: transform 0.3s var(--ease);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 67, 133, 0.2);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0, 67, 133, 0.25);
}

.btn.ghost {
  border: 1px solid rgba(0, 67, 133, 0.2);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  transform: translateY(-2px);
}

.btn.subtle {
  background: rgba(5, 178, 220, 0.12);
  color: var(--primary);
  border: 1px solid transparent;
  padding: 8px 16px;
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(5, 178, 220, 0.2), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 67, 133, 0.18), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(5, 178, 220, 0.18), transparent 55%);
  z-index: 0;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.89rem !important;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.2;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  margin: 18px 0 16px;
  color: var(--primary);
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hero-stats strong {
  font-size: 1.4rem;
  color: var(--primary);
}

.hero-stats span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

.hero-stats.workflow-steps > div {
  border: 1px solid rgba(0, 67, 133, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats.workflow-steps strong {
  display: block;
  font-size: 0.96rem;
  letter-spacing: 0.03em;
}

.hero-stats.workflow-steps span {
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--primary);
}

.hero-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 67, 133, 0.1);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-header h3 {
  margin: 6px 0 0;
  color: var(--primary);
  font-size: 1.6rem;
}

.panel-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.chip {
  background: rgba(5, 178, 220, 0.15);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.panel-grid > div {
  border: 1px solid rgba(0, 67, 133, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(5, 178, 220, 0.07);
  padding: 12px;
}

.panel-grid p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.panel-grid strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust {
  padding: 10px 0 40px;
  text-align: center;
  color: var(--muted);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
  font-weight: 600;
  color: var(--primary);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  color: var(--primary);
}

.section-heading p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.platform {
  padding: 70px 0 40px;
}

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

.feature-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 67, 133, 0.08);
  border: 1px solid rgba(0, 67, 133, 0.06);
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--primary);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 67, 133, 0.1);
  box-shadow: 0 10px 24px rgba(0, 67, 133, 0.08);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  flex: 0 0 auto;
  line-height: 1;
  margin-top: 3px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid rgba(0, 67, 133, 0.08);
}

.snapshot {
  background: linear-gradient(135deg, rgba(5, 178, 220, 0.12), rgba(0, 67, 133, 0.08));
  padding: 80px 0;
  margin: 60px 0;
}

.snapshot-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
}

.snapshot-copy h2 {
  margin: 16px 0 16px;
  color: var(--primary);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.snapshot-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 4px;
}

.snapshot-screen {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 67, 133, 0.1);
}

.screen-top {
  display: flex;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 67, 133, 0.08);
  margin-bottom: 16px;
}

.screen-top .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 67, 133, 0.18);
}

.screen-body {
  display: grid;
  gap: 16px;
}

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

.screen-card {
  background: rgba(0, 67, 133, 0.05);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid rgba(0, 67, 133, 0.08);
}

.screen-card.wide {
  grid-column: span 2;
}

.screen-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.screen-card strong {
  font-size: 1.2rem;
  color: var(--primary);
}

.assurance-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.assurance-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 8px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.3;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(0, 67, 133, 0.16);
  background: linear-gradient(160deg, rgba(5, 178, 220, 0.18), rgba(0, 67, 133, 0.08));
}

.steps {
  padding: 60px 0 20px;
}

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

.step-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 67, 133, 0.08);
  box-shadow: 0 10px 26px rgba(0, 67, 133, 0.08);
}

.step-card span {
  color: #004385;
  background: rgba(0, 67, 133, 0.12);
  border: 1px solid rgba(0, 67, 133, 0.22);
  border-radius: 999px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.step-card h3 {
  margin: 12px 0 10px;
  color: var(--primary);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.solutions {
  padding: 70px 0;
  background: #ffffff;
}

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

.solution-card {
  background: linear-gradient(160deg, rgba(0, 67, 133, 0.08), rgba(5, 178, 220, 0.05));
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(0, 67, 133, 0.08);
  display: grid;
  gap: 14px;
}

.solution-card h3 {
  margin: 0;
  color: var(--primary);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.solution-card a {
  color: var(--primary);
  font-weight: 600;
}

.stories {
  padding: 80px 0 40px;
}

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

.story-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(0, 67, 133, 0.08);
  box-shadow: 0 10px 22px rgba(0, 67, 133, 0.08);
  display: grid;
  gap: 18px;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.story-card strong {
  display: block;
  color: var(--primary);
}

.story-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.cta {
  padding: 70px 0 90px;
}

.cta-inner {
  background: linear-gradient(120deg, var(--primary), #003368);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-inner h2 {
  margin: 0 0 10px;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta .btn.ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.site-footer {
  background: #ffffff;
  padding: 50px 0 20px;
  border-top: 1px solid rgba(0, 67, 133, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
  color: var(--primary);
}

.footer-logo {
  width: min(142px, 100%);
  height: auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
  min-height: 150px;
}

.brand-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.brand-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 67, 133, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 67, 133, 0.12);
}

.brand-social a:hover,
.brand-social a:focus-visible {
  transform: translateY(-1px);
}

.brand-social img {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-brand p {
  margin-top: 0;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-meta {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-meta a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}

.footer-company {
  color: var(--primary);
  font-weight: 700;
}

.footer-regions {
  color: var(--primary);
  font-weight: 700;
}

.footer-contact-link {
  text-decoration: none;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

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

.lyric-chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.chatbot-launch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  padding: 0;
  background: linear-gradient(145deg, #004385, #0258ac);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 67, 133, 0.35);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.chatbot-launch svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.chatbot-launch span {
  display: none;
}

.chatbot-launch:hover,
.chatbot-launch:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 67, 133, 0.35);
}

.chatbot-panel {
  width: min(360px, calc(100vw - 24px));
  max-height: min(600px, calc(100vh - 110px));
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 67, 133, 0.16);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 45px rgba(0, 67, 133, 0.2);
  overflow: hidden;
}

.chatbot-panel[hidden] {
  display: none !important;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  background: linear-gradient(145deg, rgba(0, 67, 133, 0.98), rgba(5, 178, 220, 0.9));
  color: #ffffff;
}

.chatbot-eyebrow {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
}

.chatbot-title {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.chatbot-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.chatbot-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.chatbot-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px 0;
}

.chatbot-language-label {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 600;
}

.chatbot-language {
  border: 1px solid rgba(0, 67, 133, 0.24);
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 0.78rem;
  color: var(--ink);
  background: #ffffff;
}

.chatbot-helper {
  margin: 6px 14px 10px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted);
}

.chatbot-messages {
  flex: 1;
  min-height: 140px;
  max-height: 270px;
  overflow-y: auto;
  padding: 0 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 0.8rem;
  line-height: 1.42;
}

.chat-message--bot {
  background: rgba(0, 67, 133, 0.1);
  color: #173050;
  border: 1px solid rgba(0, 67, 133, 0.12);
  align-self: flex-start;
}

.chat-message--user {
  background: #004385;
  color: #ffffff;
  border: 1px solid transparent;
  align-self: flex-end;
}

.chat-message--typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 58px;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 67, 133, 0.6);
  animation: chatTyping 1.2s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 10px;
}

.chatbot-chip {
  border: 1px solid rgba(0, 67, 133, 0.2);
  border-radius: 999px;
  background: #f7fbff;
  color: #164372;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
}

.chatbot-chip:hover,
.chatbot-chip:focus-visible {
  border-color: rgba(0, 67, 133, 0.4);
  background: #edf6ff;
}

.chatbot-form {
  padding: 0 14px 14px;
}

.chatbot-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chatbot-input-wrap input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(0, 67, 133, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-family: inherit;
}

.chatbot-input-wrap input:focus-visible {
  outline: 2px solid rgba(5, 178, 220, 0.45);
  outline-offset: 2px;
}

.chatbot-send {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 12px;
  padding: 10px 11px;
  background: #004385;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.chatbot-send svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.chatbot-send:hover,
.chatbot-send:focus-visible {
  background: #05366a;
}

@media (max-width: 1024px) {
  .hero-content,
  .snapshot-inner {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .step-grid,
  .solution-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 96px;
    right: var(--gutter);
    background: #ffffff;
    flex-direction: column;
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease);
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-services {
    width: 100%;
  }

  .nav-services-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(0, 67, 133, 0.03);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-actions .btn.ghost {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .step-grid,
  .solution-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .screen-card.wide {
    grid-column: span 1;
  }

  .cta-inner {
    padding: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .lyric-chatbot {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    width: min(350px, calc(100vw - 20px));
    max-height: min(560px, calc(100vh - 90px));
  }

  .chatbot-launch span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .typing-dot {
    animation: none;
  }
}

@keyframes chatTyping {
  0%,
  80%,
  100% {
    transform: scale(0.72);
    opacity: 0.45;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
