* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #333333;
  --text: #334155;
  --muted: #64748b;
  --line: #d8dee8;
  --blue: #2f6fd6;
  --green: #07845f;
  --orange: #c2410c;
  --shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
}

a {
  color: inherit;
}

.page {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar {
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #ffffff;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.2;
}

.brand span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

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

.nav a,
.footer a,
.contact-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 34px;
  align-items: center;
  padding: 38px 0 56px;
}

.hero.policy {
  display: block;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(38px, 5.6vw, 58px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.primary:hover {
  background: #056f50;
}

.button.secondary {
  border-color: #f8b26a;
  background: #fff7ed;
  color: #9a3412;
}

.screenshot {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.band {
  padding: 52px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.feature-copy h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.feature-copy p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

.grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

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

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 24px 0 54px;
}

.card,
.policy-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.policy-card.wide {
  grid-column: 1 / -1;
}

.card h3,
.policy-card h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
}

.card p,
.policy-card p,
.policy-card li {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.policy-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.price {
  color: var(--green);
  font-size: 36px;
  font-weight: 650;
  line-height: 1.1;
}

.notice {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 14px;
  line-height: 1.5;
}

.footer {
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .hero,
  .grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 28px, 640px);
  }

  .topbar {
    display: grid;
  }
}
