:root {
  color-scheme: light;
  --ink: #162024;
  --muted: #5d696f;
  --line: #dfe6e8;
  --paper: #f7faf9;
  --panel: #ffffff;
  --accent: #0b7a75;
  --accent-strong: #075e5a;
  --warm: #f2b84b;
  --rose: #ce5d5d;
  --shadow: 0 18px 50px rgba(22, 32, 36, 0.12);
}

* {
  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(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(223, 230, 232, 0.82);
  background: rgba(247, 250, 249, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(290px, 0.94fr);
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  padding: clamp(46px, 8vw, 94px) clamp(18px, 4vw, 56px) 42px;
  background:
    linear-gradient(110deg, rgba(11, 122, 117, 0.12), rgba(242, 184, 75, 0.16) 47%, rgba(206, 93, 93, 0.1)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.06rem;
}

.lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: #334047;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #101719;
  color: #fff;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.18;
}

.btn-appstore svg {
  flex-shrink: 0;
}

.btn-appstore span {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 800;
}

.btn-appstore small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-appstore {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.phone {
  width: min(360px, 100%);
  margin-inline: auto;
  border: 10px solid #101719;
  border-radius: 38px;
  background: #eef4f3;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-screen {
  padding: 18px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-top img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 122, 117, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
}

.invoice-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.invoice-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #eef2f3;
  color: #425058;
  font-size: 0.9rem;
}

.invoice-line.total {
  border-bottom: 0;
  color: var(--ink);
  font-weight: 900;
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 56px);
}

.section.alt {
  background: #fff;
}

.section > .section-heading,
.content {
  max-width: 1060px;
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  max-width: 1060px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.card p,
.content p,
.content li {
  color: var(--muted);
}

.card p {
  margin: 10px 0 0;
}

.list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 880px;
  margin-inline: auto;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.price-card.highlight {
  border-color: rgba(11, 122, 117, 0.42);
  box-shadow: var(--shadow);
}

.price {
  margin-top: 14px;
  font-size: 1.55rem;
  font-weight: 900;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  max-width: 880px;
  margin-inline: auto;
}

.content h1 {
  font-size: clamp(2.25rem, 5vw, 4.3rem);
}

.content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.content p {
  margin: 12px 0 0;
}

.notice {
  border-left: 4px solid var(--warm);
  background: #fff8e8;
  padding: 14px 16px;
  color: #604919;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

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

  .phone {
    max-width: 330px;
  }
}
