/* ── HERO ── */
.hero {
  background:
    radial-gradient(circle at 80% 34%, rgba(116, 205, 255, 0.42), transparent 30%),
    radial-gradient(circle at 62% 78%, rgba(17, 91, 255, 0.44), transparent 34%),
    linear-gradient(118deg, #06125b 0%, #0a2db8 42%, #0b58f0 74%, #46a6ff 100%);
  isolation: isolate;
  min-height: 660px;
  overflow: hidden;
  padding: 98px 0 108px;
  position: relative;
}

.hero__background,
.hero__skyline,
.hero__glow {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero__background {
  z-index: -1;
}

.hero__glow {
  background:
    radial-gradient(circle at 76% 46%, rgba(145, 217, 255, 0.52), transparent 28%),
    radial-gradient(circle at 64% 79%, rgba(2, 86, 255, 0.38), transparent 34%);
  filter: blur(10px);
  opacity: 0.95;
}

.hero__skyline {
  background: url("../assets/images/hero-website.webp") center bottom / cover no-repeat;
  bottom: 0;
  height: 100%;
  opacity: 0.6;
  top: 0;
}

/* Vignette edges para efecto premium */
.hero::before {
  background:
    linear-gradient(to right, rgba(10, 30, 140, 0.6) 0%, transparent 20%, transparent 80%, rgba(10, 30, 140, 0.6) 100%),
    linear-gradient(to bottom, rgba(10, 30, 140, 0.3) 0%, transparent 30%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero__cloud {
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  height: 18px;
  position: absolute;
  z-index: 2;
}

.hero__cloud::before,
.hero__cloud::after {
  background: inherit;
  border-radius: 50%;
  content: "";
  position: absolute;
}

.hero__cloud::before {
  height: 42px;
  left: 28px;
  top: -24px;
  width: 42px;
}

.hero__cloud::after {
  height: 58px;
  left: 62px;
  top: -38px;
  width: 58px;
}

.hero__cloud--one {
  right: 12%;
  top: 96px;
  width: 138px;
}

.hero__cloud--two {
  right: 28%;
  top: 180px;
  width: 112px;
}

.hero__cloud--three {
  left: 47%;
  top: 152px;
  width: 94px;
}

.hero__inner {
  align-items: center;
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 3;
}

.hero__content {
  max-width: 650px;
}

.hero__eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: var(--color-white);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding: 7px 14px;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.06;
  max-width: 700px;
}

.hero h1 span {
  color: #7dd3fc;
  display: block;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 18px;
  max-width: 480px;
}

.hero__summary {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 12px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin-top: 26px;
}

.hero__badges li {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  font-size: 0.85rem;
  font-weight: 600;
  gap: 7px;
}

.hero__badges li::before {
  background: var(--color-green);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
  flex: 0 0 10px;
  height: 10px;
  width: 10px;
}

.hero__visual {
  min-height: 520px;
}

/* ── PHONE STAGE ── */
.phone-stage {
  height: 540px;
  margin: 0 auto;
  max-width: 680px;
  position: relative;
}

/* Sombra difuminada debajo de ambos teléfonos */
.phone-stage::before {
  background:
    radial-gradient(ellipse at center, rgba(120, 206, 255, 0.58) 0%, rgba(19, 96, 255, 0.36) 36%, rgba(3, 20, 96, 0.2) 58%, transparent 76%);
  bottom: 10px;
  content: "";
  filter: blur(34px);
  height: 118px;
  left: 7%;
  mix-blend-mode: screen;
  opacity: 0.72;
  position: absolute;
  width: 86%;
  z-index: 0;
}

.iphone {
  background: linear-gradient(145deg, #8b95a5 0%, #2c3544 18%, #050811 50%, #252d39 78%, #c7ced8 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 52px;
  box-shadow:
    0 46px 92px rgba(0, 10, 70, 0.52),
    0 12px 28px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  padding: 10px;
  position: absolute;
  width: 278px;
  z-index: 1;
}

/* Brillo lateral en los teléfonos */
.iphone::before {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  inset: 1px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.iphone--home {
  left: 56px;
  top: 4px;
  transform: rotate(-4deg);
  z-index: 2;
}

.iphone--request {
  right: 12px;
  top: 74px;
  transform: rotate(7.5deg);
  z-index: 3;
}

.iphone__notch {
  background: #02050d;
  border-radius: 999px;
  height: 23px;
  left: 50%;
  position: absolute;
  top: 17px;
  transform: translateX(-50%);
  width: 92px;
  z-index: 5;
}

.iphone__screen {
  aspect-ratio: 9 / 19.3;
  background: #ffffff;
  border-radius: 40px;
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.iphone__screen--home {
  background-image: none;
  background-position: center center;
}

.iphone__screen--request {
  background-image: none;
  background-position: center center;
}

.iphone__screen img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}

.iphone__screen--home img {
  object-position: center center;
}

.iphone__screen--request img {
  object-position: center center;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--color-white);
  margin-top: -62px;
  position: relative;
  z-index: 4;
}

.trust-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-border);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  display: grid;
  overflow: hidden;
}

.trust-item {
  align-items: center;
  display: flex;
  gap: 16px;
  min-height: 104px;
  padding: 22px 30px;
}

.trust-item img {
  flex-shrink: 0;
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.trust-item + .trust-item {
  border-top: 1px solid var(--color-border);
}

.trust-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-item p {
  color: var(--color-muted);
  font-size: 0.88rem;
  margin-top: 3px;
}

/* ── SERVICES ── */
.services-section {
  background: var(--color-white);
  padding-bottom: 48px;
  padding-top: 42px;
}

.services-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.service-card {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  display: grid;
  justify-items: center;
  min-height: 154px;
  padding: 24px 14px;
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(6, 77, 251, 0.2);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.service-card img {
  background: #dbeafe;
  border-radius: 15px;
  height: 58px;
  margin-bottom: 12px;
  padding: 11px;
  width: 58px;
}

.service-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  max-width: 10ch;
}

/* ── ABOUT ── */
.about-section {
  background: var(--color-white);
  padding-top: 0;
}

.about-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: grid;
  min-height: 380px;
  overflow: hidden;
  position: relative;
}

.about-card__copy {
  padding: 36px 32px;
  position: relative;
  z-index: 2;
}

.about-card__copy h2 {
  margin-top: 8px;
}

.about-card__copy p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 420px;
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0 24px;
}

.check-list li {
  align-items: flex-start;
  color: var(--color-ink-soft);
  display: flex;
  gap: 10px;
}

.check-list li::before {
  align-items: center;
  border: 2px solid var(--color-blue-700);
  border-radius: 50%;
  color: var(--color-blue-700);
  content: "\2713";
  display: inline-flex;
  flex: 0 0 18px;
  font-size: 0.7rem;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  margin-top: 2px;
  width: 18px;
}

.about-card__visual {
  min-height: 280px;
  position: relative;
  z-index: 1;
}

.about-card__visual img {
  height: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

/* ── PROCESS ── */
.process-section {
  background: var(--color-white);
  padding-bottom: 44px;
  padding-top: 36px;
}

.process-steps {
  display: grid;
  gap: 16px;
  list-style: none;
  margin-top: 10px;
}

.process-step {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  position: relative;
}

.process-step__icon {
  align-items: center;
  background: var(--color-blue-100);
  border-radius: 50%;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  width: 54px;
  flex-shrink: 0;
}

.process-step__icon img {
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.process-step__icon--green {
  background: var(--color-green-soft);
}

.process-step h3 {
  font-size: 0.9rem;
  font-weight: 800;
  padding-top: 5px;
}

.process-step p {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin-top: 3px;
}

/* ── CTA ── */
.cta-section {
  background: var(--color-white);
  padding-bottom: 38px;
  padding-top: 28px;
}

.cta-card {
  align-items: center;
  background: linear-gradient(135deg, #0a2598 0%, #1247e8 55%, #2563eb 100%);
  border-radius: 22px;
  box-shadow: 0 20px 56px rgba(0, 22, 120, 0.28);
  color: var(--color-white);
  display: grid;
  gap: 28px;
  padding: 40px 36px;
}

.cta-card h2,
.cta-card p {
  color: var(--color-white);
}

.cta-card h2 {
  font-size: 1.9rem;
  max-width: 380px;
}

.cta-card p {
  margin-top: 10px;
  opacity: 0.88;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-button {
  align-items: center;
  background: #05070f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: var(--color-white);
  display: inline-flex;
  gap: 12px;
  min-height: 56px;
  padding: 10px 22px;
}

.store-button img {
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.store-button span {
  color: var(--color-white);
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-white);
  color: var(--color-ink);
  padding: 38px 0 24px;
}

.site-footer__grid {
  display: grid;
  gap: 28px;
}

.site-footer__brand p {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 240px;
}

.site-footer__links,
.site-footer__contact {
  display: grid;
  font-style: normal;
  gap: 6px;
}

.site-footer .footer-heading {
  color: var(--color-ink);
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.site-footer a,
.site-footer span,
.site-footer small,
.site-footer p {
  color: var(--color-muted);
  font-size: 0.88rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-blue-700);
}

.site-footer__contact a {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-footer__contact img {
  flex-shrink: 0;
  height: 18px;
  object-fit: contain;
  width: 18px;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 20px;
}

.made-in {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.flag-cr {
  background: linear-gradient(to bottom, #002b7f 0 18%, #ffffff 18% 34%, #ce1126 34% 66%, #ffffff 66% 82%, #002b7f 82% 100%);
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  display: inline-flex;
  height: 16px;
  width: 26px;
}

/* Visual refresh aligned with Landing Page-New */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(206, 231, 255, 0.62), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f7fbff 58%, #eef5ff 100%);
  min-height: 760px;
  padding: 142px 0 138px;
}

.hero__skyline {
  background: url("../assets/images/hero-website.webp") center bottom / cover no-repeat;
  opacity: 0.92;
}

.hero__glow {
  background:
    radial-gradient(ellipse at 74% 70%, rgba(37, 99, 255, 0.15), transparent 38%),
    radial-gradient(ellipse at 86% 48%, rgba(117, 190, 255, 0.18), transparent 34%);
  filter: blur(18px);
  opacity: 0.92;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 30%, rgba(255, 255, 255, 0.36) 58%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0.12) 76%, rgba(255, 255, 255, 0.78) 100%);
}

.hero::after {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.78) 84%, #ffffff 100%);
  bottom: 0;
  content: "";
  height: 190px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero__cloud {
  display: none;
}

.hero__inner {
  gap: 34px;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  color: var(--color-ink-soft);
  font-size: 0.84rem;
  gap: 8px;
  letter-spacing: 0;
  margin-bottom: 34px;
  padding: 8px 14px;
}

.hero__eyebrow::before {
  background: linear-gradient(to bottom, #002b7f 0 18%, #ffffff 18% 34%, #ce1126 34% 66%, #ffffff 66% 82%, #002b7f 82% 100%);
  border: 1px solid var(--color-border-strong);
  border-radius: 2px;
  content: "";
  flex: 0 0 22px;
  height: 14px;
}

.hero h1 {
  color: var(--color-ink);
  font-size: 3rem;
  line-height: 1.12;
  max-width: 720px;
}

.hero-title__line {
  display: block;
}

.hero-title__line--main {
  color: var(--color-ink);
  white-space: nowrap;
}

.hero h1 span,
.hero-title__line--accent {
  color: var(--color-blue-700);
  white-space: nowrap;
}

.hero h1 .hero-title__line--main {
  color: var(--color-ink);
}

.hero__lead {
  color: var(--color-ink-soft);
  font-size: 1.34rem;
  font-weight: 500;
  line-height: 1.62;
  margin-top: 42px;
  max-width: 560px;
}

.hero__summary {
  color: var(--color-muted);
}

.hero__actions {
  gap: 28px;
  margin-top: 36px;
}

.hero__badges {
  gap: 12px 34px;
  margin-top: 82px;
}

.hero__badges li {
  color: var(--color-ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.hero__badges li::before {
  background: transparent;
  border: 2px solid var(--color-blue-700);
}

.hero__visual {
  min-height: 610px;
}

.phone-stage {
  height: 620px;
  max-width: 740px;
}

.phone-stage::before {
  background:
    radial-gradient(ellipse at center, rgba(15, 23, 42, 0.22) 0%, rgba(37, 99, 255, 0.12) 42%, transparent 72%);
  bottom: 18px;
  filter: blur(30px);
  height: 108px;
  left: 5%;
  mix-blend-mode: normal;
  opacity: 0.85;
  width: 90%;
}

.iphone {
  box-shadow:
    0 38px 74px rgba(15, 23, 42, 0.23),
    0 12px 24px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.iphone--home {
  left: 36px;
  top: 0;
  transform: rotate(-3.5deg);
}

.iphone--request {
  right: 6px;
  top: 62px;
  transform: rotate(5deg);
}

.trust-strip {
  margin-top: -72px;
}

.trust-panel {
  border-radius: 20px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
}

.trust-item {
  gap: 20px;
  min-height: 142px;
  padding: 28px 42px;
}

.trust-item img {
  height: 52px;
  width: 52px;
}

.trust-item h3 {
  font-size: 1rem;
}

.trust-item p {
  font-size: 0.94rem;
  line-height: 1.55;
  margin-top: 6px;
}

.services-section {
  padding-bottom: 58px;
  padding-top: 62px;
}

.services-grid {
  gap: 34px;
  margin: 30px auto 0;
  max-width: 1120px;
}

.service-card {
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  min-height: 178px;
  padding: 28px 14px 24px;
}

.service-card img {
  background: #eef4ff;
  height: 64px;
  margin-bottom: 22px;
  width: 64px;
}

.service-card h3 {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 800;
}

.about-section {
  padding-bottom: 62px;
  padding-top: 12px;
}

.about-card {
  background: linear-gradient(90deg, #f4f8ff 0%, #eef6ff 42%, #dcebff 100%);
  border-radius: 24px;
  box-shadow: 0 22px 62px rgba(15, 23, 42, 0.08);
  min-height: 486px;
}

.about-card__copy {
  padding: 48px 44px;
}

.about-card__copy h2 {
  margin-top: 14px;
}

.about-card__copy p:not(.eyebrow) {
  max-width: 390px;
}

.about-card__visual {
  min-height: 360px;
}

.about-card__visual img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 24%);
  mask-image: linear-gradient(to right, transparent 0%, black 24%);
  object-position: center right;
}

.process-section {
  padding-bottom: 56px;
  padding-top: 8px;
}

.process-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.process-steps {
  counter-reset: process-step;
  gap: 26px;
  margin-top: 44px;
}

.process-step {
  counter-increment: process-step;
  gap: 14px;
  grid-template-columns: 78px minmax(0, 1fr);
}

.process-step::before {
  color: #d9e4f7;
  content: counter(process-step);
  font-size: 3.65rem;
  font-weight: 900;
  left: 0;
  line-height: 1;
  position: absolute;
  top: -8px;
  z-index: 0;
}

.process-step__icon {
  margin-left: 34px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  color: var(--color-ink);
  font-size: 0.92rem;
  padding-top: 7px;
}

.cta-section {
  padding-bottom: 42px;
  padding-top: 18px;
}

.cta-card {
  background:
    radial-gradient(circle at 64% 50%, rgba(37, 99, 255, 0.34), transparent 35%),
    linear-gradient(135deg, #02112d 0%, #05224c 55%, #061a3b 100%);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(2, 17, 45, 0.22);
  padding: 44px 68px;
}

.cta-card h2 {
  font-size: 2.45rem;
  max-width: 440px;
}

.cta-card h2 span {
  color: var(--color-blue-400);
}

/* Premium visual pass - Landing Page-New alignment */
.hero {
  background:
    radial-gradient(circle at 74% 20%, rgba(219, 237, 255, 0.72), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #eef5ff 100%);
  min-height: 790px;
  padding: 142px 0 136px;
}

.hero__skyline {
  background: url("../assets/images/hero-website.webp") center bottom / cover no-repeat;
  opacity: 1;
}

.hero__glow {
  background:
    radial-gradient(ellipse at 70% 78%, rgba(37, 99, 255, 0.12), transparent 42%),
    radial-gradient(ellipse at 84% 52%, rgba(125, 204, 255, 0.16), transparent 34%);
  filter: none;
  opacity: 1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.92) 30%, rgba(255, 255, 255, 0.4) 55%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.1) 52%, rgba(255, 255, 255, 0.62) 100%);
}

.hero__content {
  max-width: 660px;
}

.hero h1 {
  color: var(--color-ink);
  font-size: clamp(3.25rem, 3.7vw, 4.05rem);
  letter-spacing: 0;
  line-height: 1.08;
  max-width: 760px;
}

.hero h1 span {
  color: var(--color-blue-700);
}

.hero__lead {
  color: var(--color-ink-soft);
  font-size: 1.34rem;
  font-weight: 500;
  line-height: 1.58;
  margin-top: 36px;
  max-width: 560px;
}

.hero__actions {
  gap: 30px;
  margin-top: 36px;
}

.hero__badges {
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
  margin-top: 70px;
  white-space: nowrap;
}

.hero__badges li {
  color: var(--color-ink-soft);
  font-size: 0.83rem;
  font-weight: 700;
  gap: 8px;
}

.hero__badges li::before {
  display: none;
}

.hero__badges .mdi {
  color: var(--color-blue-700);
  font-size: 1.14rem;
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.hero__visual {
  min-height: 650px;
}

.phone-stage {
  height: 672px;
  max-width: 760px;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.phone-stage::before {
  background:
    radial-gradient(ellipse at center, rgba(4, 12, 31, 0.24) 0%, rgba(15, 23, 42, 0.12) 36%, transparent 72%);
  bottom: 10px;
  filter: blur(28px);
  height: 122px;
  left: 10%;
  mix-blend-mode: normal;
  opacity: 0.85;
  width: 80%;
  z-index: 0;
}

.phone-stage::after {
  background:
    radial-gradient(ellipse at center, rgba(65, 137, 255, 0.24) 0%, rgba(103, 194, 255, 0.13) 36%, transparent 72%);
  bottom: 28px;
  content: "";
  filter: blur(42px);
  height: 112px;
  left: 16%;
  pointer-events: none;
  position: absolute;
  width: 72%;
  z-index: 0;
}

.iphone {
  background:
    linear-gradient(118deg, #8a929d 0%, #1b222c 10%, #060a12 42%, #303846 74%, #cbd2db 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 56px;
  box-shadow:
    0 44px 72px rgba(15, 23, 42, 0.28),
    0 16px 28px rgba(15, 23, 42, 0.2),
    -8px 4px 12px rgba(255, 255, 255, 0.42) inset,
    6px 0 10px rgba(0, 0, 0, 0.3) inset;
  padding: 11px;
  transform-style: preserve-3d;
  width: 334px;
}

.iphone::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 10%, transparent 86%, rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  inset: 1px;
  opacity: 0.08;
  z-index: 4;
}

.iphone::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.08) 56%, transparent 92%);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.iphone--home {
  left: 28px;
  top: 0;
  transform: rotateZ(-3.8deg) rotateY(-8deg) rotateX(1.5deg);
  z-index: 2;
}

.iphone--request {
  right: 0;
  top: 76px;
  transform: rotateZ(5.4deg) rotateY(8deg) rotateX(1deg);
  width: 318px;
  z-index: 3;
}

.iphone__button {
  background: linear-gradient(180deg, #9ba3ad, #1c2430 46%, #050810);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 1px 1px rgba(15, 23, 42, 0.24);
  position: absolute;
  z-index: 0;
}

.iphone__button--action {
  height: 34px;
  left: -4px;
  top: 104px;
  width: 5px;
}

.iphone__button--volume {
  height: 66px;
  left: -5px;
  top: 160px;
  width: 5px;
}

.iphone__button--power {
  height: 76px;
  right: -5px;
  top: 154px;
  width: 5px;
}

.iphone__notch {
  background:
    radial-gradient(circle at 74% 50%, #182033 0 3px, transparent 4px),
    linear-gradient(180deg, #050914 0%, #02040a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.3);
  height: 25px;
  top: 19px;
  width: 96px;
}

.iphone__screen {
  background: #ffffff;
  border-radius: 42px;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.1),
    inset 0 0 18px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.iphone__screen--home,
.iphone__screen--request {
  background-image: none;
  background-position: center center;
}

.iphone__screen::after {
  background:
    linear-gradient(118deg, transparent 0 48%, rgba(255, 255, 255, 0.16) 58%, transparent 68% 100%);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  opacity: 0.045;
  z-index: 3;
}

.iphone__screen img,
.iphone__screen--home img,
.iphone__screen--request img {
  background: #ffffff;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  width: 100%;
}

.trust-panel {
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.11);
}

.trust-item {
  min-height: 130px;
}

.trust-item__icon {
  align-items: center;
  border-radius: 18px;
  display: inline-flex;
  flex: 0 0 56px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.trust-item__icon .mdi {
  font-size: 2.25rem;
}

.trust-item__icon--blue {
  color: var(--color-blue-700);
}

.trust-item__icon--green {
  color: var(--color-green);
}

.trust-item__icon--blue .mdi {
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.trust-item__icon--green .mdi,
.help-contact__icon--green {
  --mdi-filter: invert(58%) sepia(99%) saturate(640%) hue-rotate(104deg) brightness(89%) contrast(86%);
}

.service-card__icon {
  align-items: center;
  background: #eef4ff;
  border-radius: 16px;
  color: var(--color-blue-700);
  display: inline-flex;
  font-size: 2.5rem;
  height: 64px;
  justify-content: center;
  margin-bottom: 22px;
  width: 64px;
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.service-card img {
  display: none;
}

.process-step__icon {
  color: var(--color-blue-700);
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.process-step__icon .mdi {
  font-size: 1.65rem;
}

.process-step__icon--green {
  color: var(--color-green);
  --mdi-filter: invert(58%) sepia(99%) saturate(640%) hue-rotate(104deg) brightness(89%) contrast(86%);
}

.help-section {
  background: var(--color-white);
  padding: 22px 0 26px;
}

.help-card {
  align-items: center;
  background: #f3f7ff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 22px;
  grid-template-columns: 1.2fr 1.25fr auto;
  padding: 30px 36px;
}

.help-card h2 {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.help-card p {
  color: var(--color-muted);
  margin-top: 8px;
}

.help-card__actions {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.help-contact {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border-strong);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  color: var(--color-ink);
  display: flex;
  gap: 14px;
  min-height: 72px;
  padding: 14px 18px;
}

.help-contact__icon {
  align-items: center;
  border-radius: 50%;
  color: var(--color-blue-700);
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 1.75rem;
  justify-content: center;
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.help-contact__icon--green {
  color: var(--color-green);
}

.help-contact strong,
.help-contact small {
  display: block;
}

.help-contact strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.help-contact small {
  color: var(--color-muted);
  font-size: 0.78rem;
  margin-top: 3px;
}

.help-social {
  justify-self: end;
}

.help-social p {
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.help-social div {
  display: flex;
  gap: 10px;
}

.help-social a {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  color: var(--color-blue-700);
  display: inline-flex;
  font-size: 1.45rem;
  height: 38px;
  justify-content: center;
  width: 38px;
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.store-button {
  border-radius: 11px;
  min-height: 58px;
  min-width: 214px;
}

.store-button > .mdi {
  color: #20d167;
  font-size: 2rem;
  --mdi-filter: invert(54%) sepia(85%) saturate(554%) hue-rotate(93deg) brightness(95%) contrast(91%);
}

/* Pixel-match refinement against Landing Page-New */
.hero {
  min-height: 748px;
  padding: 124px 0 116px;
}

.hero__skyline {
  background-position: 58% bottom;
}

.hero::before {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 26%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.12) 78%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0.62) 100%);
}

.hero__inner {
  align-items: center;
  gap: 18px;
  grid-template-columns: minmax(0, 510px) minmax(0, 1fr);
}

.hero__content {
  max-width: 510px;
  z-index: 6;
}

.hero__eyebrow {
  margin-bottom: 30px;
  padding: 7px 13px;
}

.hero h1 {
  font-size: clamp(3.15rem, 3.35vw, 3.75rem);
  line-height: 1.08;
  max-width: 535px;
}

.hero__lead {
  font-size: 1.18rem;
  line-height: 1.62;
  margin-top: 34px;
  max-width: 470px;
}

.hero__actions {
  gap: 22px;
  margin-top: 32px;
}

.hero__badges {
  gap: 20px;
  margin-top: 58px;
  max-width: 100%;
}

.hero__badges li {
  flex: 0 0 auto;
  font-size: 0.77rem;
  gap: 6px;
  letter-spacing: -0.01em;
}

.hero__badges .mdi {
  font-size: 1rem;
}

.hero__visual {
  min-height: 590px;
}

.phone-stage {
  height: 610px;
  max-width: 660px;
  transform: translateX(40px);
}

.phone-stage::before {
  background:
    radial-gradient(ellipse at center, rgba(3, 9, 28, 0.26) 0%, rgba(15, 23, 42, 0.13) 38%, rgba(37, 99, 255, 0.08) 58%, transparent 75%);
  bottom: 4px;
  filter: blur(30px);
  height: 82px;
  left: 13%;
  opacity: 0.9;
  width: 76%;
}

.phone-stage::after {
  background:
    radial-gradient(ellipse at center, rgba(37, 99, 255, 0.18) 0%, rgba(93, 189, 255, 0.11) 42%, transparent 72%);
  bottom: 46px;
  filter: blur(46px);
  height: 150px;
  left: 16%;
  opacity: 0.8;
  width: 70%;
}

.iphone {
  background:
    linear-gradient(112deg, #111827 0%, #5e6875 8%, #111827 18%, #050813 50%, #2c3440 74%, #e6ebf2 88%, #333b45 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 58px;
  box-shadow:
    0 42px 72px rgba(15, 23, 42, 0.24),
    0 16px 30px rgba(15, 23, 42, 0.16),
    -9px 4px 12px rgba(255, 255, 255, 0.38) inset,
    7px 0 12px rgba(0, 0, 0, 0.34) inset,
    0 0 0 1px rgba(3, 7, 18, 0.22);
  padding: 10px;
  width: 316px;
}

.iphone::before {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.34) 0%, transparent 8%, transparent 78%, rgba(255, 255, 255, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: none;
  opacity: 0.25;
}

.iphone::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 14%, transparent 84%, rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.05) 58%, transparent 92%);
  display: none;
}

.iphone--home {
  left: 10px;
  top: 2px;
  transform: rotateZ(-3.2deg);
  width: 326px;
  z-index: 4;
}

.iphone--request {
  right: 18px;
  top: 82px;
  transform: rotateZ(5.2deg);
  width: 300px;
  z-index: 3;
}

.iphone__button--action {
  left: -4px;
  top: 104px;
}

.iphone__button--volume {
  left: -5px;
  top: 158px;
}

.iphone__button--power {
  right: -5px;
  top: 156px;
}

.iphone__notch {
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 24px;
  top: 18px;
  width: 92px;
}

.iphone__screen {
  border-radius: 44px;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.12),
    inset 0 0 20px rgba(15, 23, 42, 0.06);
}

.iphone__screen::after {
  background:
    linear-gradient(116deg, transparent 0 61%, rgba(255, 255, 255, 0.18) 64%, transparent 70% 100%);
  display: none;
  opacity: 0.018;
}

.trust-strip {
  margin-top: -64px;
}

.trust-panel {
  border-radius: 24px;
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.1);
}

.trust-item {
  gap: 18px;
  min-height: 118px;
  padding: 26px 38px;
}

.trust-item__icon {
  background: transparent;
  flex-basis: 48px;
  height: 48px;
  width: 48px;
}

.trust-item__icon .mdi {
  font-size: 2rem;
}

.trust-item h3 {
  font-size: 0.96rem;
}

.trust-item p {
  font-size: 0.88rem;
  line-height: 1.5;
}

.services-section {
  padding-top: 58px;
}

.services-grid {
  gap: 28px;
  max-width: 1090px;
}

.service-card {
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  min-height: 164px;
}

.service-card__icon {
  border-radius: 15px;
  font-size: 2.12rem;
  height: 58px;
  margin-bottom: 18px;
  width: 58px;
}

.process-section {
  padding-bottom: 58px;
  padding-top: 4px;
}

.process-steps {
  align-items: start;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 46px auto 0;
  max-width: 1180px;
}

.process-step {
  display: grid;
  gap: 12px;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 116px;
  padding-right: 30px;
}

.process-step::before {
  color: #dce7f8;
  font-size: 3.95rem;
  left: 0;
  top: -7px;
}

.process-step:not(:last-child)::after {
  border-top: 2px dotted #c5d6f2;
  content: "";
  height: 0;
  left: 124px;
  opacity: 1;
  position: absolute;
  right: -2px;
  top: 28px;
}

.process-step__icon {
  height: 54px;
  margin-left: 42px;
  width: 54px;
}

.process-step__icon .mdi {
  font-size: 1.45rem;
}

.process-step h3 {
  font-size: 0.9rem;
  line-height: 1.18;
  padding-top: 9px;
}

.process-step p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 5px;
  max-width: 172px;
}

.help-section {
  padding: 10px 0 28px;
}

.help-card {
  border-radius: 20px;
  grid-template-columns: 1.22fr 1.28fr auto;
  padding: 26px 36px;
}

.help-contact {
  border-radius: 14px;
  min-height: 68px;
}

.cta-card {
  border-radius: 18px;
  padding: 42px 64px;
}

/* Second precision pass against Landing Page-New */
.hero {
  min-height: 708px;
  overflow: hidden;
  padding: 104px 0 94px;
}

.hero__skyline {
  background-position: 64% bottom;
  background-size: cover;
  opacity: 1;
}

.hero::before {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 25%, rgba(255, 255, 255, 0.66) 43%, rgba(255, 255, 255, 0.15) 72%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.04) 54%, rgba(255, 255, 255, 0.48) 100%);
}

.hero__inner {
  align-items: center;
  gap: 4px;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
}

.hero__content {
  max-width: 540px;
}

.hero__eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3.2rem, 3.55vw, 3.9rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
  max-width: 560px;
}

.hero__lead {
  color: #26324f;
  font-size: 1.17rem;
  font-weight: 600;
  line-height: 1.58;
  margin-top: 24px;
  max-width: 455px;
}

.hero__actions {
  gap: 18px;
  margin-top: 28px;
}

.hero .button--hero-primary,
.hero .button--hero-secondary {
  border-radius: 11px;
  font-size: 0.89rem;
  min-height: 48px;
  padding: 0 23px;
}

.hero .button--hero-primary {
  box-shadow: 0 16px 30px rgba(37, 99, 255, 0.25);
}

.hero .button--hero-primary,
.hero .button--hero-primary .mdi {
  color: #fff;
  --mdi-filter: brightness(0) invert(1);
}

.hero .button--hero-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1.25px solid rgba(37, 99, 255, 0.7);
}

.hero__badges {
  align-items: center;
  color: #11203a;
  flex-wrap: nowrap;
  gap: 21px;
  margin-top: 46px;
  max-width: 560px;
  white-space: nowrap;
}

.hero__badges li {
  color: #182640;
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 6px;
}

.hero__badges li::before {
  display: none;
}

.hero__badges .mdi {
  color: var(--color-blue-700);
  font-size: 1.05rem;
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.hero__visual {
  min-height: 570px;
}

.phone-stage {
  height: 608px;
  max-width: 710px;
  perspective: 1400px;
  transform: translate(74px, 30px);
}

.phone-stage::before {
  background:
    radial-gradient(ellipse at center, rgba(3, 9, 28, 0.28) 0%, rgba(15, 23, 42, 0.14) 34%, rgba(37, 99, 255, 0.08) 56%, transparent 76%);
  bottom: -2px;
  filter: blur(34px);
  height: 92px;
  left: 9%;
  opacity: 0.82;
  width: 82%;
}

.phone-stage::after {
  background:
    radial-gradient(ellipse at center, rgba(37, 99, 255, 0.13) 0%, rgba(93, 189, 255, 0.09) 42%, transparent 76%);
  bottom: 40px;
  filter: blur(58px);
  height: 170px;
  left: 14%;
  opacity: 0.72;
  width: 76%;
}

.iphone {
  background:
    linear-gradient(116deg, #0a1019 0%, #626d7b 5%, #242c37 13%, #070b12 48%, #313946 72%, #edf2f7 86%, #2a323d 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 52px;
  box-shadow:
    0 48px 78px rgba(15, 23, 42, 0.22),
    0 18px 28px rgba(15, 23, 42, 0.14),
    -6px 4px 10px rgba(255, 255, 255, 0.32) inset,
    6px 0 10px rgba(0, 0, 0, 0.35) inset,
    0 0 0 1px rgba(3, 7, 18, 0.18);
  padding: 8px;
}

.iphone::before {
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.18) 0%, transparent 16%, transparent 78%, rgba(255, 255, 255, 0.14) 100%);
  border-radius: inherit;
  content: "";
  inset: 1px;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.iphone::after {
  background:
    linear-gradient(108deg, transparent 0 60%, rgba(255, 255, 255, 0.13) 64%, transparent 71% 100%);
  border-radius: 44px;
  content: "";
  inset: 14px;
  opacity: 0.16;
  pointer-events: none;
  position: absolute;
  z-index: 6;
}

.iphone--home {
  left: 0;
  top: 10px;
  transform: rotateZ(-3deg) translateZ(16px);
  width: 344px;
  z-index: 4;
}

.iphone--request {
  right: 2px;
  top: 82px;
  transform: rotateZ(5deg) translateZ(2px);
  width: 316px;
  z-index: 3;
}

.iphone__screen {
  aspect-ratio: 9 / 19.5;
  background: #ffffff;
  border-radius: 43px;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.1),
    inset 0 0 18px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.iphone__screen::after {
  display: none;
}

.iphone__screen img,
.iphone__screen--home img,
.iphone__screen--request img {
  background: #fff;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.iphone__notch {
  background:
    radial-gradient(circle at 78% 49%, rgba(63, 76, 94, 0.78) 0 2px, transparent 2.6px),
    linear-gradient(180deg, #02040a 0%, #070b12 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 8px 18px rgba(0, 0, 0, 0.18);
  height: 22px;
  top: 17px;
  width: 86px;
  z-index: 8;
}

.iphone__button {
  background: linear-gradient(180deg, #3b4653, #111827 58%, #030712);
  box-shadow: -1px 0 1px rgba(255, 255, 255, 0.22) inset;
  opacity: 0.95;
  width: 4px;
}

.iphone__button--action {
  height: 38px;
  left: -3px;
  top: 104px;
}

.iphone__button--volume {
  height: 62px;
  left: -4px;
  top: 158px;
}

.iphone__button--power {
  height: 72px;
  right: -4px;
  top: 154px;
}

.trust-strip {
  margin-top: -70px;
}

.trust-panel {
  border: 1px solid rgba(211, 224, 246, 0.88);
  border-radius: 22px;
  box-shadow: 0 30px 78px rgba(15, 23, 42, 0.1);
}

.trust-item {
  gap: 20px;
  min-height: 112px;
  padding: 24px 40px;
}

.trust-item__icon {
  background: transparent;
  height: 46px;
  width: 46px;
}

.trust-item__icon .mdi {
  font-size: 1.88rem;
}

.trust-item__icon--blue .mdi {
  color: var(--color-blue-700);
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.trust-item__icon--green .mdi {
  color: var(--color-green);
  --mdi-filter: invert(58%) sepia(99%) saturate(640%) hue-rotate(104deg) brightness(89%) contrast(86%);
}

.services-section {
  padding-top: 50px;
}

.services-grid {
  gap: 24px;
  max-width: 1040px;
}

.service-card {
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  min-height: 154px;
  padding: 30px 16px 24px;
}

.service-card__icon {
  background: #eff5ff;
  border-radius: 14px;
  color: var(--color-blue-700);
  font-size: 1.82rem;
  height: 54px;
  margin-bottom: 17px;
  width: 54px;
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.service-card h3 {
  font-size: 0.91rem;
  line-height: 1.22;
}

.process-section {
  padding: 14px 0 66px;
}

.process-section .section-heading {
  text-align: center;
}

.process-steps {
  align-items: start;
  column-gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 52px auto 0;
  max-width: 1230px;
}

.process-step {
  display: grid;
  gap: 12px;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 132px;
  padding-right: 42px;
  position: relative;
}

.process-step::before {
  color: #dbe7fb;
  font-size: 4.3rem;
  font-weight: 900;
  left: 0;
  line-height: 0.95;
  top: -9px;
}

.process-step:not(:last-child)::after {
  border-top: 2px dotted #c5d8f7;
  left: 142px;
  right: -8px;
  top: 29px;
}

.process-step__icon {
  background: #edf4ff;
  height: 54px;
  margin-left: 48px;
  width: 54px;
}

.process-step__icon--green {
  background: #e7fbf1;
}

.process-step__icon .mdi {
  font-size: 1.28rem;
}

.process-step h3 {
  font-size: 0.91rem;
  line-height: 1.15;
  padding-top: 7px;
}

.process-step p {
  color: #4d5b76;
  font-size: 0.82rem;
  line-height: 1.56;
  margin-top: 6px;
  max-width: 190px;
}

.help-section {
  padding: 12px 0 32px;
}

.help-card {
  align-items: center;
  border-color: rgba(205, 220, 245, 0.8);
  border-radius: 22px;
  grid-template-columns: minmax(260px, 1.1fr) minmax(430px, 1.25fr) auto;
  padding: 28px 38px;
}

.help-contact {
  border-radius: 14px;
  min-height: 70px;
  padding: 14px 22px;
}

.help-social a {
  height: 42px;
  width: 42px;
}

/* Final scale adjustment for process and help rhythm */
.process-steps {
  margin-top: 58px;
  max-width: 1260px;
}

.process-step {
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 146px;
  padding-right: 46px;
}

.process-step::before {
  font-size: 4.7rem;
  left: 0;
  top: -12px;
}

.process-step:not(:last-child)::after {
  left: 154px;
  right: -10px;
  top: 31px;
}

.process-step__icon {
  height: 58px;
  margin-left: 54px;
  width: 58px;
}

.process-step__icon .mdi {
  font-size: 1.34rem;
}

.process-step h3 {
  font-size: 0.98rem;
  padding-top: 8px;
}

.process-step p {
  font-size: 0.86rem;
  line-height: 1.58;
  max-width: 208px;
}

.help-card {
  gap: 28px;
  padding: 32px 40px;
}

.help-card h2 {
  font-size: 1.22rem;
}

.help-card p {
  font-size: 0.97rem;
}

.help-contact {
  min-height: 76px;
  padding: 16px 24px;
}

.help-contact__icon {
  font-size: 1.55rem;
}

/* Final premium polish pass: lighter, quieter, closer to Landing Page-New */
.hero {
  min-height: 690px;
  padding: 100px 0 88px;
}

.hero__skyline {
  background-position: 66% bottom;
  filter: saturate(0.96) contrast(0.98);
}

.hero::before {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 24%, rgba(255, 255, 255, 0.72) 44%, rgba(255, 255, 255, 0.18) 74%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.54) 100%);
}

.hero__inner {
  grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
}

.hero__eyebrow {
  border-color: rgba(37, 99, 255, 0.16);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding: 6px 12px;
}

.hero h1 {
  font-size: clamp(3.1rem, 3.42vw, 3.75rem);
  letter-spacing: -0.04em;
  max-width: 548px;
}

.hero__lead {
  color: #2f3b55;
  font-size: 1.08rem;
  font-weight: 560;
  line-height: 1.58;
  margin-top: 22px;
}

.hero__actions {
  gap: 16px;
  margin-top: 26px;
}

.hero .button--hero-primary,
.hero .button--hero-secondary {
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 740;
  min-height: 46px;
  padding: 0 22px;
}

.hero .button--hero-primary {
  box-shadow: 0 14px 28px rgba(37, 99, 255, 0.2);
}

.hero .button--hero-secondary {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(37, 99, 255, 0.55);
}

.hero__badges {
  gap: 20px;
  margin-top: 42px;
  max-width: 545px;
}

.hero__badges li {
  color: #293550;
  font-size: 0.72rem;
  font-weight: 650;
  gap: 5px;
}

.hero__badges .mdi {
  font-size: 0.98rem;
}

.hero__visual {
  min-height: 552px;
}

.phone-stage {
  height: 588px;
  max-width: 690px;
  transform: translate(72px, 34px);
}

.phone-stage::before {
  background:
    radial-gradient(ellipse at center, rgba(3, 9, 28, 0.18) 0%, rgba(15, 23, 42, 0.09) 34%, rgba(37, 99, 255, 0.055) 56%, transparent 76%);
  bottom: 4px;
  filter: blur(38px);
  height: 84px;
  opacity: 0.68;
}

.phone-stage::after {
  background:
    radial-gradient(ellipse at center, rgba(37, 99, 255, 0.095) 0%, rgba(93, 189, 255, 0.065) 42%, transparent 76%);
  filter: blur(64px);
  opacity: 0.58;
}

.iphone {
  background:
    linear-gradient(116deg, #101722 0%, #7d8795 4%, #2e3642 11%, #090d15 48%, #39424f 74%, #eef3f8 88%, #29313b 100%);
  border-color: rgba(255, 255, 255, 0.42);
  border-radius: 48px;
  box-shadow:
    0 38px 68px rgba(15, 23, 42, 0.16),
    0 14px 24px rgba(15, 23, 42, 0.11),
    -4px 3px 8px rgba(255, 255, 255, 0.28) inset,
    4px 0 8px rgba(0, 0, 0, 0.26) inset,
    0 0 0 1px rgba(3, 7, 18, 0.14);
  padding: 6px;
}

.iphone::before {
  opacity: 0.26;
}

.iphone::after {
  inset: 12px;
  opacity: 0.08;
}

.iphone--home {
  top: 14px;
  transform: rotateZ(-2.7deg) translateZ(12px);
  width: 334px;
}

.iphone--request {
  right: 10px;
  top: 86px;
  transform: rotateZ(4.6deg) translateZ(0);
  width: 306px;
}

.iphone__screen {
  border-radius: 39px;
  box-shadow:
    inset 0 0 0 1px rgba(15, 23, 42, 0.075),
    inset 0 0 12px rgba(15, 23, 42, 0.035);
}

.iphone__screen img {
  filter: contrast(0.965) saturate(0.94) brightness(1.018);
}

.iphone__notch {
  height: 19px;
  top: 15px;
  width: 78px;
}

.iphone__button {
  opacity: 0.82;
  width: 3px;
}

.trust-strip {
  margin-top: -66px;
}

.trust-panel {
  border-color: rgba(216, 228, 247, 0.76);
  border-radius: 21px;
  box-shadow: 0 28px 66px rgba(15, 23, 42, 0.075);
}

.trust-item {
  gap: 18px;
  min-height: 104px;
  padding: 22px 38px;
}

.trust-item__icon {
  height: 40px;
  width: 40px;
}

.trust-item__icon .mdi {
  font-size: 1.64rem;
}

.trust-item h3 {
  font-size: 0.88rem;
  font-weight: 780;
}

.trust-item p {
  font-size: 0.82rem;
  line-height: 1.5;
}

.services-section {
  padding-top: 52px;
}

.section-heading h2 {
  letter-spacing: -0.03em;
}

.services-grid {
  gap: 24px;
  max-width: 990px;
}

.service-card {
  border-color: rgba(214, 226, 245, 0.82);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
  min-height: 134px;
  padding: 24px 14px 20px;
}

.service-card:hover {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
}

.service-card__icon {
  background: #f0f6ff;
  border-radius: 13px;
  font-size: 1.48rem;
  height: 48px;
  margin-bottom: 15px;
  width: 48px;
}

.service-card h3 {
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.22;
}

.about-card {
  background: linear-gradient(90deg, #f7fbff 0%, #f2f8ff 47%, #eaf4ff 100%);
  border-color: rgba(214, 226, 245, 0.82);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.065);
}

.about-card__copy {
  padding: 46px 42px;
}

.about-card__copy h2 {
  letter-spacing: -0.035em;
}

.about-card__copy p:not(.eyebrow),
.check-list li {
  color: #485773;
  font-weight: 450;
}

.check-list li::before {
  border-width: 1.5px;
  flex-basis: 16px;
  font-size: 0.66rem;
  height: 16px;
  margin-top: 2px;
  width: 16px;
}

.about-card__visual img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.42) 21%, black 38%);
  filter: saturate(0.98) contrast(0.99);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.42) 21%, black 38%);
}

.process-section {
  padding-bottom: 60px;
}

.process-steps {
  margin-top: 54px;
  max-width: 1160px;
}

.process-step {
  grid-template-columns: 98px minmax(0, 1fr);
  min-height: 126px;
  padding-right: 34px;
}

.process-step::before {
  color: #e1ebfb;
  font-size: 3.92rem;
  font-weight: 820;
  top: -5px;
}

.process-step:not(:last-child)::after {
  border-top: 1px dotted #c7d8f5;
  left: 124px;
  right: -2px;
  top: 28px;
}

.process-step__icon {
  height: 50px;
  margin-left: 42px;
  width: 50px;
}

.process-step__icon .mdi {
  font-size: 1.08rem;
}

.process-step h3 {
  font-size: 0.84rem;
  font-weight: 780;
  padding-top: 7px;
}

.process-step p {
  color: #5c6983;
  font-size: 0.78rem;
  line-height: 1.58;
  max-width: 182px;
}

.help-section {
  padding: 8px 0 32px;
}

.help-card {
  background: #f5f9ff;
  border-color: rgba(213, 225, 246, 0.72);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.035);
  gap: 26px;
  padding: 28px 36px;
}

.help-card h2 {
  font-size: 1.12rem;
  font-weight: 790;
}

.help-card p {
  color: #53627c;
  font-size: 0.9rem;
}

.help-contact {
  border-color: rgba(213, 225, 246, 0.78);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  min-height: 68px;
  padding: 14px 20px;
}

.help-contact__icon {
  font-size: 1.28rem;
}

.help-social a {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
  height: 38px;
  width: 38px;
}

.cta-card {
  background:
    radial-gradient(circle at 68% 46%, rgba(37, 99, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #02112d 0%, #06214a 58%, #071a3a 100%);
  box-shadow: 0 20px 48px rgba(2, 17, 45, 0.18);
  padding: 40px 62px;
}

.cta-card h2 {
  font-size: 2.18rem;
  letter-spacing: -0.035em;
}

.cta-card p {
  margin-top: 8px;
  opacity: 0.82;
}

.site-footer {
  padding-top: 34px;
}

.site-footer__grid {
  gap: 34px;
}

.site-footer .footer-heading {
  font-size: 0.82rem;
  font-weight: 780;
}

.site-footer a,
.site-footer span,
.site-footer small,
.site-footer p {
  font-size: 0.82rem;
}

.site-footer__contact {
  gap: 7px;
}

.site-footer__contact a .mdi {
  color: var(--color-blue-700);
  --mdi-filter: invert(36%) sepia(99%) saturate(3245%) hue-rotate(218deg) brightness(100%) contrast(105%);
}

.site-footer__contact a:nth-of-type(2) .mdi {
  color: var(--color-green);
  --mdi-filter: invert(58%) sepia(99%) saturate(640%) hue-rotate(104deg) brightness(89%) contrast(86%);
}

/* FAQ */
.faq-section {
  padding-top: 36px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 28px auto 0;
  max-width: 940px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(213, 225, 246, 0.86);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
  padding: 22px 26px;
}

.faq-item h3 {
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 790;
  letter-spacing: -0.01em;
}

.faq-item p {
  color: #53627c;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 8px;
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 74% 0%, rgba(37, 99, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%);
  color: var(--color-ink);
}

.legal-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(213, 225, 246, 0.72);
  position: sticky;
  top: 0;
  z-index: 20;
}

.legal-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
}

.legal-main {
  padding: 84px 0 72px;
}

.legal-hero {
  margin: 0 auto 28px;
  max-width: 900px;
}

.legal-eyebrow {
  color: var(--color-blue-700);
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: 0.01em;
}

.legal-hero h1 {
  color: var(--color-ink);
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-top: 14px;
}

.legal-hero p {
  color: #53627c;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 680px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(213, 225, 246, 0.86);
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(28px, 5vw, 56px);
}

.legal-card section + section {
  border-top: 1px solid rgba(213, 225, 246, 0.74);
  margin-top: 28px;
  padding-top: 28px;
}

.legal-card h2 {
  color: var(--color-ink);
  font-size: 1.26rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-card p,
.legal-card li {
  color: #42516b;
  font-size: 0.96rem;
  line-height: 1.72;
}

.legal-card p {
  margin-top: 10px;
}

.legal-card ul {
  display: grid;
  gap: 7px;
  list-style: disc;
  margin: 12px 0 0 1.2rem;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.legal-footer {
  border-top: 1px solid rgba(213, 225, 246, 0.72);
  padding: 24px 0 36px;
}

.legal-footer__inner {
  align-items: center;
  color: #66748d;
  display: flex;
  font-size: 0.84rem;
  justify-content: space-between;
}

@media (max-width: 759px) {
  .faq-section {
    padding-top: 28px;
  }

  .faq-item {
    padding: 20px;
  }

  .legal-header__inner,
  .legal-footer__inner {
    gap: 18px;
  }

  .legal-header__inner,
  .legal-footer__inner,
  .legal-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding: 54px 0 52px;
  }
}

