:root {
  --hero-top: #6d28d9;
  --hero-bottom: #7c3aed;
  --hero-dark: #5b21b6;
  --yellow: #ffc41c;
  --text: #111111;
  --muted: #9b9b9b;
  --soft-bg: #f5f3ff;
  --card-shadow: 0 24px 60px rgba(91, 33, 182, 0.16);
  --table-blue: #7c3aed;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    "Montserrat", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0, #faf5ff 58%, #f3e8ff 100%);
}

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

button {
  font: inherit;
}

.page-shell {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 826px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 68% 68%,
      rgba(255, 255, 255, 0.22),
      transparent 0,
      transparent 26%,
      rgba(255, 255, 255, 0.06) 40%,
      transparent 62%
    ),
    linear-gradient(135deg, #5b6ee8 0%, var(--hero-top) 50%, #a855a0 100%);
}

/* .hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 5px solid var(--yellow);
  border-color: var(--yellow) transparent transparent transparent;
  border-radius: 50%;
  pointer-events: none;
} */

.hero::before {
  left: 74px;
  bottom: 170px;
  width: 48px;
  height: 48px;
  transform: rotate(210deg);
}

.hero::after {
  right: 316px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  transform: rotate(28deg);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Fixed Navbar ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

/* hero 离开视口后切换为实体浅色背景 */
.nav.is-light {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(250, 245, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(91, 33, 182, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

/* Brand / Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

.hero-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(
    from 45deg,
    #06b6d4 0deg,
    #3b82f6 120deg,
    #a855f7 250deg,
    #06b6d4 360deg
  );
  padding: 2px;
  flex-shrink: 0;
}

.hero-logo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(15, 22, 40, 0.75);
  transition: background 0.3s;
}

.nav.is-light .hero-logo-inner {
  background: #ede9fe;
}

.hero-logo-letter {
  position: absolute;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  color: #c4b5fd;
  transition: color 0.3s;
}

.nav.is-light .hero-logo-letter {
  color: #7c3aed;
}

.hero-logo-dot1 {
  position: absolute;
  top: 6px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4b5fd;
}

.hero-logo-dot2 {
  position: absolute;
  bottom: 8px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  transition: color 0.3s;
}

.nav.is-light .brand-title {
  color: #2d2040;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

.nav.is-light .brand-subtitle {
  color: #64748b;
}

/* Nav center links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 15px;
  font-weight: 500;
}

.nav-center a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-center a:hover {
  color: #ffffff;
}

.nav.is-light .nav-center a {
  color: #4c1d95;
}

.nav.is-light .nav-center a:hover {
  color: #2d2040;
}

.nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.7;
}

.nav.is-light .nav-icon {
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 560px);
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 92px 0 72px;
}

.hero-copy {
  padding-left: 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5.1vw, 64px);
  line-height: 1.12;
  font-weight: 800;
}

.hero-copy p {
  width: min(520px, 100%);
  margin: 34px 0 0;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.55;
  font-weight: 400;
}

.hero-copy .highlight {
  color: var(--yellow);
}

.hero-actions {
  position: relative;
  display: flex;
  gap: 22px;
  margin-top: 54px;
}

/* .hero-actions::before {
  content: "";
  position: absolute;
  left: -84px;
  top: 22px;
  width: 52px;
  height: 52px;
  border: 5px solid var(--yellow);
  border-color: var(--yellow) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(226deg);
} */

.switch-btn {
  width: 238px;
  max-width: 100%;
  height: 62px;
  border: 0;
  border-radius: 34px;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.switch-btn.primary {
  background: #ffffff;
  color: var(--hero-top);
}

.switch-btn.secondary {
  background: var(--hero-dark);
  color: #ffffff;
}

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

.count-tag {
  position: absolute;
  left: 135px;
  top: -48px;
  z-index: 9;
  font-size: 30px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.float-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(5, 32, 102, 0.28);
}

.float-icon.small {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.phone-wrap {
  position: absolute;
  left: 110px;
  top: 254px;
  width: 320px;
  height: 500px;
}

.phone-glow {
  position: absolute;
  inset: 18px;
  border-radius: 180px 180px 90px 90px;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.52),
    rgba(167, 139, 250, 0.28) 40%,
    rgba(139, 92, 246, 0.08) 62%,
    transparent 74%
  );
  filter: blur(8px);
}

.phone {
  position: absolute;
  left: -120px;
  top: -74px;
  margin: auto;
  width: 592px;
  height: 486px;

  /* position: absolute;
  inset: 0;
  margin: auto;
  width: 292px;
  height: 486px;
  border-radius: 42px;
  background: linear-gradient(180deg, #0f1623 0%, #06090f 100%);
  box-shadow:
    inset 0 0 0 2px rgba(142, 190, 255, 0.34),
    0 24px 48px rgba(8, 18, 55, 0.36); */
}

.phone::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  bottom: 14px;
  border-radius: 30px;
  background: #dfe5f6;
}

.phone::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  width: 120px;
  height: 36px;
  background: #000000;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

.earpiece {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background: rgba(114, 126, 148, 0.5);
  transform: translateX(-50%);
  z-index: 2;
}

.camera {
  position: absolute;
  top: 25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(49, 58, 90, 0.9);
  box-shadow: 0 0 0 2px rgba(20, 36, 84, 0.55);
  z-index: 2;
}

.camera.left {
  right: 72px;
}

.camera.right {
  right: 56px;
}

.message-card {
  position: absolute;
  left: 56%;
  transform: translateX(-50%);
  top: 150px;
  width: 470px;
  min-height: 142px;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(91, 33, 182, 0.18);
  backdrop-filter: blur(6px);
  color: var(--hero-top);
  font-size: 24px;
  line-height: 1.5;
  z-index: 3;
}

.platforms {
  position: relative;
  padding: 28px 0 52px;
}

.platforms h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.2;
  font-weight: 800;
}

.table-card {
  width: min(1200px, calc(100% - 40px));
  margin: 66px auto 0;
  padding: 34px 32px 28px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--card-shadow);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 190px 240px 120px 110px 1fr;
  align-items: center;
  gap: 18px;
}

.table-head {
  padding: 18px 0 12px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.table-row {
  min-height: 88px;
  font-size: 18px;
}

.table-row + .table-row {
  border-top: 1px solid rgba(91, 33, 182, 0.06);
}

.cell-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.flag,
.service-badge {
  flex: 0 0 auto;
}

.flag {
  width: 38px;
  height: 28px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.flag::after {
  content: attr(data-code);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flag-us {
  background: linear-gradient(
    180deg,
    #d64b55 0 18%,
    #ffffff 18% 36%,
    #d64b55 36% 54%,
    #ffffff 54% 72%,
    #d64b55 72% 100%
  );
}

.flag-us::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 46%;
  height: 58%;
  background: #3678c9;
}

.flag-za {
  background: linear-gradient(
    135deg,
    #df3d52 0 44%,
    #f6f6f6 44% 50%,
    #facb45 50% 56%,
    #111111 56% 62%,
    #2eab67 62% 100%
  );
}

.flag-ca {
  background: linear-gradient(
    90deg,
    #ff5471 0 24%,
    #ffffff 24% 76%,
    #ff5471 76% 100%
  );
}

.flag-in {
  background: linear-gradient(
    180deg,
    #ff7f50 0 33%,
    #ffffff 33% 66%,
    #35a853 66% 100%
  );
}

.flag-th {
  background: linear-gradient(
    180deg,
    #ef5670 0 20%,
    #ffffff 20% 36%,
    #425fb8 36% 64%,
    #ffffff 64% 80%,
    #ef5670 80% 100%
  );
}

.flag-ng {
  background: linear-gradient(
    90deg,
    #32b160 0 33%,
    #ffffff 33% 66%,
    #32b160 66% 100%
  );
}

.flag-gb {
  background:
    linear-gradient(90deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    linear-gradient(180deg, transparent 42%, #ffffff 42% 58%, transparent 58%),
    linear-gradient(90deg, transparent 46%, #ef5968 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 46%, #ef5968 46% 54%, transparent 54%),
    #4c67cb;
}

.flag-co {
  background: linear-gradient(
    180deg,
    #f6c332 0 50%,
    #2f67d1 50% 75%,
    #eb5869 75% 100%
  );
}

.flag-id {
  background: linear-gradient(180deg, #ff5471 0 50%, #ffffff 50% 100%);
}

.service-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  overflow: hidden;
}

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

.service-wm {
  background: #0f7bd7;
}

.service-fb {
  background: #1678f3;
  border-radius: 50%;
}

.service-li {
  background: #0d78b4;
}

.service-am {
  background: #111111;
}

.service-yt {
  background: #ff2323;
}

.service-ln {
  background: #1cca21;
}

.service-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  white-space: nowrap;
}

.row-action {
  display: flex;
  justify-content: flex-end;
}

.receive-btn--muted {
  opacity: 0.8;
}

.receive-btn {
  width: 180px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: var(--table-blue);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(109, 40, 217, 0.28);
}

.hero {
  padding-top: 68px; /* account for fixed navbar */
}

@media (max-width: 1060px) {
  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .nav {
    padding: 12px 16px;
  }

  .nav-center {
    gap: 24px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 72px;
  }

  .hero-copy {
    padding-left: 0;
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 42px;
  }

  .hero-actions::before {
    display: none;
  }

  .hero-visual {
    min-height: 720px;
    margin-top: 18px;
  }

  .phone-wrap {
    left: 50%;
    transform: translateX(-50%);
  }

  .table-card {
    overflow-x: auto;
  }

  .table-head,
  .table-row {
    min-width: 920px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .nav-center {
    display: none;
  }

  .hero-content {
    padding: 52px 0 36px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-copy p {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
  }

  .switch-btn {
    width: 100%;
    max-width: 340px;
    height: 56px;
    font-size: 18px;
  }

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

  .phone-wrap {
    width: 260px;
    height: 440px;
    top: 200px;
  }

  .phone {
    left: -90px;
    top: -60px;
    width: 450px;
    height: 390px;
  }

  .earpiece {
    top: 28px;
  }

  .camera.left {
    right: 74px;
  }

  .camera.right {
    right: 57px;
  }

  .count-tag {
    font-size: 18px;
    left: 110px;
    top: -38px;
  }

  .float-icon {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .float-icon.small {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .message-card {
    width: min(88vw, 380px);
    min-height: 120px;
    padding: 20px 20px 22px;
    border-radius: 20px;
    font-size: 18px;
    top: 120px;
  }

  .platforms {
    padding-top: 10px;
  }

  .table-card {
    width: calc(100% - 20px);
    margin-top: 34px;
    padding: 24px 20px 22px;
    border-radius: 28px;
    overflow-x: visible;
  }

  .table-head,
  .table-row {
    min-width: 0;
    grid-template-columns: 1fr 72px 128px;
    gap: 12px;
  }

  /* 隐藏「国家」列和「激活」列 */
  .table-head > div:nth-child(2),
  .table-head > div:nth-child(3),
  .table-row > div:nth-child(2),
  .table-row > div:nth-child(3) {
    display: none;
  }

  .table-head {
    font-size: 15px;
  }

  .table-row {
    font-size: 15px;
    min-height: 72px;
  }

  .receive-btn {
    width: 120px;
    height: 42px;
    font-size: 14px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 10px 14px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-content {
    padding: 44px 0 32px;
  }

  .hero-copy h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

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

  .switch-btn {
    height: 50px;
    font-size: 16px;
    max-width: 100%;
  }

  /* 小屏手机隐藏 hero 视觉区，保持 hero 紧凑 */
  .hero-visual {
    display: none;
  }

  .platforms {
    padding: 28px 0 40px;
  }

  .platforms h2 {
    font-size: 22px;
  }

  .table-card {
    border-radius: 20px;
    padding: 16px 14px 16px;
    margin-top: 24px;
  }

  .faq-section {
    padding: 48px 0 56px;
  }

  .faq-section .faq-heading {
    font-size: 22px;
  }

  .faq-section .faq-subhead {
    font-size: 14px;
  }

  .faq-q {
    font-size: 14px;
    padding: 16px 18px;
    gap: 10px;
  }

  .faq-q-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .faq-a {
    font-size: 14px;
    padding: 0 18px;
  }

  .site-footer {
    padding: 28px 0 20px;
  }
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, var(--hero-top) 0%, #2e1065 100%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding: 40px 0 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-brand small {
  display: block;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
  }
}

/* ── FAQ Section ── */
.faq-section {
  padding: 72px 0 80px;
  position: relative;
}

.faq-section .faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.18);
  border-radius: 999px;
  color: var(--hero-top);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.faq-section .faq-heading {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
}

.faq-section .faq-subhead {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(91, 33, 182, 0.08);
  overflow: hidden;
  border: 1px solid rgba(109, 40, 217, 0.08);
  transition: box-shadow 0.2s;
}

.faq-item.active {
  box-shadow: 0 8px 32px rgba(109, 40, 217, 0.14);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.08);
  color: var(--hero-top);
  font-size: 18px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.22s ease,
    background 0.2s;
}

.faq-item.active .faq-q-icon {
  transform: rotate(45deg);
  background: var(--hero-top);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--muted);
  padding: 0 24px;
  font-size: 15px;
  line-height: 1.7;
}

.faq-a p {
  margin: 0;
  padding: 0 0 20px;
}

.faq-item.active .faq-a {
  max-height: 200px;
}

/* ── Toast ── */
.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(109, 40, 217, 0.18);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(109, 40, 217, 0.08);
  color: var(--hero-top);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* ── SMS Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  width: min(360px, calc(100vw - 40px));
  box-shadow: 0 24px 60px rgba(109, 40, 217, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.modal-desc {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 12px;
  width: 100%;
}

.modal-btn {
  flex: 1;
  height: 48px;
  border: 0;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
}

.modal-btn:hover {
  opacity: 0.85;
}

.modal-btn.primary {
  background: var(--hero-top);
  color: #fff;
}

.modal-btn.secondary {
  background: var(--soft-bg);
  color: var(--hero-top);
}
