@font-face {
  font-family: "Yekan";
  src: url("../fonts/IRANYekanXFaNum-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Yekan";
  src: url("../fonts/IRANYekanXFaNum-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Yekan";
  src: url("../fonts/IRANYekanXFaNum-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Yekan";
  src: url("../fonts/IRANYekanXFaNum-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Yekan";
  src: url("../fonts/IRANYekanXFaNum-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}

:root {
  --green: #17674d;
  --green-dark: #0d4735;
  --green-light: #24936d;
  --ink: #132f26;
  --muted: #62756c;
  --cream: #f4f7f2;
  --gold: #c8a84b;
  --line: #dce6df;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(15, 73, 53, 0.14);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Yekan", Tahoma, sans-serif;
  font-size: 16px;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 80% 4%, rgba(36, 147, 109, 0.13), transparent 28%),
    radial-gradient(circle at 5% 40%, rgba(200, 168, 75, 0.09), transparent 24%),
    var(--cream);
  content: "";
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

svg {
  display: block;
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("../asset/pattern.svg");
  background-size: 480px;
  opacity: 0.025;
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 12px;
  width: min(1160px, calc(100% - 28px));
  height: 68px;
  margin: 12px auto 0;
  padding: 0 10px 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(19, 62, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand > img {
  width: 45px;
  height: 45px;
  flex: none;
  border-radius: 14px;
  object-fit: cover;
}

.brand > span {
  display: flex;
  flex-direction: column;
}

.brand b {
  font-size: 15px;
  font-weight: 900;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #435a50;
  font-size: 12px;
  font-weight: 700;
}

.site-header nav a {
  transition: color 0.2s;
}

.site-header nav a:hover {
  color: var(--green);
}

.header-download {
  height: 43px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

main {
  width: min(1240px, 100%);
  margin: auto;
  overflow: clip;
}

.hero {
  min-height: 750px;
  padding: 0px 54px 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: 50px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow i {
  width: 24px;
  height: 2px;
  flex: none;
  background: var(--gold);
}

.hero h1 {
  margin: 18px 0;
  font-size: 55px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -2.5px;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 2.05;
}

.hero-actions {
  margin-top: 29px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 25px rgba(23, 103, 77, 0.22);
}

.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.hero-meta {
  margin-top: 27px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 11px;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-meta b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 630px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.phone {
  position: relative;
  z-index: 3;
  width: min(310px, 72%);
  padding: 6px;
  overflow: hidden;
  border: 8px solid #15372b;
  border-radius: 38px;
  background: #fff;
  transform: rotate(-8deg) scale(0.9);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.orbit {
  position: absolute;
  max-width: 92%;
  aspect-ratio: 1;
  border: 1px dashed rgba(23, 103, 77, 0.24);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.orbit-one {
  width: 530px;
}

.orbit-two {
  width: 410px;
  animation-direction: reverse;
  animation-duration: 21s;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.orbit::before {
  top: 9%;
  right: 15%;
}

.orbit::after {
  bottom: 8%;
  left: 16%;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 12px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(17, 69, 50, 0.14);
  backdrop-filter: blur(12px);
  z-index: 40;
}

.card-map {
  top: 115px;
  right: 0;
  gap: 8px;
}

.card-map > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 11px;
  background: #e3f0e9;
  color: var(--green);
}

.card-map div {
  display: flex;
  flex-direction: column;
}

.card-map small {
  color: var(--muted);
  font-size: 9px;
}

.card-map b {
  font-size: 11px;
}

.card-rating {
  bottom: 125px;
  left: 0;
  flex-direction: column;
}

.card-rating b {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.card-rating span {
  color: var(--muted);
  font-size: 9px;
}

.trust-strip {
  width: calc(100% - 80px);
  margin: auto;
  padding: 19px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
}

.trust-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--muted);
  font-size: 12px;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  flex: none;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 120px 54px;
}

.section-head {
  max-width: 630px;
  margin-bottom: 46px;
}

.section-head > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.section-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 4vw, 55px);
  font-weight: 900;
  line-height: 1.38;
  letter-spacing: -1.2px;
}

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

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

.feature-card {
  min-height: 300px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card > b {
  color: #91a89b;
  font-size: 12px;
  display: none;
}

.feature-card > i {
  width: 58px;
  height: 58px;
  margin: 34px 0 21px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #e3f0e9;
  color: var(--green);
  font-style: normal;
}

.feature-card > i svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
}

.feature-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.feature-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.experience {
  width: calc(100% - 36px);
  margin: auto;
  padding: 85px 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 50px;
  align-items: center;
  overflow: hidden;
  border-radius: 38px;
  background: var(--green);
  color: #fff;
}

.eyebrow.light {
  color: #dcebe4;
}

.experience-copy h2 {
  margin: 16px 0;
  font-size: clamp(35px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.38;
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 2;
}

.swiper-controls {
  margin-top: 30px;
  display: flex;
  gap: 8px;
}

.swiper-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.swiper-controls button svg {
  width: 21px;
  height: 21px;
}

.experience-prev svg {
  transform: rotate(180deg);
}

.experience-swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.experience-slide {
  position: relative;
  height: 455px;
  width: auto !important;
  overflow: hidden;
  border-radius: 15px;
  background: #f2f5f1;
  color: var(--ink);
  box-shadow: 0 24px 55px rgba(4, 34, 23, 0.24);
}

.experience-slide > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-slide > div {
  padding: 22px 23px;
  display: none;
}

.experience-slide small {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.experience-slide h3 {
  margin: 6px 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.55;
}

.experience-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.experience-swiper .swiper-pagination {
  position: static;
  margin-top: 19px;
}

.experience-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.38;
}

.experience-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 8px;
  opacity: 1;
}

.flow-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.flow-line::before {
  position: absolute;
  top: 33px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.25;
  content: "";
}

.flow-line article {
  position: relative;
  display: flex;
  gap: 17px;
}

.flow-line article > b {
  position: relative;
  z-index: 1;
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid #bfd4c8;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
}

.flow-line h3 {
  margin: 4px 0;
  font-size: 17px;
  font-weight: 800;
}

.flow-line p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.quote-section {
  position: relative;
  width: calc(100% - 108px);
  margin: 20px auto 0;
  padding: 100px 15%;
  overflow: hidden;
  border-radius: 36px;
  background: #e6efe9;
  text-align: center;
}

.quote-section::before {
  position: absolute;
  inset: 0;
  background: url("../asset/pattern.svg") center / 500px;
  opacity: 0.07;
  content: "";
}

.quote-section > * {
  position: relative;
}

.quote-section img {
  width: 120px;
  height: 55px;
  margin: 0 auto 25px;
  object-fit: contain;
}

.quote-section blockquote {
  margin: 0;
  font-size: clamp(23px, 3.1vw, 42px);
  font-weight: 900;
  line-height: 1.7;
}

.quote-section span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
}

.faq .section-head {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq details {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.75);
}

.faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary i {
  color: var(--green);
  font-style: normal;
  transition: transform 0.25s;
}

.faq summary i svg {
  width: 20px;
  height: 20px;
}

.faq details[open] summary i {
  transform: rotate(45deg);
}

.faq details p {
  margin: -3px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.download-card {
  width: calc(100% - 80px);
  min-height: 290px;
  margin: 0 auto 90px;
  padding: 45px 50px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 35px;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 30px 70px rgba(23, 103, 77, 0.25);
}

.download-art {
  position: relative;
  display: grid;
  place-items: center;
}

.download-art img {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 32px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.download-art i {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

.download-art i:last-child {
  animation-delay: 1.2s;
}

.download-card > div:nth-child(2) > span {
  color: #d4e7dd;
  font-size: 12px;
  font-weight: 700;
}

.download-card h2 {
  margin: 5px 0;
  font-size: 34px;
  font-weight: 900;
}

.download-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.9;
}

.download-white {
  background: #fff;
  color: var(--green);
  white-space: nowrap;

  display: none;
}

.download-white svg {
  width: 19px;
  height: 19px;
}

.legal-footer {
  width: 100%;
  padding: 74px max(28px, calc((100% - 1140px) / 2)) 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.65fr) repeat(3, minmax(145px, 0.8fr));
  gap: 48px;
  padding-bottom: 52px;
}

.footer-main section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-main section:first-child {
  padding-left: 24px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand b {
  font-size: 16px;
}

.footer-brand small {
  display: block;
  font-size: 11px;
}

.footer-main section:first-child > p {
  max-width: 440px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.footer-main h3 {
  margin: 6px 0 8px;
  font-size: 14px;
  font-weight: 900;
}

.footer-main section:not(:first-child) a,
.footer-main section:not(:first-child) > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  transition: color 0.2s;
}

.footer-main section:not(:first-child) a:hover {
  color: var(--green);
}

.footer-main a svg {
  width: 15px;
  height: 15px;
}

.footer-secure {
  margin-top: 8px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cfe0d7;
  border-radius: 12px;
  background: #f3f8f5;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
}

.footer-secure svg {
  width: 19px;
  height: 19px;
  flex: none;
}

.footer-bottom {
  min-height: 64px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom button {
  padding: 6px 9px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.footer-bottom button:hover {
  text-decoration: underline;
}

.legal-modal {
  width: min(760px, calc(100% - 28px));
  max-width: 760px;
  max-height: min(88dvh, 820px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(4, 35, 24, 0.32);
}

.legal-modal::backdrop {
  background: rgba(6, 31, 22, 0.68);
  backdrop-filter: blur(5px);
}

.legal-modal-shell {
  max-height: min(88dvh, 820px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.legal-modal-shell > header {
  padding: 25px 28px 21px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: #f7faf8;
}

.legal-modal-shell > header span {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.legal-modal-shell > header h2 {
  margin: 4px 0;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.5;
}

.legal-modal-shell > header p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.modal-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--green);
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.legal-modal-body {
  padding: 25px 30px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #a9c8b9 transparent;
  scrollbar-width: thin;
}

.legal-lead {
  margin: 0 0 24px;
  padding: 15px 17px;
  border-right: 3px solid var(--gold);
  border-radius: 12px;
  background: #f6f8f5;
  color: #3e574d;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.legal-modal-body section + section {
  margin-top: 24px;
}

.legal-modal-body h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
}

.legal-modal-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 2.05;
}

.legal-modal-body a {
  color: var(--green);
  font-weight: 700;
  direction: ltr;
  unicode-bidi: embed;
}

.legal-modal-shell > footer {
  padding: 15px 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.legal-modal-shell > footer .button {
  min-height: 46px;
}

.mobile-download {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  /* display: flex; */
  align-items: center;
  /* text-align: center; */
  flex-direction: column;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.72);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 36px 42px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 64px;
  }

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

  .trust-strip {
    width: calc(100% - 36px);
  }

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

  .experience {
    grid-template-columns: 1fr;
    padding: 60px 45px;
  }

  .experience-copy {
    text-align: center;
  }

  .swiper-controls {
    justify-content: center;
  }

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

  .download-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .download-card > a {
    grid-column: 1 / -1;
  }

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

  .footer-main section:first-child {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
    font-size: 15px;
  }

  .site-header {
    top: 7px;
    width: calc(100% - 16px);
    height: 61px;
    margin-top: 7px;
    padding-right: 8px;
    border-radius: 19px;
  }

  .brand {
    gap: 8px;
  }

  .brand > img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand b {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-download {
    height: 39px;
    padding-inline: 14px;
    border-radius: 12px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 58px 18px 30px;
    gap: 20px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    margin: 14px 0;
    font-size: 40px;
    line-height: 1.25;
    letter-spacing: -1.4px;
  }

  .hero-copy > p {
    font-size: 14px;
    line-height: 2;
  }

  .hero-actions {
    width: 100%;
    margin-top: 23px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 52px;
    font-size: 13px;
  }

  .hero-meta {
    margin-top: 23px;
    justify-content: center;
    gap: 9px 14px;
    font-size: 10px;
  }

  .hero-visual {
    width: 100%;
    min-height: clamp(500px, 145vw, 610px);
    margin: 0;
  }

  .phone {
    width: min(71vw, 286px);
    padding: 4px;
    border-width: 6px;
    border-radius: 25px;
    transform: rotate(0deg);
  }

  .phone img {
    border-radius: 18px;
  }

  .orbit {
    max-width: 90vw;
  }

  .orbit-one {
    width: 90vw;
  }

  .orbit-two {
    width: 73vw;
  }

  .floating-card {
    max-width: 43%;
    padding: 9px;
    border-radius: 13px;
  }

  .card-map {
    top: 14%;
    right: 0;
  }

  .card-map > span {
    width: 30px;
    height: 30px;
  }

  .card-map small {
    font-size: 7px;
  }

  .card-map b {
    font-size: 8px;
    line-height: 1.5;
  }

  .card-rating {
    bottom: 17%;
    left: 0;
  }

  .card-rating b {
    font-size: 18px;
  }

  .card-rating span {
    font-size: 8px;
  }

  .trust-strip {
    width: calc(100% - 28px);
    padding: 18px 13px;
    display: block;
    text-align: center;
  }

  .trust-strip p {
    font-size: 13px;
  }

  .trust-strip div {
    margin-top: 13px;
    justify-content: center;
    gap: 7px 10px;
    flex-wrap: wrap;
    font-size: 11px;
  }

  .section {
    padding: 82px 18px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head > span {
    font-size: 12px;
    text-align: center;
    width: 100%;
    display: none;
  }

  .section-head h2 {
    text-align: center;
    font-size: 28px;
    line-height: 1.45;
    letter-spacing: -0.8px;
  }

  .section-head p {
    font-size: 14px;
    line-height: 1.95;
    text-align: center;
  }

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

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

  .feature-card > i {
    width: 54px;
    height: 54px;
    margin: 0px 0 17px;
  }

  .feature-card h3 {
    font-size: 17px;
  }

  .feature-card p {
    font-size: 13.5px;
    line-height: 1.95;
    text-align: center;
  }

  .experience {
    width: calc(100% - 16px);
    padding: 52px 16px 42px;
    gap: 28px;
    border-radius: 28px;
  }

  .experience-copy {
    padding-inline: 3px;
  }

  .experience-copy h2 {
    font-size: clamp(29px, 9vw, 35px);
    line-height: 1.45;
  }

  .experience-copy p {
    font-size: 14px;
    line-height: 1.95;
  }

  .experience-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .experience-slide {
    height: 455px;
    /* border-radius: 22px; */
  }

  .experience-slide > img {
    /* height: 63%; */
  }

  .experience-slide > div {
    padding: 18px 19px;
  }

  .experience-slide h3 {
    font-size: 18px;
    line-height: 1.55;
  }

  .experience-slide p {
    font-size: 12.5px;
  }

  .flow-line {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .flow-line::before {
    top: 20px;
    right: 33px;
    bottom: 20px;
    left: auto;
    width: 1px;
    height: auto;
  }

  .flow-line article {
    gap: 16px;
  }

  .flow-line article > b {
    width: 66px;
    height: 66px;
  }

  .flow-line h3 {
    font-size: 17px;
    text-align: center;
  }

  .flow-line p {
    font-size: 13.5px;
    text-align: center;
  }

  .quote-section {
    width: calc(100% - 28px);
    padding: 65px 21px;
    border-radius: 28px;
  }

  .quote-section img {
    width: 105px;
    margin-bottom: 20px;
  }

  .quote-section blockquote {
    font-size: 25px;
  }

  .quote-section span {
    font-size: 13px;
  }

  .faq {
    gap: 20px;
  }

  .faq details {
    padding: 0 15px;
  }

  .faq summary {
    min-height: 66px;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .faq details p {
    font-size: 13px;
  }

  .download-card {
    width: calc(100% - 16px);
    margin-bottom: 35px;
    padding: 38px 20px;
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
    border-radius: 28px;
  }

  .download-art img {
    width: 105px;
    height: 105px;
  }

  .download-card h2 {
    font-size: 29px;
  }

  .download-card p {
    font-size: 13px;
  }

  .legal-footer {
    padding: 52px 20px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 38px;
  }

  .footer-main section {
    align-items: flex-start;
  }

  .footer-main section:first-child > p {
    font-size: 13px;
  }

  .footer-main h3 {
    font-size: 14px;
  }

  .footer-main section:not(:first-child) a,
  .footer-main section:not(:first-child) > span {
    font-size: 13px;
  }

  .footer-secure {
    width: 100%;
    font-size: 11.5px;
  }

  .footer-bottom {
    padding-top: 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom > div {
    margin-right: -8px;
  }

  .footer-bottom button {
    font-size: 12px;
  }

  .legal-modal {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 24px);
    border-radius: 23px;
  }

  .legal-modal-shell {
    max-height: calc(100dvh - 24px);
  }

  .legal-modal-shell > header {
    padding: 19px 18px 17px;
    gap: 12px;
  }

  .legal-modal-shell > header h2 {
    font-size: 18px;
  }

  .modal-close {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .legal-modal-body {
    padding: 20px 18px 28px;
  }

  .legal-lead {
    padding: 13px 14px;
    font-size: 13px;
  }

  .legal-modal-body h3 {
    font-size: 14px;
  }

  .legal-modal-body p {
    font-size: 12.5px;
  }

  .legal-modal-shell > footer {
    padding: 12px 18px;
  }

  .mobile-download {
    position: fixed;
    z-index: 200;
    right: 10px;
    bottom: 9px;
    left: 10px;
    height: 59px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(23, 103, 77, 0.95);
    color: #fff;
    box-shadow: 0 15px 35px rgba(9, 54, 38, 0.3);
    backdrop-filter: blur(16px);
  }

  .mobile-download span {
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-download b {
    color: #d9e9e0;
    font-size: 10px;
  }

  .reveal {
    transform: translateY(23px);
  }


    .qr{
    display: none !important;
  }

  .download-white {
    display: inline-flex !important;
  }

  .footer-sec {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-inline: 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .phone {
    width: 69vw;
  }

  .floating-card {
    max-width: 40%;
  }

  .card-map > span {
    display: none;
  }

  .section {
    padding-inline: 15px;
  }

  .experience {
    padding-inline: 13px;
  }

  .experience-slide {
    height: 435px;
  }

  .legal-footer {
    padding-inline: 17px;
  }

}

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

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

  .orbit,
  .download-art i {
    animation: none;
  }
}

.qr{
    width: 200px;
    border-radius: 25px;
    display: block;
}