:root {
  --navbar-height: 0px;
  --black: #020806;
  --dark: #04100b;
  --dark-2: #071811;
  --green: #2ed47a;
  --green-2: #73f2ad;
  --mint: #c9ffd9;
  --bg: #f3f8f5;
  --soft: #eaf4ee;
  --text: #06110d;
  --muted: #64746d;
  --white: #ffffff;
  --border: rgba(6, 17, 13, 0.1);
  --shadow: 0 22px 70px rgba(4, 16, 11, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #03100a;
  box-shadow: 0 16px 42px rgba(46, 212, 122, 0.3);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.section {
  padding: 96px 0;
}

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

.eyebrow {
  color: #14965a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--green-2);
}

.section-title {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.section-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 84% 22%,
      rgba(115, 242, 173, 0.22),
      transparent 31%
    ),
    radial-gradient(
      circle at 4% 78%,
      rgba(46, 212, 122, 0.16),
      transparent 34%
    ),
    linear-gradient(120deg, #020806 0%, #04120c 52%, #071d13 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(46, 212, 122, 0.14),
    transparent 36%,
    rgba(115, 242, 173, 0.1) 72%,
    transparent
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(115, 242, 173, 0.6),
    transparent
  );
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    padding 0.2s ease;
}

.navbar.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(14px, calc((100% - 1180px) / 2));
  border-radius: 0;
}

body.navbar-stuck .navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5px max(14px, calc((100% - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: rgba(2, 8, 6, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: none;
}

header.has-sticky-navbar {
  padding-top: var(--navbar-height);
}

body .nav-links a.active {
  color: var(--mint);
}

.brand-link {
  flex: 0 0 auto;
}

.logo {
  width: 190px;
  height: auto;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--mint);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 74px 0 120px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid rgba(115, 242, 173, 0.28);
  border-radius: 999px;
  background: rgba(115, 242, 173, 0.09);
  color: #d7ffe5;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 32px rgba(46, 212, 122, 0.16);
}

.badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  margin-top: 30px;
  max-width: 850px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.gradient-text {
  background: linear-gradient(135deg, #b8ffd1, #2ed47a 58%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content > p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.center-actions {
  justify-content: center;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  max-width: 700px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #03100a;
  font-size: 12px;
  font-weight: 900;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -35px;
  z-index: -1;
  border-radius: 55px;
  background: radial-gradient(
    circle,
    rgba(46, 212, 122, 0.24),
    transparent 65%
  );
  filter: blur(20px);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(115, 242, 173, 0.16);
  border-radius: 30px;
  background: rgba(4, 16, 11, 0.82);
}

.console-top small {
  color: var(--mint);
  font-weight: 700;
}

.console-top h3 {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.2;
}

.icon-box {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: rgba(115, 242, 173, 0.14);
  color: var(--green-2);
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

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

.metric,
.premium-strip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
}

.metric small {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: var(--green-2);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.metric p,
.premium-strip p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.premium-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  background: linear-gradient(
    135deg,
    rgba(115, 242, 173, 0.14),
    rgba(255, 255, 255, 0.04)
  );
}

.premium-strip svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--green-2);
}

.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 18px 0;
}

.ticker-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  color: rgba(35, 54, 47, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.ticker-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.ticker-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

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

.service-card,
.build-card,
.template-card,
.review-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(4, 16, 11, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover,
.template-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-bottom-left-radius: 70px;
  background: linear-gradient(135deg, rgba(46, 212, 122, 0.16), transparent);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: var(--dark);
  color: var(--green-2);
  box-shadow: 0 14px 32px rgba(4, 16, 11, 0.16);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3,
.build-card h3,
.template-card h3 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.service-card p,
.build-card p,
.template-card p,
.review-card p {
  margin-top: 12px;
  color: var(--muted);
}

.soft-section {
  background: var(--soft);
}

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

.build-card {
  padding: 24px;
}

.build-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-2), var(--green));
  color: #03100a;
  font-weight: 900;
}

.stats {
  background: var(--black);
  color: var(--white);
  padding: 58px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.stat-card strong {
  display: block;
  background: linear-gradient(135deg, var(--mint), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

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

.template-card {
  overflow: hidden;
}

.template-preview {
  height: 180px;
  padding: 20px;
  background: linear-gradient(135deg, #04100b, #0b2d1d 48%, #39d989);
}

.mock-window {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  backdrop-filter: blur(12px);
}

.mock-dot {
  width: 92px;
  height: 11px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--green-2);
}

.mock-line {
  height: 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.mock-line.short {
  width: 64%;
  background: rgba(255, 255, 255, 0.42);
}

.mock-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.mock-tabs span {
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.template-content {
  padding: 26px;
}

.template-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.dark-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  padding: 86px 0;
  text-align: center;
}

.dark-cta::before,
.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -180px;
  width: 430px;
  height: 430px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(115, 242, 173, 0.22),
    transparent 67%
  );
  filter: blur(10px);
}

.dark-cta .container,
.final-cta .container {
  position: relative;
  z-index: 1;
}

.dark-cta h2,
.final-cta h2 {
  max-width: 820px;
  margin: 14px auto 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.dark-cta p,
.final-cta p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 18px;
}

.dark-cta .btn {
  margin-top: 34px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 9px 15px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

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

.review-card {
  padding: 28px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-top svg {
  width: 34px;
  height: 34px;
  color: var(--green);
}

.stars {
  color: #f7b731;
  letter-spacing: 2px;
  font-size: 14px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--green));
  color: var(--white);
  font-weight: 900;
}

.person strong {
  display: block;
  line-height: 1.2;
}

.person small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.payment-box {
  border: 1px solid var(--border);
  border-radius: 42px;
  background: var(--white);
  padding: 52px;
  text-align: center;
  box-shadow: var(--shadow);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.payment-grid span {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f7fbf8;
  padding: 15px 10px;
  color: #41534c;
  font-weight: 900;
}

.faq-section {
  background: var(--black);
  color: var(--white);
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.faq-question span {
  color: var(--green-2);
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.64);
}

.faq-item.active .faq-answer {
  display: block;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: #03100a;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.footer {
  background: #010504;
  color: var(--white);
  padding: 50px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer p {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.54);
}

.footer h4 {
  color: var(--mint);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 600;
}

.copyright {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.38);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links.mobile-open {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    z-index: 1210;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(2, 8, 6, 0.96);
    padding: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
  }

  .nav-links.mobile-open a {
    padding: 13px 14px;
  }

  .hero-grid,
  .card-grid,
  .build-grid,
  .template-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-grid {
    padding-top: 42px;
  }

  .hero-checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

  .logo {
    width: 184px;
  }

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

  .hero-actions,
  .template-actions {
    display: grid;
  }

  .metric-grid,
  .stats-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .payment-box {
    padding: 34px 20px;
    border-radius: 30px;
  }
}

@media (max-width: 620px) {
  .navbar.container,
  body.navbar-stuck .navbar.is-sticky {
    padding-inline: 14px;
  }
}

@media (max-width: 980px) {
  header.menu-open {
    position: relative;
    z-index: 1300;
    overflow: visible !important;
  }

  header.menu-open .navbar {
    z-index: 1310;
  }

  header.menu-open .nav-links.mobile-open {
    top: calc(100% + 10px);
    z-index: 1320;
  }
}

.industries-section {
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(46, 212, 122, 0.08),
      transparent 24%
    ),
    var(--white);
}

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

.industry-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(4, 16, 11, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.industry-card:hover {
  border-color: rgba(46, 212, 122, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.industry-icon {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: var(--dark);
  color: var(--green-2);
  box-shadow: 0 14px 32px rgba(4, 16, 11, 0.14);
}

.industry-icon svg {
  width: 26px;
  height: 26px;
}

.industry-card h3 {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 900;
}

@media (max-width: 980px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 96px;
    padding: 20px;
  }
}

.payment-option {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f7fbf8;
  padding: 15px 10px;
  color: #41534c;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.payment-option:hover {
  border-color: rgba(46, 212, 122, 0.5);
  background: var(--soft);
  transform: translateY(-2px);
}

.bank-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 6, 0.76);
  backdrop-filter: blur(12px);
}

.bank-popup.open {
  display: grid;
}

.bank-popup-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(115, 242, 173, 0.22);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.bank-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.bank-popup-card h2 {
  max-width: 420px;
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bank-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.bank-detail-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f7fbf8;
}

.bank-detail-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.bank-detail-row strong {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 14px;
}

.bank-popup-action {
  width: 100%;
  margin-top: 22px;
}

@media (max-width: 520px) {
  .bank-popup-card {
    padding: 24px 18px;
  }

  .bank-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .bank-popup-card h2 {
    padding-right: 32px;
    font-size: 26px;
  }
}

.qr-popup {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(2, 8, 6, 0.76);
  backdrop-filter: blur(12px);
}

.qr-popup.open {
  display: grid;
}

.qr-popup-card {
  position: relative;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid rgba(115, 242, 173, 0.22);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.qr-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.qr-popup-card h2 {
  margin-top: 12px;
  padding-inline: 20px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.qr-image-wrap {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #f7fbf8;
}

.qr-image-wrap img {
  width: min(280px, 100%);
  margin: 0 auto;
}

.qr-popup-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.qr-popup-action {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 520px) {
  .qr-popup-card {
    padding: 24px 18px;
  }

  .qr-popup-card h2 {
    padding-right: 32px;
    font-size: 24px;
  }
}