:root {
  --forest: #123f33;
  --forest-2: #176f4f;
  --orange: #f16818;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --sage: #dfe9df;
  --line: #d8ddd5;
  --muted: #5f726a;
  --shadow: 0 20px 55px rgba(18, 63, 51, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(241, 104, 24, 0.45);
  outline-offset: 3px;
}
[hidden] { display: none !important; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 126px; height: 58px; object-fit: contain; }
.site-header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.site-header nav > a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.language-switcher {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}
.language-switcher button {
  width: 40px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.language-switcher button[aria-pressed="true"] {
  background: var(--forest);
  color: var(--paper);
}

main { overflow: hidden; }
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: 72px 0 100px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 82px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.25; }
.hero-text {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 19px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--forest); color: var(--paper); }
.button.secondary { background: transparent; color: var(--forest); }
.button.light { border-color: var(--paper); background: var(--paper); color: var(--forest); }

.app-preview {
  min-height: 500px;
  padding: 26px;
  border: 1px solid rgba(18, 63, 51, 0.12);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
}
.preview-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.preview-date { margin-left: auto; color: var(--muted); font-size: 10px; letter-spacing: 0.12em; }
.preview-card { margin-top: 32px; padding: 27px; border-radius: 26px; }
.accent-card { background: var(--orange); color: var(--paper); }
.preview-card span, .preview-card small { display: block; opacity: 0.82; }
.preview-card strong { display: block; margin: 8px 0; font-size: 29px; line-height: 1.15; }
.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.preview-stats div { padding: 20px 12px; border-radius: 20px; background: var(--sage); }
.preview-stats strong, .preview-stats span { display: block; }
.preview-stats strong { font-size: 20px; }
.preview-stats span { margin-top: 4px; color: var(--muted); font-size: 11px; }
.preview-chart {
  height: 145px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border-radius: 24px;
  background: var(--forest);
}
.preview-chart i { flex: 1; border-radius: 999px 999px 4px 4px; background: var(--cream); opacity: 0.92; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0;
}
.section-heading { max-width: 720px; margin-bottom: 46px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card, .support-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
}
.feature-card p, .support-card p { color: var(--muted); }
.feature-number { display: block; margin-bottom: 54px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.split-panel {
  margin-top: 30px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  border-radius: 32px;
  background: var(--forest);
  color: var(--paper);
}
.split-panel p:not(.eyebrow) { color: rgba(255, 253, 248, 0.75); font-size: 19px; }
.disclaimer {
  max-width: 900px;
  padding: 70px 0 100px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.page-main { width: min(980px, calc(100% - 40px)); margin: 0 auto; overflow: visible; }
.page-hero { padding: 90px 0 70px; max-width: 800px; }
.page-hero h1 { font-size: clamp(48px, 7vw, 78px); }
.page-hero > p:not(.eyebrow) { max-width: 680px; margin-bottom: 28px; color: var(--muted); font-size: 19px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.support-card { min-height: 290px; }
.support-card a { color: var(--orange); font-weight: 800; }
.faq-section { width: 100%; padding: 110px 0 70px; }
details {
  border-top: 1px solid var(--line);
  padding: 0;
}
details:last-child { border-bottom: 1px solid var(--line); }
summary {
  padding: 22px 36px 22px 0;
  position: relative;
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 500;
}
details[open] summary::after { content: "−"; }
details p { max-width: 780px; padding: 0 30px 22px 0; color: var(--muted); }
.contact-panel {
  margin: 30px 0 100px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 28px;
  background: var(--orange);
  color: var(--paper);
}
.contact-panel .eyebrow { color: var(--paper); opacity: 0.75; }
.contact-panel h2 { margin-bottom: 0; font-size: clamp(24px, 4vw, 38px); }

.legal-main { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 100px; }
.legal-main h1 { font-size: clamp(44px, 7vw, 72px); }
.legal-intro { max-width: 680px; color: var(--muted); font-size: 18px; }
.legal-card { padding: 28px; margin: 16px 0; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.legal-card h2 { font-size: 22px; letter-spacing: -0.02em; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--orange); font-weight: 700; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 130px;
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.site-footer div:first-child { display: flex; flex-direction: column; }
.site-footer span { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }

@media (max-width: 820px) {
  .site-header { min-height: 78px; }
  .site-header nav { gap: 14px; }
  .brand img { width: 92px; height: 46px; }
  .hero { min-height: auto; padding: 55px 0 80px; grid-template-columns: 1fr; gap: 55px; }
  .app-preview { max-width: 560px; transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split-panel { padding: 42px; grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 560px) {
  .site-header { width: min(100% - 28px, 1180px); }
  .site-header nav > a { display: none; }
  .hero, .section, .page-main, .site-footer, .legal-main { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 40px; }
  h1 { font-size: 48px; }
  .hero-text, .page-hero > p:not(.eyebrow) { font-size: 17px; }
  .actions .button { width: 100%; }
  .app-preview { min-height: 420px; padding: 18px; border-radius: 28px; }
  .preview-stats { grid-template-columns: 1fr 1fr; }
  .preview-stats div:last-child { grid-column: span 2; }
  .preview-chart { height: 110px; }
  .section { padding: 70px 0; }
  .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .feature-card, .support-card { min-height: 230px; }
  .feature-number { margin-bottom: 36px; }
  .split-panel { padding: 30px; }
  .page-hero { padding: 60px 0 50px; }
  .contact-panel { padding: 30px; align-items: stretch; flex-direction: column; }
  .contact-panel h2 { overflow-wrap: anywhere; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
