:root {
  --font-sans: Inter, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --ink: #0f172a;
  --body: #344256;
  --muted: #68778b;
  --faint: #94a3b8;
  --line: #d9e2ec;
  --line-strong: #bdc9d8;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --navy: #0d2946;
  --navy-strong: #071b30;
  --blue: #1769aa;
  --teal: #0b9488;
  --green: #11865f;
  --amber: #c47a13;
  --coral: #d94b4b;
  --violet: #6250a8;
  --focus: 0 0 0 3px rgba(23, 105, 170, 0.22);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 20px 55px rgba(15, 23, 42, 0.16);
  --radius: 8px;
  color: var(--body);
  background: var(--surface-soft);
  font-family: var(--font-sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--body);
  background: var(--surface-soft);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.iti:focus-within {
  outline: none;
  box-shadow: var(--focus);
}

::selection {
  background: rgba(11, 148, 136, 0.18);
  color: var(--ink);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(20px, 4%, 48px);
  border-bottom: 1px solid rgba(217, 226, 236, 0.74);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 1.14rem;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 120px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #20314a;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: rgba(23, 105, 170, 0.18);
  background: #eef7fb;
  color: var(--navy);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--navy);
  color: #ffffff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  border-color: var(--navy);
  background: var(--navy-strong);
  color: #ffffff;
}

.site-nav .language-link {
  justify-content: center;
  min-width: 42px;
  border-color: var(--line);
  background: #ffffff;
  color: var(--navy);
}

.site-nav .language-link:hover,
.site-nav .language-link.is-active {
  border-color: rgba(11, 148, 136, 0.32);
  background: #eaf9f6;
  color: #146a63;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 78svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 27, 48, 0.96) 0%, rgba(7, 27, 48, 0.84) 34%, rgba(7, 27, 48, 0.34) 66%, rgba(7, 27, 48, 0.14) 100%),
    url("assets/qalneo-dashboard-hero.jpg") center right / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, rgba(7, 27, 48, 0) 0%, rgba(7, 27, 48, 0.74) 100%);
}

.hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 72px 56px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #72ddd2;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  color: #ffffff;
  font-size: 4.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(11, 148, 136, 0.25);
}

.button.primary:hover {
  background: #08796f;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button.secondary.dark {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--navy);
}

.button.secondary.dark:hover {
  border-color: var(--navy);
  background: #eef7fb;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 800px;
  margin: 50px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.hero-points li {
  min-width: 0;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.hero-points span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.intro-band {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: center;
  padding-block: 30px;
}

.intro-grid p {
  margin: 0;
  color: #27364d;
  font-size: 1.05rem;
  font-weight: 650;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.intro-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #cae7e4;
  border-radius: 999px;
  background: #f0fbf9;
  color: #146a63;
  font-size: 0.84rem;
  font-weight: 800;
}

.section {
  scroll-margin-top: 92px;
  padding-block: 86px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.product-copy h2,
.report-panel h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.product-copy p,
.report-panel p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-link {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 18px;
}

.about-link a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-link a:hover {
  color: var(--navy);
}

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

.feature-card,
.use-case-grid article,
.governance-list article,
.report-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 22px;
}

.feature-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  place-items: center;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
  border-radius: 3px;
}

.document-icon {
  background: #eaf5fd;
}

.document-icon::before {
  width: 20px;
  height: 24px;
  border: 2px solid var(--blue);
  background: #ffffff;
}

.document-icon::after {
  width: 12px;
  height: 2px;
  background: var(--blue);
  transform: translateY(5px);
}

.rules-icon {
  background: #fff6e7;
}

.rules-icon::before {
  width: 24px;
  height: 18px;
  border: 2px solid var(--amber);
}

.rules-icon::after {
  width: 14px;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 6px 0 var(--amber);
  transform: translateY(-3px);
}

.control-icon {
  background: #eaf9f6;
}

.control-icon::before {
  width: 22px;
  height: 22px;
  border: 2px solid var(--teal);
  border-radius: 999px;
}

.control-icon::after {
  width: 12px;
  height: 6px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.report-icon {
  background: #f0eefb;
}

.report-icon::before {
  width: 24px;
  height: 20px;
  border-left: 4px solid var(--violet);
  border-bottom: 4px solid var(--violet);
  border-radius: 0;
}

.report-icon::after {
  width: 5px;
  height: 16px;
  background: var(--violet);
  box-shadow:
    8px -5px 0 var(--violet),
    16px -10px 0 var(--violet);
  transform: translate(-8px, 3px);
}

.feature-card h3,
.use-case-grid h3,
.governance-list h3,
.workflow-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.feature-card p,
.use-case-grid p,
.governance-list p,
.workflow-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-section {
  padding-block: 82px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border-block: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #263752;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.product-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.product-preview img {
  width: 100%;
  height: auto;
}

.product-preview figcaption {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.workflow-section {
  background: #ffffff;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-list li {
  position: relative;
  min-height: 230px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.workflow-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
}

.workflow-list li:nth-child(2) span {
  background: var(--blue);
}

.workflow-list li:nth-child(3) span {
  background: var(--teal);
}

.workflow-list li:nth-child(4) span {
  background: var(--amber);
}

.workflow-list li:nth-child(5) span {
  background: var(--coral);
}

.use-case-section {
  padding-block: 76px;
  background: #f8fbf9;
  border-block: 1px solid var(--line);
}

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

.use-case-grid article {
  padding: 22px;
  border-top: 4px solid var(--teal);
}

.use-case-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.use-case-grid article:nth-child(3) {
  border-top-color: var(--amber);
}

.use-case-grid article:nth-child(4) {
  border-top-color: var(--coral);
}

.industries-section {
  background: #ffffff;
}

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

.industry-card,
.benefit-grid article,
.industry-link-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.industry-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-top: 4px solid var(--blue);
}

.industry-card:nth-child(2) {
  border-top-color: var(--teal);
}

.industry-card:nth-child(3) {
  border-top-color: var(--amber);
}

.industry-card span,
.industry-link-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.industry-card h3,
.benefit-grid h3,
.industry-link-grid strong {
  margin: 0;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.3;
}

.industry-card p,
.benefit-grid p,
.detail-list li {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.industry-card a,
.industry-link-grid a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.industry-card a:hover,
.industry-link-grid a:hover strong {
  color: var(--teal);
}

.security-section {
  background: var(--navy);
  color: #ffffff;
}

.security-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.security-section .eyebrow {
  color: #72ddd2;
}

.security-section h2,
.security-section .section-heading p:not(.eyebrow) {
  color: #ffffff;
}

.security-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.governance-list {
  display: grid;
  gap: 14px;
}

.governance-list article {
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.governance-list h3 {
  color: #ffffff;
}

.governance-list p {
  color: rgba(255, 255, 255, 0.76);
}

.reports-section {
  background: #f5f8fb;
}

.reports-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: stretch;
}

.report-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.report-panel .button {
  margin-top: 24px;
}

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

.report-metrics article {
  min-height: 0;
  padding: 24px;
  display: grid;
  gap: 13px;
  border-top: 4px solid var(--blue);
}

.report-metrics article:nth-child(2) {
  border-top-color: var(--coral);
}

.report-metrics article:nth-child(3) {
  border-top-color: var(--violet);
}

.report-metrics article:nth-child(4) {
  border-top-color: var(--teal);
}

.metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.metric-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-head i {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #eaf5fd;
}

.metric-head i::before,
.metric-head i::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.metric-head i::before {
  inset: 9px;
  border: 3px solid var(--blue);
  border-right-color: #c8d7e6;
}

.metric-head i::after {
  right: 6px;
  bottom: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.report-metrics article:nth-child(2) .metric-head i {
  background: #fff0f0;
}

.report-metrics article:nth-child(2) .metric-head i::before {
  border-color: var(--coral);
  border-right-color: #f4c6c6;
}

.report-metrics article:nth-child(2) .metric-head i::after {
  width: 3px;
  height: 12px;
  right: 15px;
  bottom: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 15px 0 -1px var(--coral);
  transform: none;
}

.report-metrics article:nth-child(3) .metric-head i {
  background: #f0eefb;
}

.report-metrics article:nth-child(3) .metric-head i::before {
  inset: 8px 11px 8px 10px;
  border: 0;
  border-left: 3px solid var(--violet);
  border-bottom: 3px solid var(--violet);
  border-radius: 0;
}

.report-metrics article:nth-child(3) .metric-head i::after {
  right: 8px;
  bottom: 9px;
  width: 4px;
  height: 14px;
  border: 0;
  background: var(--violet);
  box-shadow: -7px 4px 0 var(--violet);
  transform: none;
}

.report-metrics article:nth-child(4) .metric-head i {
  background: #eaf9f6;
}

.report-metrics article:nth-child(4) .metric-head i::before {
  inset: 9px 8px 7px 10px;
  border: 0;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  border-radius: 0;
}

.report-metrics article:nth-child(4) .metric-head i::after {
  right: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--teal);
  background: #ffffff;
  transform: none;
}

.report-metrics strong {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.25;
}

.report-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.report-metrics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.report-metrics li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid #d4e3ee;
  border-radius: 999px;
  background: #f8fbfd;
  color: #40546c;
  font-size: 0.78rem;
  font-weight: 780;
}

.about-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: 26px;
  align-items: start;
}

.about-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fafc;
}

.about-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.about-panel div {
  display: grid;
  gap: 4px;
}

.about-panel dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
}

.product-family {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-family article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.product-family span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef7fb;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-family article:nth-child(2) span {
  background: #eaf9f6;
  color: var(--teal);
}

.product-family article:nth-child(3) span {
  background: #fff6e7;
  color: var(--amber);
}

.product-family h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.product-family p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-section {
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 820;
}

.faq-list summary::marker {
  color: var(--teal);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(180deg, #eef8f6 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span,
.contact-form small {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
}

.contact-form small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 11px 12px;
  background: #ffffff;
  color: var(--ink);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #95a6ba;
}

.contact-form .iti {
  width: 100%;
  --iti-border-color: var(--line-strong);
  --iti-hover-color: #f3f8fb;
  --iti-spacer-horizontal: 12px;
  border-radius: 8px;
}

.contact-form .iti input[type="tel"] {
  min-height: 47px;
}

.contact-form .iti__selected-country {
  border-radius: 8px 0 0 8px;
}

.contact-form .iti__dropdown-content {
  border-color: var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.contact-form .iti__search-input {
  border-color: var(--line-strong);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 750;
}

.site-footer {
  padding-block: 28px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-brand img {
  width: 90px;
  height: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.site-footer a {
  color: #263752;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal);
}

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

.industry-page {
  background: #ffffff;
}

.industry-hero {
  padding-block: 76px;
  background:
    linear-gradient(180deg, #eef8f6 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.industry-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.industry-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 3.6rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.industry-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.industry-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.industry-visual img {
  width: 100%;
  height: auto;
}

.industry-benefits {
  background: #ffffff;
}

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

.benefit-grid article {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.benefit-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
}

.benefit-grid article:nth-child(2) span {
  background: var(--teal);
}

.benefit-grid article:nth-child(3) span {
  background: var(--amber);
}

.industry-workflow {
  background: var(--navy);
  color: #ffffff;
}

.industry-workflow .eyebrow {
  color: #72ddd2;
}

.industry-workflow h2,
.industry-workflow .section-heading p:not(.eyebrow) {
  color: #ffffff;
}

.industry-workflow .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 18px;
  width: 13px;
  height: 8px;
  border-left: 3px solid #72ddd2;
  border-bottom: 3px solid #72ddd2;
  transform: rotate(-45deg);
}

.next-industries {
  background: #f5f8fb;
}

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

.industry-link-grid a {
  display: grid;
  gap: 8px;
  padding: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

@media (max-width: 1050px) {
  .feature-grid,
  .use-case-grid,
  .industry-card-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 880px) {
  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 72px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-strong);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 82svh;
    background:
      linear-gradient(90deg, rgba(7, 27, 48, 0.96) 0%, rgba(7, 27, 48, 0.8) 56%, rgba(7, 27, 48, 0.44) 100%),
      url("assets/qalneo-dashboard-hero.jpg") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .hero-points,
  .intro-grid,
  .product-grid,
  .industry-hero-grid,
  .split-grid,
  .security-grid,
  .reports-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-tags {
    justify-content: flex-start;
  }

  .product-grid,
  .industry-hero-grid,
  .split-grid,
  .security-grid,
  .reports-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    gap: 28px;
  }

  .section,
  .product-section {
    padding-block: 68px;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-inner {
    padding-block: 54px 40px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-points,
  .feature-grid,
  .use-case-grid,
  .industry-card-grid,
  .benefit-grid,
  .industry-link-grid,
  .workflow-list,
  .report-metrics,
  .product-family,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    gap: 14px;
  }

  .section-heading h2,
  .product-copy h2,
  .industry-hero h1,
  .report-panel h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .feature-card,
  .use-case-grid article,
  .industry-card,
  .benefit-grid article,
  .industry-link-grid a,
  .governance-list article,
  .about-panel,
  .product-family article,
  .report-panel,
  .contact-form {
    padding: 18px;
  }

  .workflow-list li {
    min-height: auto;
  }

  .footer-grid {
    justify-items: start;
  }

  .footer-brand img {
    width: 60px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
