@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cairo-arabic-400-normal.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74,
    U+FE76-FEFC;
}

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cairo-arabic-600-normal.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74,
    U+FE76-FEFC;
}

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cairo-arabic-700-normal.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
    U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74,
    U+FE76-FEFC;
}

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cairo-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cairo-latin-700-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --bg: #fff;
  --band: #f5f5f7;
  --nav: rgb(255 255 255 / 0.72);
  --link: #0066cc;
  --link-dark: #2997ff;
  --blue: #0071e3;
  --nav-h: 2.75rem;
  --font: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 1.75rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 0.75rem + env(safe-area-inset-top));
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.23536;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #0071e3;
  color: #fff;
}

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

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

button {
  font-family: inherit;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -3rem;
  z-index: 80;
  background: var(--blue);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 980px;
}

.skip:focus {
  top: 0.6rem;
}

.wrap {
  width: min(980px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
}

.nav-bar {
  position: relative;
  z-index: 2;
  height: calc(var(--nav-h) + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  background: var(--nav);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  transition: background 0.2s ease;
}

.nav.is-search-open .nav-bar {
  background: rgb(255 255 255 / 0.92);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: min(980px, calc(100% - 1.5rem));
  height: var(--nav-h);
  margin-inline: auto;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.35rem;
  overflow: hidden;
}

.nav-logo img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
}

.nav-links {
  display: none;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
}

.nav-links a {
  color: rgb(0 0 0 / 0.8);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 0.35rem 0.55rem;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.18s ease, color 0.18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--ink);
  opacity: 0.66;
}

.nav.is-search-open .nav-links {
  pointer-events: none;
  opacity: 0;
}

.nav.is-search-open .nav-lang {
  visibility: hidden;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 0 0 auto;
}

.nav-lang {
  position: relative;
  margin-inline-end: 0.15rem;
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  min-width: 2.15rem;
  height: 1.85rem;
  padding: 0 0.4rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: #86868b;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.nav-lang-toggle:hover,
.nav-lang-toggle[aria-expanded='true'] {
  color: #6e6e73;
}

.nav-lang-toggle [data-lang-code] {
  display: grid;
  place-items: center;
  line-height: 0;
}

.nav-lang-toggle [data-lang-code] svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.nav-lang-caret {
  width: 0.55rem;
  height: 0.4rem;
}

.nav-lang-toggle[aria-expanded='true'] .nav-lang-caret {
  transform: rotate(180deg);
}

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 0.25rem);
  inset-inline-end: 0;
  z-index: 40;
  min-width: 7.25rem;
  padding: 0.3rem;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.16);
}

.nav-lang-menu[hidden] {
  display: none;
}

.nav-lang-menu button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.4rem 0.55rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: start;
  cursor: pointer;
}

.nav-lang-menu button[aria-current='true'] {
  background: var(--band);
}

.nav-lang-menu button:hover {
  background: #f5f5f7;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 980px;
  background: transparent;
  color: rgb(0 0 0 / 0.8);
  cursor: pointer;
  padding: 0;
  touch-action: manipulation;
}

.nav-icon-btn:hover {
  color: var(--ink);
  opacity: 0.66;
}

.nav-icon-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.menu-btn {
  display: inline-flex;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 1rem 1rem;
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.35rem;
  border-bottom: 1px solid rgb(0 0 0 / 0.06);
  touch-action: manipulation;
}

.nav-drawer a:last-child {
  border-bottom: 0;
}

.nav-drawer a:hover,
.nav-drawer a[aria-current='page'] {
  color: var(--blue);
}

.nav-search {
  position: absolute;
  inset-inline: 0;
  top: calc(var(--nav-h) + env(safe-area-inset-top));
  z-index: 1;
  background: #fff;
  border-bottom: 1px solid rgb(0 0 0 / 0.08);
  box-shadow: 0 18px 40px rgb(0 0 0 / 0.12);
  animation: nav-search-in 0.22s ease;
}

.nav-search[hidden] {
  display: none;
}

@keyframes nav-search-in {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-search-form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(680px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0 0.85rem;
}

.nav-search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--muted);
}

.nav-search-field svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
}

.nav-search-field input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 0.15rem 0;
}

.nav-search-field input::placeholder {
  color: rgb(0 0 0 / 0.4);
}

.nav-search-field input::-webkit-search-decoration,
.nav-search-field input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.nav-search-cancel {
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.25rem 0.15rem;
  flex: 0 0 auto;
}

.nav-search-panel {
  width: min(680px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.25rem 0 1.25rem;
}

.nav-search-hint {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-search-quick {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}

.nav-search-quick a,
.nav-search-results a {
  display: block;
  padding: 0.55rem 0.15rem;
  color: var(--ink);
  font-size: 0.9rem;
  border-radius: 0.4rem;
}

.nav-search-quick a:hover,
.nav-search-results a:hover {
  color: var(--blue);
}

.nav-search-results {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(0 0 0 / 0.08);
}

.nav-search-results[hidden] {
  display: none;
}

.nav-search-results .nav-search-hint {
  margin-bottom: 0.45rem;
}

.nav-search-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-search-hit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nav-search-hit span {
  color: var(--muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

@media (min-width: 834px) {
  .nav-links {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .nav-drawer,
  .nav-drawer.open {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-search {
    animation: none;
  }

  .story-panel,
  .story-panel > img,
  .story-light > .story-device {
    transition: none;
  }

  .story:hover .story-panel,
  .story:focus-within .story-panel,
  .story:hover img,
  .story:focus-within img {
    transform: none;
  }
}

.page-head {
  padding: 4.5rem 1.25rem 1.75rem;
  background: #fff;
}

.page-head h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.page-title-lead {
  font-size: clamp(4.2rem, 11vw, 7.2rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.page-title-rest {
  font-size: clamp(2.15rem, 5.4vw, 3.55rem);
  font-weight: 600;
}

.stories {
  padding-bottom: 1.5rem;
  background: #fff;
}

.stories-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: min(980px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 0;
}

.story {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.story-dark {
  color: inherit;
}

.story-panel {
  position: relative;
  flex: 1 1 auto;
  min-height: 22rem;
  border-radius: var(--radius);
  background: #000;
  color: #fff;
  padding: 1.5rem 1.4rem 12.5rem;
  overflow: visible;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.story-light .story-panel {
  background: var(--band);
  color: var(--ink);
  min-height: 0;
  padding: 1.5rem 1.4rem 1.45rem;
}

.story:hover .story-panel,
.story:focus-within .story-panel {
  transform: translateY(-0.4rem);
  box-shadow: 0 28px 56px rgb(0 0 0 / 0.22);
}

.story-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.story h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

.story > h3.story-outside {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.story-light > h3.story-outside {
  order: 1;
  margin: 0.7rem 0 0;
}

.story-offer {
  margin: 0 0 0.85rem;
  color: #d2d2d7;
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 600;
  line-height: 1.4;
}

.story-split {
  width: 2.75rem;
  height: 2px;
  margin: 0 0 0.95rem;
  border: 0;
  background: rgb(255 255 255 / 0.4);
}

.story a {
  color: var(--link);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.story-dark a {
  color: var(--link-dark);
}

.story a:hover,
.shop-head a:hover,
.visit-copy a:hover {
  text-decoration: underline;
}

.story-panel > img {
  position: absolute;
  inset-inline: 0;
  bottom: -12%;
  margin-inline: auto;
  height: 17.5rem;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 22px 40px rgb(0 0 0 / 0.45));
  transition: transform 0.4s ease;
}

.story-light > .story-device {
  position: relative;
  display: block;
  height: 15.5rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 0.75rem;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 22px 36px rgb(0 0 0 / 0.22));
  transition: transform 0.4s ease;
}

.story:hover .story-panel > img,
.story:focus-within .story-panel > img,
.story-light:hover > .story-device,
.story-light:focus-within > .story-device {
  transform: translateY(-0.65rem) scale(1.06);
}

.calc {
  background: var(--band);
  padding: 3rem 0 3.5rem;
}

.calc-inner {
  max-width: 42rem;
}

.calc h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 0 0 0.55rem;
}

.calc-progress {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.calc-quiz-q {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  margin: 0.35rem 0 0.55rem;
}

.calc-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 400;
}

.calc-yesno {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.calc-yesno button {
  font: inherit;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 0;
  cursor: pointer;
}

.calc-yesno [data-quiz-yes],
.calc-yesno [data-quiz-paid-yes] {
  background: #1d1d1f;
  color: #fff;
}

.calc-yesno [data-quiz-no],
.calc-yesno [data-quiz-paid-no] {
  background: #fff;
  box-shadow: inset 0 0 0 1px #d2d2d7;
}

.calc-back {
  margin-top: 1.25rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.calc-form {
  display: grid;
  gap: 0.85rem;
}

.calc-field {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.86rem;
}

.calc-field input,
.calc-field select {
  font: inherit;
  font-weight: 400;
  border: 1px solid #d2d2d7;
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem;
  background: #fff;
}

.calc-device-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.1rem, 1fr));
  gap: 0.45rem;
  max-height: 19.5rem;
  overflow: auto;
  margin: 0;
  padding: 0.45rem;
  list-style: none;
  background: #fff;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px #d2d2d7;
  overscroll-behavior: contain;
}

.calc-device-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.1rem 0.6rem;
  color: var(--muted);
  font-weight: 400;
  text-align: center;
}

.calc-device-opt {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  margin: 0;
  padding: 0.7rem 0.4rem 0.75rem;
  border: 0;
  border-radius: 0.9rem;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}

.calc-device-opt.is-on {
  background: var(--band);
  box-shadow: inset 0 0 0 2px #1d1d1f;
}

.calc-device-opt img {
  height: 4.7rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 10px 14px rgb(0 0 0 / 0.18));
}

.calc-device-opt strong {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.calc-device-opt small:empty {
  display: none;
}

.calc-results {
  margin-top: 1.35rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.06);
}

.calc-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #e8e8ed;
  font-size: 0.95rem;
  color: var(--muted);
}

.calc-row:last-of-type {
  border-bottom: 0;
}

.calc-row strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.calc-money {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.85rem;
  direction: ltr;
  unicode-bidi: isolate;
}

.calc-cur {
  font-weight: 600;
}

.calc-row-main strong {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.calc-deduct {
  color: #b64400 !important;
}

.calc-due {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  unicode-bidi: isolate;
}

.calc-results .calc-row {
  flex-direction: row-reverse;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.calc-results .calc-row span,
.calc-results .calc-row strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: inherit;
}

.calc-results .calc-row-main strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.calc-results .calc-money {
  direction: rtl;
  gap: 0.4rem;
}

.calc-results .calc-deduct {
  color: #b64400 !important;
}

.calc-cta {
  display: inline-flex;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.calc-legal {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
}

.doc-cards {
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
}

.doc-cards legend {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.doc-cards-lead {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 0.5rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px #d2d2d7;
  cursor: pointer;
}

.doc-card.is-on {
  box-shadow: inset 0 0 0 2px #1d1d1f;
}

.doc-card input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #1d1d1f;
  flex: none;
}

.doc-card-copy {
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.doc-card-text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.doc-card-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.doc-card-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b7c3a;
}

.doc-card-hint {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
}

.doc-card.is-nashama {
  box-shadow: inset 0 0 0 1px #7a8a4a;
}

.doc-card.is-nashama.is-on {
  box-shadow: inset 0 0 0 2px #4d5c28;
}

.doc-card-amount {
  color: #b64400;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.doc-cards-sum {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.doc-expect {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}

.doc-expect li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #e8e8ed;
  color: var(--muted);
}

.doc-expect li.is-on {
  color: var(--ink);
  font-weight: 600;
}

.doc-expect li.is-nashama span {
  font-weight: 700;
}

.doc-expect strong {
  color: #b64400;
  font-variant-numeric: tabular-nums;
}

.visit {
  background: #fff;
  padding: 1.5rem 0 2.5rem;
}

.visit-copy {
  text-align: center;
  padding: 1.25rem 0;
}

.visit-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.visit-copy a {
  color: var(--link);
  font-size: 1.05rem;
}

.visit-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 2rem;
  align-items: start;
  text-align: start;
  max-width: 42rem;
  margin-inline: auto;
}

.visit-hours {
  margin: 0.15rem 0 0;
  padding: 0.95rem 1.05rem;
  border-radius: 1.15rem;
  background: var(--band);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.visit-hours strong {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.visit-status {
  display: block;
  margin: 0.15rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.visit-hours.is-open .visit-status {
  color: #248a3d;
}

.visit-hours.is-closed .visit-status {
  color: #c41e3a;
}

.visit-clock {
  display: block;
  margin-top: 0.4rem;
  font-variant-numeric: tabular-nums;
}

.wa-float,
.call-float {
  position: fixed;
  z-index: 55;
  width: 3.625rem;
  height: 3.625rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  animation: float-bob 3.2s ease-in-out infinite;
}

.wa-float {
  background: #25d366;
  box-shadow:
    0 10px 28px rgb(37 211 102 / 0.45),
    0 2px 8px rgb(0 0 0 / 0.18);
}

.call-float {
  background: #0071e3;
  box-shadow:
    0 10px 28px rgb(0 113 227 / 0.42),
    0 2px 8px rgb(0 0 0 / 0.18);
  animation-delay: 0.4s;
}

.wa-float svg,
.call-float svg {
  width: 1.85rem;
  height: 1.85rem;
  pointer-events: none;
}

.call-float svg {
  width: 1.55rem;
  height: 1.55rem;
}

.wa-float:hover,
.call-float:hover {
  filter: brightness(1.05);
}

.wa-float.is-dragging,
.call-float.is-dragging {
  cursor: grabbing;
  animation: none;
  scale: 1.06;
}

body.app-open .wa-float,
body.app-open .call-float,
body.pdp-open .wa-float,
body.pdp-open .call-float {
  opacity: 0;
  pointer-events: none;
}

@keyframes float-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .call-float {
    animation: none;
  }
}

.shop {
  background: #fff;
  padding: 3.5rem 0 5rem;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .lineup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shop-head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-head h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.045em;
  margin: 0;
  font-weight: 700;
}

.shop-head a {
  color: var(--link);
  font-size: 1.05rem;
}

.lineup {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 2.75rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.15rem;
  align-items: stretch;
  text-align: center;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  height: 100%;
  cursor: pointer;
  background: transparent;
  padding: 0 0.2rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgb(0 113 227 / 0.12);
}

.product-photo {
  width: 100%;
  height: 16.5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  margin-bottom: 0.85rem;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  width: 100%;
}

.product-photo img {
  height: 15rem;
  width: auto;
  max-width: 92%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 36px rgb(0 0 0 / 0.28));
}

.product .new {
  color: #b64400;
  font-size: 0.72rem;
  font-weight: 600;
  margin: 0.15rem 0 0;
  min-height: 1.05em;
  line-height: 1.05em;
}

.product .new.is-off {
  visibility: hidden;
}

.product-brand {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-brand.is-off,
.product-capacity.is-off,
.product-specs.is-off {
  display: none;
}

.product h3 {
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  margin: 0.15rem 0 0.2rem;
  width: 100%;
  min-height: 0;
  line-height: 1.3;
}

.product-capacity {
  margin: 0 0 0.2rem;
  width: 100%;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-specs {
  margin: 0 0 0.45rem;
  width: 100%;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.tagline {
  margin: 0 0 0.45rem;
  width: 100%;
  min-height: 2.5em;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.88rem;
}

.tagline.is-off {
  display: none;
  min-height: 0;
  margin: 0;
}

.from {
  color: var(--muted);
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}

.swatches:empty {
  display: none;
  min-height: 0;
}

.swatch {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.swatch::after {
  content: '';
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--swatch, #1d1d1f);
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.18);
}

.swatch.is-on {
  outline: none;
}

.swatch.is-on::after {
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 3.5px #0071e3,
    inset 0 0 0 1px rgb(0 0 0 / 0.18);
}

.product-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  border: 0;
  border-radius: 980px;
  padding: 0.5rem 1rem;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  touch-action: manipulation;
}

.btn-pill:hover {
  background: #0077ed;
}

.footer {
  background: var(--band);
  color: #6e6e73;
  padding: 3rem 0 2.25rem;
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
}

.footer-top {
  display: grid;
  gap: 0.9rem;
}

.footer-brand {
  margin: 0 0 0.65rem;
  color: #1d1d1f;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-blurb {
  margin: 0;
  max-width: 38rem;
  line-height: 1.65;
  color: #6e6e73;
}

.footer-contact {
  margin: 0;
  font-style: normal;
  line-height: 1.7;
}

.footer-contact p {
  margin: 0;
}

.footer-company {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.45rem;
  color: #1d1d1f;
}

.footer-company-name {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-company-tag {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.footer-contact a {
  color: #1d1d1f;
  font-weight: 600;
  unicode-bidi: isolate;
}

.footer-contact a:hover {
  color: var(--link);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-social-link {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.footer-social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  pointer-events: none;
}

.footer-social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.footer-social-fb {
  background: #1877f2;
}

.footer-social-fb svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-inline-start: 0.1rem;
}

.footer-social-wa {
  background: #25d366;
}

.footer-social-wa svg {
  width: 1.32rem;
  height: 1.32rem;
}

.footer-social-call {
  background: #0071e3;
}

.legal {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid #d2d2d7;
  font-size: 0.75rem;
  color: #86868b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 980px;
  padding: 0.7rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
}

@media (max-width: 900px) {
  .page-head {
    padding: 2.25rem 1.15rem 1rem;
  }

  .page-head h1 {
    max-width: 100%;
  }

  .page-title-lead {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .page-title-rest {
    font-size: clamp(1.45rem, 7vw, 2.15rem);
  }

  .page-sub {
    font-size: clamp(1.15rem, 4.6vw, 1.45rem);
  }

  .family {
    padding: 0.75rem 0 1.6rem;
  }

  .family-item {
    flex-basis: 5.4rem;
    min-width: 5.1rem;
  }

  .family-photo {
    height: 4.6rem;
  }

  .family-photo img {
    height: 4.4rem;
    max-width: 4.4rem;
  }

  .stories-track {
    width: calc(100% - 1.2rem);
    gap: 0.65rem;
  }

  .story {
    min-height: 0;
    padding: 0;
  }

  .story h3 {
    font-size: 1.05rem;
  }

  .story-offer {
    font-size: 0.95rem;
  }

  .story-outside {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .story-light > h3.story-outside {
    margin: 0.5rem 0 0;
  }

  .story-panel {
    min-height: 16.5rem;
    padding: 1rem 0.9rem 8.5rem;
  }

  .story-light .story-panel {
    min-height: 0;
    padding: 1rem 0.9rem 1.1rem;
  }

  .story-panel > img {
    height: 12.5rem;
    bottom: -8%;
  }

  .story-light > .story-device {
    height: 11rem;
    margin-bottom: 0.55rem;
  }

  .visit {
    padding: 0.5rem 0 1.75rem;
  }

  .calc {
    padding: 2.25rem 0 2.5rem;
  }

  .calc-inner {
    width: calc(100% - 2.3rem);
  }

  .calc-device-list {
    grid-template-columns: repeat(auto-fill, minmax(5.6rem, 1fr));
    max-height: 16.5rem;
  }

  .calc-device-opt img {
    height: 3.85rem;
  }

  .visit-copy {
    padding: 0.5rem 0;
  }

  .visit-copy h2 {
    font-size: 1.35rem;
  }

  .visit-meta {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: none;
  }

  .visit-hours {
    margin-top: 0.75rem;
  }

  .shop {
    padding: 1.5rem 0 calc(8.75rem + env(safe-area-inset-bottom));
  }

  .shop-head {
    flex-direction: column;
    align-items: flex-start;
    width: min(1100px, calc(100% - 2rem));
    padding-inline: 0;
    gap: 0.25rem;
  }

  .shop-head h2 {
    font-size: clamp(1.45rem, 6.4vw, 1.85rem);
    letter-spacing: -0.04em;
    line-height: 1.2;
  }

  .lineup {
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 0.7rem;
    padding: 0 0 1.25rem;
    width: min(1100px, calc(100% - 2rem));
    margin-top: 1.15rem;
  }

  .lineup-feature {
    min-height: 0;
    margin: 0.1rem 0;
    border-radius: 1.25rem;
  }

  .pay-band {
    padding: 2.4rem 0 3rem;
  }

  .pay-band-inner {
    width: min(1100px, calc(100% - 2rem));
  }

  .pay-band h2,
  .pay-band p {
    font-size: 1.35rem;
  }

  .lineup-feature-bg {
    opacity: 0.38;
    filter: blur(10px) saturate(1.12);
    transform: scale(1.08);
  }

  .lineup-feature-phrase {
    min-height: 0;
    font-size: clamp(1.05rem, 4.6vw, 1.25rem);
    letter-spacing: -0.03em;
    line-height: 1.4;
    padding: 1.1rem 1.2rem;
  }

  .product {
    display: grid;
    grid-template-columns: 6.75rem minmax(0, 1fr);
    align-items: center;
    column-gap: 0.8rem;
    flex: none;
    max-width: none;
    height: auto;
    text-align: start;
    background: var(--band);
    border-radius: 1.25rem;
    padding: 0.8rem 0.85rem;
    min-height: 7.5rem;
  }

  .product-photo {
    height: 6.5rem;
    margin-bottom: 0;
  }

  .product-photo img {
    height: 6.15rem;
    max-width: 100%;
    filter: drop-shadow(0 12px 16px rgb(0 0 0 / 0.18));
  }

  .product-body {
    align-items: stretch;
    text-align: start;
  }

  .swatches {
    justify-content: flex-start;
    min-height: 2.25rem;
    gap: 0;
    margin-inline-start: -0.45rem;
  }

  .product .new {
    font-size: 0.68rem;
    min-height: 0;
  }

  .product .new.is-off {
    display: none;
    visibility: visible;
  }

  .product-brand {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .product h3 {
    font-size: 1.02rem;
    min-height: 0;
    margin-top: 0.05rem;
    line-height: 1.25;
  }

  .product-capacity {
    font-size: 0.82rem;
    font-weight: 600;
  }

  .product-specs {
    display: none;
  }

  .from {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: var(--ink);
  }

  .from-n {
    font-size: 1.2em;
  }

  .product-links {
    width: 100%;
    justify-content: stretch;
    gap: 0.55rem;
    margin-top: 0.5rem;
    padding-top: 0;
  }

  .product [data-open-product] {
    width: 100%;
    min-height: 2.75rem;
    min-width: 0;
    padding: 0 1.05rem;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .btn-pill {
    min-height: 2.75rem;
  }

  .tagline {
    font-size: 0.78rem;
    min-height: 2.4em;
  }

  .footer {
    padding: 2.25rem 0 calc(2rem + env(safe-area-inset-bottom));
  }

  .footer-blurb {
    font-size: 0.92rem;
  }

  .footer-contact {
    font-size: 0.92rem;
  }

  .app-top {
    height: calc(3rem + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) 1rem 0;
  }

  .app-body {
    width: 100%;
    padding-inline: 1.15rem;
  }

  .field input,
  .field select {
    font-size: 1rem;
  }

  .app-bar {
    padding-bottom: calc(0.85rem + env(safe-area-inset-bottom));
  }

  .nav-lang-toggle {
    min-width: 2.75rem;
    min-height: 2.75rem;
    height: 2.75rem;
  }
}

@media (max-width: 360px) {
  .product {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    column-gap: 0.65rem;
    padding: 0.7rem;
  }

  .product-photo {
    height: 5.5rem;
  }

  .product-photo img {
    height: 5.25rem;
  }

  .product h3 {
    font-size: 0.95rem;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .lineup {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

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

body.app-open {
  overflow: hidden;
}

#apply-app {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  background: #fff;
}

#apply-app[hidden] {
  display: none;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
  padding: 0 1rem;
  border-bottom: 1px solid #d2d2d7;
}

.app-back {
  border: 0;
  background: none;
  color: var(--link);
  font: inherit;
  cursor: pointer;
}

.app-stepn {
  color: var(--muted);
  font-size: 0.8rem;
}

.progress {
  height: 2px;
  background: #d2d2d7;
}

.progress i {
  display: block;
  height: 100%;
  background: #1d1d1f;
}

.app-body {
  overflow: auto;
  padding: 1.35rem 1.25rem 1rem;
  width: min(30rem, 100%);
  margin-inline: auto;
}

.app-body h2 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}

.lead-sm {
  color: var(--muted);
  margin-top: 0;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 0.35rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin: 0.9rem 0;
  font-weight: 600;
  font-size: 0.86rem;
}

fieldset.field {
  border: 0;
  padding: 0;
}

fieldset.field legend {
  padding: 0;
  margin-bottom: 0.35rem;
}

.field input,
.field select {
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #d2d2d7;
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem;
  background: var(--band);
}

.field-static {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #d2d2d7;
  border-radius: 0.75rem;
  padding: 0.85rem 0.9rem;
  background: var(--band);
}

.ident-card {
  display: grid;
  gap: 0.35rem;
  margin: 0.85rem 0;
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  background: var(--band);
}

.ident-card strong {
  font-size: 0.82rem;
}

.choice {
  display: flex;
  gap: 0.5rem;
  font-weight: 400;
  margin: 0.4rem 0;
}

.app-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  border-top: 1px solid #d2d2d7;
  background: #fff;
}

.app-err {
  margin: 0;
  padding: 0 1rem 0.75rem;
  color: #b64400;
  font-weight: 600;
}

.docs {
  display: grid;
  gap: 0.65rem;
}

.file-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--band);
  cursor: pointer;
}

.file-card.is-done {
  box-shadow: inset 0 0 0 2px #1d1d1f;
}

.file-card input {
  margin-top: 0.4rem;
}

.review {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.review li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #d2d2d7;
}

#apply-app .calc-results {
  background: var(--band);
}

.doc-quiz {
  display: grid;
  gap: 0.85rem;
  margin: 0.35rem 0 1rem;
}

.doc-q p {
  margin: 0 0 0.45rem;
  font-weight: 600;
  font-size: 1rem;
}

.doc-q-ans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.doc-q-ans .choice {
  margin: 0;
  padding: 0.7rem 0.75rem;
  border-radius: 0.85rem;
  background: var(--band);
  align-items: center;
}

.offer-note {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #e8f4ff;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
}

.done h2 {
  letter-spacing: 0.04em;
}

.info {
  padding: 1.5rem 0 4rem;
}

.info-inner {
  width: min(40rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.info h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.info h2 {
  margin: 2rem 0 0.55rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.info p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
}

.ayah {
  margin: 1.2rem 0 1.5rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: var(--band);
}

.ayah p {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 2;
}

.ayah cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 600;
}

.pay-steps {
  list-style: none;
  margin: 0.85rem 0 1.25rem;
  padding: 0;
  counter-reset: pay;
}

.pay-steps li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8e8ed;
  font-size: 1.05rem;
  font-weight: 600;
  counter-increment: pay;
}

.pay-steps li::before {
  content: counter(pay);
  flex: 0 0 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
}

.contact-card {
  display: grid;
  width: max-content;
  max-width: 100%;
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: var(--band);
}

.contact-card .who {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.55rem;
  flex-wrap: wrap;
}

.contact-tel {
  color: var(--link);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.contact-icon {
  width: 3.625rem;
  height: 3.625rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.contact-icon svg {
  pointer-events: none;
}

.contact-call {
  background: #0071e3;
  box-shadow:
    0 10px 28px rgb(0 113 227 / 0.42),
    0 2px 8px rgb(0 0 0 / 0.18);
}

.contact-call svg {
  width: 1.55rem;
  height: 1.55rem;
}

.contact-wa {
  background: #25d366;
  box-shadow:
    0 10px 28px rgb(37 211 102 / 0.45),
    0 2px 8px rgb(0 0 0 / 0.18);
}

.contact-wa svg {
  width: 1.85rem;
  height: 1.85rem;
}

.pay-band {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4.5rem 0 5.5rem;
  background: transparent;
}

.pay-band-inner {
  width: min(1100px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 0;
  text-align: start;
}

.pay-band h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.pay-band p {
  margin: 0.4rem 0 0;
  max-width: 18em;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.pay-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1.15rem;
  color: var(--link);
  font-size: 1.05rem;
  font-weight: 400;
}

.pay-band-cta:hover {
  text-decoration: underline;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgb(0 0 0 / 0.18);
  backdrop-filter: blur(3px);
}

.lead-modal[hidden] {
  display: none;
}

body.lead-open {
  overflow: hidden;
}

.lead-card {
  width: min(24.5rem, 100%);
  background: #fff;
  border-radius: 1.6rem;
  padding: 1.7rem 1.45rem 1.25rem;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.24);
  text-align: center;
}

.lead-card img {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
  margin: 0 auto 0.85rem;
}

.lead-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.lead-card > p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.lead-card form {
  text-align: start;
  margin-top: 0.35rem;
}

.lead-card .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
}

.lead-skip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.35rem;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  touch-action: manipulation;
}

.lead-err {
  margin: 0 0 0.55rem;
  color: #b64400;
  font-weight: 600;
  font-size: 0.88rem;
}

.lead-thanks {
  margin: 1.1rem 0 0.35rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.faq {
  margin: 0.5rem 0 1.5rem;
}

.faq > div {
  padding: 0.85rem 0;
  border-bottom: 1px solid #e8e8ed;
}

.faq dt {
  margin: 0;
}

.faq dt button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: start;
  cursor: pointer;
}

.faq dt svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.faq dt button[aria-expanded='true'] svg {
  transform: rotate(180deg);
}

.faq dd {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.55;
}

.page-titles {
  display: grid;
  justify-items: start;
  width: min(56rem, 100%);
  margin-inline: auto;
  text-align: start;
}

.page-sub {
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 3.1vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.page-from {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.family {
  background: #fff;
  padding: 1.5rem 0 2.75rem;
}

.family-inner {
  width: min(1200px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.family-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.35rem 1.6rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.4rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.family-row::-webkit-scrollbar {
  display: none;
}

.family-item {
  flex: 0 0 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 5.6rem;
  color: inherit;
  text-decoration: none;
  text-align: center;
}

.family-photo {
  display: grid;
  place-items: center;
  height: 5.6rem;
}

.family-photo img {
  height: 5.4rem;
  width: auto;
  max-width: 5.4rem;
  object-fit: contain;
}

.family-name {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
}

.family-new {
  margin: 0.15rem 0 0;
  color: #b64400;
  font-size: 0.68rem;
  font-weight: 600;
}

.from-n {
  font-size: 1.28em;
  font-weight: 700;
}

.lineup-empty {
  width: 100%;
  margin: 0;
  padding: 2.5rem 1rem;
  color: var(--muted);
  text-align: center;
}

.lineup-feature {
  grid-column: 1 / -1;
  position: relative;
  isolation: isolate;
  min-height: 17.5rem;
  margin: 0.35rem 0 0.85rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c3d36;
}

a.lineup-feature {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.lineup-feature.is-efawateer {
  background: #0a2748;
}

.lineup-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgb(8 40 36 / 0.18), rgb(6 22 20 / 0.52));
  pointer-events: none;
}

.lineup-feature.is-efawateer::after {
  background: linear-gradient(180deg, rgb(8 28 52 / 0.2), rgb(4 16 32 / 0.55));
}

.lineup-feature-bg {
  position: absolute;
  inset: -12%;
  z-index: 0;
  display: grid;
  place-items: center;
  filter: blur(14px) saturate(1.2);
  transform: scale(1.18);
  pointer-events: none;
}

.lineup-feature-home {
  width: min(21rem, 72vw);
  aspect-ratio: 9 / 17;
  padding: 1.35rem 1.1rem 1.1rem;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, #128c73 0 28%, #f3f6f5 28%);
  box-shadow: 0 28px 60px rgb(0 0 0 / 0.28);
}

.is-efawateer .lineup-feature-home {
  background: linear-gradient(180deg, #0b5cab 0 28%, #f3f6fb 28%);
}

.lineup-feature-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: #fff;
}

.lineup-feature-top strong {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.lineup-feature-top span {
  font-size: 0.82rem;
  opacity: 0.86;
}

.lineup-feature-search {
  height: 2.1rem;
  margin: 1.1rem 0 1.2rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
}

.lineup-feature-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.lineup-feature-tiles i {
  display: block;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 6px 16px rgb(12 61 54 / 0.08);
}

.lineup-feature-bills {
  display: grid;
  gap: 0.55rem;
}

.lineup-feature-bills b {
  display: block;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 0 6px 16px rgb(10 39 72 / 0.08);
}

.lineup-feature-phrase {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 17.5rem;
  margin: 0;
  padding: 1.5rem 1.75rem;
  color: #fff;
  font-size: clamp(1.7rem, 4.4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-align: center;
  text-shadow: 0 10px 32px rgb(0 0 0 / 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .lineup-feature-bg {
    filter: blur(8px) saturate(1.05);
  }
}

.pdp {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  background: #000;
  color: #f5f5f7;
  padding: 0;
}

.pdp[hidden] {
  display: none;
}

body.pdp-open {
  overflow: hidden;
  background: #000;
}

.pdp-sheet {
  background: #000;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.pdp-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: calc(3.25rem + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) 1.15rem 0;
  background: rgb(0 0 0 / 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid #424245;
}

.pdp-back {
  border: 0;
  background: none;
  color: var(--link-dark);
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  min-width: 3.5rem;
  text-align: start;
}

.pdp-nav-title {
  margin: 0;
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f5f5f7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-nav-spacer {
  min-width: 3.5rem;
}

.pdp-body {
  display: grid;
  gap: 1.75rem 2rem;
  padding: 1.25rem 1.25rem 5rem;
}

.pdp-hero {
  display: grid;
  place-items: center;
  min-height: 22rem;
  margin: 0 -1.25rem;
  background: #000;
}

.pdp-hero img {
  width: auto;
  height: min(26rem, 58vw);
  max-width: 88%;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgb(0 0 0 / 0.55));
}

.pdp-hero img[src$='phone-fallback.svg'] {
  filter: invert(1) opacity(0.85);
}

.pdp-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.pdp-thumb {
  width: 3.4rem;
  height: 3.4rem;
  padding: 0.2rem;
  border: 1px solid #424245;
  border-radius: 0.7rem;
  background: #161617;
  cursor: pointer;
}

.pdp-thumb.is-on {
  border-color: var(--link-dark);
  box-shadow: 0 0 0 3px rgb(41 151 255 / 0.28);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-cat {
  margin: 0;
  color: #86868b;
  font-size: 0.82rem;
}

.pdp-new {
  margin: 0.2rem 0 0;
  color: #bf4800;
  font-size: 0.78rem;
  font-weight: 700;
}

.pdp-buy h2 {
  margin: 0.15rem 0 0.65rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  font-weight: 700;
  color: #f5f5f7;
  width: fit-content;
  max-width: 100%;
}

.pdp-buy h2:focus,
.pdp-buy h2:focus-visible {
  outline: none;
}

.pdp-from {
  margin: 0 0 0.45rem;
  color: #86868b;
  font-size: 1.05rem;
}

.pdp-docs {
  margin: 0 0 1.25rem;
  color: #a1a1a6;
  font-size: 0.9rem;
}

.pdp-from strong {
  color: #f5f5f7;
  font-size: 1.2em;
  font-weight: 700;
}

.pdp-from .calc-money,
.pdp-prices .calc-money {
  display: inline-flex;
  direction: rtl;
  gap: 0.4rem;
}

.pdp-prices {
  display: grid;
  gap: 0;
  margin-bottom: 1.35rem;
}

.pdp-prices div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid #424245;
}

.pdp-prices div:last-child {
  border-bottom: 1px solid #424245;
}

.pdp-prices > div > span {
  display: block;
  color: #86868b;
  font-size: 0.75rem;
}

.pdp-prices .calc-money {
  display: inline-flex;
  margin-top: 0.15rem;
  font-size: 1.15rem;
  color: #f5f5f7;
}

.pdp-prices .calc-money span {
  display: inline;
  color: inherit;
  font-size: inherit;
}

.pdp-prices .calc-money .calc-cur[hidden] {
  display: none;
}

.pdp-label {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f5f5f7;
}

.pdp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.pdp-swatch {
  border: 1px solid #424245;
  border-radius: 980px;
  padding: 0.35rem 0.8rem 0.35rem 0.45rem;
  background: #161617;
  color: #f5f5f7;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.pdp-swatch::before {
  content: '';
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-inline-end: 0.4rem;
  border-radius: 50%;
  background: var(--swatch, #1d1d1f);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.18);
  vertical-align: -1px;
}

.pdp-swatch.is-on {
  border-color: var(--link-dark);
  color: var(--link-dark);
}

.pdp-cta {
  width: auto;
  min-width: 7.5rem;
}

.pdp-about,
.pdp-specs-wrap {
  grid-column: 1 / -1;
}

.pdp-about h3,
.pdp-specs-wrap h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: #f5f5f7;
}

.pdp-about p {
  margin: 0;
  color: #86868b;
  line-height: 1.75;
  white-space: pre-wrap;
}

.pdp-specs {
  display: grid;
  margin: 0;
  border: 1px solid #424245;
  border-radius: 1rem;
  overflow: hidden;
}

.pdp-spec {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid #424245;
}

.pdp-spec:first-child {
  border-top: 0;
}

.pdp-spec:nth-child(even) {
  background: #161617;
}

.pdp-spec dt {
  margin: 0;
  color: #86868b;
  font-size: 0.88rem;
}

.pdp-spec dd {
  margin: 0;
  font-weight: 600;
  color: #f5f5f7;
}

@media (min-width: 860px) {
  .pdp-body {
    width: min(1100px, calc(100% - 3rem));
    margin-inline: auto;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    padding: 1.5rem 0 2.5rem;
  }

  .pdp-hero {
    margin: 0;
    min-height: 28rem;
  }

  .pdp-hero img {
    height: 24rem;
  }
}

@media (max-width: 859px) {
  .pdp-spec {
    grid-template-columns: 6.5rem 1fr;
  }

  .pdp-body {
    padding: 0.85rem 1.1rem calc(1.25rem + env(safe-area-inset-bottom));
    gap: 1.15rem;
  }

  .pdp-hero {
    min-height: 15.5rem;
    margin-inline: -1.1rem;
  }

  .pdp-hero img {
    height: min(17.5rem, 58vw);
  }

  .pdp-buy h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
    max-width: 100%;
  }

  .pdp-thumbs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
  }

  .pdp-thumbs::-webkit-scrollbar {
    display: none;
  }

  .pdp-thumb {
    flex: 0 0 3.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .pdp-swatches {
    gap: 0.4rem;
  }

  .pdp-swatch {
    min-height: 2.75rem;
    padding-inline: 0.85rem 0.75rem;
  }

  .pdp-cta {
    position: sticky;
    bottom: calc(0.65rem + env(safe-area-inset-bottom));
    width: 100%;
    min-height: 3rem;
    margin-top: 0.35rem;
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.35);
  }
}
