:root {
  --blue: #0567ff;
  --blue-2: #0a7bff;
  --deep-blue: #0051e8;
  --ink: #080b11;
  --muted: #69717f;
  --soft-white: #f6f2eb;
  --glass: rgba(255, 255, 255, 0.66);
  --max-width: 1680px;

  /* Pixel/reglaj rapid pentru layerul SOS peste telefon. */
  --sos-badge-x: 55.9%;
  --sos-badge-y: 67.6%;
  --sos-pin-x: 47.8%;
  --sos-pin-y: 71.0%;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  height: 100%;
  overflow: hidden;
  background: var(--soft-white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.landing-page {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #f7f2ea;
  overflow: hidden;
}

.hero {
  position: relative;
  isolation: isolate;
  flex: 1 1 auto;
  height: calc(100vh - 124px);
  height: calc(100dvh - 124px);
  min-height: 0;
  overflow: hidden;
}

.bg-loop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.08);
  filter: saturate(0.86) contrast(0.92) brightness(1.08);
  z-index: -3;
}

.hero-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 45%, rgba(255,255,255,0.90) 0 24%, rgba(255,255,255,0.50) 42%, rgba(255,255,255,0.16) 70%),
    linear-gradient(90deg, rgba(250,247,240,0.82) 0%, rgba(250,247,240,0.45) 39%, rgba(250,247,240,0.18) 100%),
    rgba(245, 240, 230, 0.36);
  z-index: -2;
}

.site-header {
  position: relative;
  width: min(var(--max-width), calc(100% - 96px));
  margin: 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark,
.strip-icon {
  width: 46px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
  flex: 0 0 auto;
}

.brand-mark svg,
.strip-icon svg {
  width: 100%;
  height: 100%;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  color: rgba(8, 11, 17, 0.88);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.top-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.top-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.hero-inner {
  width: min(var(--max-width), calc(100% - 96px));
  height: calc(100% - 88px);
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(40px, 5vw, 88px);
  padding: 0 0 22px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding-top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 40px;
  margin: 0 0 22px;
  padding: 0 22px;
  border: 1.5px solid rgba(5, 103, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.50);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35), 0 12px 40px rgba(5,103,255,0.07);
  color: var(--blue);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 5.65vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 780;
}

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

.subcopy {
  width: min(100%, 540px);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.52vw, 20px);
  line-height: 1.62;
  letter-spacing: -0.026em;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  min-width: 142px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  font-weight: 760;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0574ff, #0057ec);
  box-shadow: 0 18px 40px rgba(0, 90, 255, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(0, 90, 255, 0.32);
}

.btn-secondary {
  min-width: 170px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 14px 34px rgba(24, 28, 38, 0.08);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.92);
}

.play-dot {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--blue);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: clamp(42px, 5vw, 74px);
  margin-top: 42px;
  color: #6d7480;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 570;
  letter-spacing: -0.02em;
}

.trust-item svg {
  width: 38px;
  height: 44px;
  color: #8a929e;
  flex: 0 0 auto;
}

.phone-zone {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(45vw, 560px);
  min-width: 410px;
  transform: translate(2%, -1%);
}

.phone-shadow {
  position: absolute;
  left: 12%;
  right: 7%;
  bottom: 2.4%;
  height: 19%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.30), rgba(0,0,0,0.12) 43%, transparent 72%);
  filter: blur(22px);
  transform: rotate(-8deg);
  opacity: 0.55;
  z-index: -1;
}

.phone-media {
  position: relative;
  width: 100%;
  aspect-ratio: 768 / 916;
  filter: drop-shadow(0 28px 30px rgba(10, 12, 18, 0.16));
  animation: phoneFloat 6.8s ease-in-out infinite;
}

.phone-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.sos-pin {
  position: absolute;
  left: var(--sos-pin-x);
  top: var(--sos-pin-y);
  width: clamp(24px, 4.6vw, 40px);
  height: clamp(24px, 4.6vw, 40px);
  transform: translate(-50%, -50%) rotate(-14deg);
  transform-origin: 50% 50%;
  border-radius: 50% 50% 50% 10px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.30), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, #ff4543, #e70f1c 72%);
  box-shadow: 0 9px 16px rgba(228, 20, 28, 0.30), 0 0 0 6px rgba(255, 45, 48, 0.11);
  z-index: 4;
  will-change: transform, opacity, box-shadow;
  backface-visibility: hidden;
  animation: sosPinPulse 1.48s cubic-bezier(.42, 0, .22, 1) infinite;
}

.sos-pin span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 31%;
  height: 31%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.12);
}

.sos-badge {
  position: absolute;
  left: var(--sos-badge-x);
  top: var(--sos-badge-y);
  min-width: clamp(42px, 5.4vw, 61px);
  height: clamp(27px, 3.6vw, 40px);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px 999px 999px 12px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.34), rgba(255,255,255,0) 32%),
    linear-gradient(145deg, #ff4846, #e90613 72%);
  color: #fff;
  font-size: clamp(12px, 1.45vw, 18px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 1px rgba(0,0,0,0.12);
  box-shadow: 0 10px 24px rgba(232, 8, 20, 0.28), 0 0 0 0 rgba(239, 29, 37, 0.0);
  z-index: 5;
  transform-origin: 50% 50%;
  will-change: transform, opacity, box-shadow;
  backface-visibility: hidden;
  animation: sosBadgePulse 1.48s cubic-bezier(.42, 0, .22, 1) infinite;
}

.download-strip {
  position: relative;
  z-index: 10;
  flex: 0 0 124px;
  height: 124px;
  min-height: 124px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 40% 60%, rgba(30, 130, 255, 0.9), rgba(0, 81, 232, 0.0) 42%),
    linear-gradient(135deg, #006eff, #0054f5 58%, #0050e9);
  color: white;
  box-shadow: 0 -20px 60px rgba(0, 80, 200, 0.16);
}

.download-inner {
  width: min(var(--max-width), calc(100% - 96px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}


.strip-copy {
  display: flex;
  align-items: center;
  gap: 28px;
}

.strip-icon {
  color: #fff;
  width: 52px;
  height: 60px;
}

.strip-copy strong {
  display: block;
  font-size: clamp(21px, 2.0vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 680;
}

.strip-copy p {
  margin: 7px 0 0;
  font-size: clamp(14px, 1.2vw, 18px);
  opacity: 0.92;
  letter-spacing: -0.02em;
}

.store-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
}

.store-badge {
  height: 52px;
  min-width: 184px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 10px;
  background: #050608;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 24px rgba(0,0,0,0.20);
}

.store-badge span:last-child {
  display: grid;
  line-height: 1;
  font-size: 23px;
  font-weight: 680;
  letter-spacing: -0.04em;
}

.store-badge small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 4px;
}

.store-icon {
  width: 32px;
  height: 34px;
  display: inline-block;
  background: conic-gradient(from 130deg, #0fd07f, #2ec7ff, #ffd35a, #ff3d57, #0fd07f);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.apple-icon {
  position: relative;
  width: 32px;
  height: 34px;
  display: inline-block;
}

.apple-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 19px;
  height: 22px;
  border-radius: 44% 44% 48% 48%;
  background: #fff;
}

.apple-icon::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 10px;
  height: 14px;
  border-radius: 10px 0 10px 0;
  background: #fff;
  transform: rotate(28deg);
}

.store-divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.24);
  margin: 0 2px;
}

.ios-wrap {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.ios-wrap em {
  font-size: 13px;
  font-style: normal;
  opacity: 0.95;
  letter-spacing: -0.03em;
  text-align: center;
}


.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
  flex: 0 0 auto;
}

.social-btn {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: none;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 18px rgba(0,36,130,0.14);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.social-btn:hover {
  transform: translateY(-2px) scale(1.03);
  filter: saturate(1.06) brightness(1.04);
  box-shadow: 0 12px 24px rgba(0,36,130,0.24);
}

.social-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-facebook {
  background: transparent;
}

.social-instagram {
  background: transparent;
}

.store-actions {
  margin-left: auto;
}

.store-badge-img {
  display: inline-flex;
  width: auto;
  height: auto;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
  flex: 0 0 auto;
}

.store-badge-img:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.store-badge-img img {
  width: 100%;
  height: auto;
  display: block;
}

.store-google {
  width: 162px;
}

.store-app {
  width: 176px;
}

@keyframes phoneFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(-0.35deg); }
}

@keyframes sosPinPulse {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(-14deg) scale(1);
    opacity: 0.96;
    box-shadow: 0 9px 16px rgba(228, 20, 28, 0.30), 0 0 0 6px rgba(255, 45, 48, 0.10);
  }
  52% {
    transform: translate(-50%, -50%) rotate(-14deg) scale(1.085);
    opacity: 1;
    box-shadow: 0 12px 20px rgba(228, 20, 28, 0.34), 0 0 0 14px rgba(255, 45, 48, 0.115);
  }
}

@keyframes sosBadgePulse {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(12deg) scale(1);
    opacity: 0.94;
    box-shadow: 0 10px 24px rgba(232, 8, 20, 0.28), 0 0 0 0 rgba(239, 29, 37, 0.0);
  }
  52% {
    transform: translate(-50%, -50%) rotate(12deg) scale(1.075);
    opacity: 1;
    box-shadow: 0 12px 26px rgba(232, 8, 20, 0.34), 0 0 0 12px rgba(239, 29, 37, 0.13);
  }
}


@media (max-height: 820px) and (min-width: 901px) {
  .site-header { height: 78px; }
  .hero-inner { height: calc(100% - 78px); padding-bottom: 14px; }
  .eyebrow { height: 34px; margin-bottom: 18px; font-size: 15px; }
  h1 { font-size: clamp(42px, 5.1vw, 68px); line-height: 0.96; }
  .subcopy { margin-top: 18px; font-size: clamp(16px, 1.35vw, 18px); line-height: 1.5; }
  .hero-actions { margin-top: 26px; }
  .btn { height: 48px; border-radius: 14px; }
  .trust-row { margin-top: 32px; }
  .trust-item { font-size: 14px; gap: 12px; }
  .trust-item svg { width: 32px; height: 38px; }
  .phone-zone { width: min(42vw, 520px); transform: translate(2%, -2%); }
  .download-strip { flex-basis: 112px; height: 112px; min-height: 112px; }
  .strip-copy { gap: 22px; }
  .strip-icon { width: 46px; height: 54px; }
  .strip-copy strong { font-size: clamp(20px, 1.8vw, 26px); }
  .strip-copy p { font-size: 14px; }
  .store-google { width: 150px; }
  .store-app { width: 164px; }
  .social-btn { width: 38px; height: 38px; }
  .social-btn svg { width: 22px; height: 22px; }
  .ios-wrap em { font-size: 13px; }
}

@media (max-width: 1120px) {
  .site-header,
  .hero-inner,
  .download-inner {
    width: min(var(--max-width), calc(100% - 56px));
  }

  .top-nav {
    gap: 24px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 26px;
  }

  .footer-social {
    margin-right: 6px;
  }

  .store-google {
    width: 142px;
  }

  .store-app {
    width: 156px;
  }

  .phone-zone {
    min-width: 340px;
    width: 43vw;
  }

  .trust-row {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .site-header {
    height: 88px;
  }

  .top-nav {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 24px 0 58px;
  }

  .hero-copy {
    max-width: 640px;
  }

  .phone-zone {
    justify-self: center;
    width: min(78vw, 470px);
    min-width: 0;
    transform: none;
    margin-top: -10px;
  }

  .download-strip {
    padding: 28px 0;
  }

  .download-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-inner,
  .download-inner {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 23px;
  }

  .brand-mark {
    width: 38px;
    height: 46px;
  }

  .eyebrow {
    height: 34px;
    margin-bottom: 22px;
    padding: 0 15px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .subcopy {
    font-size: 15px;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 30px;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 38px;
    gap: 18px;
  }

  .phone-zone {
    width: min(94vw, 410px);
  }

  .strip-copy {
    align-items: flex-start;
    gap: 18px;
  }

  .strip-icon {
    width: 46px;
    height: 54px;
  }

  .footer-social {
    margin: 0;
  }

  .store-actions {
    width: 100%;
    gap: 16px;
  }

  .store-divider {
    display: none;
  }

  .store-badge-img,
  .ios-wrap {
    width: 100%;
  }

  .store-badge-img {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


/* footer icon refine v2 */


/* Mobile-ready layout override */
@media (max-width: 900px) {
  html,
  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .landing-page {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  .hero {
    height: auto;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 0;
  }

  .bg-loop {
    position: absolute;
    height: 100%;
    min-height: 100%;
    object-position: center top;
    transform: scale(1.1);
  }

  .hero-tint {
    background:
      radial-gradient(circle at 50% 18%, rgba(255,255,255,0.96) 0 24%, rgba(255,255,255,0.70) 48%, rgba(255,255,255,0.36) 100%),
      linear-gradient(180deg, rgba(250,247,240,0.90) 0%, rgba(250,247,240,0.50) 58%, rgba(250,247,240,0.20) 100%);
  }

  .site-header {
    width: calc(100% - 36px);
    height: 76px;
    justify-content: center;
    padding-top: 8px;
  }

  .brand {
    font-size: 24px;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 47px;
  }

  .top-nav {
    display: none;
  }

  .hero-inner {
    width: calc(100% - 36px);
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding: 22px 0 34px;
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
    text-align: center;
    padding-top: 0;
  }

  .eyebrow {
    height: 34px;
    margin: 0 auto 20px;
    padding: 0 15px;
    font-size: 14px;
  }

  h1 {
    font-size: clamp(42px, 11.6vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.07em;
  }

  .subcopy {
    width: min(100%, 430px);
    margin: 18px auto 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
  }

  .btn {
    min-width: 138px;
    height: 48px;
    border-radius: 14px;
    font-size: 14px;
  }

  .btn-secondary {
    min-width: 148px;
  }

  .trust-row {
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
    flex-wrap: wrap;
  }

  .trust-item {
    font-size: 13px;
    gap: 9px;
    text-align: left;
  }

  .trust-item svg {
    width: 29px;
    height: 34px;
  }

  .phone-zone {
    width: min(78vw, 390px);
    min-width: 0;
    justify-self: center;
    transform: none;
    margin: -4px auto 0;
  }

  .phone-media {
    animation: phoneFloat 7.2s ease-in-out infinite;
  }

  .download-strip {
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    padding: 18px 0 20px;
  }

  .download-inner {
    width: calc(100% - 32px);
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-social {
    order: 2;
    margin: 0;
    gap: 14px;
  }

  .strip-copy {
    order: 1;
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .strip-icon {
    width: 42px;
    height: 48px;
  }

  .strip-copy strong {
    font-size: 20px;
    line-height: 1.1;
  }

  .strip-copy p {
    margin-top: 5px;
    font-size: 13px;
  }

  .store-actions {
    order: 3;
    width: 100%;
    margin: 0;
    justify-content: center;
    gap: 10px;
  }

  .store-google {
    width: 138px;
  }

  .store-app {
    width: 150px;
  }

  .store-divider {
    display: none;
  }

  .ios-wrap {
    gap: 5px;
  }

  .ios-wrap em {
    font-size: 11px;
  }

  .social-btn {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .brand {
    font-size: 22px;
  }

  .hero-inner {
    padding-top: 18px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(38px, 12.3vw, 52px);
  }

  .subcopy {
    max-width: 340px;
    font-size: 14px;
  }

  .hero-actions {
    width: min(100%, 330px);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0 12px;
  }

  .trust-row {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .phone-zone {
    width: min(86vw, 340px);
  }

  .download-inner {
    width: calc(100% - 24px);
  }

  .store-actions {
    display: grid;
    grid-template-columns: 138px 150px;
    align-items: start;
    justify-content: center;
    column-gap: 10px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 36px;
  }

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

  .store-actions {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .store-google {
    width: 150px;
  }

  .store-app {
    width: 162px;
  }
}

@media (max-width: 380px) {
  .social-btn { width: 42px; height: 42px; }
}
/* v2: launch cleanup + dedicated mobile layout */
.btn-secondary, .play-dot { display: none !important; }

.footer-links { display:flex; align-items:center; justify-content:center; gap:18px; font-size:13px; opacity:.9; white-space:nowrap; }
.footer-links a { color:rgba(255,255,255,.92); }
.footer-links a:hover { opacity:.75; }

.simple-page { min-height:100vh; overflow-y:auto; background:radial-gradient(circle at 18% 15%, rgba(5,103,255,.08), transparent 30%), linear-gradient(180deg,#faf7f1,#fff); color:var(--ink); }
.simple-shell { width:min(920px, calc(100% - 36px)); margin:0 auto; padding:42px 0 80px; }
.simple-brand { display:inline-flex; align-items:center; gap:12px; margin-bottom:28px; font-size:28px; letter-spacing:-.04em; }
.simple-card { background:rgba(255,255,255,.82); border:1px solid rgba(10,20,40,.08); border-radius:28px; box-shadow:0 22px 70px rgba(12,22,40,.08); padding:clamp(26px,5vw,56px); }
.simple-card h1 { font-size:clamp(34px,5vw,54px); letter-spacing:-.06em; line-height:1; margin-bottom:24px; }
.simple-card h2 { margin-top:30px; font-size:22px; letter-spacing:-.03em; }
.simple-card p { color:#4f5968; line-height:1.7; font-size:17px; }
.simple-card a { color:var(--blue); font-weight:700; }
.contact-box { margin:22px 0; padding:18px 20px; border-radius:18px; background:rgba(5,103,255,.07); }

@media (min-width:901px){
  .download-inner { display:grid; grid-template-columns:auto minmax(360px,1fr) auto; grid-template-areas:"social copy stores" "links links links"; row-gap:6px; }
  .footer-social{grid-area:social;} .strip-copy{grid-area:copy;} .store-actions{grid-area:stores;} .footer-links{grid-area:links;}
}

@media (max-width:900px){
  html, body { height:auto; min-height:100%; overflow-x:hidden; overflow-y:auto; }
  .landing-page { height:auto; min-height:100dvh; overflow:visible; background:#f7f3ec; }
  .hero { height:auto; min-height:0; overflow:hidden; padding-bottom:0; }
  .bg-loop { position:absolute; top:-10px; left:50%; width:148vw; height:83.25vw; min-height:330px; max-height:520px; transform:translateX(-50%); object-fit:cover; object-position:center center; opacity:.98; filter:saturate(.92) contrast(.94) brightness(1.07); }
  .hero-tint { background:linear-gradient(180deg,rgba(255,255,255,.18) 0%,rgba(255,255,255,.56) 34%,rgba(255,255,255,.78) 58%,rgba(255,255,255,.32) 100%), radial-gradient(circle at 50% 36%,rgba(255,255,255,.42),rgba(255,255,255,.18) 64%,rgba(255,255,255,.10) 100%); }
  .site-header { width:calc(100% - 34px); height:74px; justify-content:center; padding-top:8px; }
  .brand { font-size:25px; gap:10px; }
  .brand-mark { width:40px; height:47px; }
  .top-nav { display:none; }
  .hero-inner { width:calc(100% - 34px); height:auto; min-height:0; display:flex; flex-direction:column; align-items:center; gap:22px; padding:18px 0 28px; }
  .hero-copy { width:100%; max-width:560px; text-align:center; padding-top:0; }
  .eyebrow { height:34px; margin:0 auto 18px; padding:0 16px; font-size:14px; background:rgba(255,255,255,.70); backdrop-filter:blur(10px); }
  h1 { font-size:clamp(40px,10.3vw,56px); line-height:.99; letter-spacing:-.073em; }
  .subcopy { width:min(100%,420px); margin:16px auto 0; font-size:15px; line-height:1.55; }
  .hero-actions { justify-content:center; margin-top:23px; }
  .btn { min-width:min(100%,320px); width:min(100%,320px); height:50px; border-radius:15px; }
  .trust-row { width:100%; max-width:420px; display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:24px auto 0; }
  .trust-item { min-height:82px; padding:12px; border-radius:18px; background:rgba(255,255,255,.74); border:1px solid rgba(10,20,40,.05); box-shadow:0 12px 34px rgba(12,22,40,.07); font-size:12.5px; line-height:1.25; gap:9px; backdrop-filter:blur(10px); }
  .trust-item svg { width:30px; height:36px; color:var(--blue); }
  .phone-zone { width:min(70vw,330px); min-width:0; justify-self:center; transform:none; margin:4px auto 0; }
  .phone-shadow { bottom:3%; opacity:.38; filter:blur(18px); }
  .phone-media { animation:phoneFloat 7.2s ease-in-out infinite; }
  .download-strip { height:auto; min-height:0; flex:0 0 auto; margin-top:-4px; padding:18px 0 17px; border-radius:28px 28px 0 0; box-shadow:0 -12px 36px rgba(0,80,200,.12); }
  .download-inner { width:calc(100% - 28px); display:grid; grid-template-columns:1fr; justify-items:center; align-items:center; gap:12px; text-align:center; }
  .strip-copy { display:grid; justify-items:center; gap:8px; }
  .strip-icon { width:38px; height:44px; }
  .strip-copy strong { font-size:19px; line-height:1.1; letter-spacing:-.04em; }
  .strip-copy p { margin:4px 0 0; font-size:12.8px; }
  .store-actions { width:100%; margin:0; display:grid; grid-template-columns:auto auto; justify-content:center; align-items:start; gap:10px; }
  .store-divider { display:none; }
  .store-google { width:136px; }
  .store-app { width:148px; }
  .ios-wrap { gap:4px; }
  .ios-wrap em { font-size:10.8px; line-height:1.1; }
  .footer-social { order:3; margin:0; gap:13px; }
  .social-btn { width:42px; height:42px; }
  .social-btn img { width:100%; height:100%; display:block; object-fit:cover; }
  .footer-links { margin-top:2px; gap:12px; font-size:11.5px; flex-wrap:wrap; }
}

@media (max-width:430px){
  .bg-loop { width:168vw; height:94.5vw; min-height:360px; }
  .site-header, .hero-inner { width:calc(100% - 28px); }
  .brand { font-size:23px; }
  h1 { font-size:clamp(36px,10.8vw,48px); }
  .subcopy { max-width:340px; font-size:14px; }
  .trust-row { max-width:350px; grid-template-columns:1fr; gap:10px; }
  .trust-item { min-height:68px; justify-content:center; }
  .phone-zone { width:min(76vw,300px); }
  .download-strip { border-radius:24px 24px 0 0; }
  .store-actions { grid-template-columns:1fr; justify-items:center; gap:7px; }
  .store-google { width:150px; }
  .store-app { width:162px; }
}

@media (max-width:360px){
  h1 { font-size:34px; }
  .btn { width:100%; }
  .phone-zone { width:82vw; }
}


/* v3 mobile refinement based on preview feedback */
@media (max-width: 900px) {
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy > * {
    width: 100%;
  }

  .trust-row {
    order: 4;
    margin-top: 22px;
    max-width: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .trust-item {
    min-height: 74px;
    padding: 12px 14px;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }

  .hero-actions {
    order: 5;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .btn,
  .btn-primary {
    width: min(100%, 340px);
  }

  .phone-zone {
    width: min(62vw, 278px);
    margin: 8px auto 0;
  }

  .phone-media {
    filter: drop-shadow(0 18px 22px rgba(10, 12, 18, 0.14));
  }

  .phone-layer {
    transform: scaleX(1.035);
    transform-origin: center center;
  }

  .download-strip {
    margin-top: 0;
    padding: 20px 0 18px;
  }

  .download-inner {
    width: calc(100% - 26px);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "links links"
      "copy copy"
      "social stores";
    align-items: start;
    row-gap: 14px;
    column-gap: 16px;
    text-align: center;
  }

  .footer-links {
    grid-area: links;
    justify-content: center;
    margin: 0;
    gap: 16px;
    font-size: 11.8px;
  }

  .strip-copy {
    grid-area: copy;
    justify-self: center;
    max-width: 330px;
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .footer-social {
    grid-area: social;
    justify-self: start;
    align-self: center;
    gap: 14px;
    padding-left: 6px;
  }

  .social-btn {
    width: 52px;
    height: 52px;
    box-shadow: 0 10px 18px rgba(0,36,130,0.16);
  }

  .store-actions {
    grid-area: stores;
    justify-self: end;
    align-self: start;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .store-google,
  .store-app {
    width: 168px;
  }

  .ios-wrap {
    display: grid;
    justify-items: center;
    gap: 4px;
  }

  .ios-wrap em {
    font-size: 10.8px;
  }
}

@media (max-width: 430px) {
  .hero-inner {
    gap: 18px;
  }

  .trust-row {
    max-width: 100%;
    gap: 10px;
  }

  .trust-item {
    min-height: 72px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .trust-item svg {
    width: 28px;
    height: 34px;
  }

  .btn,
  .btn-primary {
    width: min(100%, 330px);
  }

  .phone-zone {
    width: min(62vw, 260px);
    margin-top: 2px;
  }

  .download-inner {
    width: calc(100% - 22px);
    column-gap: 8px;
  }

  .footer-links {
    gap: 12px;
    font-size: 11px;
  }

  .strip-copy strong {
    font-size: 18px;
  }

  .strip-copy p {
    font-size: 12px;
  }

  .footer-social {
    gap: 10px;
    padding-left: 2px;
  }

  .social-btn {
    width: 48px;
    height: 48px;
  }

  .store-google,
  .store-app {
    width: 154px;
  }
}

@media (max-width: 360px) {
  .trust-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .download-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "links"
      "copy"
      "social"
      "stores";
    justify-items: center;
  }

  .footer-social,
  .store-actions {
    justify-self: center;
    padding-left: 0;
  }

  .phone-zone {
    width: min(72vw, 250px);
  }
}

/* v4: force the exact requested mobile layout */
@media (max-width: 900px) {
  body.myall-v4 html,
  body.myall-v4 {
    overflow-x: hidden;
  }

  body.myall-v4 .hero {
    background: #f7f3ec;
  }

  body.myall-v4 .bg-loop {
    top: 0;
    left: 50%;
    width: 185vw;
    height: 104vw;
    min-height: 430px;
    max-height: 680px;
    transform: translateX(-50%);
    object-fit: cover;
    object-position: center top;
    opacity: 1;
    filter: saturate(.95) contrast(.95) brightness(1.06);
  }

  body.myall-v4 .hero-tint {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.10) 0%,
        rgba(255,255,255,.34) 26%,
        rgba(255,255,255,.62) 58%,
        rgba(255,255,255,.78) 100%);
  }

  body.myall-v4 .hero-inner {
    padding-bottom: 18px;
    gap: 18px;
  }

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

  body.myall-v4 .hero-copy > * {
    width: 100%;
  }

  body.myall-v4 .trust-row {
    order: 4 !important;
    width: 100% !important;
    max-width: 760px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    margin: 22px auto 0 !important;
  }

  body.myall-v4 .trust-item {
    min-height: 82px !important;
    padding: 10px 9px !important;
    border-radius: 18px !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    text-align: left !important;
    font-size: clamp(10px, 3.05vw, 13px) !important;
    line-height: 1.22 !important;
  }

  body.myall-v4 .trust-item svg {
    width: clamp(24px, 7vw, 31px) !important;
    height: clamp(29px, 8vw, 36px) !important;
    flex: 0 0 auto !important;
  }

  body.myall-v4 .hero-actions {
    order: 5 !important;
    margin-top: 16px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  body.myall-v4 .btn-primary {
    width: min(100%, 344px) !important;
    min-width: 0 !important;
    height: 54px !important;
  }

  body.myall-v4 .phone-zone {
    width: min(57vw, 255px) !important;
    min-width: 0 !important;
    margin: 6px auto 0 !important;
    transform: none !important;
  }

  body.myall-v4 .phone-media {
    filter: drop-shadow(0 14px 18px rgba(10, 12, 18, 0.13)) !important;
  }

  body.myall-v4 .phone-layer {
    transform: perspective(900px) rotateY(-1.2deg) scaleX(1.055) !important;
    transform-origin: 48% 50% !important;
  }

  body.myall-v4 .download-strip {
    padding: 18px 0 16px !important;
    border-radius: 26px 26px 0 0 !important;
  }

  body.myall-v4 .download-inner {
    width: calc(100% - 24px) !important;
    display: grid !important;
    grid-template-columns: minmax(102px, 0.74fr) minmax(146px, 1fr) !important;
    grid-template-areas:
      "links links"
      "copy copy"
      "social stores" !important;
    justify-content: stretch !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 13px !important;
    text-align: center !important;
  }

  body.myall-v4 .footer-links {
    grid-area: links !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    gap: clamp(9px, 3vw, 15px) !important;
    font-size: clamp(10px, 3vw, 12px) !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  body.myall-v4 .strip-copy {
    grid-area: copy !important;
    justify-self: center !important;
    display: grid !important;
    justify-items: center !important;
    gap: 7px !important;
    max-width: 350px !important;
  }

  body.myall-v4 .strip-icon {
    width: 36px !important;
    height: 42px !important;
  }

  body.myall-v4 .strip-copy strong {
    font-size: clamp(17px, 5vw, 21px) !important;
    line-height: 1.08 !important;
  }

  body.myall-v4 .strip-copy p {
    font-size: clamp(11px, 3.1vw, 13px) !important;
    margin: 2px 0 0 !important;
  }

  body.myall-v4 .footer-social {
    grid-area: social !important;
    justify-self: start !important;
    align-self: center !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 9px !important;
    margin: 0 !important;
    padding-left: 2px !important;
  }

  body.myall-v4 .social-btn {
    width: clamp(42px, 12.6vw, 54px) !important;
    height: clamp(42px, 12.6vw, 54px) !important;
  }

  body.myall-v4 .store-actions {
    grid-area: stores !important;
    justify-self: end !important;
    align-self: center !important;
    width: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    margin: 0 !important;
  }

  body.myall-v4 .store-google,
  body.myall-v4 .store-app {
    width: clamp(138px, 42vw, 170px) !important;
    max-width: 170px !important;
  }

  body.myall-v4 .ios-wrap {
    display: grid !important;
    justify-items: center !important;
    gap: 4px !important;
  }

  body.myall-v4 .ios-wrap em {
    font-size: clamp(10px, 2.8vw, 11px) !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 345px) {
  body.myall-v4 .trust-row {
    gap: 8px !important;
  }

  body.myall-v4 .trust-item {
    padding: 9px 7px !important;
    font-size: 10px !important;
  }

  body.myall-v4 .download-inner {
    grid-template-columns: minmax(88px, .65fr) minmax(130px, 1fr) !important;
    column-gap: 7px !important;
  }

  body.myall-v4 .social-btn {
    width: 40px !important;
    height: 40px !important;
  }

  body.myall-v4 .store-google,
  body.myall-v4 .store-app {
    width: 136px !important;
  }
}

/* v5: remove footer shield and extend animated background down to footer */
@media (max-width: 900px) {
  body.myall-v5 .hero {
    position: relative !important;
    overflow: hidden !important;
    background: #f7f3ec !important;
  }

  body.myall-v5 .bg-loop {
    position: absolute !important;
    inset: 0 auto 0 50% !important;
    width: 185vw !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    transform: translateX(-50%) !important;
    object-fit: cover !important;
    object-position: center top !important;
    opacity: 1 !important;
    filter: saturate(.95) contrast(.95) brightness(1.06) !important;
  }

  body.myall-v5 .hero-tint {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.12) 0%,
        rgba(255,255,255,.32) 30%,
        rgba(255,255,255,.50) 62%,
        rgba(255,255,255,.40) 100%) !important;
  }

  body.myall-v5 .phone-zone {
    margin-bottom: 2px !important;
  }

  body.myall-v5 .download-strip .strip-icon {
    display: none !important;
  }

  body.myall-v5 .download-strip {
    margin-top: 0 !important;
    padding: 16px 0 14px !important;
    border-radius: 26px 26px 0 0 !important;
  }

  body.myall-v5 .strip-copy {
    gap: 2px !important;
    max-width: 360px !important;
  }

  body.myall-v5 .strip-copy strong {
    font-size: clamp(18px, 5.2vw, 22px) !important;
  }

  body.myall-v5 .strip-copy p {
    margin-top: 3px !important;
  }

  body.myall-v5 .download-inner {
    row-gap: 11px !important;
  }
}

@media (max-width: 430px) {
  body.myall-v5 .bg-loop {
    width: 195vw !important;
  }

  body.myall-v5 .download-strip {
    padding: 15px 0 13px !important;
  }

  body.myall-v5 .download-inner {
    row-gap: 10px !important;
  }
}

/* v7: keep footer layout/spacing unchanged; extend video under footer corners + top icon + tighter cards */
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  body.myall-v7 .brand-mark {
    width: 52px !important;
    height: 52px !important;
  }

  body.myall-v7 .brand {
    gap: 10px !important;
  }

  /* Do not move/resize footer. Only allow the animated video to continue underneath its rounded top corners. */
  body.myall-v7 .hero {
    overflow: visible !important;
  }

  body.myall-v7 .bg-loop {
    height: calc(100% + 34px) !important;
    min-height: calc(100% + 34px) !important;
    max-height: none !important;
  }

  body.myall-v7 .hero-tint {
    bottom: -34px !important;
  }

  body.myall-v7 .trust-row {
    margin-top: 20px !important;
    gap: 10px !important;
  }

  body.myall-v7 .trust-item {
    min-height: 0 !important;
    padding: 7px 9px !important;
    gap: 7px !important;
    border-radius: 17px !important;
    align-items: center !important;
  }

  body.myall-v7 .trust-item span {
    display: block !important;
    margin: 0 !important;
    line-height: 1.16 !important;
  }

  body.myall-v7 .trust-item svg {
    width: clamp(23px, 6.4vw, 28px) !important;
    height: clamp(28px, 7.2vw, 34px) !important;
  }
}

@media (max-width: 430px) {
  body.myall-v7 .bg-loop {
    height: calc(100% + 38px) !important;
    min-height: calc(100% + 38px) !important;
  }

  body.myall-v7 .hero-tint {
    bottom: -38px !important;
  }

  body.myall-v7 .trust-item {
    padding: 6px 8px !important;
    gap: 7px !important;
  }

  body.myall-v7 .trust-item span {
    font-size: 12px !important;
  }
}


/* v8: deeper under-footer background extension to fully cover rounded-corner white gaps plus extra pixels */


/* v9: clip top brand icon corners so the white square corners disappear */
body.myall-v7 .brand-mark {
  border-radius: 16px !important;
  overflow: hidden !important;
  background: transparent !important;
  flex: 0 0 auto;
}

body.myall-v7 .brand-mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  display: block !important;
}

@media (max-width: 900px) {
  body.myall-v7 .brand-mark {
    border-radius: 15px !important;
  }
  body.myall-v7 .brand-mark img {
    border-radius: 15px !important;
  }
}


/* v10: top brand icon without the outer black frame */
body.myall-v7 .brand-mark {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.myall-v7 .brand-mark img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

/* v11: remove hero pill and move tagline under the MyAll Guard brand */
.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.brand-title {
  display: block;
  color: var(--ink);
}

.brand-subtitle {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: -0.025em;
  opacity: 0.86;
}

@media (max-width: 900px) {
  body.myall-v11 .site-header {
    height: 112px !important;
    align-items: center !important;
  }

  body.myall-v11 .brand {
    align-items: center !important;
  }

  body.myall-v11 .brand-title {
    font-size: inherit !important;
  }

  body.myall-v11 .brand-subtitle {
    font-size: 14px !important;
    margin-top: 7px !important;
    color: var(--ink) !important;
    opacity: 0.88 !important;
  }

  body.myall-v11 .hero-inner {
    padding-top: 2px !important;
  }

  body.myall-v11 h1 {
    margin-top: 4px !important;
  }
}

@media (max-width: 430px) {
  body.myall-v11 .site-header {
    height: 106px !important;
  }

  body.myall-v11 .brand-subtitle {
    font-size: 13px !important;
    margin-top: 6px !important;
  }

  body.myall-v11 h1 {
    margin-top: 2px !important;
  }
}

/* v12: mobile hamburger + left text links near phone + filled section pages */
.mobile-nav-toggle,
.mobile-menu-button,
.mobile-menu-panel,
.quick-text-links {
  display: none;
}

.phone-and-links {
  display: contents;
}

@media (max-width: 900px) {
  body.myall-v12 .site-header {
    justify-content: space-between !important;
    width: calc(100% - 26px) !important;
    height: 106px !important;
    padding-top: 8px !important;
  }

  body.myall-v12 .brand {
    margin-left: 0 !important;
  }

  body.myall-v12 .brand-mark {
    width: 52px !important;
    height: 52px !important;
  }

  body.myall-v12 .brand-title {
    font-size: 25px !important;
  }

  body.myall-v12 .brand-subtitle {
    font-size: 13px !important;
    margin-top: 6px !important;
  }

  body.myall-v12 .top-nav {
    display: none !important;
  }

  body.myall-v12 .mobile-menu-button {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(10,20,40,0.06);
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.10);
    cursor: pointer;
    z-index: 25;
    backdrop-filter: blur(12px);
  }

  body.myall-v12 .mobile-menu-button span {
    width: 21px;
    height: 2.3px;
    border-radius: 999px;
    background: var(--ink);
    display: block;
  }

  body.myall-v12 .mobile-nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  body.myall-v12 .mobile-menu-panel {
    position: absolute;
    right: 13px;
    top: 76px;
    width: 194px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 22px 60px rgba(10, 20, 40, 0.15);
    backdrop-filter: blur(18px);
    z-index: 24;
    display: grid !important;
    gap: 4px;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.myall-v12 .mobile-nav-toggle:checked ~ .mobile-menu-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  body.myall-v12 .mobile-menu-panel a {
    display: block;
    padding: 11px 12px;
    border-radius: 13px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.025em;
  }

  body.myall-v12 .mobile-menu-panel a:hover {
    background: rgba(5,103,255,0.08);
    color: var(--blue);
  }

  body.myall-v12 .hero-inner {
    gap: 16px !important;
  }

  body.myall-v12 .phone-and-links {
    width: 100% !important;
    max-width: 680px !important;
    display: grid !important;
    grid-template-columns: minmax(94px, 0.7fr) minmax(0, 1.3fr) !important;
    align-items: center !important;
    column-gap: 4px !important;
    margin: 5px auto 0 !important;
  }

  body.myall-v12 .quick-text-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    align-self: start !important;
    gap: clamp(22px, 6.4vw, 32px) !important;
    padding-left: 6px !important;
    padding-top: 0 !important;
    margin-top: -16px !important;
    z-index: 5 !important;
  }

  body.myall-v12 .quick-text-links a {
    color: var(--ink) !important;
    font-size: 15px !important;
    line-height: 1.14 !important;
    font-weight: 760 !important;
    letter-spacing: -0.03em !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    opacity: 0.94 !important;
  }

  body.myall-v12 .quick-text-links a:active {
    color: var(--blue) !important;
  }

  body.myall-v12 .phone-and-links .phone-zone {
    justify-self: end !important;
    width: min(62vw, 270px) !important;
    margin: 0 -18px 0 0 !important;
    transform: none !important;
  }
}

@media (max-width: 430px) {
  body.myall-v12 .phone-and-links {
    grid-template-columns: minmax(92px, 0.68fr) minmax(0, 1.32fr) !important;
    column-gap: 0 !important;
  }

  body.myall-v12 .phone-and-links .phone-zone {
    width: min(63vw, 255px) !important;
    margin-right: -20px !important;
  }

  body.myall-v12 .quick-text-links {
    padding-left: 2px !important;
    gap: clamp(20px, 6vw, 28px) !important;
    margin-top: -20px !important;
  }

  body.myall-v12 .quick-text-links a {
    font-size: 15px !important;
    font-weight: 780 !important;
  }

  body.myall-v12 .quick-text-links a {
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  body.myall-v12 .quick-text-links a {
    font-size: 12px !important;
  }

  body.myall-v12 .phone-and-links .phone-zone {
    width: min(65vw, 238px) !important;
    margin-right: -22px !important;
  }
}

/* Filled internal pages with a cropped single-bead style background */
.section-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: #faf7f1;
}

.section-bg-loop {
  position: fixed;
  left: 50%;
  top: -18%;
  width: 190vw;
  height: 140vh;
  min-height: 120vh;
  transform: translateX(-50%) scale(1.45);
  object-fit: cover;
  opacity: 0.54;
  filter: saturate(.9) contrast(.95) brightness(1.08);
  z-index: 0;
  pointer-events: none;
}

.section-white-bead .section-bg-loop {
  object-position: 38% 40%;
}

.section-blue-bead .section-bg-loop {
  object-position: 68% 66%;
}

.section-alt .section-bg-loop {
  transform: translateX(-50%) scale(1.7);
}

.section-bg-tint {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(255,255,255,0.56), rgba(255,255,255,0.18) 55%, rgba(255,255,255,0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(250,247,241,0.45));
  z-index: 1;
  pointer-events: none;
}

.section-shell {
  position: relative;
  z-index: 2;
}

.section-card {
  backdrop-filter: blur(16px);
}

.section-lead {
  font-size: clamp(18px, 2vw, 22px) !important;
  color: #5b6472 !important;
  max-width: 720px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 24px;
}

.mini-section-card {
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(10,20,40,0.06);
  box-shadow: 0 14px 40px rgba(12,22,40,0.07);
}

.mini-section-card h3 {
  margin: 0 0 9px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.mini-section-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.section-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(5,103,255,0.07);
  color: #4d5968 !important;
}

.pricing-highlight {
  width: fit-content;
  margin: 18px 0 4px;
  padding: 18px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.80);
  box-shadow: 0 14px 40px rgba(12,22,40,0.08);
}

.pricing-highlight span,
.pricing-highlight em {
  display: block;
  color: #4d5968;
  font-style: normal;
}

.pricing-highlight strong {
  display: block;
  font-size: 46px;
  letter-spacing: -0.06em;
  line-height: 1;
}

@media (max-width: 700px) {
  .section-grid {
    grid-template-columns: 1fr;
  }

  .section-bg-loop {
    width: 240vw;
    transform: translateX(-50%) scale(1.65);
  }

  .section-card {
    border-radius: 26px;
  }
}

/* v15 SAFE FIX: only adjust the left quick links; do not touch header, icon, menu, phone image asset, or footer */
@media (max-width: 900px) {
  body.myall-v15 .phone-and-links {
    grid-template-columns: 138px minmax(0, 1fr) !important;
    column-gap: 0 !important;
    align-items: start !important;
    margin-top: 14px !important;
  }

  body.myall-v15 .quick-text-links {
    margin-left: 0 !important;
    padding-left: 14px !important;
    margin-top: 18px !important;
    padding-top: 0 !important;
    gap: 38px !important;
    align-self: start !important;
  }

  body.myall-v15 .quick-text-links a {
    font-size: 26px !important;
    font-weight: 820 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    color: var(--ink) !important;
    opacity: 0.96 !important;
  }

  body.myall-v15 .phone-and-links .phone-zone {
    justify-self: end !important;
    width: min(63vw, 255px) !important;
    margin-right: -20px !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 430px) {
  body.myall-v15 .phone-and-links {
    grid-template-columns: 136px minmax(0, 1fr) !important;
    margin-top: 14px !important;
  }

  body.myall-v15 .quick-text-links {
    padding-left: 13px !important;
    margin-top: 18px !important;
    gap: 38px !important;
  }

  body.myall-v15 .quick-text-links a {
    font-size: 25px !important;
    font-weight: 830 !important;
  }

  body.myall-v15 .phone-and-links .phone-zone {
    width: min(63vw, 252px) !important;
    margin-right: -20px !important;
  }
}

@media (max-width: 380px) {
  body.myall-v15 .phone-and-links {
    grid-template-columns: 126px minmax(0, 1fr) !important;
  }

  body.myall-v15 .quick-text-links {
    padding-left: 12px !important;
    gap: 34px !important;
  }

  body.myall-v15 .quick-text-links a {
    font-size: 22px !important;
  }
}

/* v16: transparent mobile hamburger button + click-anywhere backdrop close */
.mobile-menu-backdrop {
  display: none;
}

@media (max-width: 900px) {
  body.myall-v16 .mobile-menu-button {
    width: 46px !important;
    height: 46px !important;
    border-radius: 14px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.myall-v16 .mobile-menu-button:hover,
  body.myall-v16 .mobile-menu-button:active {
    background: transparent !important;
    box-shadow: none !important;
  }

  body.myall-v16 .mobile-menu-button span {
    width: 24px !important;
    height: 2.6px !important;
    background: var(--ink) !important;
  }

  body.myall-v16 .mobile-menu-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 23;
    opacity: 0;
    pointer-events: none;
    background: transparent;
  }

  body.myall-v16 .mobile-menu-panel {
    z-index: 24 !important;
  }

  body.myall-v16 .mobile-menu-button {
    z-index: 25 !important;
  }

  body.myall-v16 .mobile-nav-toggle:checked ~ .mobile-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

/* v17: softer, single-bead focused section backgrounds */
.section-page {
  background: #faf7f2;
}

.section-bg-loop {
  top: -22%;
  width: 210vw;
  height: 150vh;
  min-height: 130vh;
  transform: translateX(-50%) scale(1.72);
  object-fit: cover;
  opacity: 0.30;
  filter: saturate(.72) contrast(.93) brightness(1.13);
}

.section-white-bead .section-bg-loop {
  object-position: 23% 32%;
}

.section-blue-bead .section-bg-loop {
  object-position: 78% 63%;
}

.section-aqua-bead .section-bg-loop {
  object-position: 11% 73%;
}

.section-peach-bead .section-bg-loop {
  object-position: 90% 23%;
}

.section-alt .section-bg-loop {
  transform: translateX(-50%) scale(1.9);
}

.section-bg-tint {
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.84), rgba(255,255,255,0.52) 48%, rgba(255,255,255,0.26) 70%, rgba(255,255,255,0.12)),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(250,247,242,0.76));
}

.section-card {
  background: rgba(255,255,255,0.74) !important;
  border: 1px solid rgba(10,20,40,0.04) !important;
  box-shadow: 0 18px 48px rgba(12,22,40,0.055) !important;
  backdrop-filter: blur(15px) !important;
}

.mini-section-card {
  background: rgba(255,255,255,0.80);
  box-shadow: 0 12px 34px rgba(12,22,40,0.05);
}

.section-note,
.pricing-highlight {
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 34px rgba(12,22,40,0.05);
}

@media (max-width: 700px) {
  .section-bg-loop {
    width: 280vw;
    top: -18%;
    transform: translateX(-50%) scale(1.95);
    opacity: 0.26;
  }

  .section-alt .section-bg-loop {
    transform: translateX(-50%) scale(2.08);
  }

  .section-bg-tint {
    background:
      radial-gradient(circle at 50% 16%, rgba(255,255,255,0.88), rgba(255,255,255,0.58) 48%, rgba(255,255,255,0.30) 70%, rgba(255,255,255,0.15)),
      linear-gradient(180deg, rgba(255,255,255,0.86), rgba(250,247,242,0.80));
  }
}

/* v18: focus top-visible blue/orange animated bead on section pages */
.section-bg-loop {
  top: -9%;
  width: 205vw;
  height: 138vh;
  min-height: 118vh;
  transform: translateX(-50%) scale(1.56);
  opacity: 0.36;
  filter: saturate(.88) contrast(.96) brightness(1.10);
}

.section-white-bead .section-bg-loop {
  object-position: 18% 12%;
}

.section-blue-bead .section-bg-loop {
  object-position: 66% 18%;
}

.section-aqua-bead .section-bg-loop {
  object-position: 28% 15%;
}

.section-peach-bead .section-bg-loop {
  object-position: 78% 16%;
}

.section-alt .section-bg-loop {
  transform: translateX(-50%) scale(1.64);
}

.section-bg-tint {
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,0.74), rgba(255,255,255,0.42) 42%, rgba(255,255,255,0.22) 65%, rgba(255,255,255,0.10)),
    linear-gradient(180deg, rgba(255,255,255,0.76), rgba(250,247,242,0.70));
}

@media (max-width: 700px) {
  .section-bg-loop {
    width: 245vw;
    top: -5%;
    height: 128vh;
    min-height: 108vh;
    transform: translateX(-50%) scale(1.64);
    opacity: 0.34;
  }

  .section-alt .section-bg-loop {
    transform: translateX(-50%) scale(1.72);
  }

  .section-white-bead .section-bg-loop {
    object-position: 16% 10%;
  }

  .section-blue-bead .section-bg-loop {
    object-position: 68% 14%;
  }

  .section-aqua-bead .section-bg-loop {
    object-position: 26% 13%;
  }

  .section-peach-bead .section-bg-loop {
    object-position: 80% 12%;
  }

  .section-bg-tint {
    background:
      radial-gradient(circle at 50% 12%, rgba(255,255,255,0.78), rgba(255,255,255,0.46) 42%, rgba(255,255,255,0.24) 65%, rgba(255,255,255,0.11)),
      linear-gradient(180deg, rgba(255,255,255,0.79), rgba(250,247,242,0.72));
  }
}

/* v19: only blue/orange bead crops, stronger visibility and 50% more saturation */
.section-bg-loop {
  top: -8%;
  width: 220vw;
  height: 136vh;
  min-height: 116vh;
  transform: translateX(-50%) scale(1.62);
  opacity: 0.42;
  filter: saturate(1.50) contrast(1.02) brightness(1.08);
}

/* keep only two crop families: blue bead and orange bead */
.section-white-bead .section-bg-loop,
.section-aqua-bead .section-bg-loop {
  object-position: 17% 4%;
}

.section-blue-bead .section-bg-loop,
.section-peach-bead .section-bg-loop {
  object-position: 84% 4%;
}

.section-alt .section-bg-loop {
  transform: translateX(-50%) scale(1.68);
}

.section-bg-tint {
  background:
    radial-gradient(circle at 50% 13%, rgba(255,255,255,0.64), rgba(255,255,255,0.34) 40%, rgba(255,255,255,0.17) 62%, rgba(255,255,255,0.07)),
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(250,247,242,0.60));
}

@media (max-width: 700px) {
  .section-bg-loop {
    width: 258vw;
    top: -3%;
    height: 126vh;
    min-height: 108vh;
    transform: translateX(-50%) scale(1.72);
    opacity: 0.44;
    filter: saturate(1.50) contrast(1.02) brightness(1.08);
  }

  .section-alt .section-bg-loop {
    transform: translateX(-50%) scale(1.78);
  }

  .section-white-bead .section-bg-loop,
  .section-aqua-bead .section-bg-loop {
    object-position: 14% 1.5%;
  }

  .section-blue-bead .section-bg-loop,
  .section-peach-bead .section-bg-loop {
    object-position: 87% 1.5%;
  }

  .section-bg-tint {
    background:
      radial-gradient(circle at 50% 11%, rgba(255,255,255,0.66), rgba(255,255,255,0.36) 40%, rgba(255,255,255,0.18) 62%, rgba(255,255,255,0.07)),
      linear-gradient(180deg, rgba(255,255,255,0.69), rgba(250,247,242,0.61));
  }
}

/* v20: remove section cards/casete so text sits directly on animated bead background */
.section-page .simple-card,
.section-page .section-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.section-page .simple-card h1 {
  margin: 0 0 22px !important;
}

.section-page .simple-card h2 {
  margin-top: 34px !important;
  margin-bottom: 10px !important;
}

.section-page .simple-card p {
  color: #556070 !important;
}

.section-page .section-lead {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-page .section-grid {
  gap: 26px;
  margin: 34px 0 24px;
}

.section-page .mini-section-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.section-page .mini-section-card h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.08;
  color: #0d1522;
}

.section-page .mini-section-card p {
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.7;
  color: #5a6473;
  max-width: 36ch;
}

.section-page .section-note,
.section-page .pricing-highlight,
.section-page .contact-box {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 28px !important;
}

.section-page .pricing-highlight strong {
  font-size: 42px;
}

.section-page .contact-box p,
.section-page .pricing-highlight span,
.section-page .pricing-highlight em {
  color: #556070 !important;
}

.section-page a[href="index.html"] {
  display: inline-block;
  margin-top: 24px;
}

@media (max-width: 700px) {
  .section-page .simple-shell {
    width: min(920px, calc(100% - 42px));
    padding: 34px 0 72px;
  }

  .section-page .simple-brand {
    margin-bottom: 24px;
  }

  .section-page .simple-card h1 {
    margin-bottom: 18px !important;
  }

  .section-page .simple-card h2 {
    margin-top: 30px !important;
    margin-bottom: 8px !important;
    font-size: 22px !important;
  }

  .section-page .simple-card p {
    font-size: 17px !important;
    line-height: 1.7 !important;
  }

  .section-page .section-grid {
    gap: 30px;
    margin: 28px 0 18px;
  }

  .section-page .mini-section-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .section-page .mini-section-card p {
    font-size: 17px;
    line-height: 1.72;
    max-width: none;
  }

  .section-page .section-note,
  .section-page .pricing-highlight,
  .section-page .contact-box {
    margin-top: 22px !important;
  }
}
