:root {
  --bg: #f7f4ec;
  --bg-soft: #efe8da;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #27312c;
  --muted: #667169;
  --line: rgba(31, 37, 33, 0.12);
  --accent: #0d7b63;
  --accent-deep: #0a5847;
  --accent-soft: rgba(13, 123, 99, 0.12);
  --sand: #d6c4a0;
  --shadow: 0 18px 60px rgba(25, 31, 26, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 196, 160, 0.28), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(13, 123, 99, 0.12), transparent 22%),
    linear-gradient(180deg, #f6f0e5 0%, #f7f4ec 38%, #f8f7f1 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(31, 37, 33, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 37, 33, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 85%);
}
.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 48px;
}
.topbar {
  position: relative;
  z-index: 50;
  margin: 18px 0 24px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(247, 244, 236, 0.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(31, 37, 33, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(24, 29, 24, 0.06);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(31,37,33,0.08);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(24,29,24,0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-copy { display: grid; }
.brand-copy strong { font-size: 0.96rem; }
.brand-copy small { color: var(--muted); }
.nav { display: flex; gap: 22px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(31,37,33,0.1);
  background: rgba(255,255,255,0.74);
  border-radius: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  display: block;
}

.nav-cta {
  display: none;
}

.nav a, .footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.nav a:hover, .footer-links a:hover { color: var(--text); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px; border-radius: 999px; border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff;
  font-weight: 600; text-decoration: none; box-shadow: 0 12px 28px rgba(13, 123, 99, 0.18);
}
.button:hover { transform: translateY(-1px); }
.button-ghost { background: rgba(255, 255, 255, 0.7); border-color: rgba(31, 37, 33, 0.12); color: var(--text); box-shadow: none; }
.button-small { padding: 12px 18px; font-size: 0.95rem; }
.topbar-cta {
  color: var(--text) !important;
  font-weight: 600;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(13, 123, 99, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: 18px;
  height: 18px;
  display: inline-block;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 4px;
}

.brand-logo-button {
  width: 19px;
  height: 19px;
  border-radius: 5px;
}

.web-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--sand));
  flex: 0 0 auto;
}


.channel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(31,37,33,0.1);
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
}

.channel-badge-neutral {
  color: var(--muted);
}

.inline-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hero {
  display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 26px; align-items: start; padding: 36px 0 54px;
}
.eyebrow {
  margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-deep); font-weight: 800; font-size: 0.78rem;
}
.hero h1, .section-head h2, .cta-box h2 {
  margin: 0; font-family: "Plus Jakarta Sans", "Inter", sans-serif; line-height: 1.08; font-weight: 600; letter-spacing: -0.03em;
}
.hero h1 { font-size: clamp(2.05rem, 3.9vw, 3.55rem); max-width: 17ch; text-wrap: balance; }
.hero-lead, .section-head p, .hero-subline, .cta-box p, .footer p { color: var(--muted); line-height: 1.7; }
.hero-lead { margin: 22px 0 0; max-width: 62ch; font-size: 1rem; }
.hero-subline { margin: 14px 0 0; font-weight: 500; color: var(--text); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 18px; }
.hero-pricing { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-weight: 700; }
.hero-support-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  margin-top: 18px;
}

.support-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(31,37,33,0.08);
  box-shadow: 0 14px 34px rgba(24,29,24,0.06);
}

.support-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

.support-card .mini-list {
  margin-top: 12px;
}

.admin-teaser .dashboard-grid {
  margin-top: 14px;
  grid-template-columns: 1fr;
}

.admin-teaser .card-label,
.payment-teaser .card-label {
  margin-bottom: 8px;
}

.admin-teaser .dashboard-grid > div {
  max-width: 92%;
}

.admin-teaser .dashboard-grid > div:last-child {
  max-width: 88%;
}

.price-card .channel-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.channel-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 600;
  color: var(--muted);
  transform: translateY(-1px);
}

.hero-visual { display: grid; grid-template-columns: 1fr; gap: 18px; align-content: start; }
.device-card, .info-card, .pain-card, .flow-card, .scenario-card, .compare-card, .price-card, .admin-shot, .mockup-placeholder, .cta-box, .impact-grid article, .solution-list > div, .admin-points > div, .timeline > div, .faq-list details {
  background: var(--surface); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.66); box-shadow: var(--shadow);
}
.device-card { padding: 22px; border-radius: var(--radius-xl); }
.client-card {
  padding: 20px;
}

.client-card h3 {
  font-size: 1.14rem;
}

.client-card .card-note {
  max-width: 44ch;
}

@media (min-width: 821px) {
  .hero-visual {
    max-width: 342px;
    justify-self: center;
    align-self: start;
    margin-left: 0;
  }
  .client-card {
    padding: 14px;
  }
  .shot-frame {
    padding: 6px;
  }
  .live-shot {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .client-card .card-note {
    margin-top: 10px;
  }
}

.wide-card { grid-column: auto; }
.accent-card { background: linear-gradient(180deg, rgba(13, 123, 99, 0.1), rgba(255, 255, 255, 0.88)); }
.card-label, .card-note { color: var(--muted); font-size: 0.92rem; }
.card-label { margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.device-card h3, .info-card h3, .scenario-card h3, .compare-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.chat-thread { display: grid; gap: 10px; margin: 18px 0; }
.shot-frame {
  margin: 18px 0 14px;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(238,243,245,0.88));
  border: 1px solid rgba(31,37,33,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.live-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(22, 28, 24, 0.16);
}

.admin-shot {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.admin-shot-frame {
  margin: 0;
  padding: 12px;
}

.admin-dashboard-shot {
  width: 100%;
  height: auto;
  aspect-ratio: 1942 / 1284;
  object-fit: cover;
  object-position: center top;
}

.bubble { padding: 12px 14px; border-radius: 16px; max-width: 88%; line-height: 1.5; }
.bubble-user { margin-left: auto; background: rgba(13, 123, 99, 0.12); }
.bubble-bot { background: rgba(31, 37, 33, 0.06); }
.chip-row, .pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip, .pill-grid span { padding: 10px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.78); border: 1px solid var(--line); font-weight: 700; }
.chip.selected { background: var(--accent); color: #fff; }
.mini-list, .compare-card ul, .price-card ul { margin: 14px 0 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.dashboard-grid, .admin-layout, .solution-grid, .compare-grid, .pricing-grid, .scenario-grid, .impact-grid, .pain-grid, .audience-grid { display: grid; gap: 18px; }
.dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section { padding: 60px 0; }
.audience {
  padding-top: 34px;
}

.section-head { max-width: 900px; margin-bottom: 24px; }
.section-head h2, .cta-box h2 { font-size: clamp(1.45rem, 2.2vw, 2.05rem); text-wrap: balance; }
.audience-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.info-card, .pain-card, .scenario-card, .impact-grid article, .solution-list > div, .admin-points > div, .timeline > div, .faq-list details, .price-card, .compare-card { border-radius: var(--radius-lg); padding: 22px; }
.info-card span { color: var(--accent-deep); font-weight: 800; }
.pain-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pain-card strong, .impact-grid strong, .solution-list strong, .admin-points strong, .timeline strong, .price-top strong { display: block; margin-bottom: 8px; }
.solution-grid { grid-template-columns: 1.05fr 0.95fr; }
.solution-list { display: grid; gap: 16px; }
.flow-card {
  border-radius: var(--radius-xl); padding: 24px; display: grid; gap: 12px;
  background: linear-gradient(180deg, rgba(214, 196, 160, 0.22), rgba(255, 255, 255, 0.82));
}
.flow-step {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px; border-radius: 16px; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(31, 37, 33, 0.08);
}
.flow-step span, .timeline span {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-deep); color: #fff; font-weight: 800; flex: 0 0 auto;
}
.scenario-grid, .impact-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.admin-layout { grid-template-columns: 1.2fr 0.8fr; }
.mockup-placeholder {
  min-height: 380px; border-radius: var(--radius-lg); display: grid; place-items: center; text-align: center; color: var(--muted); border-style: dashed;
  background: linear-gradient(135deg, rgba(13, 123, 99, 0.08), rgba(255, 255, 255, 0.85));
}
.admin-points { display: grid; gap: 16px; }
.compare-grid, .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compare-card.muted { background: rgba(31, 37, 33, 0.04); }
.compare-card.strong, .price-card.featured { background: linear-gradient(180deg, rgba(13, 123, 99, 0.12), rgba(255, 255, 255, 0.96)); border-color: rgba(13, 123, 99, 0.18); }
.price-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.price-top span, .setup { color: var(--muted); }
.timeline { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.timeline > div { display: grid; gap: 14px; }
.faq-list { display: grid; gap: 14px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.cta-box {
  border-radius: 36px; padding: 34px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 26px;
  background: linear-gradient(135deg, rgba(10, 88, 71, 0.96), rgba(13, 123, 99, 0.84)); color: #fff;
}
.cta-box .eyebrow, .cta-box p, .cta-box small { color: rgba(255, 255, 255, 0.78); }
.cta-actions { display: grid; align-content: center; gap: 12px; }
.cta-actions .button { background: #fff; color: var(--accent-deep); box-shadow: none; }
.cta-actions .button-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.footer {
  padding: 40px 0 16px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(31, 37, 33, 0.08);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 1120px) {
  .hero, .solution-grid, .admin-layout, .cta-box, .hero-support-grid { grid-template-columns: 1fr; }
  .audience-grid, .pain-grid, .scenario-grid, .impact-grid, .compare-grid, .pricing-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .page-shell { width: min(calc(100% - 20px), var(--max-width)); }
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-radius: 24px;
    padding: 12px;
  }
  .brand {
    min-width: 0;
    gap: 10px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .brand-copy strong {
    font-size: 0.92rem;
    line-height: 1.15;
  }
  .brand-copy small {
    font-size: 0.77rem;
    line-height: 1.15;
  }
  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .topbar-cta {
    display: none;
  }
  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    gap: 8px;
  }
  .topbar.menu-open .nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(31,37,33,0.08);
    text-align: center;
    font-size: 0.92rem;
    white-space: nowrap;
  }
  .nav-cta {
    display: flex;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff !important;
    border-color: transparent;
    font-weight: 600;
  }
  .hero {
    padding-top: 14px;
    gap: 18px;
  }
  .hero h1 { max-width: none; }
  .channel-badges {
    gap: 8px;
  }
  .channel-badge {
    font-size: 0.88rem;
    padding: 8px 11px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin: 22px 0 16px;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }
  .hero-pricing {
    gap: 8px 14px;
  }
  .hero-support-grid,
  .hero-visual,
  .dashboard-grid,
  .audience-grid,
  .pain-grid,
  .scenario-grid,
  .impact-grid,
  .compare-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .support-card,
  .client-card {
    padding: 16px;
  }
  .wide-card { grid-column: auto; }
  .footer { flex-direction: column; }
  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}


.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.hero, .topbar, .footer, .cta, .section.cta {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}
img[loading="lazy"] {
  will-change: auto;
}
