@charset "UTF-8";
:root {
  /* =========================================
     KANIAH PUBLIC LIGHT THEME
     Produktnah · Healthcare SaaS · Enterprise
  ========================================= */
  /* =========================================
     CORE BACKGROUNDS
  ========================================= */
  --public-bg: #ffffff;
  --public-bg-soft: #f4f8ff;
  --public-bg-muted: #f4f6f9;
  --public-surface: #ffffff;
  --public-surface-soft: #f8fafc;
  /* =========================================
     TEXT
  ========================================= */
  --public-text: #212529;
  --public-heading: #1f2937;
  --public-muted: #6c757d;
  /* =========================================
     BRAND
  ========================================= */
  --public-primary: #0055a5;
  --public-primary-dark: #003d80;
  --public-primary-soft: #e7f1ff;
  --public-success: #198754;
  --public-success-soft: #e8f7f0;
  --public-warning: #ffc107;
  --public-warning-soft: #fff7dd;
  --public-border: #dbe3ef;
  /* =========================================
     HEADER
  ========================================= */
  --public-header-bg: #123b6a;
  --public-header-text: #ffffff;
  /* =========================================
     TYPOGRAPHY
  ========================================= */
  --font-family:
    'Inter',
    'Segoe UI',
    system-ui,
    sans-serif;
  --body-size: 1rem;
  --line-height: 1.65;
  --hero-size:
    clamp(2.45rem, 6.5vw, 4.6rem);
  --h2-size:
    clamp(2rem, 4.5vw, 3.2rem);
  /* =========================================
     LAYOUT
  ========================================= */
  --container-width: 1180px;
  --section-spacing:
    clamp(72px, 10vw, 120px);
  /* =========================================
     RADIUS
  ========================================= */
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  /* =========================================
     SHADOWS
  ========================================= */
  --shadow-soft:
    0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-card:
    0 16px 42px rgba(15, 23, 42, 0.10);
}

html {
  scroll-behavior: smooth;
}

/* =========================================
   BODY
========================================= */
body.public-body {
  margin: 0;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 34%, #ffffff 100%);
  color: var(--public-text);
  font-family: var(--font-family);
  font-size: var(--body-size);
  line-height: var(--line-height);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =========================================
   MAIN
========================================= */
.public-main {
  position: relative;
}

.public-main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top left, rgba(0, 85, 165, 0.1), transparent 28%), radial-gradient(circle at top right, rgba(25, 135, 84, 0.08), transparent 24%);
  z-index: -1;
}

/* =========================================
   CONTAINER
========================================= */
.container {
  width: min(var(--container-width), 100% - 40px);
  margin-inline: auto;
}

/* =========================================
   SECTION RHYTHM
========================================= */
.section {
  position: relative;
  padding: var(--section-spacing) 0;
}

/* =========================================
   TYPOGRAPHY RESET
========================================= */
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

/* =========================================
   H1
========================================= */
h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: var(--hero-size);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--public-heading);
}

/* =========================================
   H2
========================================= */
h2 {
  max-width: 15ch;
  margin-bottom: 24px;
  font-size: var(--h2-size);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--public-heading);
}

/* =========================================
   H3
========================================= */
h3 {
  margin-bottom: 12px;
  color: var(--public-heading);
  font-weight: 700;
}

/* =========================================
   PARAGRAPHS
========================================= */
p {
  color: var(--public-muted);
  line-height: 1.75;
}

/* =========================================
   LEAD
========================================= */
.lead {
  max-width: 780px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--public-muted);
}

/* =========================================
   SMALL
========================================= */
.small {
  color: var(--public-muted);
  font-size: 0.95rem;
}

.public-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--public-header-bg);
  border-bottom: 4px solid #0e2e52;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

/* =========================================
   CONTAINER
========================================= */
.public-header-container {
  width: min(var(--container-width), 100% - 32px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* =========================================
   BRAND
========================================= */
.public-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.public-brand-logo {
  width: 86px;
  height: 64px;
  object-fit: contain;
  display: block;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 2px;
}

/* =========================================
   NAVIGATION
========================================= */
.public-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.public-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
}

.public-nav a:hover {
  color: #ffffff;
}

/* =========================================
   ACTIVE LINE
========================================= */
.public-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--public-warning);
  transition: width 0.25s ease;
}

.public-nav a:hover::after {
  width: 100%;
}

/* =========================================
   ACTIONS
========================================= */
.public-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 980px) {
  .public-header-container {
    min-height: 74px;
    gap: 16px;
  }
  .public-brand-logo {
    width: 76px;
    height: 56px;
  }
  .public-nav {
    display: none;
  }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 560px) {
  .public-header-container {
    width: min(100% - 24px, var(--container-width));
  }
  .public-brand-logo {
    width: 68px;
    height: 52px;
  }
}
.hero {
  position: relative;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

/* =========================================
   HERO GRID
========================================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

/* =========================================
   CONTENT
========================================= */
.hero-content {
  position: relative;
  z-index: 2;
}

/* =========================================
   VISUAL
========================================= */
.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

/* =========================================
   TYPOGRAPHY
========================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--public-primary-soft);
  color: var(--public-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
}

.subtitle {
  max-width: 680px;
  color: var(--public-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.hero-core-message {
  max-width: 660px;
  margin-top: 26px;
  padding: 18px 20px;
  background: var(--public-success-soft);
  border-left: 4px solid var(--public-success);
  border-radius: 14px;
  color: var(--public-heading);
  font-weight: 700;
  line-height: 1.65;
}

/* =========================================
   CTA
========================================= */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

/* =========================================
   HERO CARDS
========================================= */
.hero-card {
  min-height: 150px;
}

.hero-kpi strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 1;
  color: var(--public-primary);
  font-weight: 800;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: 2;
  }
  .hero h1 {
    max-width: 100%;
  }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 640px) {
  .hero {
    padding-top: 56px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}
.section-alt {
  background: linear-gradient(180deg, var(--public-bg-soft) 0%, #ffffff 100%);
  border-top: 1px solid var(--public-border);
  border-bottom: 1px solid var(--public-border);
}

/* =========================================
   GRID
========================================= */
.grid {
  display: grid;
  gap: 24px;
}

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

/* =========================================
   PROBLEM LIST
========================================= */
.problem-list {
  margin-top: 28px;
  padding-left: 1.2rem;
  display: grid;
  gap: 12px;
  color: var(--public-muted);
}

.problem-list li::marker {
  color: var(--public-primary);
}

/* =========================================
   HIGHLIGHT
========================================= */
.highlight {
  color: var(--public-heading);
  font-weight: 700;
}

/* =========================================
   STATEMENT
========================================= */
.statement {
  margin-top: 34px;
  max-width: 900px;
  font-size: 1.12rem;
}

/* =========================================
   CTA SECTION
========================================= */
.cta {
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--public-primary-soft) 100%);
}

.cta h2 {
  margin-inline: auto;
  max-width: 780px;
}

.cta .lead {
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.pilot-cta {
  margin-top: 32px;
}

/* =========================================
   DIFFERENTIATION
========================================= */
.differentiation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

/* =========================================
   SOLUTION FLOW
========================================= */
.solution-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 42px 0;
}

.flow-arrow {
  display: none;
}

/* =========================================
   WORKFLOW
========================================= */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 42px;
}

/* =========================================
   WORKFLOW NUMBER
========================================= */
.workflow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--public-primary-soft);
  border: 1px solid rgba(0, 85, 165, 0.18);
  color: var(--public-primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* =========================================
   TRUST BADGES
========================================= */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 38px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--public-success-soft);
  border: 1px solid rgba(25, 135, 84, 0.18);
  color: var(--public-success);
  font-size: 0.9rem;
  font-weight: 800;
}

/* =========================================
   FOOTER
========================================= */
.public-footer {
  margin-top: 0;
  padding: 56px 0;
  background: var(--public-header-bg);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.public-footer h3,
.public-footer h4 {
  color: #ffffff;
}

.public-footer p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-column a {
  display: block;
  margin-top: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.76);
}

.footer-column a:hover {
  color: #ffffff;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 980px) {
  .solution-flow {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 640px) {
  .solution-flow {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
  }
}
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

/* =========================================
   PRIMARY
========================================= */
.btn-primary {
  background: var(--public-primary);
  color: #ffffff;
  border: 1px solid var(--public-primary);
  box-shadow: 0 8px 20px rgba(0, 85, 165, 0.18);
}

.btn-primary:hover {
  background: var(--public-primary-dark);
  border-color: var(--public-primary-dark);
  transform: translateY(-2px);
}

/* =========================================
   SECONDARY
========================================= */
.btn-secondary {
  background: #ffffff;
  color: var(--public-primary);
  border: 1px solid var(--public-border);
}

.btn-secondary:hover {
  background: var(--public-primary-soft);
  border-color: rgba(0, 85, 165, 0.25);
}

/* =========================================
   GHOST
========================================= */
.btn-ghost {
  background: transparent;
  color: var(--public-primary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: var(--public-primary-soft);
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 640px) {
  .btn-primary,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }
}
.hero-card,
.module-card,
.target-card,
.trust-card,
.diff-card,
.flow-step {
  position: relative;
  background: var(--public-surface);
  border: 1px solid var(--public-border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

/* =========================================
   HOVER
========================================= */
.hero-card:hover,
.module-card:hover,
.target-card:hover,
.trust-card:hover,
.diff-card:hover,
.flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 85, 165, 0.28);
  box-shadow: var(--shadow-card);
}

/* =========================================
   HERO CARD
========================================= */
.hero-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================================
   LABELS
========================================= */
.hero-card-label {
  color: var(--public-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

/* =========================================
   CARD TOP
========================================= */
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* =========================================
   STATUS DOT
========================================= */
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--public-success);
  box-shadow: 0 0 0 4px var(--public-success-soft);
}

/* =========================================
   HEADINGS
========================================= */
.hero-card h4,
.module-card h3,
.target-card h3,
.trust-card h3,
.diff-card h3,
.flow-step h3 {
  margin-bottom: 12px;
  color: var(--public-heading);
  font-size: 1.18rem;
  font-weight: 800;
}

/* =========================================
   TEXT
========================================= */
.hero-card p,
.module-card p,
.target-card p,
.trust-card p,
.diff-card p,
.flow-step p {
  margin-bottom: 0;
  color: var(--public-muted);
  line-height: 1.65;
}

/* =========================================
   STANDARD CARD HEIGHT
========================================= */
.module-card,
.target-card,
.trust-card,
.diff-card {
  min-height: 180px;
}

/* =========================================
   HIGHLIGHT CARD
========================================= */
.diff-card.highlight {
  border-color: rgba(0, 85, 165, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, var(--public-primary-soft) 100%);
}

/* =========================================
   FLOW STEP
========================================= */
.flow-step {
  min-height: 190px;
}

.section {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 980px) {
  /* =========================================
     HERO GRID
  ========================================= */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  /* =========================================
     NAVIGATION
  ========================================= */
  .public-nav {
    display: none;
  }
  /* =========================================
     SECTION SPACING
  ========================================= */
  .section {
    padding: clamp(64px, 10vw, 92px) 0;
  }
  /* =========================================
     HEADLINES
  ========================================= */
  h1 {
    font-size: clamp(2.4rem, 9vw, 4rem);
    line-height: 1.04;
  }
  h2 {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.08;
  }
}
/* =========================================
   MOBILE
========================================= */
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container-width));
  }
  /* =========================================
     HERO
  ========================================= */
  .hero {
    padding-top: 52px;
    padding-bottom: 64px;
  }
  /* =========================================
     EYEBROW
  ========================================= */
  .eyebrow {
    font-size: 0.72rem;
    line-height: 1.4;
  }
  /* =========================================
     H1
  ========================================= */
  h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
    letter-spacing: -0.04em;
  }
  /* =========================================
     H2
  ========================================= */
  h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    letter-spacing: -0.03em;
  }
  /* =========================================
     TEXT
  ========================================= */
  .lead,
  .subtitle {
    font-size: 1.02rem;
    line-height: 1.7;
  }
  /* =========================================
     HERO MESSAGE
  ========================================= */
  .hero-core-message {
    padding: 16px;
  }
  /* =========================================
     VISUAL
  ========================================= */
  .hero-visual {
    gap: 14px;
  }
  /* =========================================
     CARDS
  ========================================= */
  .hero-card,
  .module-card,
  .target-card,
  .trust-card,
  .diff-card,
  .flow-step {
    border-radius: 20px;
    padding: 22px;
  }
  .module-card,
  .target-card,
  .trust-card,
  .diff-card,
  .flow-step {
    min-height: auto;
  }
}
.contact-page,
.pilot-page {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* =========================================
   GRID
========================================= */
.contact-grid,
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* =========================================
   CARDS
========================================= */
.contact-card,
.contact-form-card,
.pilot-card {
  padding: 48px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

/* =========================================
   HIGHLIGHT
========================================= */
.pilot-card.highlight {
  background: linear-gradient(180deg, rgba(0, 85, 165, 0.05), rgba(255, 255, 255, 0.96));
}

/* =========================================
   FORMS
========================================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--public-heading);
}

/* =========================================
   INPUTS
========================================= */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: white;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--public-heading);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0055a5;
  box-shadow: 0 0 0 4px rgba(0, 85, 165, 0.1);
}

/* =========================================
   LISTS
========================================= */
.contact-list,
.pilot-list {
  margin: 28px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--public-muted);
  line-height: 1.7;
}

/* =========================================
   TRUST BADGES
========================================= */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 85, 165, 0.08);
  color: #0055a5;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {
  .contact-grid,
  .pilot-grid {
    grid-template-columns: 1fr;
  }
  .contact-card,
  .contact-form-card,
  .pilot-card {
    padding: 32px;
  }
}

/*# sourceMappingURL=public.css.map */
