:root {
  color-scheme: light;
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #f3f6ff;
  --surface-warm: #fff6e6;
  --text: #101529;
  --muted: #65708a;
  --border: rgba(16, 21, 41, 0.1);
  --brand: #5b5bf3;
  --brand-strong: #4337d8;
  --teal: #2fc6c0;
  --gold: #f5b947;
  --danger-soft: #fff0d7;
  --shadow: 0 18px 52px rgba(26, 29, 56, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(91, 91, 243, 0.17);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #101529;
  color: #ffffff;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0.78rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 0;
}

.brand mark {
  display: inline-flex;
  width: 2.85rem;
  height: 2.85rem;
  flex: 0 0 2.85rem;
  border-radius: 14px;
  background: #ffffff url("allytalk-mark.svg") center / cover no-repeat;
  color: transparent;
  font-size: 0;
  box-shadow: 0 10px 26px rgba(75, 70, 230, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.06rem;
  line-height: 1.1;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
}

nav {
  min-width: 0;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  color: transparent;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  top: 0.82rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  box-shadow: 0 7px 0 var(--text), 0 14px 0 var(--text);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li {
  margin: 0;
}

.nav-list a,
.nav-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  border-radius: 999px;
  color: #222842;
  font-size: 0.92rem;
  font-weight: 650;
  padding: 0.55rem 0.66rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover,
.nav-list button:hover,
.nav-list a.active {
  background: rgba(91, 91, 243, 0.1);
  color: var(--brand-strong);
}

.cta-button,
.button-secondary,
.button-ghost,
.pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  border-radius: var(--radius);
  border: 0;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button {
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(70, 72, 220, 0.2);
}

.nav-list .cta-button,
.nav-list .cta-button.active {
  background: linear-gradient(135deg, var(--brand), var(--teal));
  color: #ffffff !important;
}

.button-secondary {
  padding: 0.82rem 1.12rem;
  background: #ffffff;
  border: 1px solid rgba(91, 91, 243, 0.22);
  color: var(--brand-strong);
}

.button-ghost {
  padding: 0.82rem 1.12rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 21, 41, 0.09);
  color: #202744;
}

.cta-button:hover,
.button-secondary:hover,
.button-ghost:hover,
.pay-button:hover {
  transform: translateY(-1px);
}

.cta-button svg,
.button-secondary svg,
.button-ghost svg,
.pay-button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
  flex: 0 0 auto;
}

main {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 4rem;
  min-width: 0;
}

.home-hero {
  position: relative;
  min-height: min(680px, calc(100vh - 135px));
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid rgba(88, 83, 220, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 39%, rgba(255, 255, 255, 0.64) 60%, rgba(255, 255, 255, 0.05) 100%),
    url("allytalk-hero-generated.png") right center / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
  padding: 4rem 3rem;
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 820;
}

.home-hero h1,
.simple-hero h1 {
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.home-hero p,
.simple-hero p {
  max-width: 42rem;
  margin: 1.25rem 0 1.55rem;
  color: #4d5871;
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.65rem;
}

.hero-metrics span,
.stat-row > div {
  min-height: 4rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(16, 21, 41, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.85rem;
  box-shadow: 0 12px 30px rgba(26, 29, 56, 0.07);
}

.hero-metrics strong,
.stat-row strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.1;
}

.section {
  margin-top: 3.3rem;
}

.section-heading {
  max-width: 800px;
}

.section h2,
.section-heading h2,
.split-panel h2,
.gateway-section h2,
.payment-aside h2,
.table-panel h2,
.simple-hero h1 {
  color: var(--text);
}

.section h2,
.section-heading h2,
.split-panel h2,
.gateway-section h2,
.payment-aside h2,
.table-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 2.35rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.section p,
.section-heading p,
.split-panel p,
.gateway-section p,
.payment-aside p,
.feature-card p,
.info-card p,
.subscription-card p,
.gateway-card p,
.policy-stack p,
.notice-panel p {
  color: var(--muted);
  line-height: 1.78;
}

.grid,
.subscription-grid,
.gateway-grid,
.contact-grid,
.timeline,
.policy-stack {
  display: grid;
  gap: 1rem;
}

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

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

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding: 0.6rem 0;
}

.panel-copy {
  max-width: 520px;
}

.feature-card,
.info-card,
.subscription-card,
.gateway-card,
.contact-card,
.policy-stack article,
.table-panel,
.notice-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(26, 29, 56, 0.07);
}

.feature-card,
.info-card,
.subscription-card,
.gateway-card,
.contact-card,
.policy-stack article {
  padding: 1.4rem;
}

.feature-card h3,
.info-card h3,
.subscription-card h3,
.gateway-card strong,
.contact-card strong,
.policy-stack h2 {
  margin: 0.85rem 0 0.55rem;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.25;
}

.feature-card p,
.info-card p,
.subscription-card p,
.gateway-card p,
.policy-stack p {
  margin: 0;
}

.highlighted {
  background: linear-gradient(135deg, #ffffff, #f1f9ff);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(91, 91, 243, 0.12), rgba(47, 198, 192, 0.16));
  color: var(--brand-strong);
}

.icon-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.recharge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.7fr);
  gap: 2rem;
  align-items: start;
  margin-top: 2.6rem;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 0.15rem;
}

.phone-header span {
  width: 2rem;
  height: 2rem;
  border-left: 3px solid #161a2e;
  border-bottom: 3px solid #161a2e;
  transform: rotate(45deg);
  border-radius: 2px;
}

.phone-header strong {
  font-size: 1.85rem;
}

.recharge-list {
  display: grid;
  gap: 1rem;
}

.recharge-list.compact {
  padding: 0.95rem;
  border: 1px solid rgba(16, 21, 41, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  box-shadow: var(--shadow);
}

.point-pack {
  display: grid;
  grid-template-columns: 3.8rem minmax(0, 1fr) minmax(9rem, auto);
  gap: 1rem;
  align-items: center;
  min-height: 6.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(16, 21, 41, 0.08);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(26, 29, 56, 0.08);
}

.point-pack.is-popular {
  border-color: rgba(91, 91, 243, 0.35);
  box-shadow: 0 16px 36px rgba(91, 91, 243, 0.14);
}

.coin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.45rem;
  height: 3.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe598, var(--gold));
  color: #8c5d08;
  box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.7), 0 10px 20px rgba(208, 148, 24, 0.16);
}

.coin-badge svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.point-pack span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.point-pack strong {
  display: block;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1.12;
}

.point-pack small {
  display: block;
  margin-top: 0.18rem;
  color: #d69a22;
  font-size: 1rem;
  font-weight: 820;
}

.pay-button {
  min-width: 9.3rem;
  padding: 0.82rem 1.15rem;
  background: var(--brand);
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(91, 91, 243, 0.22);
}

.warning-box {
  margin-top: 1.5rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(245, 185, 71, 0.32);
  border-radius: var(--radius);
  background: var(--danger-soft);
  color: #352413;
}

.warning-box strong {
  display: block;
  margin-bottom: 0.35rem;
}

.warning-box p {
  margin: 0;
  line-height: 1.65;
}

.subscription-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.subscription-card.featured {
  border-color: rgba(91, 91, 243, 0.42);
  box-shadow: 0 18px 46px rgba(91, 91, 243, 0.16);
}

.plan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 1.8rem;
}

.plan-topline span {
  color: var(--brand-strong);
  font-weight: 820;
}

.plan-topline mark {
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: #eef0ff;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 820;
}

.subscription-card h3 {
  margin: 0;
  font-size: 2rem;
}

.subscription-card h3 small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.subscription-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0.25rem 0 0.35rem;
  padding: 0;
  list-style: none;
}

.subscription-card li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  color: #38415c;
  line-height: 1.45;
}

.subscription-card li svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  fill: var(--teal);
}

.subscription-card .button-secondary {
  margin-top: auto;
}

.gateway-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
  margin-top: 3.4rem;
  padding: 2rem;
  border: 1px solid rgba(47, 198, 192, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f0fbfb);
}

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

.gateway-grid.compact-gateways {
  grid-template-columns: 1fr;
  margin-top: 1.2rem;
}

.gateway-card small {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--brand-strong);
  font-weight: 820;
}

.payment-aside {
  position: sticky;
  top: 6rem;
  padding: 1.35rem;
  border: 1px solid rgba(47, 198, 192, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f0fbfb);
}

.simple-hero {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 2.4rem;
  border: 1px solid rgba(91, 91, 243, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    url("allytalk-hero-generated.png") right center / cover no-repeat;
  box-shadow: 0 14px 38px rgba(26, 29, 56, 0.08);
}

.simple-hero h1 {
  width: min(760px, 100%);
  max-width: 760px;
  font-size: 3.4rem;
}

.simple-hero p {
  max-width: 680px;
}

.stat-row {
  margin-top: 1.2rem;
}

.stat-row > div {
  background: #ffffff;
}

.stat-row span {
  display: block;
  margin-top: 0.3rem;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.timeline article {
  min-height: 12rem;
  padding: 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(26, 29, 56, 0.07);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius);
  background: #eef0ff;
  color: var(--brand-strong);
  font-weight: 850;
}

.timeline h3 {
  margin: 1rem 0 0.5rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.notice-panel {
  margin-top: 2rem;
  padding: 1.3rem 1.45rem;
  background: #fff;
}

.notice-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1.08rem;
}

.notice-panel p {
  margin: 0;
}

.policy-stack {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-stack article h2 {
  font-size: 1.3rem;
}

.table-panel {
  margin-top: 2rem;
  overflow-x: auto;
  padding: 0.35rem;
}

.table-panel table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.table-panel th,
.table-panel td {
  text-align: left;
  padding: 1rem;
  border-bottom: 1px solid rgba(16, 21, 41, 0.08);
  vertical-align: top;
}

.table-panel tr:last-child th,
.table-panel tr:last-child td {
  border-bottom: 0;
}

.table-panel th {
  width: 210px;
  color: var(--text);
  font-weight: 820;
}

.table-panel td {
  color: var(--muted);
  line-height: 1.65;
}

.table-panel a,
.policy-stack a,
.notice-panel a {
  color: var(--brand-strong);
  font-weight: 780;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.contact-card {
  display: grid;
  gap: 0.5rem;
  min-height: 8.2rem;
}

.contact-card span {
  color: var(--muted);
  font-weight: 720;
}

.contact-card a,
.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 1.02rem;
}

.footer {
  background: #111529;
  color: rgba(255, 255, 255, 0.86);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 2rem;
}

.footer .brand mark {
  background-color: #ffffff;
}

.footer .brand-text strong,
.footer h3 {
  color: #ffffff;
}

.footer h3 {
  margin: 0;
}

.footer p,
.footer a,
.footer li,
.footer .brand-text span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.72;
}

.footer a:hover {
  color: #ffffff;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.72rem;
}

.footer-nav a,
.footer-contact a {
  display: inline-flex;
}

.footer-bottom {
  width: min(1200px, 100%);
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1060px) {
  .header-inner {
    flex-wrap: wrap;
  }

  nav {
    width: 100%;
  }

  .nav-list {
    justify-content: center;
  }

  .gateway-section,
  .recharge-layout,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .payment-aside {
    position: static;
  }

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

@media (max-width: 860px) {
  main {
    padding: 1rem 1rem 3rem;
  }

  .home-hero {
    min-height: min(650px, calc(100vh - 120px));
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.93) 54%, rgba(255, 255, 255, 0.76) 100%),
      url("allytalk-hero-generated.png") right bottom / cover no-repeat;
  }

  .hero-content {
    padding: 3rem 1.4rem;
  }

  .home-hero h1 {
    font-size: 3.4rem;
  }

  .simple-hero {
    padding: 2.8rem 1.5rem;
  }

  .simple-hero h1 {
    font-size: 2.75rem;
  }

  .section h2,
  .section-heading h2,
  .split-panel h2,
  .gateway-section h2,
  .payment-aside h2,
  .table-panel h2 {
    font-size: 2rem;
  }

  .hero-metrics,
  .grid-2,
  .grid-3,
  .subscription-grid,
  .gateway-grid,
  .policy-stack,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .gateway-section {
    padding: 1.35rem;
  }

  .point-pack {
    grid-template-columns: 3.4rem minmax(0, 1fr);
  }

  .point-pack .pay-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .header-inner {
    align-items: center;
    gap: 0.75rem;
  }

  .brand-text span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  nav {
    width: 100%;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 0.5rem;
  }

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

  .nav-list a,
  .nav-list button {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .nav-list .cta-button {
    justify-content: center;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .home-hero p,
  .simple-hero p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-metrics,
  .contact-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .phone-header strong {
    font-size: 1.55rem;
  }

  .table-panel table {
    min-width: 560px;
  }
}

@media (max-width: 460px) {
  .header-inner {
    padding: 0.7rem 0.9rem;
  }

  main {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .brand mark {
    width: 2.55rem;
    height: 2.55rem;
    flex-basis: 2.55rem;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .hero-content {
    padding: 2.5rem 1rem;
  }

  .home-hero h1 {
    font-size: 2.65rem;
  }

  .simple-hero {
    padding: 1.75rem 0.9rem;
  }

  .simple-hero h1 {
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .section h2,
  .section-heading h2,
  .split-panel h2,
  .gateway-section h2,
  .payment-aside h2,
  .table-panel h2 {
    font-size: 1.75rem;
  }

  .feature-card,
  .info-card,
  .subscription-card,
  .gateway-card,
  .contact-card,
  .policy-stack article,
  .payment-aside,
  .gateway-section {
    padding: 1rem;
  }

  .point-pack {
    padding: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
