:root {
  --green: #1b946f;
  --green-dark: #0f644f;
  --green-deep: #093f34;
  --green-soft: #dff8ee;
  --mint: #f0fffa;
  --white: #ffffff;
  --ink: #12332b;
  --muted: #5c746d;
  --line: #d8ebe5;
  --red: #c83e45;
  --red-soft: #fff0f1;
  --shadow: 0 18px 50px rgba(12, 80, 62, 0.09);
  --shadow-small: 0 8px 24px rgba(12, 80, 62, 0.07);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--green-deep);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.3vw, 5rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  font-weight: 740;
}

h3 {
  font-size: 1.22rem;
}

[hidden] {
  display: none !important;
}

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

.section-pad {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-deep);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid #e3a32b;
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(216, 235, 229, 0.86);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 28px rgba(7, 70, 53, 0.035);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 48px;
  gap: 10px;
}

.brand-logo-wrap {
  display: grid;
  width: 46px;
  height: 46px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.brand-logo {
  width: 61px;
  max-width: none;
  height: 61px;
  object-fit: cover;
}

.brand-name {
  color: var(--green-deep);
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: #3d5a52;
  font-size: 0.92rem;
  font-weight: 620;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--green-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: flex;
  padding: 4px;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mint);
}

.lang-button {
  min-width: 38px;
  min-height: 36px;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 760;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.lang-button:hover {
  color: var(--green-dark);
}

.lang-button.is-active {
  color: var(--green-deep);
  background: var(--white);
  box-shadow: 0 3px 10px rgba(12, 80, 62, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  gap: 10px;
  border: 1px solid var(--green-dark);
  border-radius: 13px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 9px 24px rgba(15, 100, 79, 0.16);
  cursor: pointer;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  border-color: var(--green-deep);
  background: var(--green-deep);
  box-shadow: 0 12px 28px rgba(9, 63, 52, 0.22);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.button-secondary {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
}

.button-full {
  width: 100%;
  margin-top: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 5px;
  background: var(--green-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 30px rgba(8, 65, 51, 0.1);
}

.mobile-nav {
  display: grid;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding: 18px 0 24px;
}

.mobile-nav > a:not(.button) {
  min-height: 50px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 650;
}

.mobile-nav .button {
  margin-top: 18px;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: calc(var(--header-height) + 82px);
  overflow: hidden;
  background: var(--mint);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-orb-one {
  top: 80px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(27, 148, 111, 0.055);
}

.hero-orb-two {
  bottom: -150px;
  left: 42%;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(450px, 0.97fr);
  gap: clamp(40px, 6vw, 84px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 19px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 790;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(27, 148, 111, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

.live-dot {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(27, 148, 111, 0.12);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: #49675f;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 34px;
  gap: 12px;
}

.store-button {
  min-width: 190px;
  justify-content: flex-start;
}

.store-button .button-icon {
  font-size: 1.3rem;
}

.store-button span:last-child {
  display: grid;
  text-align: left;
}

.store-button small {
  font-size: 0.65rem;
  font-weight: 550;
}

.store-button strong {
  font-size: 1rem;
}

.quick-benefits {
  display: grid;
  max-width: 680px;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  list-style: none;
}

.quick-benefits li {
  display: flex;
  align-items: center;
  color: #3f5e56;
  font-size: 0.91rem;
  font-weight: 620;
}

.quick-benefits li > span:first-child {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  margin-right: 9px;
  border-radius: 9px;
  color: var(--green-dark);
  background: var(--white);
  box-shadow: var(--shadow-small);
  place-items: center;
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.desktop-mockup {
  position: absolute;
  top: 34px;
  right: 0;
  width: 95%;
  max-width: 530px;
  overflow: hidden;
  border: 8px solid #173f35;
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 34px 75px rgba(5, 61, 46, 0.2);
  transform: rotate(1.2deg);
}

.desktop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.mini-brand {
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-brand span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 3px;
  background: var(--green);
}

.mini-avatar,
.mock-avatar {
  display: grid;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  place-items: center;
  font-weight: 750;
}

.mini-avatar {
  width: 28px;
  height: 28px;
  font-size: 0.6rem;
}

.desktop-body {
  display: grid;
  min-height: 330px;
  grid-template-columns: 52px 1fr;
}

.mini-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 26px;
  gap: 22px;
  background: #f7fbfa;
}

.mini-sidebar i {
  width: 18px;
  height: 18px;
  border: 2px solid #b7cec7;
  border-radius: 6px;
}

.mini-sidebar i.active {
  border-color: var(--green);
  background: var(--green-soft);
}

.ticket-area {
  padding: 25px 24px 30px;
}

.mock-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-heading-row div {
  display: grid;
}

.mock-heading-row small {
  color: var(--muted);
  font-size: 0.57rem;
}

.mock-heading-row b {
  color: var(--green-deep);
  font-size: 1.05rem;
}

.mock-add {
  display: grid;
  width: 31px;
  height: 31px;
  border-radius: 9px;
  color: var(--white);
  background: var(--green-dark);
  place-items: center;
  font-size: 1.15rem;
}

.mock-ticket {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.mock-ticket.featured {
  border-color: rgba(27, 148, 111, 0.24);
  box-shadow: var(--shadow-small);
}

.mock-ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.mock-ticket-head b {
  color: var(--muted);
  font-size: 0.66rem;
}

.mock-ticket > strong {
  color: var(--green-deep);
  font-size: 0.75rem;
}

.mock-ticket p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.6rem;
}

.status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 720;
  line-height: 1.2;
}

.status-work {
  color: #126f54;
  background: #dcf7ed;
}

.status-confirm {
  color: #805910;
  background: #fff4d3;
}

.phone-mockup {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: -22px;
  width: 230px;
  padding: 9px;
  border: 3px solid #173f35;
  border-radius: 34px;
  background: #173f35;
  box-shadow: 0 26px 55px rgba(5, 61, 46, 0.26);
  transform: rotate(-3deg);
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  width: 64px;
  height: 14px;
  border-radius: 999px;
  background: #173f35;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 460px;
  overflow: hidden;
  border-radius: 25px;
  background: #f8fcfb;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 35px;
  padding: 10px 15px 0;
  color: var(--green-deep);
  font-size: 0.49rem;
  font-weight: 700;
}

.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--green-deep);
  font-size: 0.75rem;
}

.phone-content {
  padding: 17px 14px;
}

.phone-content h3 {
  margin: 12px 0 18px;
  font-size: 0.95rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.55rem;
}

.detail-row b {
  color: var(--ink);
}

.mock-file {
  display: flex;
  align-items: center;
  margin-top: 14px;
  padding: 9px;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.mock-file > span {
  display: grid;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--green-soft);
  place-items: center;
}

.mock-file div {
  display: grid;
}

.mock-file b,
.mock-file small {
  font-size: 0.5rem;
}

.mock-file small {
  color: var(--muted);
}

.mock-message {
  display: flex;
  align-items: flex-start;
  margin-top: 14px;
  gap: 8px;
}

.mock-avatar {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  font-size: 0.47rem;
}

.mock-message p {
  margin: 0;
  padding: 8px;
  border-radius: 4px 10px 10px;
  background: var(--green-soft);
  font-size: 0.51rem;
  line-height: 1.45;
}

.floating-note {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 52px;
  display: flex;
  align-items: center;
  width: 220px;
  padding: 13px;
  gap: 10px;
  border: 1px solid rgba(27, 148, 111, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.floating-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green);
  place-items: center;
}

.floating-note div {
  display: grid;
}

.floating-note b {
  color: var(--green-deep);
  font-size: 0.68rem;
}

.floating-note small {
  color: var(--muted);
  font-size: 0.55rem;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 30px;
}

.trust-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 620;
}

.platform-list {
  display: flex;
  align-items: center;
  color: var(--green-deep);
  gap: 18px;
  font-size: 0.86rem;
  font-weight: 720;
}

.platform-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading p,
.benefits-intro > p,
.faq-intro > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-small);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(27, 148, 111, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-wide {
  display: flex;
  grid-column: span 2;
  gap: 18px;
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid rgba(27, 148, 111, 0.18);
  border-radius: 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  place-items: center;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 550;
}

.feature-wide .line-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.icon-danger {
  border-color: rgba(200, 62, 69, 0.15);
  color: var(--red);
  background: var(--red-soft);
}

.status-cloud {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 7px;
}

.status-cloud span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.67rem;
  font-weight: 670;
}

.status-cloud span:nth-child(3),
.status-cloud span:nth-child(4) {
  color: #76520b;
  background: #fff4d3;
}

.status-cloud span.cancel {
  color: var(--red);
  background: var(--red-soft);
}

.how-section,
.faq-section {
  background: var(--mint);
}

.timeline {
  position: relative;
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 38px;
  width: 2px;
  background: #b9dfd3;
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  min-height: 126px;
  padding: 24px 28px 24px 100px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-small);
}

.step-number {
  position: absolute;
  z-index: 1;
  top: 28px;
  left: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 0 0 8px var(--mint);
  place-items: center;
  font-size: 0.67rem;
  font-weight: 800;
}

.timeline-step h3 {
  margin-bottom: 9px;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
}

.friendly-tip {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 20px auto 0;
  padding: 22px 26px;
  gap: 15px;
  border-radius: var(--radius-sm);
  color: var(--green-deep);
  background: #dff8ee;
}

.friendly-tip > span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 100, 79, 0.25);
  border-radius: 50%;
  place-items: center;
  font-family: Georgia, serif;
  font-weight: 700;
}

.friendly-tip p {
  display: grid;
  margin: 0;
}

.friendly-tip strong {
  font-size: 0.83rem;
}

.friendly-tip p span {
  color: #43685e;
  font-size: 0.91rem;
}

.install-section {
  background: #fbfefd;
}

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

.install-card {
  display: flex;
  min-height: 550px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.device-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--white);
  background: var(--green-deep);
  place-items: center;
  font-weight: 800;
}

.android-icon {
  background: var(--green);
}

.apple-icon {
  color: var(--green-deep);
  background: var(--green-soft);
}

.desktop-icon {
  background: #235d72;
}

.device-label {
  margin-bottom: 9px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 790;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.install-card h3 {
  min-height: 52px;
  margin-bottom: 20px;
}

.install-card ol {
  margin: 0 0 26px;
  padding: 0;
  counter-reset: install-step;
  list-style: none;
}

.install-card li {
  position: relative;
  min-height: 34px;
  margin-bottom: 11px;
  padding-left: 34px;
  color: var(--muted);
  font-size: 0.88rem;
}

.install-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  color: var(--green-dark);
  background: var(--green-soft);
  content: counter(install-step);
  counter-increment: install-step;
  place-items: center;
  font-size: 0.66rem;
  font-weight: 760;
}

.pwa-explainer {
  display: grid;
  align-items: center;
  margin-top: 24px;
  padding: 28px 32px;
  grid-template-columns: auto 1fr;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--mint);
}

.pwa-mark {
  display: grid;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  color: var(--white);
  background: var(--green-dark);
  place-items: center;
  font-weight: 820;
  letter-spacing: 0.06em;
}

.pwa-explainer h3 {
  margin-bottom: 8px;
}

.pwa-explainer p {
  margin: 0;
  color: var(--muted);
}

.pwa-explainer .pwa-fallback {
  margin-top: 5px;
  font-size: 0.88rem;
}

.benefits-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(52px, 8vw, 100px);
}

.benefits-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.benefit-quote {
  position: relative;
  margin-top: 32px;
  padding: 24px 24px 24px 55px;
  border-radius: var(--radius-md);
  color: var(--green-deep);
  background: var(--green-soft);
}

.benefit-quote > span {
  position: absolute;
  top: 10px;
  left: 18px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.benefit-quote p {
  margin: 0;
  font-weight: 680;
}

.benefit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.benefit-item {
  display: grid;
  padding: 25px 0;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.benefit-item > span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.benefit-item h3 {
  margin-bottom: 7px;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 7vw, 90px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 18px 20px;
  gap: 18px;
  border: 0;
  color: var(--green-deep);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.accordion-trigger:hover {
  background: #f7fcfa;
}

.accordion-trigger i {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  place-items: center;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.accordion-panel p {
  margin: 0;
  padding: 0 68px 22px 20px;
  color: var(--muted);
}

.final-cta {
  padding-top: 92px;
}

.cta-card {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 42px;
  border-radius: 34px;
  color: var(--white);
  background: var(--green-deep);
  box-shadow: 0 30px 70px rgba(9, 63, 52, 0.2);
}

.cta-pattern {
  position: absolute;
  top: -140px;
  right: -80px;
  width: 440px;
  height: 440px;
  border: 70px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.cta-copy,
.cta-buttons {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  display: block;
  margin-bottom: 15px;
  color: #8de0c6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.cta-card h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.cta-card p {
  max-width: 650px;
  margin: 0;
  color: #c7e2d9;
  font-size: 1.05rem;
}

.cta-buttons {
  display: grid;
  gap: 12px;
}

.button-light {
  border-color: var(--white);
  color: var(--green-deep);
  background: var(--white);
}

.button-light:hover {
  border-color: #dff8ee;
  color: var(--green-deep);
  background: #dff8ee;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: #fbfefd;
}

.footer-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
}

.brand-footer .brand-logo-wrap {
  width: 42px;
  height: 42px;
}

.brand-footer .brand-logo {
  width: 56px;
  height: 56px;
}

.footer-brand p,
.footer-meta p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.footer-meta {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.82rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    gap: 34px;
  }

  .phone-mockup {
    left: -10px;
  }

  .floating-note {
    right: -5px;
  }

  .install-card {
    padding: 25px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .section-pad {
    padding: 88px 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

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

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

  .hero-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .desktop-mockup {
    right: 10px;
  }

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

  .feature-wide {
    grid-column: span 2;
  }

  .install-grid {
    grid-template-columns: 1fr;
  }

  .install-card {
    min-height: auto;
  }

  .install-card h3 {
    min-height: auto;
  }

  .button-full {
    width: fit-content;
  }

  .benefits-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .benefits-intro,
  .faq-intro {
    position: static;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    max-width: 440px;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .footer-meta {
    grid-column: span 2;
    text-align: left;
  }
}

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

  .section-pad {
    padding: 72px 0;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-logo-wrap {
    width: 42px;
    height: 42px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .header-inner {
    gap: 10px;
  }

  .header-actions {
    gap: 7px;
  }

  .language-switcher {
    padding: 3px;
  }

  .lang-button {
    min-width: 34px;
    min-height: 34px;
    padding: 0 6px;
    font-size: 0.67rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 55px);
  }

  .hero-orb-one {
    right: -260px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .eyebrow {
    font-size: 0.65rem;
  }

  .hero-buttons {
    display: grid;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .quick-benefits {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .desktop-mockup {
    top: 28px;
    right: -60px;
    width: 108%;
  }

  .desktop-body {
    min-height: 300px;
  }

  .phone-mockup {
    bottom: 5px;
    left: -8px;
    width: 205px;
  }

  .phone-screen {
    min-height: 410px;
  }

  .floating-note {
    right: -5px;
    bottom: 25px;
    width: 185px;
  }

  .floating-note small {
    display: none;
  }

  .trust-inner {
    display: block;
    padding: 22px 0;
  }

  .platform-list {
    flex-wrap: wrap;
    margin-top: 12px;
    gap: 8px 12px;
    font-size: 0.75rem;
  }

  .section-heading {
    margin-bottom: 38px;
  }

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

  .feature-wide {
    display: block;
    grid-column: span 1;
  }

  .feature-wide .line-icon {
    margin-bottom: 24px;
  }

  .feature-card {
    min-height: 0;
    padding: 24px;
  }

  .timeline::before {
    left: 31px;
  }

  .timeline-step {
    min-height: 0;
    padding: 22px 20px 22px 76px;
  }

  .step-number {
    top: 23px;
    left: 13px;
  }

  .friendly-tip {
    align-items: flex-start;
    padding: 20px;
  }

  .install-card {
    padding: 24px;
    border-radius: var(--radius-md);
  }

  .button-full {
    width: 100%;
  }

  .pwa-explainer {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .pwa-mark {
    width: 66px;
    height: 66px;
    border-radius: 18px;
  }

  .benefit-item {
    grid-template-columns: 42px 1fr;
  }

  .faq-layout {
    gap: 32px;
  }

  .accordion-trigger {
    min-height: 68px;
    padding: 16px;
    font-size: 0.93rem;
  }

  .accordion-panel p {
    padding: 0 16px 20px;
    font-size: 0.91rem;
  }

  .final-cta {
    padding-top: 64px;
  }

  .cta-card {
    width: min(calc(100% - 20px), var(--container));
    padding: 34px 24px;
    border-radius: 26px;
  }

  .cta-buttons .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    justify-content: start;
    gap: 16px;
  }

  .footer-meta {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .brand-name {
    display: none;
  }

  .desktop-mockup {
    right: -80px;
  }

  .phone-mockup {
    left: -3px;
  }

  .floating-note {
    right: -8px;
    width: 170px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
