:root {
  --purple: #6d28d9;
  --purple-dark: #4c1d95;
  --purple-soft: #f2ecff;
  --ink: #17171b;
  --muted: #62626f;
  --line: #e8e4f1;
  --surface: #ffffff;
  --bg: #f8f8f8;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.10);
  --font-ar: "Cairo", "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
  --font-en-heading: "Montserrat", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(109, 40, 217, 0.08), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(76, 29, 149, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: var(--font-ar);
  line-height: 1.85;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.announcement-bar {
  overflow: hidden;
  padding: 9px 0;
  background: linear-gradient(90deg, #111, var(--purple-dark), var(--purple), var(--purple-dark));
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(76, 29, 149, 0.14);
}

.announcement-track {
  display: inline-flex;
  gap: clamp(34px, 6vw, 70px);
  min-width: max-content;
  padding-inline: 24px;
  animation: announcement-marquee 30s linear infinite;
}

.announcement-track span {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
}

@keyframes announcement-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(232, 228, 241, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  direction: ltr;
  font-family: var(--font-en-heading);
  letter-spacing: 3px;
  text-align: left;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
}

.brand-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 14px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2.8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--purple);
}

.hero,
.section,
.proof-strip,
.offer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 88px);
  padding: 48px 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--purple);
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 6.8vw, 76px);
  font-weight: 900;
  line-height: 1.12;
}

.hero-copy h1 {
  max-width: 720px;
  text-wrap: balance;
}

.hero-title {
  display: grid;
  gap: 0.08em;
  line-height: 1.28;
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-lead,
.section-copy p,
.section-heading p,
.final-preview p {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgba(109, 40, 217, 0.26);
}

.button.ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.button.large {
  width: min(100%, 330px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #3f3f46;
  font-weight: 800;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 12% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.28), transparent 68%);
  filter: blur(10px);
}

.hero-character {
  position: absolute;
  right: -5%;
  bottom: -3%;
  z-index: 2;
  width: min(560px, 84%);
  filter: drop-shadow(0 34px 58px rgba(17, 17, 17, 0.28));
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: 8%;
  z-index: 3;
  width: min(620px, 82%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.06);
}

.proof-strip div {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
}

.proof-strip strong {
  display: block;
  color: var(--purple-dark);
  font-size: 21px;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.intro-section,
.chapters-section,
.final-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 62px);
}

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

.feature-grid article,
.timeline div,
.video-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.07);
}

.feature-grid article {
  min-height: 210px;
  padding: 24px;
}

.feature-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: var(--font-en-heading);
  font-weight: 900;
}

.feature-grid p {
  margin-top: 8px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.page-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 46%);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 4px 24px;
  scroll-snap-type: x mandatory;
}

.page-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.08);
  scroll-snap-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.page-gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgba(109, 40, 217, 0.16);
}

.page-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-gallery figcaption {
  padding: 12px 16px 16px;
  color: var(--ink);
  font-weight: 900;
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(76, 29, 149, 0.10);
}

.conversion-strip div {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fbfaff;
}

.conversion-strip strong,
.conversion-strip span {
  display: block;
}

.conversion-strip strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.conversion-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.videos-section {
  padding-top: 40px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-grid article {
  overflow: hidden;
}

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 14;
  background: #111;
  object-fit: cover;
}

.video-grid h3 {
  padding: 16px;
  font-size: 20px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.timeline strong {
  color: var(--purple);
  font-family: var(--font-en-heading);
  font-size: 24px;
}

.timeline span {
  color: var(--ink);
  font-weight: 900;
}

.final-preview {
  padding-top: 20px;
}

.final-preview img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.offer {
  padding: 56px 0 96px;
}

.offer-box {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 68px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(76, 29, 149, 0.90)),
    url("assets/book-spread.png") center / cover;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.offer-logo {
  width: 112px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.22));
}

.offer-box h2,
.offer-box .eyebrow,
.offer-box p {
  color: #fff;
}

.offer-box .eyebrow {
  justify-content: center;
}

.offer-box p {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
}

.price-box {
  display: grid;
  justify-items: center;
  gap: 4px;
  width: min(100%, 380px);
  margin: 26px auto 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.old-price {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-en-heading);
  font-size: 22px;
  font-weight: 800;
  text-decoration: line-through;
}

.new-price {
  color: #fff;
  font-family: var(--font-en-heading);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.1;
}

.deal-note {
  color: #fff;
  font-weight: 900;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 18px;
}

.payment-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.payment-logo-row img {
  width: 120px;
  height: 48px;
  object-fit: contain;
  padding: 6px 10px;
  border-radius: 12px;
  background: #fff;
}

.reviews-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(123, 47, 247, 0.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbf9ff 100%);
}

.reviews-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 44%);
  grid-template-columns: none;
  gap: 18px;
  margin-top: 34px;
  overflow-x: auto;
  padding: 8px 4px 22px;
  scroll-snap-type: x mandatory;
}

.review-card {
  overflow: hidden;
  border: 1px solid rgba(109, 40, 217, 0.13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(76, 29, 149, 0.12);
  scroll-snap-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(76, 29, 149, 0.18);
}

.review-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfaff 100%);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(123, 47, 247, 0.38);
  box-shadow: 0 24px 56px rgba(76, 29, 149, 0.12);
  transform: translateY(-2px);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px 20px 54px;
  color: var(--ink);
  font-weight: 900;
}

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

.faq-list summary::before {
  content: "+";
  position: absolute;
  left: 22px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.10);
  color: var(--purple);
  font-family: var(--font-en-heading);
  font-weight: 900;
}

.faq-list details[open] summary::before {
  content: "-";
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #7b2ff7);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 2;
}

.faq-cta {
  width: min(820px, 100%);
  margin: 30px auto 0;
  padding: 28px;
  border: 1px solid rgba(109, 40, 217, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 47, 247, 0.10), transparent 34%),
    #fff;
  text-align: center;
  box-shadow: 0 22px 56px rgba(76, 29, 149, 0.12);
}

.faq-cta h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(22px, 2.6vw, 32px);
}

.faq-cta p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: var(--muted);
}

.countdown-section {
  padding: 72px clamp(18px, 5vw, 72px);
  background: #fff;
}

.countdown-box {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(34px, 6vw, 64px);
  background:
    radial-gradient(circle at 18% 25%, rgba(123, 47, 247, 0.30), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(109, 40, 217, 0.22), transparent 30%),
    #111;
  color: #fff;
  text-align: center;
  box-shadow: 0 32px 85px rgba(17, 17, 17, 0.30);
}

.countdown-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 27px;
  pointer-events: none;
}

.countdown-box .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.countdown-box h2 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 14px;
  color: #fff;
  font-size: clamp(26px, 3.7vw, 46px);
}

.countdown-box p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.countdown-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  margin: 34px auto;
}

.countdown-grid div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 22px 14px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.countdown-grid strong {
  display: block;
  color: #7b2ff7;
  font-family: var(--font-en-heading);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  text-shadow: 0 0 24px rgba(123, 47, 247, 0.70);
}

.countdown-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-en-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown-box .button {
  position: relative;
  z-index: 1;
  box-shadow: 0 18px 44px rgba(123, 47, 247, 0.34);
}

.premium-footer {
  padding: 0 clamp(18px, 5vw, 72px) 34px;
  background: #fff;
  color: #222;
}

.footer-divider {
  width: min(1120px, 100%);
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, transparent, rgba(123, 47, 247, 0.88), transparent);
  box-shadow: 0 0 18px rgba(123, 47, 247, 0.34);
}

.premium-footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(109, 40, 217, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.07);
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: 150px;
}

.footer-brand p,
.premium-footer-bottom {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.premium-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
}

.premium-footer-links a {
  position: relative;
  color: #222;
  font-family: var(--font-en-body);
  font-weight: 700;
  transition: color 0.2s ease;
}

.premium-footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #7b2ff7;
  transition: width 0.2s ease;
}

.premium-footer-links a:hover {
  color: #7b2ff7;
}

.premium-footer-links a:hover::after {
  width: 100%;
}

.footer-trust {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  background: #fbfaff;
  color: #222;
  font-family: var(--font-en-body);
  font-size: 13px;
  font-weight: 800;
}

.premium-footer-bottom {
  width: min(1120px, 100%);
  margin: 22px auto 0;
  text-align: center;
  line-height: 1.8;
}

.site-footer {
  padding: 64px clamp(18px, 5vw, 72px) 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(109, 40, 217, 0.22), transparent 32%),
    linear-gradient(135deg, #111 0%, #1c1428 52%, var(--purple-dark) 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 34px;
  width: min(1050px, 100%);
  margin: 0 auto 34px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-whatsapp {
  display: inline-flex;
  margin-top: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-weight: 900;
}

.footer-bottom {
  width: min(1050px, 100%);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.floating-whatsapp span {
  padding: 8px 13px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.floating-whatsapp strong {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #23d366;
  box-shadow: 0 16px 32px rgba(35, 211, 102, 0.28);
}

.floating-whatsapp img {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

/* Checkout */
.compact-checkout {
  background:
    radial-gradient(circle at 8% 12%, rgba(109, 40, 217, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.checkout-container {
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 88px;
}

.checkout-instructions,
.transfer-guide,
.checkout-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.checkout-instructions {
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 24px;
}

.checkout-instructions h1 {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  line-height: 1.25;
}

.checkout-instructions ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 22px 0 0;
  color: #1f1f24;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.checkout-instructions li::marker,
.checkout-instructions strong {
  color: var(--purple);
}

.checkout-pay-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.checkout-pay-strip img {
  width: 160px;
  height: 56px;
  object-fit: contain;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.checkout-pay-strip img:nth-child(2) {
  width: 260px;
}

.transfer-guide {
  padding: clamp(20px, 4vw, 28px);
  margin-bottom: 24px;
  text-align: center;
}

.transfer-guide h2 {
  margin-bottom: 18px;
  color: #3b332f;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
}

.transfer-guide h2 span {
  color: var(--purple);
}

.transfer-guide img {
  width: min(100%, 520px);
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(76, 29, 149, 0.15);
}

.checkout-card {
  padding: clamp(22px, 4vw, 34px);
}

.minimal-checkout-form {
  display: grid;
  gap: 12px;
}

.minimal-checkout-form h2 {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 24px;
  font-weight: 900;
}

.input-shell {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.72);
  border-radius: 12px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-shell:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.10);
}

.input-shell span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-inline-start: 6px;
  border-radius: 9px;
  background: #f1f1f4;
  color: #111;
  font-size: 20px;
}

.input-shell input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-weight: 500;
  padding: 0 14px;
}

.input-shell input::placeholder {
  color: #7c8193;
}

.upload-block {
  margin-top: 26px;
}

.upload-box {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid #d9dce5;
  border-radius: 10px;
  background: #fff;
  color: #7c8193;
  text-align: center;
}

.upload-box input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-box strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7f7fa);
  color: #222;
  cursor: pointer;
  font-size: 18px;
}

.checkout-totals {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid #222;
}

.checkout-totals div {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: var(--purple);
  font-weight: 800;
}

.checkout-totals strong {
  direction: ltr;
  color: var(--purple);
  font-family: var(--font-en-heading);
  font-size: 18px;
}

.checkout-grand-total {
  border-top: 1px solid #222;
}

.checkout-grand-total strong {
  font-size: 22px;
  font-weight: 900;
}

.checkout-submit {
  min-height: 62px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 20px 46px rgba(109, 40, 217, 0.26);
}

.checkout-help {
  margin-top: 4px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero-v2,
  .intro-section,
  .chapters-section,
  .final-preview {
    grid-template-columns: 1fr;
  }

  .hero-v2 {
    min-height: 0;
  }

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

  .hero-copy h1 {
    max-width: 640px;
    margin-inline: auto;
    font-size: clamp(42px, 7vw, 62px);
    line-height: 1.32;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

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

  .proof-strip,
  .video-grid,
  .faq-list,
  .premium-footer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-gallery,
  .reviews-gallery {
    grid-template-columns: repeat(5, minmax(320px, 78vw));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .page-gallery {
    grid-auto-columns: minmax(320px, 78vw);
  }

  .conversion-strip {
    grid-template-columns: 1fr 1fr;
  }

  .conversion-strip .button {
    grid-column: 1 / -1;
  }

  .review-card {
    scroll-snap-align: center;
  }

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

  .premium-footer-grid,
  .footer-trust {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .hero,
  .section,
  .proof-strip,
  .offer,
  .checkout-container {
    width: min(100% - 18px, 1180px);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero-v2 {
    padding-top: 28px;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 560px;
    margin-inline: auto;
    font-size: clamp(34px, 7.2vw, 54px);
    line-height: 1.34;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-lead {
    max-width: 370px;
    margin-inline: auto;
    font-size: 17px;
    line-height: 1.9;
  }

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

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

  .hero-character {
    right: 0;
    width: 84%;
  }

  .hero-card {
    width: 88%;
  }

  .button {
    width: 100%;
  }

  .timeline div {
    grid-template-columns: 1fr;
  }

  .reviews-gallery {
    grid-template-columns: repeat(5, minmax(270px, 88vw));
    grid-auto-columns: minmax(270px, 88vw);
    gap: 12px;
  }

  .page-gallery {
    grid-template-columns: repeat(10, minmax(280px, 88vw));
    grid-auto-columns: minmax(280px, 88vw);
    gap: 12px;
  }

  .conversion-strip {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .review-card,
  .countdown-box,
  .premium-footer-grid {
    border-radius: 20px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list summary {
    padding: 18px 18px 18px 50px;
  }

  .faq-list summary::before {
    left: 18px;
  }

  .countdown-section {
    padding-inline: 9px;
  }

  .countdown-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .countdown-grid div {
    padding: 18px 10px;
  }

  .premium-footer {
    padding-inline: 9px;
  }

  .premium-footer-links {
    flex-direction: column;
    align-items: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .checkout-pay-strip img,
  .checkout-pay-strip img:nth-child(2) {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    max-width: 320px;
    font-size: 30px;
    line-height: 1.38;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(109, 40, 217, 0.12), transparent 34%),
      linear-gradient(180deg, #fff 0%, #f8f6ff 48%, #fff 100%);
  }

  .announcement-bar {
    padding: 7px 0;
  }

  .announcement-track span {
    font-size: 12px;
  }

  .site-header {
    position: sticky;
    top: 0;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    flex: 0 0 auto;
    gap: 8px;
    letter-spacing: 1.6px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 11px;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 7px 10px;
    border: 1px solid rgba(109, 40, 217, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #333;
  }

  .hero,
  .section,
  .proof-strip,
  .offer,
  .checkout-container {
    width: min(100% - 24px, 1180px);
  }

  .hero-v2 {
    display: flex;
    flex-direction: column;
    min-height: auto;
    gap: 18px;
    padding: 22px 0 18px;
  }

  .hero-copy {
    order: 1;
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .eyebrow::before {
    width: 28px;
  }

  .hero-title {
    gap: 7px;
  }

  .hero-copy h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.34;
  }

  .hero-lead {
    max-width: 360px;
    margin: 16px auto 0;
    font-size: 15.5px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px auto 16px;
    width: min(100%, 360px);
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .trust-row {
    justify-content: center;
    gap: 8px;
  }

  .trust-row span {
    padding: 8px 10px;
    font-size: 12.5px;
  }

  .hero-visual {
    order: 2;
    min-height: 360px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(109, 40, 217, 0.12);
    border-radius: 28px;
    background:
      radial-gradient(circle at 50% 20%, rgba(109, 40, 217, 0.18), transparent 44%),
      linear-gradient(180deg, #fff 0%, #f2ecff 100%);
    box-shadow: 0 22px 56px rgba(76, 29, 149, 0.12);
  }

  .hero-visual::before {
    inset: 12% auto auto 50%;
    width: 260px;
    height: 260px;
    transform: translateX(-50%);
  }

  .hero-character {
    right: 50%;
    bottom: -24px;
    width: min(330px, 78%);
    transform: translateX(50%);
  }

  .hero-card {
    left: 50%;
    bottom: 16px;
    width: min(330px, 86%);
    border-radius: 18px;
    transform: translateX(-50%);
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 20px;
  }

  .proof-strip div {
    padding: 14px 16px;
  }

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

  .section {
    padding: 46px 0;
  }

  h2 {
    font-size: 28px;
    line-height: 1.32;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead,
  .section-copy p,
  .section-heading p,
  .final-preview p {
    font-size: 16px;
    line-height: 1.85;
  }

  .intro-section,
  .chapters-section,
  .final-preview {
    gap: 20px;
  }

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

  .feature-grid article,
  .video-grid article,
  .faq-list details,
  .offer-box,
  .checkout-card,
  .checkout-instructions,
  .transfer-guide {
    border-radius: 18px;
  }

  .page-gallery {
    grid-auto-columns: minmax(284px, 88vw);
    gap: 12px;
    padding-bottom: 16px;
  }

  .page-gallery figure {
    border-radius: 18px;
  }

  .conversion-strip {
    gap: 10px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .video-grid video {
    aspect-ratio: 10 / 13;
  }

  .timeline {
    gap: 10px;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
  }

  .final-preview img {
    border-radius: 18px;
  }

  .countdown-section {
    padding: 46px 12px;
  }

  .countdown-box {
    padding: 28px 16px;
    border-radius: 22px;
  }

  .countdown-box h2 {
    font-size: 27px;
    line-height: 1.35;
  }

  .countdown-box p {
    font-size: 15px;
    line-height: 1.8;
  }

  .countdown-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin: 22px auto;
  }

  .countdown-grid div {
    padding: 14px 8px;
    border-radius: 16px;
  }

  .countdown-grid strong {
    font-size: 32px;
  }

  .countdown-grid span {
    font-size: 10px;
  }

  .offer {
    padding: 46px 0;
  }

  .offer-box {
    padding: 32px 16px;
  }

  .new-price {
    font-size: 42px;
  }

  .payment-logo-row img {
    width: 46%;
    height: 46px;
  }

  .reviews-gallery {
    grid-auto-columns: minmax(284px, 88vw);
    gap: 12px;
  }

  .review-card {
    border-radius: 18px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-list summary {
    padding: 16px 16px 16px 48px;
    line-height: 1.55;
  }

  .faq-list p {
    padding: 0 16px 18px;
    font-size: 15px;
  }

  .faq-cta {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .premium-footer-grid {
    grid-template-columns: 1fr;
    padding: 22px 16px;
  }

  .premium-footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-trust {
    justify-items: center;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp strong,
  .floating-whatsapp img {
    width: 54px;
    height: 54px;
  }

  .checkout-container {
    padding: 20px 0 54px;
  }

  .checkout-instructions,
  .checkout-card,
  .transfer-guide {
    padding: 20px 14px;
  }

  .checkout-instructions h1 {
    font-size: 28px;
    line-height: 1.35;
  }

  .checkout-pay-strip img,
  .checkout-pay-strip img:nth-child(2) {
    width: 100%;
  }

  .input-shell {
    min-height: 54px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    max-width: 300px;
    font-size: 28px;
  }

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

  .hero-character {
    width: 82%;
  }

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

.mobile-buy-bar {
  display: none;
}

.checkout-price-card {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #111, var(--purple-dark));
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 52px rgba(76, 29, 149, 0.20);
}

.checkout-price-card strong {
  font-family: var(--font-en-heading);
  font-size: 38px;
  line-height: 1;
}

.checkout-old-price {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
  text-decoration: line-through;
}

.checkout-price-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.payment-number-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 14px;
  padding: 10px;
  border: 1px solid rgba(109, 40, 217, 0.16);
  border-radius: 16px;
  background: #fbfaff;
  direction: ltr;
}

.payment-number-copy span {
  color: var(--ink);
  font-family: var(--font-en-heading);
  font-size: 20px;
  font-weight: 900;
}

.payment-number-copy button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-ar);
  font-weight: 900;
}

.compact-steps {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0 20px 0 0;
}

.transfer-guide summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 760px) {
  .section {
    padding: 34px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading p {
    max-width: 320px;
    margin-inline: auto;
  }

  .proof-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .proof-strip::-webkit-scrollbar {
    display: none;
  }

  .proof-strip div {
    flex: 0 0 82%;
    min-height: 92px;
    scroll-snap-align: center;
  }

  .feature-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar,
  .page-gallery::-webkit-scrollbar,
  .reviews-gallery::-webkit-scrollbar {
    display: none;
  }

  .feature-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    align-content: center;
    min-height: 112px;
    max-height: 120px;
    padding: 14px;
    scroll-snap-align: center;
  }

  .feature-grid span {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--purple-soft);
    color: var(--purple);
    font-family: var(--font-en-heading);
    font-size: 14px;
    font-weight: 900;
  }

  .feature-grid h3 {
    margin: 0;
    font-size: 17px;
  }

  .feature-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .page-gallery {
    grid-auto-columns: 78%;
  }

  .conversion-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .conversion-strip div {
    padding: 9px 6px;
    text-align: center;
  }

  .conversion-strip strong {
    font-size: 15px;
  }

  .conversion-strip span {
    font-size: 11px;
  }

  .conversion-strip .button {
    grid-column: 1 / -1;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .video-grid article {
    border-radius: 16px;
  }

  .video-grid video {
    max-height: 220px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }

  .video-grid h3 {
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
  }

  .chapters-section {
    display: block;
  }

  .timeline {
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 0 10px;
    scrollbar-width: none;
  }

  .timeline::-webkit-scrollbar {
    display: none;
  }

  .timeline div {
    flex: 0 0 138px;
    min-height: 100px;
    max-height: 120px;
    text-align: center;
  }

  .timeline div:not(:last-child)::after {
    content: "→";
    color: var(--purple);
    font-family: var(--font-en-heading);
    font-weight: 900;
  }

  .timeline strong {
    font-size: 14px;
  }

  .timeline span {
    font-size: 12px;
    line-height: 1.45;
  }

  .countdown-section {
    padding: 24px 12px;
  }

  .countdown-box {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .countdown-box .eyebrow {
    display: none;
  }

  .countdown-box h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .countdown-box p {
    font-size: 13px;
  }

  .countdown-grid {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
  }

  .countdown-grid div {
    flex: 0 0 78px;
    padding: 10px 6px;
  }

  .countdown-grid strong {
    font-size: 24px;
  }

  .countdown-grid span {
    margin-top: 4px;
    font-size: 9px;
  }

  .offer {
    padding: 28px 0;
  }

  .offer-box {
    padding: 24px 14px;
  }

  .offer-logo {
    width: 52px;
  }

  .offer-box h2 {
    font-size: 28px;
  }

  .old-price {
    font-size: 17px;
  }

  .new-price {
    font-size: 38px;
  }

  .deal-note {
    font-size: 15px;
  }

  .reviews-gallery {
    grid-auto-columns: 88%;
  }

  .faq-section {
    padding-bottom: 80px;
  }

  .faq-list details {
    box-shadow: 0 12px 30px rgba(17, 17, 17, 0.05);
  }

  .premium-footer {
    padding-bottom: 86px;
  }

  .footer-divider {
    margin-bottom: 14px;
  }

  .premium-footer-grid {
    gap: 12px;
    padding: 16px 12px;
  }

  .footer-logo {
    width: 106px;
    margin-inline: auto;
  }

  .footer-brand p,
  .premium-footer-bottom {
    font-size: 11px;
  }

  .premium-footer-links {
    gap: 8px;
  }

  .premium-footer-links a {
    font-size: 12px;
  }

  .footer-trust span {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .mobile-buy-bar {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: 12px;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 56px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, #111, var(--purple-dark));
    color: #fff;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.26);
  }

  .mobile-buy-bar span {
    font-family: var(--font-en-heading);
    font-weight: 900;
  }

  .mobile-buy-bar strong {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    color: var(--purple-dark);
    font-size: 13px;
  }

  .floating-whatsapp {
    bottom: 82px;
  }

  .floating-whatsapp strong,
  .floating-whatsapp img {
    width: 55px;
    height: 55px;
  }

  .checkout-container {
    padding-top: 14px;
    padding-bottom: 96px;
  }

  .checkout-price-card {
    padding: 14px;
    border-radius: 18px;
  }

  .checkout-price-card strong {
    font-size: 34px;
  }

  .checkout-instructions h1 {
    display: block;
    padding: 0;
    background: transparent;
    color: var(--ink);
    font-size: 24px;
    text-align: center;
  }

  .compact-steps {
    gap: 6px;
    font-size: 14px;
  }

  .checkout-pay-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .checkout-pay-strip::-webkit-scrollbar {
    display: none;
  }

  .checkout-pay-strip img,
  .checkout-pay-strip img:nth-child(2) {
    flex: 0 0 112px;
    width: 112px;
    height: 44px;
    padding: 6px;
  }

  .minimal-checkout-form {
    gap: 10px;
  }

  .minimal-checkout-form h2,
  .upload-block h2 {
    font-size: 20px;
  }

  .checkout-totals {
    padding-top: 10px;
    gap: 8px;
  }

  .checkout-submit {
    min-height: 52px;
    font-size: 16px;
  }

  .transfer-guide {
    padding: 16px;
  }
}
