:root {
  --bg: #fff7df;
  --paper: #ffffff;
  --ink: #24120f;
  --heading: #bf0d0d;
  --muted: #725144;
  --line: #f2d99d;
  --soft-gold: rgba(255, 199, 44, 0.2);
  --gold: #ffc72c;
  --gold-dark: #f3aa00;
  --red: #da291c;
  --red-dark: #a8130c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 18px 12px 28px;
}

.phone {
  position: relative;
  width: min(420px, 100%);
  overflow: hidden;
  border: 1px solid #eef0f4;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 199, 44, 0.28), transparent 28%),
    radial-gradient(circle at 86% 31%, rgba(218, 41, 28, 0.12), transparent 24%),
    var(--paper);
  box-shadow: 0 18px 55px rgba(99, 21, 13, 0.16);
}

.phone > :not(.decor) {
  position: relative;
  z-index: 1;
}

.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.decor-particles {
  inset: 0;
  opacity: 0.48;
  background-image:
    radial-gradient(circle, rgba(255, 199, 44, 0.7) 0 1.4px, transparent 1.8px),
    radial-gradient(circle, rgba(218, 41, 28, 0.28) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 199, 44, 0.28) 0 2px, transparent 2.4px);
  background-position: 22px 44px, 8px 16px, 42px 18px;
  background-size: 58px 72px, 91px 88px, 137px 121px;
  animation: particle-drift 18s linear infinite;
}

.atom {
  width: 92px;
  height: 92px;
  opacity: 0.18;
}

.atom span,
.atom::before {
  position: absolute;
  inset: 20px 8px;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 999px;
}

.atom::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.atom span:nth-child(1) {
  transform: rotate(60deg);
}

.atom span:nth-child(2) {
  transform: rotate(-60deg);
}

.atom span:nth-child(3) {
  transform: rotate(0deg);
}

.atom-one {
  right: -22px;
  top: 158px;
  animation: atom-float-one 13s ease-in-out infinite;
}

.atom-two {
  left: -28px;
  top: 410px;
  transform: scale(0.78);
  animation: atom-float-two 15s ease-in-out infinite;
}

.atom-three {
  right: -34px;
  top: 650px;
  opacity: 0.14;
  transform: scale(0.66);
  animation: atom-float-three 17s ease-in-out infinite;
}

.atom-four {
  left: -38px;
  bottom: 258px;
  opacity: 0.12;
  transform: scale(0.58);
  animation: atom-float-four 19s ease-in-out infinite;
}

.atom-five {
  right: 18px;
  bottom: 72px;
  opacity: 0.1;
  transform: scale(0.48);
  animation: atom-float-five 21s ease-in-out infinite;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px;
  background: transparent;
}

.brand-link {
  display: block;
  width: 220px;
  max-width: 64%;
}

.brand-logo {
  display: block;
  width: 100%;
  max-height: 150px;
  height: auto;
  object-fit: contain;
}

.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #111827;
  background: rgba(17, 24, 39, 0.06);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.badge::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 2px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  opacity: 0;
  animation: live-ring 1600ms ease-out infinite;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.badge span:not(.live-dot) {
  color: #16a34a;
}

.badge strong {
  font-variant-numeric: tabular-nums;
}

.hero {
  margin-top: -22px;
  padding: 0 18px 12px;
  text-align: center;
}

.kicker,
.label,
.t {
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  color: var(--heading);
  font-size: 34px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title-link {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: inherit;
  text-decoration: none;
}

.hero p {
  width: min(240px, 100%);
  margin: 12px auto 0;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}

.howto {
  padding: 0 18px 0;
}

.label {
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
}

.panel {
  overflow: hidden;
  border-radius: 18px;
  background: var(--soft-gold);
}

.row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 63px;
  padding: 14px;
  border-bottom: 1px solid rgba(218, 41, 28, 0.1);
}

.row:last-child {
  border-bottom: 0;
}

.num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--red-dark);
  background: var(--gold);
  font-weight: 800;
}

.row h3 {
  margin: 0;
  color: var(--red-dark);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.35;
}

.cta {
  padding: 14px 18px;
  text-align: center;
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  width: 100%;
  border-radius: 16px;
  color: var(--red-dark);
  background: linear-gradient(135deg, #ffd84d 0%, var(--gold) 52%, var(--gold-dark) 100%);
  background-size: 180% 180%;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(189, 63, 0, 0.24);
  animation: cta-pulse 1500ms ease-in-out infinite, cta-gradient 2600ms ease infinite;
  transition: background 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.btn::after {
  position: absolute;
  inset: -6px;
  content: "";
  border: 2px solid rgba(218, 41, 28, 0.36);
  border-radius: 22px;
  opacity: 0;
  animation: cta-ring 1500ms ease-out infinite;
}

.btn span {
  font-size: 1.35em;
  line-height: 1;
}

.btn:hover,
.btn:focus-visible {
  background: var(--gold-dark);
  transform: translateY(-1px);
  outline: none;
}

.btn:active {
  box-shadow: 0 6px 12px rgba(189, 63, 0, 0.22);
  transform: translateY(2px) scale(0.97);
}

.micro {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 11px;
}

.trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--red-dark);
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
}

.trust-rating strong {
  font-weight: 800;
}

.trust-rating b {
  color: #00b67a;
  font-weight: 800;
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.stars span {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 1px;
  color: #fff;
  background: #00b67a;
  font-size: 10px;
  line-height: 1;
}

.divider {
  height: 1px;
  background: var(--line);
}

.availability {
  padding: 14px 18px;
}

.availability .t {
  text-align: center;
}

.pills {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #edf0f5;
  border-radius: 999px;
  color: var(--red-dark);
  background: #fff9e6;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 650;
}

.pills span:last-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.faq {
  padding: 0 18px 0;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

.faq h2 {
  margin: 14px 0 10px;
  color: var(--red-dark);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 1000;
  text-align: center;
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor;
}

details {
  border-top: 1px solid var(--line);
}

details:last-of-type {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  color: var(--red);
  font-size: 18px;
  line-height: 1;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: -4px 0 14px;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  line-height: 1.45;
}

.foot {
  padding: 12px 18px 16px;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
}

.foot p {
  margin: 0;
}

.foot p + p {
  margin-top: 8px;
}

.foot a {
  color: var(--red);
  text-decoration: none;
}

@keyframes particle-drift {
  0% {
    background-position: 22px 44px, 8px 16px, 42px 18px;
  }

  100% {
    background-position: 80px 116px, -83px 104px, 179px 139px;
  }
}

@keyframes atom-float-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-12px, 18px, 0) rotate(28deg);
  }
}

@keyframes atom-float-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.78) rotate(0deg);
  }

  50% {
    transform: translate3d(16px, -16px, 0) scale(0.78) rotate(-32deg);
  }
}

@keyframes atom-float-three {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.66) rotate(0deg);
  }

  50% {
    transform: translate3d(-18px, -12px, 0) scale(0.66) rotate(24deg);
  }
}

@keyframes atom-float-four {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.58) rotate(0deg);
  }

  50% {
    transform: translate3d(18px, 10px, 0) scale(0.58) rotate(-26deg);
  }
}

@keyframes atom-float-five {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.48) rotate(0deg);
  }

  50% {
    transform: translate3d(-10px, 14px, 0) scale(0.48) rotate(34deg);
  }
}

@keyframes cta-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes cta-ring {
  0% {
    opacity: 0.65;
    transform: scale(0.98);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes live-ring {
  0% {
    opacity: 0.7;
    transform: scale(0.95);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .decor-particles,
  .atom-one,
  .atom-two,
  .atom-three,
  .atom-four,
  .atom-five,
  .btn,
  .btn::after,
  .badge::after {
    animation: none;
  }
}

@media (min-width: 760px) {
  .wrap {
    place-items: center;
    padding: 32px 24px;
  }

  .phone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    grid-template-areas:
      "header header"
      "hero howto"
      "availability howto"
      "cta cta"
      "divider divider"
      "faq faq"
      "foot foot";
    column-gap: 24px;
    width: min(900px, calc(100vw - 48px));
    border-radius: 26px;
  }

  .header {
    grid-area: header;
    padding: 24px 28px 8px;
  }

  .brand-link {
    width: 270px;
  }

  .hero {
    grid-area: hero;
    align-self: center;
    margin-top: 0;
    padding: 40px 28px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    margin-top: 16px;
  }

  .howto {
    grid-area: howto;
    padding: 24px 28px 0 0;
  }

  .cta {
    grid-area: cta;
    padding: 18px 28px 22px;
  }

  .divider {
    grid-area: divider;
  }

  .availability {
    grid-area: availability;
    padding: 18px 28px 20px;
  }

  .faq {
    grid-area: faq;
    padding: 18px 28px 0;
  }

  .foot {
    grid-area: foot;
    padding-bottom: 20px;
  }

  .atom-one {
    right: 196px;
    top: 176px;
  }

  .atom-two {
    left: 18px;
    top: 370px;
  }

  .atom-three {
    right: 278px;
    top: 520px;
  }

  .atom-four {
    left: 264px;
    bottom: 226px;
  }

  .atom-five {
    right: 48px;
    bottom: 96px;
  }
}

@media (min-width: 1024px) {
  .wrap {
    padding: 44px 32px;
  }

  .phone {
    grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
    grid-template-areas:
      "header header"
      "hero howto"
      "availability cta"
      "divider divider"
      "faq faq"
      "foot foot";
    column-gap: 34px;
    row-gap: 0;
    width: min(1060px, calc(100vw - 64px));
    border-radius: 30px;
  }

  .header {
    padding: 28px 34px 6px;
  }

  .brand-link {
    width: 300px;
  }

  .hero {
    padding: 48px 34px 28px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.02;
  }

  .hero p {
    width: min(300px, 100%);
    font-size: 14px;
  }

  .howto {
    padding: 30px 34px 0 0;
  }

  .row {
    min-height: 70px;
    padding: 16px;
  }

  .cta {
    align-self: start;
    padding: 18px 34px 26px 0;
  }

  .btn {
    min-height: 62px;
    font-size: 20px;
  }

  .availability {
    align-self: start;
    padding: 20px 34px 28px;
  }

  .faq {
    padding: 24px 120px 0;
  }

  .foot {
    padding-bottom: 24px;
  }

  .atom-one {
    right: 246px;
    top: 170px;
  }

  .atom-two {
    left: 42px;
    top: 408px;
  }

  .atom-three {
    right: 384px;
    top: 566px;
  }

  .atom-four {
    left: 356px;
    bottom: 250px;
  }

  .atom-five {
    right: 72px;
    bottom: 112px;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .brand-link {
    width: min(210px, 66%);
  }
}
