:root {
  --green-950: #052e29;
  --green-900: #073f37;
  --green-800: #07584b;
  --green-700: #0a705e;
  --mint: #dff2ec;
  --mint-soft: #f0f8f5;
  --gold: #c7a15a;
  --gold-soft: #f6ecd9;
  --ink: #17201e;
  --muted: #68736f;
  --line: #dfe7e3;
  --paper: #fbfcfb;
  --white: #fff;
  --shadow: 0 24px 70px rgba(6, 55, 47, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cairo", system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
button {
  cursor: pointer;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
button:active {
  transform: scale(0.97);
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  right: 20px;
  z-index: 1000;
  background: var(--white);
  color: var(--green-900);
  padding: 10px 18px;
  border-radius: 10px;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  background: rgba(251, 252, 251, 0.86);
  border-bottom: 1px solid rgba(7, 63, 55, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.25s,
    background 0.25s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 35px rgba(10, 50, 44, 0.08);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  direction: ltr;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  direction: rtl;
  font-family: "Cairo", sans-serif;
  font-size: 18px;
  white-space: nowrap;
}
.brand strong {
  color: var(--green-800);
  font-weight: 800;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--gold);
  border-radius: 13px;
  box-shadow: 0 9px 20px rgba(7, 63, 55, 0.18);
}
.brand-mark > i {
  font-size: 25px;
  line-height: 1;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
  direction: rtl;
}
.desktop-nav a {
  color: #4b5753;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: var(--green-700);
}
.button {
  min-height: 50px;
  padding: 11px 24px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  line-height: 1;
  direction: rtl;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.button > i,
.button > span[class*="ri-"] {
  font-size: 20px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0) scale(0.98);
}
.button-sm {
  min-height: 42px;
  padding: 9px 18px;
  font-size: 13px;
}
.button-sm > i {
  font-size: 17px;
}
.button-dark {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(7, 63, 55, 0.18);
}
.button-dark:hover {
  background: var(--green-800);
  box-shadow: 0 14px 30px rgba(7, 63, 55, 0.25);
}
.button-primary {
  background: var(--gold);
  color: #1f291f;
  box-shadow: 0 12px 30px rgba(199, 161, 90, 0.28);
}
.button-primary:hover {
  background: #d4b16b;
  box-shadow: 0 16px 35px rgba(199, 161, 90, 0.36);
}
.button-light {
  background: var(--white);
  color: var(--green-900);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  direction: rtl;
}
.menu-toggle i {
  color: var(--green-900);
  font-size: 25px;
  line-height: 1;
}
.menu-close-icon {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-open-icon {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-close-icon {
  display: inline-block;
}
.mobile-menu {
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  padding: 18px 20px 24px;
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(7, 63, 55, 0.1);
}
.mobile-menu a:not(.button) {
  min-height: 48px;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-bottom: 1px solid #edf1ef;
  transition:
    color 0.2s,
    background 0.2s;
}
.mobile-menu a:not(.button):hover {
  color: var(--green-700);
  background: var(--mint-soft);
}
.mobile-menu .button {
  width: 100%;
  margin-top: 14px;
}

.hero {
  position: relative;
  min-height: 810px;
  padding: 142px 0 34px;
  background:
    linear-gradient(115deg, rgba(223, 242, 236, 0.46), transparent 43%),
    radial-gradient(
      circle at 85% 25%,
      rgba(199, 161, 90, 0.12),
      transparent 26%
    ),
    var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 0;
  background-image: radial-gradient(rgba(7, 63, 55, 0.12) 1px, transparent 1px);
  background-size: 25px 25px;
  opacity: 0.2;
  -webkit-mask-image: linear-gradient(
    90deg,
    black,
    transparent 42%,
    transparent 70%,
    black
  );
  mask-image: linear-gradient(
    90deg,
    black,
    transparent 42%,
    transparent 70%,
    black
  );
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.glow-one {
  width: 440px;
  height: 440px;
  left: -250px;
  top: 260px;
  background: rgba(223, 242, 236, 0.6);
}
.glow-two {
  width: 280px;
  height: 280px;
  right: -160px;
  top: 130px;
  border: 1px solid rgba(199, 161, 90, 0.2);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  min-height: 610px;
  gap: 48px;
}
.hero-copy {
  padding-top: 6px;
}
.eyebrow,
.kicker {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(7, 112, 94, 0.15);
  border-radius: 100px;
  background: var(--mint-soft);
}
.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(199, 161, 90, 0.14);
}
h1,
h2,
h3 {
  font-family: "Cairo", sans-serif;
  margin-top: 0;
}
h1 {
  margin: 22px 0 20px;
  font-size: clamp(44px, 5.5vw, 74px);
  line-height: 1.23;
  letter-spacing: -0.045em;
  font-weight: 800;
}
h1 em,
.direct-copy h2 em {
  color: var(--green-700);
  font-style: normal;
  position: relative;
}
h1 em::after {
  content: "";
  position: absolute;
  height: 8px;
  right: 2px;
  left: 4px;
  bottom: -3px;
  border-radius: 50%;
  border-top: 3px solid var(--gold);
  transform: rotate(-1deg);
  opacity: 0.75;
}
.hero-lead {
  max-width: 570px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
}
.text-link {
  color: var(--green-800);
  font-weight: 700;
  font-size: 14px;
}
.text-link span {
  display: inline-block;
  margin-right: 5px;
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translateX(-4px);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #52605b;
  font-size: 12px;
  font-weight: 700;
}
.trust-row div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.check {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: var(--green-700);
  background: var(--mint);
  border-radius: 50%;
  font-size: 12px;
}

.phone-stage {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  direction: ltr;
}
.phone-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mint), #f8f0df);
  box-shadow: inset 0 0 0 1px rgba(7, 63, 55, 0.05);
}
.orbit {
  position: absolute;
  z-index: 0;
  border: 1px dashed rgba(7, 63, 55, 0.14);
  border-radius: 50%;
}
.orbit-one {
  width: 545px;
  height: 545px;
}
.orbit-two {
  width: 610px;
  height: 610px;
  opacity: 0.45;
}
.phone {
  width: 292px;
  height: 602px;
  padding: 9px;
  position: relative;
  z-index: 2;
  border: 2px solid #35413e;
  border-radius: 42px;
  background: #17221f;
  box-shadow:
    0 34px 65px rgba(5, 46, 41, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: rotate(-2deg);
}
.phone-speaker {
  position: absolute;
  z-index: 5;
  width: 78px;
  height: 21px;
  left: 50%;
  top: 13px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #17221f;
}
.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background: #f8f9f8;
  direction: rtl;
  padding-bottom: 48px;
}
.app-top {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 13px 6px;
  background: white;
}
.app-logo {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--gold);
  border-radius: 8px;
  font: 700 12px "Cairo";
}
.app-top div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.app-top strong {
  font: 700 9px "Cairo";
}
.app-top small {
  color: #8a9490;
  font-size: 6px;
}
.search-dot {
  margin-right: auto;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  background: #edf5f2;
  color: var(--green-900);
  border-radius: 8px;
  font-size: 16px;
}
.app-hero {
  height: 145px;
  margin: 8px 11px;
  padding: 17px;
  border-radius: 20px;
  color: white;
  background: linear-gradient(135deg, #063f37, #0b725f);
  position: relative;
  overflow: hidden;
}
.app-hero::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: -25px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.app-hero small,
.app-hero strong,
.app-hero > span {
  display: block;
  position: relative;
  z-index: 2;
  width: 56%;
}
.app-hero small {
  color: #d7eee7;
  font-size: 6px;
  margin-bottom: 5px;
}
.app-hero strong {
  font: 800 14px/1.55 "Cairo";
}
.app-hero > span {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}
.app-hero-art {
  position: absolute;
  width: 102px;
  height: 105px;
  left: 10px;
  bottom: 0;
}
.lamp {
  position: absolute;
  width: 40px;
  height: 24px;
  left: 30px;
  top: 6px;
  background: #e8c985;
  clip-path: polygon(25% 0, 75% 0, 100% 100%, 0 100%);
}
.lamp::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 12px;
  background: white;
  top: -12px;
  left: 50%;
}
.table {
  position: absolute;
  width: 60px;
  height: 22px;
  bottom: 12px;
  left: 20px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 50% 50% 8px 8px;
}
.table::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 30px;
  top: 13px;
  left: 16px;
  background: #d6ac62;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}
.plant {
  position: absolute;
  left: 0;
  bottom: 21px;
  color: #bfe4d8;
  font-size: 26px;
  transform: rotate(18deg);
}
.app-search {
  height: 28px;
  margin: 9px 13px 12px;
  padding: 5px 10px;
  color: #82908b;
  border: 1px solid #e4e9e7;
  background: white;
  border-radius: 9px;
  font-size: 7px;
  box-shadow: 0 3px 10px rgba(7, 63, 55, 0.04);
}
.app-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 13px 8px;
}
.app-section-title strong {
  font: 700 9px "Cairo";
}
.app-section-title span {
  color: var(--green-700);
  font-size: 6px;
}
.app-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 0 11px 15px;
}
.app-categories div {
  display: grid;
  place-items: center;
  gap: 3px;
  padding: 7px 2px;
  border: 1px solid #e9edeb;
  background: white;
  border-radius: 10px;
}
.app-categories i {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--mint);
  border-radius: 50%;
  font-style: normal;
  font-size: 11px;
}
.app-categories span {
  font-size: 6px;
}
.app-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 11px;
}
.app-products article {
  padding: 5px 5px 8px;
  border: 1px solid #e9edeb;
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.app-products strong,
.app-products small {
  display: block;
  padding-inline: 3px;
}
.app-products strong {
  margin-top: 5px;
  font-size: 7px;
}
.app-products small {
  color: #79847f;
  font-size: 5.5px;
}
.room {
  height: 69px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: linear-gradient(165deg, #d5c2a5, #f3eadc);
}
.room::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 50%;
  left: 15%;
  bottom: 0;
  background: #7e786c;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 0 0 6px #ddd0bd;
}
.room::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 26px;
  left: 7px;
  bottom: 0;
  background: #b69168;
  border-radius: 50% 50% 0 0;
}
.room-two {
  background: linear-gradient(165deg, #46524f, #b29b77);
}
.room-two::before {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  left: 45%;
  top: 8px;
  background: #e3bd69;
  box-shadow: 0 0 18px #f0cf85;
}
.room-two::after {
  background: #53615c;
  width: 65%;
  height: 19px;
  left: 18%;
}
.app-nav {
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  padding: 6px 15px;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid #e8ecea;
}
.app-nav span {
  color: #89948f;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.app-nav span:first-child {
  color: var(--green-800);
}
.app-nav small {
  font-size: 5px;
}
.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  padding: 11px 14px;
  border: 1px solid rgba(7, 63, 55, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 35px rgba(5, 46, 41, 0.13);
  direction: rtl;
  animation: float 4s ease-in-out infinite;
}
.floating-card > span:last-child {
  display: flex;
  flex-direction: column;
}
.floating-card small {
  color: var(--muted);
  font-size: 8px;
}
.floating-card strong {
  color: var(--green-900);
  font-size: 10px;
}
.mini-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 19px;
  line-height: 1;
}
.pin-icon {
  color: #d65f50;
  background: #fbe9e6;
}
.chat-icon {
  color: white;
  background: #25b967;
}
.fc-location {
  left: 8px;
  top: 130px;
}
.fc-direct {
  right: -4px;
  bottom: 125px;
  animation-delay: -2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-footnote {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: #8a9490;
  font-size: 10px;
}
.hero-footnote i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  padding: 112px 0;
}
.section-heading {
  max-width: 540px;
}
.section-heading.centered {
  margin: 0 auto 52px;
  text-align: center;
}
.section-heading .kicker {
  display: block;
  margin-bottom: 10px;
}
.section-heading h2,
.business-copy h2,
.direct-copy h2,
.download-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.45;
  letter-spacing: -0.035em;
}
.section-heading p,
.business-copy > p,
.direct-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}
.features-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 20px;
}
.feature-card {
  min-height: 340px;
  padding: 30px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-7px);
  border-color: #c8d8d2;
  box-shadow: var(--shadow);
}
.feature-large {
  background: linear-gradient(145deg, #fff, var(--mint-soft));
}
.feature-number {
  position: absolute;
  left: 25px;
  top: 21px;
  color: #d7dfdc;
  font: 700 34px/1 "Cairo";
}
.feature-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green-800);
  border-radius: 17px;
}
.feature-icon.gold {
  background: var(--gold-soft);
  color: #94733c;
}
.feature-icon.green {
  color: #15864c;
  background: #def5e8;
}
.feature-icon i {
  font-size: 29px;
  line-height: 1;
}
.feature-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}
.feature-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}
.filter-demo {
  position: absolute;
  bottom: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.filter-demo span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: white;
  color: #6e7975;
  font-size: 9px;
}
.filter-demo .active {
  background: var(--green-900);
  color: white;
  border-color: var(--green-900);
}

.categories-section {
  background: var(--green-950);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.categories-section::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -230px;
  bottom: -280px;
  border: 1px solid rgba(199, 161, 90, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.018),
    0 0 0 140px rgba(255, 255, 255, 0.012);
}
.categories-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.kicker.light {
  color: #d7b87b;
}
.categories-section .section-heading p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.category-card {
  min-height: 120px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    transform 0.25s;
}
.category-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.category-card > span {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(199, 161, 90, 0.1);
  border-radius: 13px;
  font-size: 19px;
}
.category-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.category-card strong {
  font: 700 13px "Cairo";
}
.category-card small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.7;
}

.steps-section {
  background: white;
}
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
.step-line {
  position: absolute;
  height: 1px;
  top: 87px;
  right: 18%;
  left: 18%;
  border-top: 1px dashed #bdcbc6;
}
.step {
  position: relative;
  text-align: center;
}
.step > span {
  position: absolute;
  z-index: 2;
  top: 3px;
  right: calc(50% + 38px);
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--gold);
  border: 4px solid white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 9px;
}
.step-art {
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--green-800);
  background: var(--mint-soft);
  border: 1px solid #d8e9e3;
  border-radius: 28px;
  font-size: 32px;
  box-shadow: 0 14px 35px rgba(7, 63, 55, 0.08);
}
.step h3 {
  margin-bottom: 7px;
  font-size: 17px;
}
.step p {
  max-width: 240px;
  margin: auto;
  color: var(--muted);
  font-size: 12px;
}

.business-section {
  padding-top: 40px;
  background: white;
}
.business-card {
  min-height: 520px;
  padding: 48px 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  border-radius: 38px;
  background: linear-gradient(115deg, #eff7f4, #faf7f0);
  overflow: hidden;
}
.business-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  position: relative;
  direction: ltr;
}
.business-visual::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 25px rgba(255, 255, 255, 0.28);
}
.shop-window {
  width: 280px;
  height: 310px;
  z-index: 1;
  border: 8px solid white;
  border-radius: 24px;
  background: #0b5549;
  box-shadow: 0 28px 55px rgba(7, 63, 55, 0.2);
  overflow: hidden;
}
.awning {
  height: 62px;
  display: flex;
}
.awning span {
  flex: 1;
  background: var(--gold);
  border-radius: 0 0 12px 12px;
}
.awning span:nth-child(even) {
  background: white;
}
.window-copy {
  height: calc(100% - 62px);
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: white;
  direction: rtl;
  text-align: right;
  position: relative;
}
.window-copy::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  left: -20px;
  bottom: -25px;
  border: 15px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.window-copy small {
  color: #c6ded8;
  font-size: 10px;
}
.window-copy strong {
  margin: 8px 0 auto;
  font: 800 20px/1.7 "Cairo";
}
.window-copy i {
  padding: 7px 12px;
  background: white;
  color: var(--green-900);
  border-radius: 8px;
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
}
.spark {
  position: absolute;
  z-index: 2;
  color: var(--gold);
  font-size: 25px;
}
.s1 {
  top: 40px;
  right: 15px;
}
.s2 {
  bottom: 45px;
  left: 15px;
  font-size: 16px;
}
.business-copy > p {
  margin-bottom: 20px;
}
.business-copy ul {
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.business-copy li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #53615c;
  font-size: 13px;
  font-weight: 600;
}
.business-copy li span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: white;
  border: 1px solid #d2e3dd;
  border-radius: 50%;
  font-size: 10px;
}

.direct-section {
  background: white;
}
.direct-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}
.direct-copy h2 {
  margin-top: 12px;
  font-size: clamp(38px, 5vw, 62px);
}
.direct-notice {
  margin-top: 25px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #d8e8e2;
  background: var(--mint-soft);
  border-radius: 15px;
}
.direct-notice > span {
  flex: 0 0 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green-700);
  border-radius: 50%;
}
.direct-notice div {
  display: flex;
  flex-direction: column;
}
.direct-notice strong {
  font-size: 12px;
}
.direct-notice small {
  color: var(--muted);
  font-size: 9px;
}
.connection-visual {
  min-height: 340px;
  padding: 55px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--mint-soft), #f8f2e8);
}
.person-card {
  width: 155px;
  min-height: 185px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 35px rgba(7, 63, 55, 0.09);
}
.person-card > span {
  width: 65px;
  height: 65px;
  margin-bottom: 15px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 50%;
  font-size: 27px;
}
.person-card strong {
  font: 700 14px "Cairo";
}
.person-card small {
  color: var(--muted);
  font-size: 8px;
}
.provider > span {
  background: var(--gold-soft);
}
.connect-center {
  min-width: 150px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--gold);
}
.connect-center span {
  font-size: 39px;
  line-height: 0.7;
}
.connect-center i {
  margin: 9px;
  padding: 5px 11px;
  color: var(--green-800);
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-style: normal;
  font-size: 8px;
  font-weight: 800;
}

.download-section {
  padding: 20px 0 110px;
  background: white;
}
.download-card {
  min-height: 430px;
  padding: 65px 78px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  color: white;
  background: var(--green-950);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}
.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 23px 23px;
  opacity: 0.17;
  -webkit-mask-image: linear-gradient(90deg, transparent, black);
  mask-image: linear-gradient(90deg, transparent, black);
}
.download-copy {
  position: relative;
  z-index: 2;
}
.download-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(37px, 5vw, 58px);
}
.download-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.store-buttons {
  margin-top: 27px;
  display: flex;
}
.store-badge {
  min-width: 190px;
  height: 58px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}
.store-badge > i {
  color: white;
  font-size: 28px;
  line-height: 1;
}
.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  direction: ltr;
}
.store-badge small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}
.store-badge strong {
  font-size: 15px;
}
.is-disabled {
  cursor: default;
  user-select: none;
}
.availability {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}
.download-mark {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.brand-mark.jumbo {
  width: 125px;
  height: 125px;
  border-radius: 35px;
  background: var(--gold);
  color: var(--green-950);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.23);
  transform: rotate(-6deg);
}
.brand-mark.jumbo > i {
  font-size: 72px;
}
.ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}
.r1 {
  width: 210px;
  height: 210px;
}
.r2 {
  width: 300px;
  height: 300px;
}
.r3 {
  width: 390px;
  height: 390px;
}

footer {
  padding: 75px 0 22px;
  color: white;
  background: #031f1c;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.65fr 1fr;
  gap: 60px;
  padding-bottom: 55px;
}
.brand-light strong {
  color: var(--gold);
}
.footer-brand p {
  max-width: 290px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links strong,
.footer-note strong {
  margin-bottom: 8px;
  font: 700 12px "Cairo";
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: white;
}
.footer-note {
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}
.footer-note span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
}
.footer-note b {
  margin-top: auto;
  font-size: 26px;
}
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.features-grid .reveal:nth-child(2),
.category-grid .reveal:nth-child(2),
.steps .reveal:nth-child(3) {
  transition-delay: 0.1s;
}
.features-grid .reveal:nth-child(3),
.category-grid .reveal:nth-child(3),
.steps .reveal:nth-child(4) {
  transition-delay: 0.2s;
}
.category-grid .reveal:nth-child(4) {
  transition-delay: 0.1s;
}
.category-grid .reveal:nth-child(5) {
  transition-delay: 0.2s;
}
.category-grid .reveal:nth-child(6) {
  transition-delay: 0.3s;
}

@media (max-width: 1020px) {
  .desktop-nav {
    gap: 18px;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .phone-stage {
    transform: scale(0.9);
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-large {
    grid-column: 1 / -1;
    min-height: 300px;
  }
  .categories-layout,
  .business-card,
  .direct-grid {
    gap: 45px;
  }
  .business-card {
    padding: 40px;
  }
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-note {
    display: none;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    height: 68px;
  }
  .section {
    padding: 96px 0;
  }
  .section-heading.centered {
    margin-bottom: 44px;
  }
  .hero {
    padding-top: 110px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy {
    max-width: 650px;
    margin: auto;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions,
  .trust-row {
    justify-content: center;
  }
  .phone-stage {
    margin-top: -15px;
  }
  .categories-layout,
  .business-card,
  .direct-grid,
  .download-card {
    grid-template-columns: 1fr;
  }
  .categories-layout {
    gap: 48px;
  }
  .business-card {
    padding: 42px;
  }
  .business-visual {
    order: 2;
  }
  .direct-copy {
    text-align: center;
  }
  .direct-notice {
    text-align: right;
    max-width: 500px;
    margin-inline: auto;
  }
  .download-card {
    text-align: center;
  }
  .download-copy p {
    margin-inline: auto;
  }
  .store-buttons {
    justify-content: center;
  }
  .download-mark {
    min-height: 280px;
  }
  .r3 {
    width: 340px;
    height: 340px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }
  h1 {
    font-size: 42px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  .hero-actions .button {
    width: 100%;
    max-width: 320px;
    min-height: 54px;
    font-size: 15px;
  }
  .trust-row {
    gap: 11px;
  }
  .phone-stage {
    min-height: 580px;
    transform: scale(0.86);
    margin-inline: -35px;
    margin-block: -35px;
  }
  .fc-location {
    left: 0;
  }
  .fc-direct {
    right: 0;
  }
  .hero-footnote {
    flex-wrap: wrap;
    gap: 10px;
  }
  .features-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
  .feature-large {
    grid-column: auto;
  }
  .category-card {
    min-height: 100px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .step-line {
    width: 1px;
    height: 65%;
    top: 15%;
    right: 50%;
    left: auto;
    border-top: 0;
    border-right: 1px dashed #bdcbc6;
  }
  .step {
    padding: 0 20px;
  }
  .business-section {
    padding-top: 10px;
  }
  .business-card {
    width: calc(100% - 20px);
    padding: 34px 24px;
    border-radius: 28px;
  }
  .business-visual {
    min-height: 330px;
    transform: scale(0.9);
    margin: -15px;
  }
  .connection-visual {
    padding: 30px 12px;
    min-height: 290px;
  }
  .person-card {
    width: 118px;
    min-height: 155px;
    padding: 13px;
  }
  .connect-center {
    min-width: 65px;
  }
  .connect-center span {
    font-size: 26px;
  }
  .connect-center i {
    font-size: 6px;
    padding: 4px 6px;
  }
  .download-section {
    padding-bottom: 75px;
  }
  .download-card {
    width: calc(100% - 20px);
    padding: 50px 24px 25px;
    border-radius: 28px;
  }
  .download-mark {
    min-height: 240px;
    transform: scale(0.85);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 36px;
  }
  .hero {
    padding-top: 100px;
  }
  .phone-stage {
    transform: scale(0.76);
    margin-block: -70px;
  }
  .trust-row {
    font-size: 10px;
  }
  .connection-visual {
    margin-inline: -5px;
  }
  .person-card {
    width: 105px;
  }
  .person-card > span {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
