:root {
  --ink: #211b1a;
  --brown: #513023;
  --muted: #776a5f;
  --paper: #fffaf0;
  --cream: #fff3d6;
  --saffron: #f47a22;
  --gold: #f5b83b;
  --rose: #e84470;
  --peacock: #007c77;
  --leaf: #15965f;
  --lotus: #fff0f4;
  --sky: #e7fbff;
  --line: rgba(81, 48, 35, 0.13);
  --soft-shadow: 0 24px 70px rgba(110, 61, 17, 0.16);
  --hard-shadow: 0 34px 90px rgba(72, 33, 21, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(244, 122, 34, 0.09) 0 1px, transparent 1px 40px),
    linear-gradient(0deg, rgba(0, 124, 119, 0.06) 0 1px, transparent 1px 40px),
    linear-gradient(180deg, #fff8e7 0%, #fffdf6 38%, #f4fff6 68%, #fff6f9 100%);
  font-family: Arial, "Noto Sans Devanagari", "Nirmala UI", sans-serif;
  line-height: 1.48;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  content: "";
}

body::before {
  top: -210px;
  left: -210px;
  width: 520px;
  height: 520px;
  opacity: 0.18;
  background:
    repeating-conic-gradient(from 12deg, var(--saffron) 0 10deg, transparent 10deg 20deg),
    repeating-radial-gradient(circle, transparent 0 32px, rgba(245, 184, 59, 0.75) 33px 35px);
  border-radius: 50%;
}

body::after {
  right: -150px;
  bottom: 16%;
  width: 360px;
  height: 360px;
  opacity: 0.12;
  background:
    repeating-conic-gradient(from -8deg, var(--peacock) 0 8deg, transparent 8deg 18deg),
    repeating-radial-gradient(circle, transparent 0 24px, rgba(232, 68, 112, 0.8) 25px 27px);
  border-radius: 50%;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
p {
  margin: 0;
}

.page {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 0 max(18px, calc((100vw - 1180px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 1px solid rgba(81, 48, 35, 0.1);
  box-shadow: 0 10px 32px rgba(72, 33, 21, 0.06);
  backdrop-filter: blur(12px);
}

.site-brand {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  gap: 12px;
}

.site-brand__mark {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--saffron);
  border: 8px solid rgba(255, 206, 90, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(129, 71, 25, 0.12);
}

.site-brand__mark::after {
  position: absolute;
  inset: -15px;
  content: "";
  border: 1px solid rgba(244, 122, 34, 0.24);
  border-radius: 50%;
}

.site-brand strong,
.site-brand small {
  display: block;
}

.site-brand strong {
  color: #2b211c;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.05;
}

.site-brand small {
  margin-top: 4px;
  color: #7a6251;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: #5e4a3b;
  font-size: 0.92rem;
  font-weight: 900;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover {
  color: #1f726c;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-header__cta {
  display: inline-flex;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 950;
  align-items: center;
  justify-content: center;
  background: #118867;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(17, 136, 103, 0.18);
  transition: background 160ms ease, transform 160ms ease;
}

.site-header__cta:hover {
  background: #0b715c;
  transform: translateY(-1px);
}

.hero,
.section,
.stats {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: center;
  min-height: calc(94vh - 90px);
  padding: 32px 0 54px;
}

.hero__content,
.section__copy,
.final-cta__inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 16px;
  color: #793b08;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 243, 214, 0.96), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(244, 122, 34, 0.22);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(244, 122, 34, 0.11);
}

h1 {
  max-width: 760px;
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 720px;
  font-size: 3.6rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 span,
h2 span,
.hero__lead span,
.section__copy p span,
.button span,
.stat span,
.steps span {
  display: block;
}

h1 span:first-child,
h2 span:first-child {
  background: linear-gradient(100deg, #2c201b 0%, #6b3215 42%, #007c77 100%);
  -webkit-background-clip: text;
  color: transparent;
}

h1 span + span,
h2 span + span {
  margin-top: 16px;
  color: var(--peacock);
  font-size: 0.58em;
  line-height: 1.22;
}

.hero__lead {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 26px;
  color: #4c433d;
  font-size: 1.22rem;
}

.hero__lead span[lang="hi"] {
  color: #6c6259;
  font-weight: 700;
}

.hero__checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin-top: 32px;
}

.hero__checks li {
  position: relative;
  min-height: 128px;
  padding: 20px 18px 18px;
  overflow: hidden;
  color: #2a211d;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(95, 48, 19, 0.11);
  backdrop-filter: blur(18px);
}

.hero__checks li::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 13px;
  color: #fff;
  content: "✓";
  place-items: center;
  background: linear-gradient(135deg, var(--leaf), var(--peacock));
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(21, 150, 95, 0.26);
}

.hero__checks li::after {
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 118px;
  height: 118px;
  content: "";
  background: repeating-conic-gradient(from 18deg, rgba(245, 184, 59, 0.24) 0 12deg, transparent 12deg 24deg);
  border-radius: 50%;
}

.hero__checks span {
  position: relative;
  display: block;
  font-weight: 900;
}

.hero__checks span + span {
  margin-top: 6px;
  color: #6c6259;
  font-size: 0.94rem;
  font-weight: 800;
}

.button {
  position: relative;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-top: 34px;
  padding: 15px 30px;
  overflow: hidden;
  color: #fff;
  font-weight: 950;
  line-height: 1.08;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0 20px 42px rgba(232, 68, 112, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover {
  box-shadow: 0 24px 54px rgba(232, 68, 112, 0.32);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(120%);
}

.button--primary {
  background: linear-gradient(135deg, #f47a22 0%, #e84470 52%, #bd2660 100%);
}

.button--secondary {
  background: linear-gradient(135deg, #15965f 0%, #007c77 62%, #006a96 100%);
  box-shadow: 0 20px 42px rgba(0, 124, 119, 0.23);
}

.button span {
  position: relative;
  z-index: 1;
}

.button span + span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
}

.hero__microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: #6e5f53;
  font-size: 0.9rem;
  font-weight: 850;
}

.hero__microproof span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(81, 48, 35, 0.1);
  border-radius: 999px;
}

.hero__visual {
  position: relative;
  min-height: 650px;
}

.hero__visual::before {
  position: absolute;
  top: 36px;
  right: 12px;
  width: 430px;
  height: 570px;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 244, 211, 0.5)),
    repeating-linear-gradient(45deg, rgba(244, 122, 34, 0.12) 0 10px, transparent 10px 22px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 48px;
  box-shadow: var(--soft-shadow);
  transform: rotate(-4deg);
}

.hero__visual::after {
  position: absolute;
  right: 0;
  bottom: 26px;
  width: 190px;
  height: 190px;
  content: "";
  background:
    repeating-conic-gradient(from 0deg, rgba(232, 68, 112, 0.82) 0 8deg, transparent 8deg 20deg),
    repeating-radial-gradient(circle, transparent 0 22px, rgba(245, 184, 59, 0.6) 23px 25px);
  border-radius: 50%;
  opacity: 0.26;
}

.iphone {
  position: absolute;
  top: 50%;
  right: 44px;
  width: 360px;
  padding: 12px;
  background: linear-gradient(145deg, #1a1719, #4a403e 45%, #0c0c0f);
  border-radius: 48px;
  box-shadow: var(--hard-shadow);
  transform: translateY(-50%) rotate(2.5deg);
}

.iphone::before {
  position: absolute;
  inset: 7px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42px;
}

.iphone__island {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 30px;
  background: #0b0b0d;
  border-radius: 999px;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.iphone__screen {
  position: relative;
  min-height: 655px;
  padding: 58px 18px 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 244, 211, 0.92), rgba(231, 251, 255, 0.88) 46%, rgba(255, 240, 244, 0.92)),
    radial-gradient(circle at 0 0, rgba(244, 122, 34, 0.16), transparent 210px);
  border-radius: 38px;
}

.iphone__screen::after {
  position: absolute;
  right: -66px;
  bottom: -64px;
  width: 200px;
  height: 200px;
  content: "";
  background: repeating-conic-gradient(from 10deg, rgba(0, 124, 119, 0.16) 0 10deg, transparent 10deg 24deg);
  border-radius: 50%;
}

.phone__status {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  color: #332c28;
  font-size: 0.82rem;
  font-weight: 900;
}

.phone__profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(72, 33, 21, 0.1);
}

.phone__profile strong,
.phone__profile span {
  display: block;
}

.phone__profile strong {
  font-size: 1rem;
}

.phone__profile span {
  color: var(--peacock);
  font-size: 0.86rem;
  font-weight: 850;
}

.phone__profile small {
  color: #fff;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2aa7df, #167fc9);
  border-radius: 999px;
}

.avatar {
  display: grid;
  width: 48px;
  height: 48px;
  color: #fff;
  font-weight: 950;
  place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--saffron) 62%, var(--gold));
  border: 3px solid #fff;
  border-radius: 50%;
}

.chat {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 88%;
  margin-top: 18px;
  padding: 13px 15px;
  font-weight: 850;
  border-radius: 22px;
}

.chat--left {
  color: #2f2926;
  background: rgba(255, 255, 255, 0.92);
  border-bottom-left-radius: 6px;
  box-shadow: 0 10px 22px rgba(72, 33, 21, 0.1);
}

.chat--right {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, #219add, #007cbd);
  border-bottom-right-radius: 6px;
}

.profit-card {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(135deg, #007c77, #15965f 58%, #74a71f);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 124, 119, 0.22);
}

.profit-card span,
.profit-card strong,
.profit-card small {
  display: block;
}

.profit-card span {
  font-weight: 900;
  opacity: 0.88;
}

.profit-card strong {
  margin-top: 6px;
  font-size: 3.5rem;
  line-height: 1;
}

.profit-card small {
  margin-top: 9px;
  font-weight: 900;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 62px;
  align-items: center;
  padding: 86px 0;
}

.section__copy p {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-top: 22px;
  color: #4d443e;
  font-size: 1.1rem;
}

.section__copy p span[lang="hi"] {
  color: #73675e;
  font-weight: 750;
}

.access-flow {
  position: relative;
  min-height: 560px;
}

.access-flow::before {
  position: absolute;
  inset: 28px 26px 34px 16px;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 243, 214, 0.42)),
    repeating-linear-gradient(-45deg, rgba(0, 124, 119, 0.08) 0 8px, transparent 8px 20px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 42px;
  transform: rotate(3deg);
}

.access-flow__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(420px, 100%);
  margin: 28px auto 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.access-flow__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--rose));
  border-radius: 24px;
}

.access-flow__topline span,
.access-flow__topline strong {
  display: block;
  font-weight: 950;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fffdf7;
  border: 1px solid rgba(81, 48, 35, 0.09);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(72, 33, 21, 0.07);
}

.flow-step::before {
  position: absolute;
  left: 49px;
  bottom: -17px;
  width: 3px;
  height: 17px;
  content: "";
  background: linear-gradient(180deg, var(--gold), transparent);
}

.flow-step:last-of-type::before {
  display: none;
}

.flow-step--active {
  border-color: rgba(244, 122, 34, 0.28);
  background: linear-gradient(135deg, #fff8e4, #fff);
}

.flow-step__index {
  display: flex;
  flex-direction: column;
  width: 66px;
  height: 58px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 950;
  line-height: 1;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--peacock), var(--leaf));
  border-radius: 20px;
  text-align: center;
}

.flow-step__index small {
  display: block;
  margin-bottom: 4px;
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0.82;
}

.flow-step div strong,
.flow-step div span {
  display: block;
}

.flow-step div strong {
  font-size: 1rem;
}

.flow-step div span[lang="hi"] {
  margin-top: 4px;
  color: #73675e;
  font-size: 0.9rem;
  font-weight: 800;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  height: 110px;
  padding: 18px;
  background: linear-gradient(135deg, #e7fbff, #fff7de);
  border-radius: 26px;
}

.mini-chart span {
  display: block;
  min-height: 26px;
  background: linear-gradient(180deg, var(--rose), var(--saffron) 62%, var(--gold));
  border-radius: 999px 999px 10px 10px;
  box-shadow: 0 10px 18px rgba(244, 122, 34, 0.18);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 243, 214, 0.62)),
    repeating-linear-gradient(90deg, rgba(244, 122, 34, 0.07) 0 10px, transparent 10px 22px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  box-shadow: var(--soft-shadow);
}

.stat {
  position: relative;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(72, 33, 21, 0.08);
}

.stat::after {
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 152px;
  height: 152px;
  content: "";
  background: repeating-conic-gradient(from 8deg, rgba(245, 184, 59, 0.3) 0 12deg, transparent 12deg 26deg);
  border-radius: 50%;
}

.stat__icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--rose));
  border-radius: 20px;
  box-shadow: 0 14px 26px rgba(232, 68, 112, 0.18);
}

.stat:nth-child(2) .stat__icon {
  background: linear-gradient(135deg, var(--peacock), var(--leaf));
  box-shadow: 0 14px 26px rgba(0, 124, 119, 0.18);
}

.stat:nth-child(3) .stat__icon {
  background: linear-gradient(135deg, #3767d8, var(--peacock));
  box-shadow: 0 14px 26px rgba(55, 103, 216, 0.18);
}

.stat__icon::before,
.stat__icon::after {
  position: absolute;
  content: "";
}

.stat:nth-child(1) .stat__icon::before {
  top: 16px;
  left: 21px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    -13px 13px 0 -2px rgba(255, 255, 255, 0.82),
    13px 13px 0 -2px rgba(255, 255, 255, 0.82);
}

.stat:nth-child(1) .stat__icon::after {
  left: 13px;
  bottom: 13px;
  width: 32px;
  height: 12px;
  background: #fff;
  border-radius: 999px 999px 8px 8px;
}

.stat:nth-child(2) .stat__icon::before {
  inset: 0;
  display: grid;
  color: #fff;
  content: "₹";
  font-size: 2rem;
  font-weight: 950;
  line-height: 58px;
  place-items: center;
}

.stat:nth-child(3) .stat__icon::before {
  top: 15px;
  left: 15px;
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.stat:nth-child(3) .stat__icon::after {
  top: 25px;
  left: 28px;
  width: 11px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  transform-origin: left center;
  transform: rotate(35deg);
}

.stat strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 3.15rem;
  line-height: 1;
}

.stat > span:not(.stat__icon) {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 11px;
  color: #4f453f;
  font-weight: 900;
}

.stat > span[lang="hi"] {
  color: #786b62;
  font-size: 0.98rem;
}

.testimonials {
  display: block;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.reviews-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  padding: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(244, 122, 34, 0.45), rgba(232, 68, 112, 0.35), rgba(0, 124, 119, 0.38)) border-box;
  border: 2px solid transparent;
  border-radius: 26px;
  box-shadow: 0 22px 48px rgba(72, 33, 21, 0.14);
}

.final-cta {
  width: 100%;
  margin-top: 26px;
  padding: 82px 16px 86px;
  background:
    linear-gradient(135deg, rgba(244, 122, 34, 0.15), rgba(255, 255, 255, 0) 32%),
    linear-gradient(90deg, #fff5db, #f2fff5 54%, #fff2f7);
  border-top: 1px solid rgba(244, 122, 34, 0.14);
}

.final-cta__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.steps li {
  position: relative;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 18px 38px rgba(72, 33, 21, 0.09);
}

.steps li::after {
  position: absolute;
  right: -44px;
  top: -54px;
  width: 140px;
  height: 140px;
  content: "";
  background: repeating-conic-gradient(from 12deg, rgba(244, 122, 34, 0.18) 0 10deg, transparent 10deg 24deg);
  border-radius: 50%;
}

.steps strong {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.08rem;
  place-items: center;
  background: linear-gradient(135deg, var(--saffron), var(--rose));
  border-radius: 18px;
}

.steps li:nth-child(2) strong {
  background: linear-gradient(135deg, var(--peacock), var(--leaf));
}

.steps li:nth-child(3) strong {
  background: linear-gradient(135deg, #3767d8, var(--peacock));
}

.steps span {
  position: relative;
  z-index: 1;
  color: #2d2420;
  font-weight: 950;
}

.steps span[lang="hi"] {
  margin-top: 9px;
  color: #71655d;
  font-weight: 850;
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.1rem;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 70px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero__visual {
    min-height: 690px;
  }

  .iphone {
    right: 50%;
    transform: translate(50%, -50%) rotate(1deg);
  }

  .section {
    gap: 34px;
  }

  .stats,
  .steps {
    grid-template-columns: 1fr;
  }

  .stat,
  .steps li {
    min-height: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    top: 0;
    width: 100%;
    min-height: 64px;
    margin-top: 0;
    padding: 0 14px;
    border-radius: 0;
  }

  .site-brand__mark {
    width: 28px;
    height: 28px;
    border-width: 7px;
  }

  .site-brand strong {
    font-size: 0.96rem;
  }

  .site-brand small {
    font-size: 0.72rem;
  }

  .site-header__cta {
    min-height: 44px;
    padding: 0 15px;
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .stats {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  h1 span + span,
  h2 span + span {
    margin-top: 14px;
  }

  .hero__lead,
  .section__copy p {
    font-size: 1rem;
  }

  .hero__checks,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding-inline: 18px;
  }

  .button span + span {
    padding-top: 8px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.48);
    border-left: 0;
  }

  .hero__visual {
    min-height: 640px;
  }

  .hero__visual::before {
    right: 50%;
    width: min(380px, 96vw);
    height: 560px;
    transform: translateX(50%) rotate(-2deg);
  }

  .iphone {
    width: min(340px, 94vw);
  }

  .iphone__screen {
    min-height: 620px;
  }

  .profit-card strong {
    font-size: 3rem;
  }

  .access-flow {
    min-height: 530px;
  }

  .stats {
    padding: 12px;
    border-radius: 28px;
  }

  .section {
    padding: 62px 0;
  }

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

@media (max-width: 430px) {
  .site-header {
    gap: 10px;
    padding: 0 10px;
  }

  .site-brand {
    gap: 9px;
  }

  .site-brand__mark {
    width: 24px;
    height: 24px;
    border-width: 6px;
  }

  .site-brand small {
    display: none;
  }

  .site-header__cta {
    min-height: 40px;
    padding: 0 12px;
    white-space: nowrap;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero__checks li,
  .stat,
  .steps li {
    border-radius: 24px;
  }

  .iphone {
    padding: 9px;
    border-radius: 42px;
  }

  .iphone__screen {
    padding-inline: 14px;
    border-radius: 34px;
  }

  .phone__profile {
    grid-template-columns: 46px 1fr;
  }

  .phone__profile small {
    display: none;
  }

  .access-flow__panel {
    padding: 18px;
    border-radius: 28px;
  }

  .flow-step {
    grid-template-columns: 58px 1fr;
    padding: 14px;
  }

  .flow-step::before {
    left: 43px;
  }

  .flow-step__index {
    width: 58px;
    height: 54px;
  }
}
