:root {
  --bg: #f7faf8;
  --surface: #fff;
  --surface-soft: #f9fbfa;
  --surface-tint: #eef7f4;
  --surface-tint-2: #edf8f4;
  --ink: #0d3b4f;
  --ink-soft: #5f6f79;
  --line: rgba(148, 163, 184, 0.24);
  --line-strong: #d8ebe5;
  --brand: #16a085;
  --brand-dark: #12886f;
  --brand-soft: #3ba88f;
  --accent: #f08b3e;
  --shadow-sm: 0 10px 30px rgba(13, 59, 79, 0.06);
  --shadow-md: 0 20px 60px rgba(13, 59, 79, 0.08);
  --shadow-lg: 0 30px 80px rgba(13, 59, 79, 0.12);
  --container: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: #1f2937;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.site-shell {
  position: relative;
  overflow: clip;
}
.top-glow {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
  height: 560px;
}
.top-glow:before {
  content: "";
  display: block;
  width: min(calc(100% - 32px), var(--container));
  height: 100%;
  margin: 0 auto;
  border-radius: 0 0 48px 48px;
  background:
    radial-gradient(
      circle at top left,
      rgba(61, 168, 144, 0.16),
      transparent 38%
    ),
    radial-gradient(
      circle at top right,
      rgba(12, 55, 79, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #fff 0%, #eef7f4 100%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(100%, 420px);
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a.active,
.nav a:hover {
  color: var(--ink);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  padding: 0 0 18px;
}
.mobile-nav.open {
  display: grid;
  gap: 8px;
}
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  color: #475569;
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 700;
  transition: 0.2s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 40px rgba(22, 160, 133, 0.22);
}
.btn-primary:hover {
  background: var(--brand-dark);
}
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: rgba(13, 59, 79, 0.12);
  box-shadow: var(--shadow-sm);
}
.btn-header {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}
.hero {
  padding: 56px 0 84px;
}
.hero-grid,
.audience-grid,
.why-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(59, 168, 143, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.hero h1 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}
.hero h1 .accent-text {
  color: var(--brand-soft);
}
.lead {
  margin: 24px 0 0;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.mini-stats,
.cards-grid,
.offer-grid,
.modules-grid,
.products-grid,
.benefits-list,
.soft-tiles,
.form-grid {
  display: grid;
  gap: 16px;
}
.mini-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}
.mini-stat,
.card,
.module-card,
.product-card,
.info-panel,
.contact-form,
.hero-panel,
.about-panel,
.note-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
}
.mini-stat {
  padding: 18px;
  border-radius: 24px;
}
.icon-wrap,
.offer-check {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--surface-tint-2);
  color: var(--brand);
}
.mini-stat-title {
  margin-top: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}
.mini-stat-text {
  margin-top: 6px;
  color: #64748b;
  font-size: 0.92rem;
}
.hero-visual {
  position: relative;
}
.hero-visual:before,
.hero-visual:after {
  content: "";
  position: relative;
  border-radius: 999px;
  filter: blur(30px);
  z-index: 0;
}
.hero-visual:before {
  left: -12px;
  top: -12px;
  width: 144px;
  height: 144px;
  background: #cceee5;
}
.hero-visual:after {
  right: -18px;
  bottom: -18px;
  width: 144px;
  height: 144px;
  background: #dceaf3;
}
.hero-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 32px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.hero-illustration {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 16px;
  background: linear-gradient(180deg, #f6fbf9 0%, #fff 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
}
.orb-1 {
  left: 40px;
  top: 40px;
  width: 224px;
  height: 224px;
  background: #def2eb;
}
.orb-2 {
  right: 40px;
  top: 64px;
  width: 160px;
  height: 160px;
  background: #eaf2f8;
}
.hero-illustration-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 16px;
}
.stack {
  display: grid;
  gap: 16px;
 }
.ui-card {
  position: relative;
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
.ui-meta,
.excel-head,
.product-preview-head,
.product-meta,
.section-top-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ui-label,
.section-kicker,
.price-kicker,
.slogan-kicker {
  color: var(--brand);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}
.ui-title,
.section h2,
.card h3,
.module-card h3,
.product-card h3 {
  margin: 0;
  color: var(--ink);
}
.ui-title {
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}
.badge,
.pill-note,
.module-index,
.product-tag,
.format-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface-tint-2);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.rows {
  display: grid;
  gap: 12px;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.line {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
}
.w-72 {
  width: 72%;
}
.w-58 {
  width: 58%;
}
.w-80 {
  width: 80%;
}
.w-52 {
  width: 52%;
}
.two-up,
.cards-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.small-ui-card,
.card {
  padding: 24px;
  border-radius: 28px;
}
.small-ui-card {
  border: 1px solid var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.small-ui-card h4 {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.small-ui-card p,
.section-text,
.card p,
.module-card p,
.product-card p,
.about-panel p,
.note-panel p,
.contact-box li {
  color: var(--ink-soft);
  line-height: 1.75;
}
.excel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.excel-cell {
  height: 32px;
  border-radius: 10px;
  background: #eff4f3;
}
.excel-cell.header {
  background: var(--brand);
}
.excel-cell.muted {
  background: #d8ebe5;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 20px;
  height: 56px;
}
.bar {
  width: 100%;
  border-radius: 12px 12px 0 0;
  background: #8cd4c3;
}
.haccp {
  background: var(--ink);
  color: #fff;
}
.haccp-kicker {
  color: #a7f3d0;
}
.audit-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  font-weight: 700;
}
.steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.step {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.step.active {
  background: var(--accent);
}
.step-line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.section {
  padding: 84px 0;
}
.section-soft {
  background: rgba(255, 255, 255, 0.72);
}
.section-tint {
  background: linear-gradient(180deg, #fff 0%, #eef7f4 100%);
}
.section-head {
  max-width: 760px;
}
.compact {
  max-width: 640px;
}
.section h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.section-text {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.85;
}
.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}
.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}
.offer-item,
.module-card,
.product-card {
  transition: 0.2s;
}
.offer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.offer-item:hover,
.card:hover,
.module-card:hover,
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offer-text {
  color: #475569;
  font-weight: 600;
}
.audience-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.info-panel,
.about-panel,
.note-panel,
.contact-form {
  border-radius: 32px;
  padding: 32px;
}
.audience-list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.audience-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: var(--bg);
  color: #475569;
}
.audience-bullet {
  color: var(--brand);
  margin-top: 2px;
}
.card-emoji {
  font-size: 1.9rem;
}
.modules-grid,
.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}
.module-card,
.product-card {
  overflow: hidden;
  border-radius: 30px;
}
.module-top,
.product-top {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, #eff8f5 0%, #fff 100%);
  border-bottom: 1px solid rgba(241, 245, 249, 1);
}
.module-index,
.product-tag {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.module-index {
  position: absolute;
  top: 20px;
  right: 24px;
}
.module-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 2rem;
}
.module-body,
.product-body {
  padding: 24px;
}
.why-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}
.benefits-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}
.benefit-chip {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: #475569;
  font-size: 0.95rem;
  font-weight: 600;
}
.slogan-box {
  margin-top: 32px;
  padding: 24px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.slogan-box p:last-child {
  margin: 12px 0 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: 700;
}
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.category-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}
.product-preview {
  margin-top: 24px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.soft-tiles {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}
.soft-tile {
  padding: 16px 10px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: #f7fbf9;
  color: #64748b;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.price {
  margin-top: 6px;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 800;
}
.about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.contact-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.contact-box {
  margin-top: 32px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(180deg, #eff8f5 0%, #fff 100%);
  box-shadow: var(--shadow-sm);
}
.contact-box ul {
  margin: 20px 0 0;
  padding-left: 18px;
}
.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 1);
  background: var(--surface-soft);
  color: #0f172a;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--brand-soft);
  box-shadow: 0 0 0 4px rgba(167, 243, 208, 0.65);
  background: #fff;
}
.form-feedback {
  margin-top: 14px;
  min-height: 24px;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 600;
}
.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  background: #fff;
}
.footer-row {
  gap: 24px;
  padding: 40px 0;
}
.footer-title {
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 700;
}
.footer-copy {
  margin-top: 8px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a {
  color: #64748b;
  font-size: 0.95rem;
}
.footer-nav a:hover {
  color: var(--ink);
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1080px) {
  .hero-grid,
  .audience-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .hero-illustration-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offer-grid,
  .modules-grid,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 840px) {
  .brand-logo {
    height: 56px;
    max-width: 320px;
  }
  .nav,
  .btn-header {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .mini-stats,
  .two-up,
  .benefits-list,
  .form-grid,
  .cards-grid,
  .offer-grid,
  .modules-grid,
  .products-grid,
  .soft-tiles,
  .cards-grid.two {
    grid-template-columns: 1fr;
  }
  .hero,
  .section {
    padding: 64px 0;
  }
  .hero-panel,
  .info-panel,
  .about-panel,
  .note-panel,
  .contact-form,
  .contact-box {
    padding: 24px;
  }
  .footer-row,
  .header-row,
  .section-top-row,
  .product-meta {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .top-glow:before {
    width: min(calc(100% - 24px), var(--container));
    border-radius: 0 0 32px 32px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .brand-logo {
    height: 48px;
    max-width: 260px;
  }
}
