:root {
  color-scheme: light;
  --green-50: #ebfbf3;
  --green-100: #cff5e1;
  --green-200: #9feac3;
  --green-400: #2bc07e;
  --green-500: #13a66b;
  --green-600: #0e8a58;
  --green-700: #0b7048;
  --green-900: #08442d;
  --amber-50: #fff8eb;
  --amber-400: #f2a81e;
  --amber-500: #e08c09;
  --n-0: #fff;
  --n-25: #f7faf8;
  --n-50: #f1f5f3;
  --n-100: #e7edea;
  --n-200: #d6deda;
  --n-500: #6f7c74;
  --n-600: #525e57;
  --n-700: #3b453f;
  --n-800: #28302b;
  --n-900: #18201b;
  --primary: var(--green-500);
  --primary-hover: var(--green-600);
  --primary-strong: var(--green-700);
  --surface: var(--n-0);
  --surface-soft: var(--n-25);
  --text: var(--n-800);
  --text-strong: var(--n-900);
  --text-muted: var(--n-600);
  --border: var(--n-200);
  --shadow-sm: 0 2px 8px rgba(8, 68, 45, 0.07);
  --shadow-md: 0 14px 38px rgba(8, 68, 45, 0.12);
  --shadow-lg: 0 28px 80px rgba(8, 68, 45, 0.16);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1180px;
  --font: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--primary-strong);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.legal-page .site-header {
  border-color: rgba(214, 222, 218, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 22px rgba(8, 68, 45, 0.05);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand span span {
  color: var(--primary-strong);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links > a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 150ms ease;
}

.nav-links > a:hover {
  color: var(--primary-strong);
}

.nav-links > .btn-primary,
.nav-links > .btn-primary:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 8px 20px rgba(19, 166, 107, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(19, 166, 107, 0.3);
}

.btn-secondary {
  color: var(--primary-strong);
  border-color: var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.87rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--primary-strong);
  background: #fff;
}

.menu-button svg {
  width: 22px;
  margin: auto;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 154px 0 108px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(19, 166, 107, 0.13), transparent 30%),
    radial-gradient(circle at 88% 23%, rgba(242, 168, 30, 0.13), transparent 27%),
    linear-gradient(180deg, #f7faf8 0%, #fff 90%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -280px;
  bottom: -180px;
  border: 70px solid rgba(19, 166, 107, 0.05);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid var(--green-200);
  border-radius: 999px;
  color: var(--primary-strong);
  background: rgba(235, 251, 243, 0.76);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(19, 166, 107, 0.12);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text-strong);
  letter-spacing: -0.048em;
  line-height: 1.1;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.4vw, 4.9rem);
}

.hero h1 strong {
  position: relative;
  color: var(--primary-strong);
  font-weight: 800;
}

.hero-copy > p {
  max-width: 610px;
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

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

.microcopy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 21px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.microcopy svg {
  width: 17px;
  color: var(--primary);
}

.product-scene {
  position: relative;
  min-height: 510px;
}

.dashboard-card {
  position: absolute;
  inset: 20px 0 auto 0;
  padding: 21px;
  border: 1px solid rgba(214, 222, 218, 0.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.mock-brand .brand-mark {
  width: 28px;
  height: 28px;
}

.mock-avatar {
  width: 32px;
  height: 32px;
  border: 4px solid var(--green-50);
  border-radius: 50%;
  background: var(--green-200);
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mock-stat {
  padding: 15px;
  border: 1px solid var(--n-100);
  border-radius: var(--radius-md);
  background: var(--n-25);
}

.mock-stat span {
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.mock-stat strong {
  display: block;
  margin-top: 7px;
  color: var(--text-strong);
  font-size: 1.32rem;
  letter-spacing: -0.04em;
}

.mock-stat:first-child {
  background: var(--green-50);
}

.schedule {
  padding: 18px;
  border: 1px solid var(--n-100);
  border-radius: 20px;
}

.schedule-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--text-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.schedule-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--n-100);
}

.schedule-time {
  color: var(--primary-strong);
  font-size: 0.71rem;
  font-weight: 800;
}

.schedule-info strong,
.schedule-info span {
  display: block;
}

.schedule-info strong {
  color: var(--text-strong);
  font-size: 0.72rem;
}

.schedule-info span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.61rem;
}

.status {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--primary-strong);
  background: var(--green-50);
  font-size: 0.56rem;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--n-100);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.floating-card svg {
  width: 23px;
  height: 23px;
  padding: 5px;
  box-sizing: content-box;
  border-radius: 10px;
  color: var(--primary-strong);
  background: var(--green-50);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--text-strong);
  font-size: 0.76rem;
}

.floating-card span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.65rem;
}

.floating-confirmed {
  right: -23px;
  bottom: 50px;
}

.floating-payment {
  left: -30px;
  top: 0;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -42px;
  border: 1px solid var(--n-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--n-100);
}

.trust-icon,
.feature-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--primary-strong);
  background: var(--green-50);
}

.trust-icon svg,
.feature-icon svg {
  width: 21px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--text-strong);
  font-size: 0.87rem;
}

.trust-item span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--n-25);
}

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

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 17px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 28px;
  border: 1px solid var(--n-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  position: relative;
  min-height: 410px;
  padding: 42px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.audience-card:first-child {
  color: #fff;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
}

.audience-card:last-child {
  border: 1px solid var(--green-100);
  background: linear-gradient(145deg, var(--green-50), #fff);
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 45px solid currentColor;
  border-radius: 50%;
  opacity: 0.06;
}

.audience-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.audience-card h3 {
  max-width: 430px;
  margin: 19px 0 16px;
  color: inherit;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.audience-card > p {
  max-width: 450px;
  margin: 0 0 27px;
  line-height: 1.7;
  opacity: 0.8;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list svg {
  width: 19px;
  color: var(--amber-400);
}

.audience-card:last-child .check-list svg {
  color: var(--primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step {
  position: relative;
  text-align: center;
}

.step + .step::before {
  content: "";
  position: absolute;
  top: 27px;
  right: calc(50% + 42px);
  width: calc(100% - 84px);
  border-top: 2px dashed var(--green-200);
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  place-items: center;
  border: 7px solid var(--green-50);
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 0 0 1px var(--green-200);
  font-weight: 800;
}

.step h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.step p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cta-wrap {
  padding: 0 0 112px;
}

.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 58px;
  border-radius: var(--radius-xl);
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  box-shadow: var(--shadow-lg);
}

.cta::after {
  content: "";
  position: absolute;
  inset: auto -70px -140px auto;
  width: 320px;
  height: 320px;
  border: 52px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.cta h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.cta .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  color: var(--green-900);
  background: #fff;
  box-shadow: none;
}

.site-footer {
  padding: 54px 0 26px;
  border-top: 1px solid var(--n-100);
  background: var(--n-25);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 50px;
  padding-bottom: 42px;
}

.footer-about p {
  max-width: 380px;
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer-column strong {
  display: block;
  margin-bottom: 15px;
  color: var(--text-strong);
  font-size: 0.8rem;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-top: 11px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.footer-column a:hover {
  color: var(--primary-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--n-100);
  color: var(--text-muted);
  font-size: 0.76rem;
}

.legal-page {
  background: var(--n-25);
}

.legal-hero {
  padding: 150px 0 62px;
  border-bottom: 1px solid var(--n-100);
  background:
    radial-gradient(circle at 20% 0, rgba(19, 166, 107, 0.11), transparent 32%),
    #fff;
}

.legal-hero .container {
  max-width: 880px;
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 4.2rem);
}

.legal-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-meta {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  border: 1px solid var(--green-100);
  border-radius: 999px;
  color: var(--primary-strong);
  background: var(--green-50);
  font-size: 0.75rem;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 56px;
  max-width: 1020px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.legal-toc {
  position: sticky;
  top: 106px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--n-100);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text-strong);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-toc a {
  display: block;
  padding: 7px 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--primary-strong);
}

.legal-content {
  padding: 42px;
  border: 1px solid var(--n-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-content section {
  scroll-margin-top: 110px;
}

.legal-content section + section {
  padding-top: 26px;
  margin-top: 26px;
  border-top: 1px solid var(--n-100);
}

.legal-content h2 {
  margin-bottom: 13px;
  font-size: 1.3rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.78;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 12px 0;
  padding-left: 21px;
}

.legal-content a {
  color: var(--primary-strong);
  font-weight: 700;
}

.legal-note {
  padding: 17px 19px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--green-50);
}

@media (max-width: 980px) {
  .hero {
    padding-top: 135px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .product-scene {
    width: min(100%, 620px);
    margin: auto;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--n-100);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    padding: 13px;
  }

  .nav-links .btn {
    margin-top: 6px;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 92px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .product-scene {
    min-height: 430px;
  }

  .dashboard-card {
    padding: 15px;
  }

  .floating-card {
    display: none;
  }

  .mock-stat {
    padding: 12px 9px;
  }

  .mock-stat strong {
    font-size: 1rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: -31px;
  }

  .trust-item {
    padding: 18px 21px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--n-100);
    border-left: 0;
  }

  .section {
    padding: 84px 0;
  }

  .feature-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 0;
    padding: 30px 25px;
  }

  .step + .step::before {
    display: none;
  }

  .cta-wrap {
    padding-bottom: 84px;
  }

  .cta {
    display: block;
    padding: 38px 25px;
  }

  .cta .btn {
    margin-top: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }

  .legal-hero {
    padding-top: 120px;
  }

  .legal-layout {
    padding-top: 35px;
    padding-bottom: 70px;
  }

  .legal-content {
    padding: 27px 22px;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .schedule-row {
    grid-template-columns: 38px 1fr;
  }

  .schedule-row .status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
