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

:root {
  --font-main: Arial, Helvetica, sans-serif;
  --bg: #ffffff;
  --surface: #f7f8fa;
  --border: #e5e7eb;
  --text: #1f2328;
  --muted: #57606a;
  --accent: #1a6fcc;
  --accent2: #29aaee;
  --accent-dark: #0e4ea3;
  --accent-cyan: #17b9df;
  --accent-sky: #0b8fdc;
  --accent-ice: #43b9f2;
  --product-navy: #081427;
  --product-blue: #0c2c44;
  --product-teal: #0e6e74;
  --product-cyan: #36d8ff;
  --product-mint: #7df0db;
  --soft-blue: #eef7ff;
  --soft-cyan: #e6fbff;
  --soft-teal: #e8fbfb;
  --soft-mint: #ecfffb;
  --soft-deep-blue: #edf5ff;
  --soft-sky: #e8f6ff;
  --nav-h: 100px;
  --anchor-offset: 168px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-main);
}

body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: #fbfdff;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(229,231,235,.9);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 28px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--nav-h);
}

.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.site-logo {
  display: block;
  width: auto;
}

.site-logo-nav {
  height: 180px;
  transform: translateX(-18px) scale(1.14);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 18px;
  color: var(--muted);
  font-weight: 800;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--product-teal) 100%);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(26,111,204,.16);
}

section {
  padding: 24px 24px 72px;
  scroll-margin-top: var(--anchor-offset);
}
.container { max-width: 1180px; margin: 0 auto; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f9ff 0%, #eef8ff 48%, #ffffff 100%);
  text-align: center;
  padding: 34px 24px 42px;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(54,216,255,.42) 0, rgba(54,216,255,0) 30%),
    radial-gradient(circle at 82% 12%, rgba(125,240,219,.34) 0, rgba(125,240,219,0) 28%),
    radial-gradient(circle at 50% 72%, rgba(26,111,204,.14) 0, rgba(26,111,204,0) 36%);
  animation: heroBlueDrift 7s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  top: -22%;
  left: -18%;
  width: 52%;
  height: 72%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(54,216,255,.30) 0, rgba(54,216,255,.18) 28%, rgba(54,216,255,0) 68%);
  filter: blur(18px);
  animation: heroBlueSweep 11s ease-in-out infinite alternate;
}

.hero > * {
  position: relative;
  z-index: 1;
}

@keyframes heroBlueDrift {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(1);
  }
  50% {
    transform: translate3d(6%, 3%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(-2%, 7%, 0) scale(1.03);
  }
}

@keyframes heroBlueSweep {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .45;
  }
  50% {
    transform: translate3d(70%, 18%, 0) scale(1.18);
    opacity: .7;
  }
  100% {
    transform: translate3d(145%, 2%, 0) scale(1.08);
    opacity: .5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-icon-track {
    animation: none;
  }
}

.hero-icon-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.hero-icon-track {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  animation: heroBubbleMove 24s linear infinite;
}

.hero-icon-row:hover .hero-icon-track {
  animation-play-state: paused;
}

.hero-icon-row span {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--product-blue);
  background: linear-gradient(180deg, #fff 0%, #f3fbff 100%);
  border: 1px solid #d7e9f7;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(26,111,204,.06);
}

.hero-icon-row span:nth-child(1),
.hero-icon-row span:nth-child(4) {
  color: var(--accent-dark);
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
  border-color: #c8e4ff;
}

.hero-icon-row span:nth-child(2),
.hero-icon-row span:nth-child(5) {
  color: var(--product-teal);
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-teal) 100%);
  border-color: #c6ecef;
}

.hero-icon-row span:nth-child(3),
.hero-icon-row span:nth-child(6),
.hero-icon-row span:nth-child(7),
.hero-icon-row span:nth-child(10),
.hero-icon-row span:nth-child(13),
.hero-icon-row span:nth-child(14) {
  color: var(--accent-sky);
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-cyan) 100%);
  border-color: #c5ecf7;
}

.hero-icon-row span:nth-child(8),
.hero-icon-row span:nth-child(11) {
  color: var(--accent-dark);
  background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
  border-color: #c8e4ff;
}

.hero-icon-row span:nth-child(9),
.hero-icon-row span:nth-child(12) {
  color: var(--product-teal);
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-teal) 100%);
  border-color: #c6ecef;
}

@keyframes heroBubbleMove {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.hero-icon-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hero h1 {
  font-size: clamp(36px, 5.1vw, 66px);
  font-weight: 900;
  line-height: .98;
  max-width: 1050px;
  margin: 0 auto 24px;
  letter-spacing: 0;
}

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

.hero p {
  font-size: 22px;
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
}

.btn-primary {
  background: var(--product-navy);
  color: #fff;
  box-shadow: 0 14px 28px rgba(8,20,39,.18);
}

.btn-primary:hover,
.btn-white:hover {
  opacity: .9;
  text-decoration: none;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid #d4d7dc;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.stats-bar {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 24px;
}

.stats-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stats-grid > div {
  --stat-accent: var(--accent);
  --stat-soft: #eef7ff;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  border-top: 4px solid var(--stat-accent);
  border-radius: 12px;
  padding: 22px 16px;
  box-shadow: 0 12px 30px rgba(15,23,42,.05);
}

.stats-grid > div:nth-child(2) { --stat-accent: var(--accent-dark); --stat-soft: var(--soft-deep-blue); }
.stats-grid > div:nth-child(3) { --stat-accent: var(--accent-sky); --stat-soft: var(--soft-sky); }
.stats-grid > div:nth-child(4) { --stat-accent: var(--accent2); --stat-soft: var(--soft-cyan); }

.stat-val {
  font-size: 30px;
  font-weight: 900;
  color: var(--stat-accent);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin: 3px auto 0;
  max-width: 240px;
}

.section-tag {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  display: none;
}

.section-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--muted);
  margin: 4px 0 32px;
  max-width: 1060px;
}

#fonctionnalites {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

#produit {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

#reference {
  background: linear-gradient(135deg, #f4f9ff 0%, var(--soft-mint) 46%, #ffffff 78%);
  border-bottom: 1px solid var(--border);
}

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

.feature-card {
  position: relative;
  --card-accent: var(--accent);
  --card-soft: #eef7ff;
  background: linear-gradient(180deg, var(--card-soft) 0, #fff 50px);
  border: 1px solid var(--border);
  border-top: 5px solid var(--card-accent);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:nth-child(1) { --card-accent: var(--accent); --card-soft: var(--soft-blue); }
.feature-card:nth-child(2) { --card-accent: var(--product-teal); --card-soft: var(--soft-teal); }
.feature-card:nth-child(3) { --card-accent: var(--accent-sky); --card-soft: var(--soft-cyan); }
.feature-card:nth-child(4) { --card-accent: var(--accent2); --card-soft: var(--soft-cyan); }
.feature-card:nth-child(5) { --card-accent: #1464b8; --card-soft: #edf7ff; }
.feature-card:nth-child(6) { --card-accent: var(--product-teal); --card-soft: var(--soft-mint); }
.feature-card:nth-child(7) { --card-accent: #2387d9; --card-soft: #eef8ff; }
.feature-card:nth-child(8) { --card-accent: var(--accent-dark); --card-soft: var(--soft-deep-blue); }

.solution-title {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 900;
  max-width: 1120px;
  margin-bottom: 18px;
}

.solution-intro {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
  max-width: 1060px;
  margin: 0 0 28px;
}

.solution-intro p + p {
  margin-top: 6px;
}

.feature-number {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--card-accent);
  font-size: 24px;
  font-weight: 900;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15,23,42,.08);
  border-color: var(--card-accent);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, var(--card-soft) 100%);
  border: 1px solid rgba(26,111,204,.12);
  color: var(--card-accent);
  box-shadow: 0 12px 24px rgba(14,110,116,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px auto;
}

.feature-icon.teal,
.feature-icon.green,
.feature-icon.orange {
  background: #fff;
}

.feature-icon svg [stroke] {
  stroke: currentColor;
}

.feature-icon svg [fill]:not([fill="none"]) {
  fill: currentColor;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--card-soft);
  color: var(--card-accent);
  font-size: 11px;
  font-weight: 800;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.feature-list li {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
  padding-left: 12px;
}

.feature-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--card-accent);
  font-weight: 800;
}

.product-mockup {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: 0 22px 50px rgba(15,23,42,.09);
}

.mockup-bar {
  background: var(--accent);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-bar span {
  margin-left: 10px;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  opacity: .92;
}

.dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }
.d1 { background: #fc5c5c; }
.d2 { background: #fdbc40; }
.d3 { background: #33c748; }

.mockup-body { padding: 24px; }

.mockup-title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--muted);
}

.schedule-wrap {
  overflow-x: auto;
  padding-bottom: 2px;
}

.schedule-grid {
  min-width: 760px;
  display: grid;
  grid-template-columns: 128px repeat(7, 1fr);
  gap: 5px;
  font-size: 12px;
}

.sg-header {
  background: var(--accent);
  color: #fff;
  padding: 8px 6px;
  text-align: center;
  font-weight: 800;
  border-radius: 6px;
}

.sg-agent { background: var(--muted); }

.sg-name {
  background: #edf5ff;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
}

.sg-cell {
  padding: 8px 5px;
  border-radius: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.shift-m { background: #dbeafe; color: #1d4ed8; }
.shift-s { background: #dcfce7; color: #166534; }
.shift-n { background: #e0e7ff; color: #3730a3; }
.shift-r { background: #f3f4f6; color: var(--muted); }
.shift-x { background: #fef9c3; color: #854d0e; }

.legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 12px;
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.leg-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.case-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent2));
  margin-bottom: 8px;
}

.reference-card {
  display: flex;
  justify-content: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 38px 32px;
  box-shadow: 0 18px 44px rgba(15,23,42,.06);
}

.reference-copy {
  max-width: 760px;
}

.reference-logo {
  display: block;
  width: min(360px, 100%);
  height: auto;
  margin: 0 auto 24px;
}

.reference-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 10px;
}

.reference-copy p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.reference-copy a {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 800;
}

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

#contact {
  background:
    radial-gradient(circle at 88% 8%, rgba(54,216,255,.12) 0%, transparent 30%),
    linear-gradient(135deg, var(--surface) 0%, #f3fbff 52%, var(--soft-mint) 100%);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-item strong {
  min-width: 60px;
  color: var(--text);
}

.contact-item span { color: var(--muted); }

.contact-form {
  background: #fff;
  border: 1px solid #d7e9f7;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 16px 38px rgba(14,110,116,.08);
}

.hp-field {
  display: none !important;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group label.required::after {
  content: "*";
  color: #b42318;
  font-weight: 900;
  opacity: 1;
  transform: translateY(-1px);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9ec9ef;
  box-shadow: 0 0 0 4px rgba(41,170,238,.12);
}

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

.form-submit {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.form-submit:hover { opacity: .9; }

.form-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  padding: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.form-status.success {
  padding: 12px 14px;
  color: #0e6e74;
  background: #e8fbfb;
  border: 1px solid #bfecef;
}

.form-status.error {
  padding: 12px 14px;
  color: #b42318;
  background: #fff1f0;
  border: 1px solid #ffd1cc;
}

@media (max-width: 920px) {
  :root {
    --anchor-offset: 190px;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 20px 16px;
  }

  .site-logo-nav {
    height: 150px;
  }

  .nav-links {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
  }

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

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

@media (max-width: 640px) {
  section { padding: 22px 18px 56px; }

  .hero {
    padding: 34px 18px 58px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions a {
    width: 100%;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

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

  .reference-card {
    padding: 22px;
  }

  .mockup-body {
    padding: 16px;
  }

  .mockup-bar span {
    font-size: 12px;
  }
}

/* Démo animée Cynaks intégrée dans la section Produit */
.cyp { max-width: 1000px; margin: 0 auto; }
.cyp .ti { display: inline-flex; align-items: center; justify-content: center; font-style: normal; line-height: 1; }
.cyp .ti::before { content: "•"; }
.cyp .ti-layout-grid::before { content: "▦"; }
.cyp .ti-calendar-stats::before { content: "▣"; }
.cyp .ti-beach::before { content: "☼"; }
.cyp .ti-users::before { content: "👥"; font-size: .9em; }
.cyp .ti-chart-bar::before { content: "▥"; }
.cyp .ti-sitemap::before { content: "⌘"; }
.cyp .ti-building-hospital::before { content: "⌂"; }
.cyp .ti-door::before { content: "▯"; }
.cyp .ti-shield-lock::before { content: "◆"; }
.cyp .ti-palette::before { content: "◐"; }
.cyp .ti-adjustments::before,
.cyp .ti-adjustments-bolt::before { content: "⚙"; }
.cyp .ti-file-export::before { content: "⇩"; }
.cyp .ti-history::before { content: "↺"; }
.cyp .ti-calendar-agenda {
  width: 38px;
  height: 34px;
  border: 4px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.cyp .ti-calendar-agenda::before {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 5px;
  height: 7px;
  background: currentColor;
  border-radius: 0;
  box-shadow: none;
}

.cyp .ti-calendar-agenda::after {
  content: "";
  position: absolute;
  left: 7px;
  top: -9px;
  width: 5px;
  height: 9px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 15px 0 0 currentColor;
}
.cyp .ti-arrow-right::before { content: "→"; }
.cyp .ti-chevron-left::before { content: "‹"; }
.cyp .ti-chevron-right::before { content: "›"; }
.cyp .ti-circle-check::before { content: "✓"; }
.cyp .cy { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg,#081427 0%,#0c2c44 55%,#0e6e74 100%); color: #fff; user-select: none; box-shadow: 0 22px 50px rgba(15,23,42,.12); }
.cyp .cy * { box-sizing: border-box; }
.cyp .cy-win { position: absolute; top: 21%; left: 50%; transform: translateX(-50%); width: 72%; height: 56%; background: #0f1d2e; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.08); opacity: 0; }
.cyp .cy.go .cy-win { opacity: 1; transition: opacity .5s; }
.cyp .cy-bar { height: 26px; background: #0a1626; display: flex; align-items: center; gap: 6px; padding: 0 11px; border-bottom: 1px solid rgba(255,255,255,.06); }
.cyp .cy-bar .d { width: 9px; height: 9px; border-radius: 50%; }
.cyp .cy-bar .d1 { background: #ff5f57; }
.cyp .cy-bar .d2 { background: #febc2e; }
.cyp .cy-bar .d3 { background: #28c840; }
.cyp .cy-bar .url { margin-left: 8px; font-size: 10px; color: #7fa6c8; background: #0f2236; border-radius: 5px; padding: 2px 10px; }
.cyp .cy-body { position: relative; height: calc(100% - 26px); background: #fff; }
.cyp .screen { position: absolute; inset: 0; display: flex; opacity: 0; transform: translateY(8px); transition: opacity .45s, transform .45s; }
.cyp .screen.on { opacity: 1; transform: none; }
.cyp .side { width: 50px; background: #0e1f33; flex-shrink: 0; padding: 8px 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cyp .side .sdot { width: 24px; height: 24px; border-radius: 7px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #7fb5d8; font-size: 13px; }
.cyp .side .sdot.on { background: #36d8ff; color: #06233a; }
.cyp .sidew { width: 116px; background: #0e1f33; flex-shrink: 0; padding: 9px 8px; color: #cfe3f2; }
.cyp .sidew .grp { font-size: 8px; text-transform: uppercase; letter-spacing: .1em; color: #5f86a6; margin: 7px 4px 4px; }
.cyp .sidew .it { display: flex; align-items: center; gap: 6px; font-size: 10px; padding: 4px 6px; border-radius: 6px; }
.cyp .sidew .it.on { background: #13476a; color: #fff; }
.cyp .sidew .it i { font-size: 12px; color: #36d8ff; }
.cyp .main { flex: 1; padding: 10px 12px; color: #1f2c3a; min-width: 0; }
.cyp .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 9px; }
.cyp .ttl { font-size: 12px; font-weight: 700; color: #16324a; }
.cyp .badge { font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.cyp .b-green { background: #dcfce7; color: #15803d; }
.cyp .b-blue { background: #e0f2fe; color: #0369a1; }
.cyp .row { display: grid; grid-template-columns: 46px repeat(6,1fr); gap: 4px; margin-bottom: 4px; }
.cyp .hcell { font-size: 8px; color: #94a3b8; text-align: center; align-self: center; }
.cyp .lcell { font-size: 8px; color: #64748b; align-self: center; }
.cyp .cell { height: 16px; border-radius: 4px; background: #f1f5f9; }
.cyp .p-green { background: #bbf7d0; }
.cyp .p-blue { background: #bae6fd; }
.cyp .p-amber { background: #fde68a; }
.cyp .p-red { background: #fecaca; }
.cyp .p-tele { background: #a7f3d0; }
.cyp .legend { display: flex; gap: 10px; margin-top: 7px; font-size: 8px; color: #64748b; }
.cyp .legend span { display: flex; align-items: center; gap: 4px; }
.cyp .legend i { width: 9px; height: 9px; border-radius: 3px; display: inline-block; }
.cyp .cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.cyp .card { border: 1px solid #e6edf3; border-radius: 8px; padding: 8px; }
.cyp .card .ci { width: 22px; height: 22px; border-radius: 6px; background: #e0f2fe; color: #0369a1; display: flex; align-items: center; justify-content: center; font-size: 13px; margin-bottom: 6px; }
.cyp .card .ct { font-size: 9px; font-weight: 700; color: #1f2c3a; }
.cyp .card .cs { font-size: 8px; color: #94a3b8; margin-top: 2px; }
.cyp .leave { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-top: 4px; }
.cyp .lh { font-size: 8px; color: #94a3b8; text-align: center; }
.cyp .ld { height: 28px; border-radius: 5px; background: #f1f5f9; position: relative; }
.cyp .lblk { position: absolute; left: 2px; right: 2px; border-radius: 4px; height: 11px; font-size: 7px; color: #fff; display: flex; align-items: center; justify-content: center; }
.cyp .l-conge { background: #16a34a; top: 3px; }
.cyp .l-rtt { background: #2563eb; top: 15px; }
.cyp .l-form { background: #7c3aed; top: 3px; }
.cyp .people { display: flex; flex-direction: column; gap: 5px; }
.cyp .prow { display: flex; align-items: center; gap: 8px; border: 1px solid #eef2f6; border-radius: 7px; padding: 5px 8px; }
.cyp .av { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; color: #fff; flex-shrink: 0; }
.cyp .pn { font-size: 9px; font-weight: 700; color: #1f2c3a; line-height: 1.1; }
.cyp .pm { font-size: 7.5px; color: #94a3b8; }
.cyp .rchip { margin-left: auto; font-size: 8px; font-weight: 600; padding: 2px 9px; border-radius: 99px; }
.cyp .r-med { background: #e0f2fe; color: #0369a1; }
.cyp .r-mani { background: #d1fae5; color: #0f766e; }
.cyp .r-admin { background: #ede9fe; color: #6d28d9; }
.cyp .r-resp { background: #fef3c7; color: #92400e; }
.cyp .kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 8px; }
.cyp .kpi { background: #f5f9fc; border: 1px solid #eef2f6; border-radius: 7px; padding: 6px 8px; }
.cyp .kpi .kv { font-size: 15px; font-weight: 700; color: #0e6e74; line-height: 1; }
.cyp .kpi .kl { font-size: 7.5px; color: #94a3b8; margin-top: 3px; }
.cyp .chart { display: flex; align-items: flex-end; gap: 7px; height: 48px; padding: 4px 6px 0; border-top: 1px solid #eef2f6; }
.cyp .chcol { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.cyp .bar { width: 100%; background: linear-gradient(#36d8ff,#0e6e74); border-radius: 3px 3px 0 0; }
.cyp .chx { font-size: 7px; color: #94a3b8; }
.cyp .cy-cap { position: absolute; left: 0; right: 0; bottom: 46px; text-align: center; padding: 0 12%; z-index: 7; }
.cyp .cap-eye { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #7df0db; opacity: 0; }
.cyp .cy.go .cap-eye { animation: cyr .5s both; }
.cyp .cap-h { font-size: 19px; font-weight: 700; margin: 4px 0 0; opacity: 0; }
.cyp .cy.go .cap-h { animation: cyr .5s .08s both; }
.cyp .cy-hero { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 8%; z-index: 9; opacity: 0; transition: opacity .5s; }
.cyp .cy-hero.off { pointer-events: none; }
.cyp .hero-lg { min-width: 80px; height: 80px; border-radius: 20px; background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; padding: 0 14px; overflow: hidden; }
.cyp .hero-lg img { width: 120px; max-height: 120px; object-fit: contain; display: block; transform: scale(1.85); }
.cyp .hero-lg i { font-size: 42px; color: #0e6e74; }
.cyp .hero-h { font-size: 30px; font-weight: 700; margin: 0; }
.cyp .grad { background: linear-gradient(90deg,#7df0db,#bdf0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cyp .hero-s { font-size: 15px; color: rgba(255,255,255,.82); margin-top: 10px; max-width: 80%; }
.cyp .hero-cta { margin-top: 18px; background: #36d8ff; color: #06233a; border: none; border-radius: 99px; padding: 11px 24px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; text-decoration: none; }
.cyp .hero-proof { margin-top: 14px; font-size: 11px; color: rgba(255,255,255,.72); }
.cyp .hero-proof b { color: #fff; }
.cyp .hero-proof i { color: #7df0db; }
.cyp .cy-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.14); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 12; transition: background .2s, transform .2s, color .2s; }
.cyp .cy-arrow:hover { background: #36d8ff; color: #06233a; transform: translateY(-50%) scale(1.1); }
.cyp .cy-arrow i { font-size: 20px; }
.cyp .cy-arrow.prev { left: 14px; }
.cyp .cy-arrow.next { right: 14px; }
.cyp .cy-controls { display: none; }
.cyp .dots { display: none; }
.cyp .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .25s; border: none; padding: 0; }
.cyp .dot.on { background: #36d8ff; width: 20px; border-radius: 99px; }
.cyp .icb { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.cyp .icb i { font-size: 14px; }
.cyp .pbar { position: absolute; bottom: 0; left: 0; height: 3px; background: #36d8ff; width: 0; }
@keyframes cyr { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 560px) {
  .cyp .hero-h { font-size: 22px; }
  .cyp .cap-h { font-size: 14px; }
  .cyp .cy-win { width: 86%; }
  .cyp .cy-arrow { width: 32px; height: 32px; }
}

@media (max-width: 1100px) {
  :root {
    --anchor-offset: 132px;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .site-logo-nav {
    height: 138px;
    transform: translateX(-12px) scale(1.08);
  }

  .nav-links {
    width: auto;
    margin-left: auto;
    gap: 18px;
  }

  .nav-links a {
    font-size: 16px;
  }

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

  .cyp {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-h: 84px;
    --anchor-offset: 108px;
  }

  nav {
    height: var(--nav-h);
  }

  .nav-inner {
    min-height: var(--nav-h);
    flex-direction: row;
    align-items: center;
    padding: 0 14px 0 8px;
    gap: 12px;
  }

  .site-logo-nav {
    height: 112px;
    transform: translateX(-10px) scale(1.06);
  }

  .nav-links {
    width: auto;
    margin-left: auto;
    gap: 8px;
    justify-content: flex-end;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    width: auto;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  section {
    padding: 26px 18px 58px;
  }

  .hero {
    padding: 26px 18px 38px;
  }

  .hero-icon-row {
    max-width: 100%;
    margin-bottom: 24px;
    padding: 2px 0 10px;
  }

  .hero h1 {
    font-size: clamp(34px, 8vw, 54px);
    line-height: 1.04;
  }

  .hero p,
  .section-sub,
  .solution-intro {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero p {
    margin-bottom: 28px;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-white {
    min-height: 46px;
    padding: 11px 18px;
  }

  .section-tag {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .cyp .cy {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }

  .cyp .cy-win {
    top: 18%;
    width: 84%;
    height: 50%;
  }

  .cyp .cy-cap {
    bottom: 42px;
    padding: 0 16%;
  }

  .cyp .hero-h {
    font-size: 26px;
    line-height: 1.15;
  }

  .cyp .hero-s {
    max-width: 92%;
    font-size: 13px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  :root {
    --nav-h: 84px;
    --anchor-offset: 104px;
  }

  body {
    font-size: 14px;
  }

  .nav-inner {
    padding: 0 10px 0 4px;
  }

  .site-logo-nav {
    height: 136px;
    transform: translateX(-12px) scale(1.1);
  }

  .nav-cta {
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 7px;
  }

  section {
    padding: 22px 14px 46px;
  }

  .container {
    max-width: 100%;
  }

  .hero {
    padding: 22px 14px 34px;
  }

  .hero h1 {
    font-size: clamp(30px, 10vw, 42px);
    max-width: 100%;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .section-sub,
  .solution-intro {
    font-size: 16px;
  }

  .features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-number {
    top: 20px;
    left: 20px;
  }

  .reference-card,
  .contact-form {
    border-radius: 12px;
    padding: 20px;
  }

  .reference-logo {
    width: min(280px, 100%);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .cyp .cy {
    aspect-ratio: 3 / 4.4;
  }

  .cyp .cy-win {
    top: 16%;
    width: 88%;
    height: 52%;
    border-radius: 10px;
  }

  .cyp .cy-bar {
    height: 22px;
  }

  .cyp .cy-bar .url {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cyp .side {
    width: 36px;
    gap: 4px;
  }

  .cyp .side .sdot {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .cyp .sidew {
    width: 82px;
    padding: 7px 5px;
  }

  .cyp .sidew .it {
    font-size: 8px;
    gap: 4px;
  }

  .cyp .main {
    padding: 8px;
  }

  .cyp .ttl {
    font-size: 10px;
  }

  .cyp .badge {
    font-size: 7px;
    padding: 2px 6px;
  }

  .cyp .row {
    grid-template-columns: 34px repeat(6, 1fr);
    gap: 3px;
  }

  .cyp .cell {
    height: 12px;
  }

  .cyp .legend {
    gap: 6px;
    font-size: 7px;
  }

  .cyp .cards,
  .cyp .kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .cyp .people {
    gap: 4px;
  }

  .cyp .prow {
    padding: 4px 6px;
    gap: 6px;
  }

  .cyp .rchip {
    font-size: 7px;
    padding: 2px 6px;
  }

  .cyp .cy-arrow {
    width: 30px;
    height: 30px;
  }

  .cyp .cy-arrow.prev {
    left: 8px;
  }

  .cyp .cy-arrow.next {
    right: 8px;
  }

  .cyp .cy-cap {
    bottom: 34px;
    padding: 0 12%;
  }

  .cyp .cap-eye {
    font-size: 9px;
  }

  .cyp .cap-h {
    font-size: 14px;
  }

  .cyp .hero-lg {
    min-width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .cyp .hero-lg i {
    font-size: 34px;
  }

  .cyp .hero-h {
    font-size: 23px;
  }

  .cyp .hero-s {
    font-size: 12px;
    max-width: 96%;
  }
}

@media (max-width: 380px) {
  .site-logo-nav {
    height: 124px;
    transform: translateX(-12px) scale(1.08);
  }

  .nav-cta {
    max-width: 132px;
    white-space: normal;
    line-height: 1.15;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-icon-row span {
    font-size: 12px;
    padding: 7px 11px;
  }
}
