:root {
  --brand: #0a8f55;
  --brand-dark: #066c42;
  --brand-deep: #03472f;
  --accent: #f6c84c;
  --ink: #10241d;
  --muted: #617169;
  --paper: #f6faf8;
  --line: #dfe9e4;
  --white: #fff;
  --shadow: 0 24px 70px rgba(2, 55, 34, 0.14);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: 1180px;
  padding-left: max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}
.app-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(33, 194, 115, 0.2), transparent 34%),
    linear-gradient(145deg, var(--brand-deep), #021d13);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.app-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.app-loading-content {
  display: grid;
  justify-items: center;
  gap: 1rem;
  color: var(--white);
}
.app-loading-content img {
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}
.app-loading-content strong {
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}
.app-loading-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: app-loading-spin 0.8s linear infinite;
}
@keyframes app-loading-spin {
  to {
    transform: rotate(360deg);
  }
}
.site-header {
  transition: 0.25s;
  background: linear-gradient(180deg, rgba(2, 32, 22, 0.55), transparent);
}
.site-header.scrolled,
.subpage-main ~ .site-footer + .site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(0, 40, 25, 0.08);
  backdrop-filter: blur(18px);
}
.navbar-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
}
.site-header.scrolled .navbar-brand {
  color: var(--ink);
}
.navbar-brand img,
.footer-brand img {
  border-radius: 11px;
}
.nav-link {
  font-weight: 700;
  color: #fff !important;
  opacity: 0.88;
}
.site-header.scrolled .nav-link {
  color: var(--ink) !important;
}
.nav-link:hover {
  opacity: 1;
}
.navbar-toggler {
  border: 0;
  color: #fff;
  font-size: 1.8rem;
}
.site-header.scrolled .navbar-toggler {
  color: var(--ink);
}
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.72rem 1.25rem;
  box-shadow: 0 8px 20px rgba(10, 143, 85, 0.22);
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}
.language-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.site-header.scrolled .language-button {
  color: var(--ink);
  border-color: var(--line);
}
.language-menu {
  width: 330px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.language-search {
  position: relative;
  display: block;
}
.language-search i {
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--muted);
}
.language-search input {
  padding-left: 38px;
  border-radius: 13px;
  border-color: var(--line);
}
.language-list {
  max-height: 330px;
  overflow: auto;
  margin-top: 0.5rem;
}
.language-list .dropdown-item {
  border-radius: 11px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
}
.language-list .dropdown-item small {
  color: var(--muted);
}
.language-list .dropdown-item.active {
  background: var(--paper);
  color: var(--brand-dark);
  font-weight: 800;
}
.hero {
  min-height: 840px;
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 28, 19, 0.9) 0%,
      rgba(2, 40, 25, 0.76) 44%,
      rgba(2, 43, 26, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(1, 35, 22, 0.35), transparent 44%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 840px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 4rem;
  align-items: center;
  padding-top: 120px;
}
.hero-copy {
  color: #fff;
  max-width: 660px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #b9f4d5;
}
.hero .eyebrow {
  color: #baf0d4;
}
.hero h1 {
  font-size: clamp(3.25rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 800;
  margin: 1.15rem 0 1.35rem;
  max-width: 780px;
}
.hero-copy > p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}
.store-button {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  background: #07140f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 0.72rem 1rem;
  min-width: 178px;
  transition: 0.2s;
}
.store-button:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}
.store-button > i {
  font-size: 1.9rem;
}
.store-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.store-button small {
  font-size: 0.64rem;
  text-transform: uppercase;
  opacity: 0.72;
}
.store-button strong {
  font-size: 1.05rem;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}
.hero-phone {
  position: relative;
  justify-self: center;
}
.phone-shell {
  width: min(330px, 72vw);
  background: #0c1713;
  border: 9px solid #101c17;
  border-radius: 52px;
  padding: 9px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(4deg);
  position: relative;
}
.phone-shell img {
  display: block;
  width: 100%;
  border-radius: 37px;
  background: #eef6f2;
}
.phone-island {
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  border-radius: 999px;
  background: #08100d;
  z-index: 2;
}
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-speed {
  left: -74px;
  bottom: 135px;
  padding: 0.8rem 1rem;
}
.card-speed i {
  color: var(--brand);
  font-size: 1.25rem;
}
.card-speed strong {
  font-size: 1.5rem;
}
.card-speed span {
  font-size: 0.7rem;
  color: var(--muted);
}
.card-route {
  right: -80px;
  top: 170px;
  padding: 0.85rem 1rem;
  font-weight: 800;
}
.card-route i {
  color: var(--brand);
}
.photo-credit {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
}
.photo-credit:hover {
  color: #fff;
}
.stats-bar {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--brand-deep);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid > div {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.stats-grid > div:last-child {
  border: 0;
}
.stats-grid strong {
  font-size: 2rem;
  color: var(--accent);
}
.stats-grid span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}
.section {
  padding: 120px 0;
}
.section-heading {
  max-width: 740px;
  margin-bottom: 3.5rem;
}
.section-heading h2,
.photo-copy h2,
.download-card h2,
.how-card h2 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 0.8rem 0 1.1rem;
}
.section-heading p,
.photo-copy p,
.download-card p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.7rem;
  min-height: 235px;
  background: #fff;
  transition: 0.25s;
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(1, 63, 38, 0.11);
  border-color: transparent;
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #e8f7ef;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.35rem 0 0.65rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}
.photo-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}
.photo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 35, 22, 0.9),
    rgba(1, 35, 22, 0.2)
  );
}
.photo-section-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-section-inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  align-items: center;
}
.photo-copy {
  color: #fff;
  max-width: 610px;
  position: relative;
  z-index: 2;
}
.photo-copy p {
  color: rgba(255, 255, 255, 0.77);
}
.photo-copy .btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 0.8rem 1.3rem;
}
.screens-section {
  background: var(--paper);
}
.screens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.screen-card {
  position: relative;
}
.screen-card > span {
  display: block;
  color: var(--brand);
  font-weight: 900;
  font-size: 0.78rem;
  margin-top: 1.3rem;
}
.screen-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0.35rem 0;
}
.screen-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}
.screen-phone {
  background: #0d1915;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 26px 50px rgba(1, 50, 31, 0.17);
  transition: 0.25s;
}
.screen-phone:hover {
  transform: translateY(-7px) rotate(-1deg);
}
.screen-phone img {
  width: 100%;
  display: block;
  border-radius: 29px;
  background: #eaf5ef;
}
.how-section {
  padding-top: 0;
  background: var(--paper);
}
.how-card {
  border-radius: var(--radius);
  background: var(--brand-deep);
  color: #fff;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}
.how-card ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.how-card li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 0 1rem;
}
.how-card li span {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--brand-deep);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.how-card li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}
.download-section {
  padding: 110px 0;
}
.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: #eef8f3;
  border: 1px solid #d9ece2;
  border-radius: var(--radius);
  padding: 2.5rem;
}
.download-card h2 {
  font-size: 2.4rem;
}
.download-card p {
  margin: 0;
}
.download-card .store-buttons {
  margin: 0;
}
.download-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(8, 113, 67, 0.2);
}
.commercial-capabilities {
  background: #fff;
}
.commercial-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.commercial-capability-card {
  position: relative;
  min-height: 330px;
  padding: 2.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.commercial-capability-card h3 {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.commercial-capability-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.commercial-capability-card.pro-card {
  border-color: transparent;
  background: linear-gradient(145deg, var(--brand-deep), #087348);
  color: #fff;
  box-shadow: var(--shadow);
}
.commercial-capability-card.pro-card .feature-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent);
}
.commercial-capability-card.pro-card p {
  color: rgba(255, 255, 255, 0.74);
}
.commercial-capability-card.pro-card > a {
  display: inline-flex;
  margin-top: 1.5rem;
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.pro-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.business-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(30, 172, 103, 0.26), transparent 30%),
    var(--brand-deep);
}
.business-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}
.business-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.business-category-card {
  min-height: 220px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}
.business-category-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--accent);
  font-size: 1.25rem;
}
.business-category-card h3 {
  margin: 1.25rem 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
}
.business-category-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.65;
}
.business-application-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3rem;
  margin-top: 3.5rem;
  padding: 3rem;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}
.business-form-intro h2 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.business-form-intro > p {
  color: var(--muted);
  line-height: 1.75;
}
.application-review-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.6rem;
  padding: 1rem;
  border-radius: 16px;
  background: #eef8f3;
  color: var(--brand-dark);
  font-size: 0.86rem;
  line-height: 1.55;
}
.application-review-note i {
  margin-top: 0.1rem;
}
.business-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.business-form-wide {
  grid-column: 1 / -1;
}
.business-form textarea.form-control {
  height: 150px !important;
}
.business-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.business-form-actions .form-status {
  flex: 1;
}
.white-label-section {
  background: linear-gradient(145deg, #eef8f3, #fff);
}
.white-label-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: center;
}
.white-label-copy h2 {
  margin: 0.85rem 0 1.2rem;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.white-label-copy p {
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.white-label-feature-grid {
  display: grid;
  gap: 1rem;
}
.white-label-feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.15rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}
.white-label-feature > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  background: #e6f6ee;
  color: var(--brand);
  font-size: 1.3rem;
}
.white-label-feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}
.white-label-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.site-footer {
  background: #071b13;
  color: #fff;
  padding: 70px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
}
.footer-brand {
  font-size: 1.4rem;
}
.footer-grid p {
  color: rgba(255, 255, 255, 0.58);
  max-width: 400px;
  margin: 1.2rem 0 0;
  line-height: 1.7;
}
.footer-grid h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #9ed6b9;
  margin-bottom: 1.2rem;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.subpage-main {
  padding-top: 96px;
}
.subpage-main ~ .site-footer {
}
.subpage-main + .site-footer {
}
.subpage-main .eyebrow {
}
.subpage-hero {
  background: linear-gradient(145deg, #eaf8f1, #f9fcfa);
  padding: 100px 0 75px;
  border-bottom: 1px solid var(--line);
}
.subpage-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
  font-weight: 800;
  max-width: 900px;
  margin: 1rem 0;
}
.subpage-hero p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}
.subpage-hero small {
  color: var(--muted);
}
.subpage-main ~ .site-footer {
}
.subpage-main + .site-footer {
}
.subpage-main ~ * {
}
.subpage-main .site-header {
}
.legal-section {
  padding: 80px 0 120px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
}
.legal-layout aside {
  position: relative;
}
.legal-layout nav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--line);
}
.legal-layout nav a {
  padding: 0.55rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.legal-layout nav a:hover {
  color: var(--brand);
}
.legal-layout article {
  max-width: 760px;
}
.legal-layout article section {
  scroll-margin-top: 120px;
  margin-bottom: 3rem;
}
.legal-layout h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.legal-layout p {
  color: var(--muted);
  line-height: 1.85;
}
.contact-section {
  padding: 90px 0 120px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}
.contact-aside {
  padding: 2.4rem;
  border-radius: var(--radius);
  background: var(--brand-deep);
  color: #fff;
  align-self: start;
}
.contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.5rem;
}
.contact-aside h2 {
  font-size: 2rem;
  letter-spacing: -0.035em;
  margin: 1.5rem 0 0.8rem;
}
.contact-aside p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.contact-aside > a {
  color: #fff;
  font-weight: 800;
}
.contact-promise {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-control,
.form-select {
  border-color: var(--line);
  border-radius: 15px;
  min-height: 62px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.25rem rgba(10, 143, 85, 0.1);
}
textarea.form-control {
  height: 180px !important;
}
.form-check-label {
  font-size: 0.85rem;
  color: var(--muted);
}
.form-check-label a {
  color: var(--brand);
  font-weight: 700;
}
.form-status {
  min-height: 24px;
  font-size: 0.9rem;
}
.form-status.success {
  color: var(--brand);
}
.form-status.error {
  color: #b42318;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
}
.load-error {
  padding: 20vh 10vw;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(
      -90deg,
      rgba(2, 28, 19, 0.9),
      rgba(2, 40, 25, 0.76) 44%,
      rgba(2, 43, 26, 0.2)
    ),
    linear-gradient(0deg, rgba(1, 35, 22, 0.35), transparent 44%);
}
[dir="rtl"] .language-search i {
  left: auto;
  right: 14px;
}
[dir="rtl"] .language-search input {
  padding-left: 0.75rem;
  padding-right: 38px;
}
[dir="rtl"] .legal-layout nav {
  border-left: 0;
  border-right: 2px solid var(--line);
}
@media (max-width: 991px) {
  .site-header {
    background: rgba(4, 36, 24, 0.88);
    backdrop-filter: blur(15px);
  }
  .site-header.scrolled {
    background: rgba(4, 36, 24, 0.96);
    box-shadow: 0 8px 28px rgba(0, 40, 25, 0.2);
  }
  .site-header .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(3, 49, 32, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  }
  .site-header .navbar-nav {
    align-items: stretch;
    gap: 0.35rem;
  }
  .site-header .nav-link {
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
  }
  .site-header .nav-link:hover,
  .site-header .nav-link:focus {
    background: rgba(255, 255, 255, 0.08);
  }
  .site-header .language-button,
  .site-header .btn-brand {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }
  .site-header.scrolled .navbar-brand,
  .site-header .navbar-brand {
    color: #fff;
  }
  .site-header.scrolled .navbar-toggler {
    color: #fff;
  }
  .site-header.scrolled .nav-link {
    color: #fff !important;
  }
  .site-header.scrolled .language-button {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .hero-copy {
    text-align: center;
    margin: auto;
  }
  .hero-copy .eyebrow,
  .hero-note {
    justify-content: center;
  }
  .store-buttons {
    justify-content: center;
  }
  .hero-phone {
    margin-top: 2rem;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .screens-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .download-card {
    grid-template-columns: auto 1fr;
  }
  .download-card .store-buttons {
    grid-column: 1/-1;
  }
  .contact-grid {
    gap: 2rem;
  }
  .commercial-capability-grid {
    grid-template-columns: 1fr;
  }
  .commercial-capability-card {
    min-height: 0;
  }
  .business-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .business-application-card,
  .white-label-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .legal-layout aside {
    display: none;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
  }
  .navbar {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
  }
  .language-menu {
    width: min(330px, calc(100vw - 2rem));
  }
  .hero,
  .hero-inner {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 3.25rem;
  }
  .hero-copy > p {
    font-size: 1rem;
  }
  .hero-phone {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid > div {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .section {
    padding: 80px 0;
  }
  .feature-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 0;
  }
  .screen-card {
    max-width: 330px;
    margin: auto;
  }
  .how-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .download-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  .download-icon {
    margin: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    gap: 1rem;
    flex-direction: column;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .business-category-grid,
  .business-form {
    grid-template-columns: 1fr;
  }
  .business-form-wide {
    grid-column: auto;
  }
  .business-application-card {
    margin-top: 2.5rem;
    padding: 1.4rem;
  }
  .business-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .business-form-actions .btn {
    width: 100%;
  }
  .white-label-layout {
    gap: 2.5rem;
  }
  .subpage-hero {
    padding: 70px 0 55px;
  }
  .legal-section,
  .contact-section {
    padding: 60px 0 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .screen-phone,
  .store-button {
    transition: none;
  }
  .app-loading {
    transition: none;
  }
}
.page-privacy .site-header,
.page-terms .site-header,
.page-business .site-header,
.page-contact .site-header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(0, 40, 25, 0.08);
  backdrop-filter: blur(18px);
}
.page-privacy .navbar-brand,
.page-terms .navbar-brand,
.page-business .navbar-brand,
.page-contact .navbar-brand,
.page-privacy .nav-link,
.page-terms .nav-link,
.page-business .nav-link,
.page-contact .nav-link,
.page-privacy .language-button,
.page-terms .language-button,
.page-business .language-button,
.page-contact .language-button {
  color: var(--ink) !important;
}
.page-privacy .language-button,
.page-terms .language-button,
.page-business .language-button,
.page-contact .language-button {
  border-color: var(--line);
}
@media (max-width: 991px) {
  .page-privacy .navbar-toggler,
  .page-terms .navbar-toggler,
  .page-business .navbar-toggler,
  .page-contact .navbar-toggler {
    color: var(--ink);
  }
  .page-privacy .navbar-collapse,
  .page-terms .navbar-collapse,
  .page-business .navbar-collapse,
  .page-contact .navbar-collapse {
    background: rgba(255, 255, 255, 0.99);
    border-color: var(--line);
  }
  .page-privacy .navbar-collapse .nav-link,
  .page-terms .navbar-collapse .nav-link,
  .page-business .navbar-collapse .nav-link,
  .page-contact .navbar-collapse .nav-link,
  .page-privacy .navbar-collapse .language-button,
  .page-terms .navbar-collapse .language-button,
  .page-business .navbar-collapse .language-button,
  .page-contact .navbar-collapse .language-button {
    color: var(--ink) !important;
  }
}
