/* Count All Blackjack — marketing styles */

:root {
  --felt-green: #0b3d2e;
  --felt-deep: #062820;
  --gold: #d4a017;
  --gold-light: #f0c14b;
  --gold-dark: #a67c00;
  --ink: #0a0f0d;
  --soft: #0f1a16;
  --card: #132820;
  --muted: #8fa89c;
  --white: #f5f7f6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, .hero-title, .section-title {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}

.text-gold { color: var(--gold-light) !important; }
.text-muted { color: var(--muted) !important; }

/* —— Navbar —— */
.nav-glass {
  background: transparent;
  backdrop-filter: blur(0);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.nav-glass.nav-scrolled {
  background: rgba(6, 20, 16, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #fff !important;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  font-size: 0.95rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--gold-light) !important;
}

/* —— Buttons —— */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: none;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-gold:hover {
  filter: brightness(1.08);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212, 160, 23, 0.45);
}

.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-weight: 600;
  background: transparent;
}

.btn-outline-gold:hover {
  background: rgba(212, 160, 23, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-outline-light:hover {
  color: var(--ink);
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(4, 18, 14, 0.94) 0%, rgba(6, 30, 22, 0.82) 48%, rgba(8, 40, 28, 0.55) 100%),
    linear-gradient(to top, rgba(6, 20, 16, 0.95) 0%, transparent 40%);
}

.hero-content {
  z-index: 2;
  padding-top: 5rem;
}

.hero-badge {
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
  border-radius: 2rem;
}

.hero-title {
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.15rem;
}

.stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

.hero-card-stack {
  position: relative;
  padding: 1.5rem;
}

.hero-side-img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  max-height: 420px;
  width: 100%;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 24, 18, 0.92);
  border: 1px solid rgba(212, 160, 23, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  font-size: 0.85rem;
}

.floating-badge i {
  font-size: 1.4rem;
}

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

.floating-badge span {
  color: var(--muted);
  font-size: 0.75rem;
}

.floating-badge-1 {
  top: 12%;
  left: -0.5rem;
  animation: float 4s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: 14%;
  right: -0.25rem;
  animation: float 4.5s ease-in-out infinite 0.6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* —— Trust bar —— */
.trust-bar {
  background: var(--felt-deep);
  border-top: 1px solid rgba(212, 160, 23, 0.15);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.trust-icon {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.trust-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* —— Sections —— */
.section-pad {
  padding: 5.5rem 0;
}

.bg-dark-soft {
  background: var(--soft);
}

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-sub {
  max-width: 36rem;
  color: var(--muted);
}

/* —— Feature cards —— */
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(212, 160, 23, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* —— How it works —— */
.how-img {
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 420px;
  width: 100%;
  object-fit: cover;
}

.step {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 2.5rem;
  line-height: 1.2;
}

/* —— Systems —— */
.system-chip {
  background: var(--card);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 0.75rem;
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.system-chip i {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.system-chip:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
}

/* —— Showcase —— */
.showcase-tile {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.showcase-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

.showcase-caption {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase-caption i {
  color: var(--gold-light);
}

/* —— Testimonials —— */
.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 1.75rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.1em;
}

.avatar {
  object-fit: cover;
  border: 2px solid rgba(212, 160, 23, 0.4);
}

/* —— Pricing —— */
.price-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.price-card:hover {
  transform: translateY(-3px);
}

.price-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.12) 0%, var(--card) 40%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.popular-tag {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  white-space: nowrap;
}

.price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.75rem 0 1.25rem;
  color: #fff;
}

.price .currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--gold-light);
}

.price .period {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--muted);
}

.price-features {
  margin-bottom: 1.5rem;
}

.price-features li {
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.85);
}

.price-features i {
  margin-right: 0.5rem;
}

/* —— CTA —— */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 40, 28, 0.92), rgba(10, 20, 16, 0.9));
}

.cta-icon {
  font-size: 2.5rem;
  color: var(--gold-light);
}

.cta-copy {
  max-width: 32rem;
}

.cta-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cta-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(212, 160, 23, 0.25);
}

/* —— Footer —— */
.site-footer {
  background: #050c0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.social-links a {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* —— Responsive —— */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-pad {
    padding: 4rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .hero-stats {
    gap: 1.25rem !important;
  }
}

/* —— System / guide pages —— */
.page-hero {
  position: relative;
  padding: 8.5rem 0 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(4, 18, 14, 0.95) 0%, rgba(6, 28, 20, 0.88) 55%, rgba(8, 35, 25, 0.75) 100%);
}

.page-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.35);
  --bs-breadcrumb-item-active-color: var(--gold-light);
}

.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
  color: var(--gold-light);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.35);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.guide-meta i {
  color: var(--gold);
  margin-right: 0.3rem;
}

.guide-layout {
  padding: 3.5rem 0 5rem;
}

.guide-toc {
  position: sticky;
  top: 5.5rem;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
}

.guide-toc h2 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.guide-toc ol {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
}

.guide-toc a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  padding: 0.28rem 0;
}

.guide-toc a:hover {
  color: var(--gold-light);
}

.guide-content h2 {
  font-size: 1.75rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 160, 23, 0.25);
  scroll-margin-top: 5.5rem;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}

.guide-content p,
.guide-content li {
  color: rgba(245, 247, 246, 0.88);
}

.guide-content p {
  margin-bottom: 1rem;
}

.guide-content ul,
.guide-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.guide-content li {
  margin-bottom: 0.4rem;
}

.guide-content strong {
  color: #fff;
}

.callout {
  border-radius: 0.85rem;
  padding: 1.15rem 1.35rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

.callout-info {
  border-left-color: #3d9cf0;
  background: rgba(61, 156, 240, 0.08);
}

.callout-warn {
  border-left-color: #e07a3d;
  background: rgba(224, 122, 61, 0.08);
}

.callout-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #fff;
}

.tag-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.25rem 0 1.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.tag-table th {
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold-light);
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
}

.tag-table td {
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--card);
}

.tag-table tr:hover td {
  background: rgba(19, 40, 32, 0.9);
}

.tag-pos { color: #5dcea0; font-weight: 700; }
.tag-neg { color: #e87a7a; font-weight: 700; }
.tag-zero { color: var(--muted); font-weight: 600; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}

.stat-box {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.stat-box .val {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.stat-box .lbl {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

.example-hand {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.35rem 1.5rem;
  margin: 1.25rem 0 1.75rem;
}

.example-hand .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.card-pip {
  width: 2.6rem;
  height: 3.5rem;
  border-radius: 0.4rem;
  background: #f8f6f0;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  line-height: 1.1;
}

.card-pip.red { color: #c0392b; }
.card-pip .suit { font-size: 1rem; }

.rc-line {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.9rem;
  color: var(--gold-light);
  background: rgba(0,0,0,0.25);
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.systems-hub-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.systems-hub-card:hover {
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-3px);
  color: inherit;
}

.systems-hub-card .sys-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.systems-hub-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.systems-hub-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.difficulty-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  background: rgba(255,255,255,0.08);
  color: var(--muted);
}

.difficulty-pill.beginner { background: rgba(93, 206, 160, 0.15); color: #5dcea0; }
.difficulty-pill.intermediate { background: rgba(240, 193, 75, 0.15); color: var(--gold-light); }
.difficulty-pill.advanced { background: rgba(232, 122, 122, 0.15); color: #e87a7a; }
.difficulty-pill.expert { background: rgba(180, 100, 220, 0.15); color: #c9a0e8; }

.system-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.system-nav a {
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  text-decoration: none;
}

.system-nav a:hover,
.system-nav a.active {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 160, 23, 0.1);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}

@media (max-width: 575.98px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros-cons .box {
  border-radius: 0.85rem;
  padding: 1.15rem 1.25rem;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
}

.pros-cons .box h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pros-cons .box.pros h4 { color: #5dcea0; }
.pros-cons .box.cons h4 { color: #e87a7a; }

.pros-cons ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.level-bar {
  height: 0.4rem;
  background: rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 0.35rem;
}

.level-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1rem;
}

.nav-glass.nav-solid {
  background: rgba(6, 20, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

/* —— Brand logo image —— */
.brand-logo-img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* —— Phone mockup —— */
.phone-frame {
  position: relative;
  width: 280px;
  border-radius: 2rem;
  padding: 0.65rem;
  background: linear-gradient(160deg, #2a2a2e 0%, #121214 40%, #0a0a0c 100%);
  box-shadow:
    0 0 0 2px rgba(212, 160, 23, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-frame-hero {
  width: min(280px, 100%);
}

.phone-frame-pricing {
  width: min(300px, 78%);
  z-index: 2;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 0.55rem;
  background: #0a0a0c;
  border-radius: 1rem;
  z-index: 3;
}

.phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.45rem;
  background: #062820;
}

.hero-phone-wrap {
  position: relative;
  padding: 1.5rem 1rem;
}

/* —— Pricing showcase —— */
.pricing-showcase {
  background:
    radial-gradient(ellipse 70% 50% at 15% 40%, rgba(212, 160, 23, 0.08), transparent 60%),
    var(--soft);
}

.pricing-product-card {
  background: var(--card);
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pricing-shot-col {
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 160, 23, 0.15), transparent 55%),
    linear-gradient(180deg, #0a1f18 0%, #06140f 100%);
  position: relative;
  min-height: 100%;
}

.pricing-shot-inner {
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.pricing-shot-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.25), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.pricing-shot-caption {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-offer h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.pricing-includes {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-feature-list li {
  padding: 0.35rem 0;
  color: rgba(245, 247, 246, 0.88);
}

.strategy-preview {
  border: 1px solid rgba(212, 160, 23, 0.25);
  max-height: 420px;
}

.strategy-preview img {
  object-fit: cover;
  object-position: top;
  max-height: 420px;
}

@media (max-width: 991.98px) {
  .pricing-shot-inner {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}

/* —— Dual screenshots + $19 buy panel —— */
.pricing-shots-duo .phone-frame-pricing {
  width: min(260px, 100%);
}

.phone-frame-tilt {
  transform: rotate(2deg);
}

@media (min-width: 768px) {
  .pricing-shots-duo .col-md-4:first-child .phone-frame {
    transform: rotate(-3deg);
  }
  .pricing-shots-duo .phone-frame-tilt {
    transform: rotate(3deg);
  }
}

.pricing-buy-panel {
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 160, 23, 0.18), transparent 55%),
    linear-gradient(180deg, #0d241c 0%, #081611 100%);
  border-left: 1px solid rgba(212, 160, 23, 0.2);
}

@media (max-width: 991.98px) {
  .pricing-buy-panel {
    border-left: none;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
  }
}

/* —— Play free / Android paths —— */
.path-card .path-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-light);
  font-size: 1.25rem;
}

.path-free {
  border-color: rgba(93, 206, 160, 0.25);
}

.feature-mini {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.65rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* —— Stripe Android checkout —— */
.checkout-buttons-host {
  min-height: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.5rem;
  padding: 0.35rem;
}

.checkout-setup-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: left;
}

.checkout-setup-note i {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.checkout-modal {
  background: var(--card);
  color: var(--white);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 1rem;
}

.checkout-modal .modal-header,
.checkout-modal .modal-footer {
  background: transparent;
}

.checkout-modal code {
  color: var(--gold-light);
}
