/* Premium streaming — design tokens (logo-aligned warm orange / amber on dark) */
:root {
  --bg: #0c0a09;
  --bg-elevated: #161210;
  --primary: #f97316;
  --primary-deep: #c2410c;
  --accent: #fb923c;
  --accent-deep: #ea580c;
  --primary-rgb: 249, 115, 22;
  --accent-rgb: 251, 146, 60;
  --text: #fafaf9;
  --text-muted: #b8b0a8;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-border: rgba(255, 248, 240, 0.09);
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(
    ellipse 100% 70% at 50% -15%,
    rgba(var(--primary-rgb), 0.14),
    transparent 52%
  );
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: 1.15rem;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.95) 0%, rgba(12, 10, 9, 0.76) 60%, transparent 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 10, 9, 0.92);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  display: block;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-tld {
  color: var(--primary);
  font-weight: 800;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-desktop a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #0c0a09;
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.38);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(var(--primary-rgb), 0.5);
  color: #0c0a09;
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  border-color: rgba(var(--primary-rgb), 0.45);
  color: var(--text);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #0c0a09;
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.28);
}

.btn-accent:hover {
  color: #0c0a09;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.menu-toggle {
  display: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  .nav-desktop,
  .header-actions .btn-ghost:not(.nav-cta) {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(12, 10, 9, 0.98);
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    gap: 16px;
  }

  .nav-mobile.is-open {
    display: flex;
  }

  .nav-mobile a {
    color: var(--text-muted);
    font-weight: 500;
  }
}

@media (min-width: 901px) {
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Hero full-bleed image carousel (diaporama) */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel-slides {
  position: absolute;
  inset: 0;
}

.hero-carousel-slides .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.15s ease-in-out;
  pointer-events: none;
}

.hero-carousel-slides .carousel-slide.is-active {
  opacity: 1;
}

.hero-carousel-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.55);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 90% 70% at 78% 42%, rgba(var(--primary-rgb), 0.12), transparent 55%),
    linear-gradient(105deg, rgba(12, 10, 9, 0.93) 0%, rgba(12, 10, 9, 0.76) 45%, rgba(12, 10, 9, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
}

.carousel-prev,
.carousel-next {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(var(--primary-rgb), 0.16);
  border-color: rgba(var(--primary-rgb), 0.42);
}

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Inner pages — top banner carousel */
.page-banner-carousel {
  margin-top: 0;
  padding-top: 72px;
  padding-bottom: 0;
}

.page-banner-carousel .page-banner-inner {
  position: relative;
  min-height: 260px;
  max-height: min(40vh, 420px);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.page-banner-carousel .page-banner-slides {
  position: absolute;
  inset: 0;
}

.page-banner-carousel .page-banner-slides .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-banner-carousel .page-banner-slides .carousel-slide.is-active {
  opacity: 1;
}

.page-banner-carousel .page-banner-inner .carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 12, 0.55);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.page-banner-carousel .page-banner-inner[data-carousel] .carousel-prev,
.page-banner-carousel .page-banner-inner[data-carousel] .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.page-banner-carousel .page-banner-inner .carousel-prev {
  left: 12px;
}

.page-banner-carousel .page-banner-inner .carousel-next {
  right: 12px;
}

body.inner-page .page-hero {
  padding-top: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  color: var(--text);
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero .lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section {
  padding: 88px 0;
}

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

.section-head h2 {
  color: var(--text);
  margin-bottom: 12px;
}

.section-head p {
  margin: 0;
}

/* Glass cards */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.38);
  box-shadow: var(--shadow);
}

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

.trust-item {
  text-align: center;
  padding: 20px 16px;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1;
}

.trust-item strong {
  display: block;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-rating {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.14), rgba(var(--accent-rgb), 0.07));
  border: 1px solid var(--glass-border);
}

.stars {
  font-size: 1.35rem;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

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

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

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card h3 {
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.28), rgba(var(--accent-rgb), 0.12));
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

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

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

/* Devices */
.devices-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.device-list {
  display: grid;
  gap: 14px;
}

.device-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: border-color 0.2s ease;
}

.device-pill:hover {
  border-color: rgba(var(--primary-rgb), 0.42);
}

.device-pill span:first-child {
  font-size: 1.5rem;
}

.device-pill strong {
  color: var(--text);
  font-family: var(--font-head);
}

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

.device-grid img {
  border-radius: var(--radius-sm);
  height: 160px;
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--glass-border);
  background: var(--bg-elevated);
  transition: transform 0.4s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.device-grid img:hover {
  transform: scale(1.02);
  border-color: rgba(var(--primary-rgb), 0.38);
  box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.14);
}

@media (max-width: 900px) {
  .devices-layout {
    grid-template-columns: 1fr;
  }
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 8px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #0c0a09;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.step-card h3 {
  color: var(--text);
  margin-bottom: 8px;
}

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

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.48);
}

.price-card.popular {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.1), var(--glass));
  box-shadow: 0 20px 60px rgba(var(--accent-rgb), 0.1);
}

.badge {
  position: absolute;
  top: -10px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #0c0a09;
}

.price-card h3 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 12px 0;
}

.price-amount small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.price-features li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.why-item {
  text-align: center;
  padding: 20px 12px;
}

.why-item .icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.why-item strong {
  display: block;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.95rem;
}

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

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
  filter: saturate(0.9) contrast(1.05) brightness(0.98);
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item button span:last-child {
  color: var(--primary);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-panel {
  max-height: 480px;
}

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

/* Contact section */
.contact-section {
  padding-top: 0;
}

.contact-page-block {
  padding-top: 40px;
  padding-bottom: 72px;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(var(--primary-rgb), 0.1), transparent 70%);
}

.contact-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.contact-intro h2 {
  color: var(--text);
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  padding: 22px 22px 20px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: border-color 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(var(--primary-rgb), 0.35);
}

.contact-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin: 0 0 10px;
  font-weight: 700;
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-card .address {
  color: var(--text-muted);
  font-style: normal;
}

.contact-card-full {
  grid-column: 1 / -1;
}

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

/* Final CTA band */
.cta-band {
  text-align: center;
  padding: 72px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--accent-rgb), 0.08));
  border: 1px solid var(--glass-border);
}

.cta-band h2 {
  margin-bottom: 12px;
}

.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--glass-border);
  background: #0a0807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* Forms (inner pages) */
.page-hero {
  padding: 120px 0 48px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.form-page {
  padding-bottom: 88px;
}

/* Trial page — full-height embed (no inner iframe scrollbar) */
body.trial-page .page-hero {
  padding-bottom: 28px;
}

.trial-section {
  padding-bottom: 56px;
  background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(var(--primary-rgb), 0.14), transparent 65%);
}

.trial-embed-shell {
  max-width: 920px;
  margin: 0 auto;
}

.trial-embed-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(145deg, rgba(var(--primary-rgb), 0.12), rgba(var(--accent-rgb), 0.04) 50%, rgba(22, 18, 16, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(var(--primary-rgb), 0.15),
    0 32px 100px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trial-embed-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px 14px;
  background: rgba(10, 8, 7, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trial-embed-topbar strong {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trial-embed-topbar span {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.trial-embed-frame {
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  line-height: 0;
}

.trial-embed {
  display: block;
  width: 100%;
  /* Tall enough for full embedded form — page scrolls, not the iframe */
  height: var(--trial-iframe-h, 2800px);
  min-height: var(--trial-iframe-h, 2800px);
  border: 0;
  vertical-align: top;
}

@media (max-width: 600px) {
  .trial-embed {
    height: var(--trial-iframe-h, 3000px);
    min-height: var(--trial-iframe-h, 3000px);
  }
}

.trial-embed-foot {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trial-embed-foot a {
  color: var(--primary);
  font-weight: 500;
}

.trial-embed-foot-sep {
  margin: 0 10px;
  opacity: 0.5;
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.form-group input[readonly] {
  opacity: 0.85;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.payment-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.pay-radio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 26px 18px;
  min-height: 200px;
  text-align: center;
}

.pay-radio input[type="radio"] {
  width: 22px;
  height: 22px;
  margin: 0 !important;
  align-self: center;
}

.pay-radio-icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  object-fit: contain;
  margin-inline: auto;
}

.pay-radio span {
  color: var(--text-muted);
  width: 100%;
  text-align: center;
}

.pay-radio span strong {
  font-size: 1.25rem;
  line-height: 1.15;
}

.pay-radio.is-selected span {
  color: var(--text);
}

.pay-radio input[type="radio"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.18);
}

.pay-radio.is-selected {
  border-color: rgba(var(--accent-rgb), 0.9);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.18), var(--shadow);
  background: rgba(var(--accent-rgb), 0.07);
}

/* Beat .device-pill row layout — payment cards stay stacked + centered */
label.pay-radio.device-pill {
  flex-direction: column;
  align-items: center;
}

.secure-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 10px;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  justify-content: center;
}

.secure-badge-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.secure-badge > div {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.payment-method-icon {
  width: 52px;
  height: 52px;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
}

.payment-block {
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
}

.payment-block h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.payment-details {
  margin-top: 20px;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .payment-options {
    grid-template-columns: 1fr;
  }
  .payment-radio-grid {
    grid-template-columns: 1fr;
  }

  .secure-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .payment-options {
    grid-template-columns: 1fr;
  }
  .payment-radio-grid {
    grid-template-columns: 1fr;
  }
}

.bank-lines {
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.bank-lines strong {
  color: var(--text);
}

/* Bank transfer instructional page — clear fixed .site-header (same idea as .wise-hero) */
.bank-hero {
  padding: 112px 0 32px;
  position: relative;
  overflow: visible;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(var(--primary-rgb), 0.12), transparent 72%);
}

.bank-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.bank-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.bank-hero-badge-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Hero badge: avoid hover lift clipping under fixed header / glow bleed */
.bank-hero-badge.glass-card:hover {
  transform: none;
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.bank-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.15;
}

.bank-hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto 24px;
  max-width: 560px;
  line-height: 1.55;
}

.bank-order-summary {
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

.bank-section {
  padding: 56px 0;
}

.bank-section-alt {
  background: linear-gradient(180deg, transparent, rgba(var(--primary-rgb), 0.04));
}

.bank-ref-warning {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  text-align: left;
  border-color: rgba(255, 107, 107, 0.35);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(255, 200, 87, 0.04));
}

.bank-ref-warning-icon {
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}

.bank-ref-warning-heading {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--text);
  margin: 0 0 8px;
}

.bank-ref-warning-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.bank-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.bank-detail-card {
  position: relative;
  padding-bottom: 48px;
}

.bank-detail-wide {
  grid-column: 1 / -1;
}

.bank-detail-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.bank-detail-value {
  font-size: 1.05rem;
  color: var(--text);
  word-break: break-word;
}

.bank-mono {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.95rem;
}

.bank-detail-amount {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
}

.bank-detail-hint {
  margin: 10px 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.bank-detail-card .bank-copy-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

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

.bank-visual-card {
  text-align: center;
}

.bank-visual-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.bank-visual-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--text);
}

.bank-visual-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.bank-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bank-step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.bank-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--primary-rgb), 0.15));
  border: 1px solid var(--glass-border);
  color: var(--accent);
}

.bank-step-item strong {
  color: var(--text);
}

.bank-after-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.bank-after-text {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 20px;
}

.bank-after-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.bank-copy-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #0c0a09;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .bank-visual-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .bank-ref-warning {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bank-detail-card .bank-copy-btn {
    position: static;
    margin-top: 12px;
  }

  .bank-detail-card {
    padding-bottom: 24px;
  }
}

.notice-text {
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 12px;
}

.file-input-wrap {
  margin-top: 12px;
}

.file-input-wrap input[type="file"] {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--glass-border);
  background: transparent;
  cursor: pointer;
}

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-status.error {
  color: #ff6b6b;
}

.form-status.success {
  color: var(--accent);
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  animation: pulseWa 2.5s ease-in-out infinite;
}

.float-wa:hover {
  color: #fff !important;
  transform: scale(1.03);
}

@keyframes pulseWa {
  0%,
  100% {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 16px 48px rgba(37, 211, 102, 0.65);
  }
}

.support-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.support-strip a {
  color: var(--primary);
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.35);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Exit popup */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.exit-overlay.is-visible {
  display: flex;
}

.exit-modal {
  max-width: 440px;
  width: 100%;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  position: relative;
  animation: fadeUp 0.4s ease both;
}

.exit-modal h3 {
  color: var(--text);
  margin-bottom: 10px;
}

.exit-modal .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Thank you */
.thank-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

body.thank-page .thank-body {
  min-height: auto;
  padding: 32px 24px 72px;
}

.thank-body h1 {
  margin-bottom: 12px;
}

/* Post-checkout thank-you (Wise / bank — no payment details on site) */
.payment-thanks-page .payment-thanks-hero {
  padding: 96px 0 64px;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(var(--primary-rgb), 0.12), transparent 65%);
}

.payment-thanks-inner {
  max-width: 560px;
  margin: 0 auto;
}

.payment-thanks-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.payment-thanks-inner h1 {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 12px;
}

.payment-thanks-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 auto 20px;
  max-width: 520px;
}

.payment-thanks-email-box {
  text-align: left;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.09);
  border: 1px solid rgba(var(--primary-rgb), 0.24);
  margin: 0 auto 22px;
  max-width: 520px;
}

.payment-thanks-email-title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.payment-thanks-email-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.payment-thanks-summary {
  padding: 18px 20px;
  text-align: left;
  margin: 0 auto 18px;
  max-width: 520px;
}

.payment-thanks-summary-title {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.payment-thanks-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.payment-thanks-table td {
  padding: 8px 0;
  vertical-align: top;
  border-bottom: 1px solid var(--glass-border);
}

.payment-thanks-table td:first-child {
  width: 42%;
  color: var(--text-muted);
  font-weight: 600;
}

.payment-thanks-table tr:last-child td {
  border-bottom: none;
}

.payment-thanks-soft-hint {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 20px;
}

.payment-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.payment-thanks-support {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.payment-thanks-support a {
  color: var(--accent);
  font-weight: 600;
}

/* Utility */
.text-center {
  text-align: center;
}

.wise-page .site-header.is-scrolled,
.wise-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Wise payment page */
.wise-hero {
  padding: 120px 0 48px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(var(--primary-rgb), 0.16), transparent 70%);
  position: relative;
}

.wise-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.wise-hero-badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.wise-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  margin: 0 0 12px;
}

.wise-subtitle {
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 14px;
}

.wise-lead {
  color: var(--text-muted);
  margin: 0 auto 22px;
  max-width: 640px;
  font-size: 1.05rem;
}

.wise-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wise-trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-weight: 600;
}

/* Card checkout temporarily unavailable (Stripe-inspired mock) */
.card-pay-down-page main {
  position: relative;
  z-index: 1;
}

.card-pay-down-layout {
  padding: 124px 0 96px;
  min-height: 60vh;
  background: radial-gradient(ellipse 75% 45% at 50% -5%, rgba(var(--primary-rgb), 0.1), transparent 58%);
}

.card-pay-down-layout .container {
  max-width: 480px;
}

.card-pay-down-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-pay-down-pagehead {
  text-align: center;
  padding-bottom: 4px;
}

.card-pay-down-kicker {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.card-pay-down-title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  margin: 0 0 14px;
  color: var(--text);
  line-height: 1.2;
}

.card-pay-down-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  text-align: left;
}

.card-pay-down-lead strong {
  color: var(--text);
}

.stripe-card-mock {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 22px 22px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #16161f 0%, #0e0e14 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(var(--primary-rgb), 0.12);
  position: relative;
  overflow: hidden;
}

.card-pay-wise-tip {
  text-align: left;
  border-color: rgba(var(--accent-rgb), 0.22);
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.07), rgba(var(--primary-rgb), 0.05));
  padding: 22px 22px 20px;
}

.card-pay-wise-tip-head {
  margin-bottom: 12px;
}

.card-pay-wise-tip-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0c0a09;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.card-pay-wise-tip-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0;
  color: var(--text);
  line-height: 1.25;
}

.card-pay-wise-tip-text {
  margin: 0 0 12px;
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-pay-wise-tip-text strong {
  color: var(--text);
}

.card-pay-wise-tip-foot {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.card-pay-wise-tip-foot strong {
  color: var(--accent);
}

.stripe-card-mock::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-deep), var(--primary), var(--accent));
  opacity: 0.95;
}

.stripe-card-mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stripe-card-mock-brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.stripe-card-mock-chip {
  width: 38px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d4af37 0%, #8a6a2a 50%, #c9a227 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.stripe-card-mock-row {
  margin-bottom: 16px;
}

.stripe-card-mock-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 8px;
}

.stripe-card-mock-number {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.stripe-card-mock-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stripe-card-mock-placeholder {
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stripe-card-mock-status {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffc46b;
  background: rgba(255, 180, 80, 0.08);
  border: 1px solid rgba(255, 180, 80, 0.25);
}

.stripe-card-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc46b;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 196, 107, 0.7);
}

.card-pay-down-notice {
  width: 100%;
  margin: 0;
  padding: 22px 22px 20px;
  text-align: left;
}

.card-pay-down-notice-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--text);
}

.card-pay-down-notice-text {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.card-pay-down-notice-text strong {
  color: var(--text);
}

.card-pay-down-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

@media (max-width: 540px) {
  .card-pay-down-actions {
    flex-direction: column;
  }

  .card-pay-down-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .card-pay-down-layout {
    padding: 108px 0 72px;
  }

  .stripe-card-mock-number {
    font-size: 0.92rem;
  }
}

.wise-section {
  padding: 70px 0;
}

.wise-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wise-plan-grid-single {
  grid-template-columns: 1fr;
  max-width: 440px;
  margin: 0 auto;
}

.wise-plan-card {
  padding: 18px 18px 20px;
  position: relative;
  overflow: hidden;
}

.wise-plan-top h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}

.wise-plan-price {
  margin-top: 10px;
  font-size: 2.05rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text);
}

.wise-plan-meta {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 0.95rem;
}

.wise-popular {
  border-color: rgba(var(--accent-rgb), 0.35);
}

.wise-popular-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #0c0a09;
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wise-pay-btn {
  width: 100%;
  margin-top: 18px;
}

.wise-qr-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.wise-qr-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wise-qr-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text);
}

.wise-qr-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.wise-qr-img-wrap {
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--glass-border);
  padding: 14px;
}

.wise-qr-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.wise-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}

.wise-step {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 170px;
}

.wise-step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #0c0a09;
  font-family: var(--font-head);
  font-weight: 900;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.wise-step-title {
  color: var(--text);
  font-weight: 800;
  font-family: var(--font-head);
}

.wise-step-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.wise-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.wise-checklist {
  padding: 18px;
  border-radius: var(--radius);
}

.wise-check-item {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.wise-check-item span {
  color: var(--accent);
  font-weight: 900;
}

.wise-side-card {
  padding: 18px;
}

.wise-side-title {
  color: var(--text);
  font-weight: 900;
  font-family: var(--font-head);
  margin-bottom: 10px;
}

.wise-side-text {
  color: var(--text-muted);
  margin: 0;
}

.wise-notice {
  padding: 18px;
  border-color: rgba(var(--primary-rgb), 0.25);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.10), rgba(var(--accent-rgb), 0.06));
}

.wise-notice-title {
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 900;
  margin-bottom: 10px;
}

.wise-notice-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.wise-notice-list li {
  margin: 8px 0;
}

.wise-after-card {
  padding: 20px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.wise-after-title {
  color: var(--accent);
  font-weight: 900;
  font-family: var(--font-head);
}

.wise-after-card h2 {
  margin: 10px 0 12px;
}

.wise-after-text {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 18px;
}

.wise-after-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.wise-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wise-trust-card {
  padding: 16px;
  text-align: center;
}

.wise-trust-card-icon {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.wise-trust-card-title {
  color: var(--text);
  font-weight: 800;
  font-family: var(--font-head);
}

.wise-loader {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.wise-loader.is-visible {
  display: flex;
}

.wise-loader-card {
  padding: 22px 18px;
  width: min(420px, 100%);
  text-align: center;
}

.wise-loader-spinner {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent);
  margin: 0 auto 14px;
  animation: wiseSpin 0.9s linear infinite;
}

.wise-loader-title {
  color: var(--text);
  font-weight: 900;
  font-family: var(--font-head);
}

.wise-loader-sub {
  color: var(--text-muted);
  margin-top: 8px;
}

@keyframes wiseSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .wise-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wise-steps {
    grid-template-columns: 1fr;
  }
  .wise-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wise-two-col {
    grid-template-columns: 1fr;
  }
  .wise-qr-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .wise-hero {
    padding-top: 110px;
  }
  .wise-plan-grid {
    grid-template-columns: 1fr;
  }
  .wise-qr-img {
    width: 160px;
    height: 160px;
  }
  .wise-step {
    min-height: auto;
  }
}

.mt-0 {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Crypto checkout */
.crypto-hero {
  padding: 64px 0 26px;
}

.crypto-head h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.crypto-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.crypto-section {
  padding: 10px 0 70px;
}

.crypto-from-checkout-hint {
  max-width: 720px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  background: rgba(var(--accent-rgb), 0.06);
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.crypto-missing-banner {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 18px 20px;
  border-color: rgba(255, 107, 107, 0.35);
  background: rgba(255, 107, 107, 0.08);
}

.crypto-missing-banner a {
  color: var(--accent);
  font-weight: 800;
}

.crypto-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.crypto-plan-card {
  cursor: pointer;
  user-select: none;
  text-align: center;
  padding: 18px 18px 20px;
  min-height: 170px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.crypto-plan-card:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
}

.crypto-plan-card.is-selected {
  border-color: rgba(var(--accent-rgb), 0.9);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.14), var(--shadow);
  transform: translateY(-4px);
}

.crypto-plan-icon {
  font-size: 2.1rem;
  margin-top: 2px;
}

.crypto-plan-title {
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 900;
  margin-top: 2px;
}

.crypto-plan-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.05rem;
  color: var(--accent);
  line-height: 1;
}

.crypto-plan-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.crypto-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #0c0a09;
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.crypto-cta-wrap {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.crypto-pay-btn {
  width: 100%;
  max-width: 560px;
}

.crypto-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
  width: 100%;
  max-width: 560px;
}

.crypto-loading-text {
  color: var(--text-muted);
  font-weight: 800;
}

.crypto-spinner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  animation: cryptoSpin 0.9s linear infinite;
}

@keyframes cryptoSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.crypto-error {
  max-width: 560px;
  width: 100%;
  margin: 0;
  color: #ff6b6b;
  font-weight: 700;
}

.crypto-footnote {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 720px;
}

/* Success / Cancel pages */
.crypto-result {
  padding: 70px 0 90px;
}

.crypto-result-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.crypto-result-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.crypto-result-sub {
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.crypto-order-row {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.crypto-order-label {
  color: var(--text-muted);
  font-weight: 800;
}

.crypto-order-id {
  font-family: ui-monospace, monospace;
  font-weight: 800;
  color: var(--text);
  word-break: break-word;
  text-align: right;
}

.crypto-wait {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 900;
}

.crypto-result-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.crypto-result-footnote {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

@media (max-width: 520px) {
  .crypto-head h1 {
    font-size: 2.1rem;
  }
  .crypto-plan-grid {
    grid-template-columns: 1fr;
  }
  .crypto-order-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .crypto-order-id {
    text-align: left;
  }
}
