/* ============================================
   haziq.jadi store, Mobile-first, app-feel
   Base = mobile (320-768px), then enhanced for desktop
   ============================================ */

:root {
  --bg: #fafafa;
  --bg-alt: #f0f0f0;
  --surface: #ffffff;
  --surface-dark: #0a0a0a;
  --surface-accent: #fff8e1;
  --text: #0a0a0a;
  --text-soft: #525252;
  --text-mute: #888;
  --text-on-dark: #ffffff;
  --border: #e8e8e8;
  --border-dark: #1f1f1f;
  --accent: #ff6b00;
  --accent-2: #ffae00;
  --success: #16a34a;
  --danger: #dc2626;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-cta: 0 6px 16px rgba(10, 10, 10, 0.18);

  --t-fast: 150ms;
  --t-med: 220ms;

  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: calc(80px + var(--safe-bottom)); /* room for sticky CTA */
}

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

a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============ BANNER ============ */
.banner {
  background: var(--surface-dark);
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.banner strong { color: var(--accent-2); font-weight: 800; }
.banner-icon { font-size: 14px; }

/* ============ HERO ============ */
.hero {
  background: var(--surface);
  padding: 24px 20px 28px;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-md);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.brand-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-mute);
  text-transform: uppercase;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.share-btn:hover { background: var(--bg-alt); border-color: var(--text-soft); }
.share-btn:active { transform: scale(0.92); }

.title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-now {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.price-was {
  font-size: 16px;
  color: var(--text-mute);
  text-decoration: line-through;
}
.price-tag {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* Slot counter (progress bar) */
.slot-counter {
  position: relative;
  background: var(--bg-alt);
  border-radius: 100px;
  height: 28px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.slot-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  transition: width 600ms ease;
}
.slot-text {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  padding: 0 12px;
  z-index: 1;
}

/* Phase 1 sold-out badge (above price, builds social proof) */
.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #15803d;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.phase-badge-icon {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
}

/* Phase 2 hint below the bar (next price ceiling) */
.phase-hint {
  font-size: 11.5px;
  color: #888;
  text-align: center;
  margin: -10px 0 16px;
  font-weight: 500;
}

/* Viral social-proof card (replaces old "50 pembeli pertama" promo) */
.viral-card {
  text-align: center;
}
.viral-stats {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.viral-stats li {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 16px 8px;
}
.viral-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.viral-stat-label {
  font-size: 11px;
  color: #555;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .viral-stats { gap: 6px; }
  .viral-stats li { padding: 14px 4px; }
  .viral-stat-num { font-size: 22px; }
  .viral-stat-label { font-size: 10px; }
}

/* Trust row */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}
.trust-icon { font-size: 18px; }

/* ============ BUTTONS ============ */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--surface-dark);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform var(--t-fast), opacity var(--t-fast), box-shadow var(--t-med);
  min-height: 52px;
  box-shadow: var(--shadow-cta);
  -webkit-appearance: none;
  appearance: none;
}
.btn-cta:hover { opacity: 0.92; }
.btn-cta:active { transform: scale(0.98); box-shadow: 0 2px 6px rgba(10,10,10,0.2); }
.btn-cta:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-cta-hero { margin-top: 6px; }
.btn-cta-submit { margin-top: 4px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast);
  min-height: 44px;
}
.btn-secondary:hover { background: var(--bg-alt); }
.btn-secondary:active { transform: scale(0.98); }

/* Button loading state */
.btn-text, .btn-loading { display: inline-block; transition: opacity var(--t-fast); }
.btn-loading { display: none; }
.btn-cta.is-loading .btn-text { display: none; }
.btn-cta.is-loading .btn-loading { display: inline-block; }

/* ============ CONTENT ============ */
.content {
  padding: 0 16px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  margin: 16px 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.card-dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  border-color: var(--border-dark);
}
.card-dark a { color: var(--accent-2); }
.card-dark strong { color: #fff; }

.card-accent {
  background: linear-gradient(135deg, #fff8e1 0%, #ffe9b3 100%);
  border-color: #f5d990;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-label-light { color: #999; }

.section-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.section-title-light { color: #fff; }

.card p {
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}
.card-dark p { color: #d4d4d4; }

.lead {
  font-size: 18px !important;
  color: var(--text) !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.card-image {
  margin: 16px -4px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list, .pain-list {
  list-style: none;
  margin: 12px 0;
}
.feature-list li {
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.45;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--text);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.feature-list .arrow {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 17px;
  width: 20px;
  color: var(--accent);
}

.pain-list li {
  padding: 12px 14px;
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  position: relative;
  padding-left: 36px;
}
.pain-list li::before {
  content: "→";
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--accent-2);
  font-weight: 700;
}

.hint {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 14px !important;
  margin: 14px 0 !important;
  font-style: italic;
}
.hint-small {
  background: transparent;
  border-radius: 0;
  padding: 6px 0;
  font-size: 12px !important;
  font-style: normal;
  color: var(--text-mute) !important;
  margin: 4px 0 0 !important;
}
.warning {
  font-size: 16px !important;
  color: #fff !important;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin: 18px 0 0 !important;
}

/* ============ CHECKOUT ============ */
.checkout-card {
  background: var(--surface);
  border: 2px solid var(--text);
  scroll-margin-top: 70px;
}
.checkout-header { margin-bottom: 20px; }
.checkout-sub {
  font-size: 14px !important;
  color: var(--text-soft) !important;
  margin-top: 4px !important;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
}
.field-hint {
  font-weight: 400;
  color: var(--text-mute);
  font-size: 12px;
}
.field input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px; /* Prevent iOS zoom on focus */
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
}
.field input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 4px rgba(10,10,10,0.06);
}
.field input.is-error {
  border-color: var(--danger);
}
.field-error {
  display: none;
  font-size: 12px;
  color: var(--danger);
  font-weight: 500;
}
.field-error.show { display: block; }

/* Payment method grid */
.pm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pm-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 6px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: inherit;
  min-height: 88px;
}
.pm-btn:hover {
  border-color: var(--text-soft);
}
.pm-btn:active {
  transform: scale(0.96);
}
.pm-btn.selected {
  border-color: var(--text);
  border-width: 2px;
  background: var(--bg-alt);
  box-shadow: 0 0 0 4px rgba(10,10,10,0.06);
}
.pm-btn.selected .pm-icon { transform: scale(1.1); }
.pm-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform var(--t-fast);
}
.pm-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.pm-sub {
  font-size: 10px;
  color: var(--text-mute);
}

/* Summary */
.summary {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 4px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  padding: 4px 0;
  color: var(--text-soft);
}
.summary-row s { color: var(--text-mute); margin-right: 4px; }
.summary-row strong { color: var(--text); font-weight: 700; }
.summary-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text) !important;
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 10px;
}

.secure {
  text-align: center;
  font-size: 11px !important;
  color: var(--text-mute) !important;
  margin: 8px 0 0 !important;
  line-height: 1.5;
}

/* ============ CONTACT ============ */
.card-contact { text-align: left; }
.card-contact a { color: var(--text); font-weight: 600; }
.contact-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

/* ============ CREATOR ============ */
.creator-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 4px;
  margin: 8px 0;
}
.creator-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  object-fit: cover;
  flex-shrink: 0;
}
.creator-avatar-fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.creator-name { font-weight: 700; font-size: 15px; }
.creator-role { font-size: 13px; color: var(--text-mute); margin-bottom: 6px; }
.creator-socials { display: flex; gap: 10px; align-items: center; }
.creator-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-soft, #f5f5f5);
  color: #555;
  transition: background 0.15s, color 0.15s;
}
.creator-socials a:hover { background: #111; color: #fff; }

/* ============ PRICE LADDER (under slot counter) ============ */
.price-ladder {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--text-mute);
  margin: 8px 0 14px;
  line-height: 1.5;
}
.ladder-step {
  padding: 3px 8px;
  border-radius: 5px;
  background: #f3f4f6;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}
.ladder-step.active {
  background: #10b981;
  color: #fff;
  font-weight: 700;
}
.ladder-arrow { color: #ccc; font-size: 12px; }

/* ============ FOOTER SOCIALS ============ */
.footer-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #999;
  transition: background 0.15s, color 0.15s;
}
.footer-socials a:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ============ REVIEWS ============ */
.reviews-card { padding-bottom: 8px; }
.reviews-header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.reviews-header .section-title {
  font-size: 30px;
  margin-bottom: 6px;
}
.reviews-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stars { display: inline-flex; gap: 2px; }
.star {
  color: #e5e5e5;
  font-size: 18px;
  line-height: 1;
}
.star.filled { color: #fbbf24; }
.star-half {
  background: linear-gradient(90deg, #fbbf24 50%, #e5e5e5 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.reviews-count {
  font-size: 12px;
  color: var(--text-mute);
  font-weight: 500;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review {
  padding: 16px 14px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.review-head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.review-meta { min-width: 0; }
.review-name {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.verified {
  font-size: 10px;
  font-weight: 700;
  color: var(--success);
  background: rgba(22,163,74,0.1);
  padding: 2px 6px;
  border-radius: 100px;
}
.review-date {
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 2px;
}
.review-stars {
  font-size: 13px;
  color: #fbbf24;
  letter-spacing: -1px;
  line-height: 1;
}
.review-text {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: var(--text) !important;
  margin: 0 !important;
}
.review-text strong { color: var(--text); }
.reviews-cta {
  margin-top: 18px;
  width: 100%;
}

/* ============ STICKY BOTTOM CTA (Beacons-style) ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + var(--safe-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform var(--t-med) ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.sticky-share-btn:active { transform: scale(0.9); }

.sticky-cta-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.sticky-cta-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.1;
}
.sticky-cta-price strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.sticky-was {
  font-size: 12px;
  color: var(--text-mute);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.sticky-was em {
  font-style: normal;
  font-size: 11px;
}
.btn-cta-sticky {
  width: auto;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  min-height: 44px;
  flex-shrink: 0;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: calc(90px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--surface-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-med);
  z-index: 60;
  box-shadow: var(--shadow-lg);
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ FOOTER ============ */
footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 12px;
  color: var(--text-mute);
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 16px;
}

/* ============ DESKTOP ENHANCEMENT (≥768px) ============ */
@media (min-width: 768px) {
  body {
    padding-bottom: 40px; /* No sticky CTA on desktop */
  }

  .hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero-image {
    margin-bottom: 0;
    position: sticky;
    top: 80px;
  }
  .title { font-size: 40px; letter-spacing: -1px; }
  .subtitle { font-size: 17px; }
  .price-now { font-size: 44px; }
  .btn-cta { font-size: 17px; padding: 18px 28px; }

  .content {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 20px 48px;
  }
  .card { padding: 32px 32px; margin: 20px 0; }
  .section-title { font-size: 26px; }
  .lead { font-size: 20px !important; }

  .pm-grid { gap: 12px; }
  .pm-btn { padding: 16px 8px; min-height: 96px; }
  .pm-name { font-size: 13px; }

  .review-head { grid-template-columns: 44px 1fr auto; }
  .review-avatar { width: 44px; height: 44px; font-size: 14px; }
  .review-text { font-size: 15px !important; }

  /* Sticky CTA on desktop: smaller, centered, narrower */
  .sticky-cta {
    max-width: 720px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 100%);
    bottom: 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    padding: 8px 8px 8px 16px;
    box-shadow: var(--shadow-lg);
  }
  .sticky-cta.visible {
    transform: translate(-50%, 0);
  }

  .trust-row { max-width: 360px; }
}

@media (min-width: 1024px) {
  .hero { padding: 64px 32px; gap: 80px; }
  .title { font-size: 48px; }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media (prefers-color-scheme: dark) {
  /* Keep light for now, dark mode optional later */
}

/* Focus visible for keyboard nav */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================
   SECURITY & TRUST CARD
   ============================================ */

.security-card {
  background: linear-gradient(180deg, #fefefe 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
}

.security-card .section-label {
  color: #10b981;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 18px 0;
}

.security-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  align-items: start;
}

.security-icon {
  grid-row: 1 / 3;
  font-size: 26px;
  line-height: 1;
  align-self: center;
  text-align: center;
}

.security-title {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}

.security-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.45;
  margin-top: 2px;
}

.security-footer {
  margin-top: 14px;
  padding: 12px 14px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 12.5px;
  color: #475569;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 540px) {
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   PAYMENT BUTTONS + EMBEDDED CHECKOUT
   (restored from earlier state)
   ============================================ */

.pay-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}

.pay-btn {
  position: relative;
  display: block;
  width: 100%;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.pay-btn:hover { transform: translateY(-1px); }
.pay-btn:active { transform: translateY(0); filter: brightness(0.95); }

.pay-btn-stripe {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d3a 60%, #4a3b6b 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(74, 59, 107, 0.35);
}

.pay-btn-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.pay-btn-sub {
  font-size: 12.5px;
  opacity: 0.85;
  margin-top: 4px;
}

/* Embedded Stripe Checkout container */
.embedded-checkout {
  margin: 18px 0 12px;
  min-height: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.embedded-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #94a3b8;
  font-size: 14px;
}

.loader {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 14px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.checkout-error {
  padding: 22px 18px;
  background: #fff8e1;
  border: 1px solid #ffd9b3;
  border-radius: 10px;
  color: #92400e;
  font-size: 14px;
  text-align: center;
  line-height: 1.55;
}

/* ============================================
   NEWSLETTER CARD (inline lead capture)
   ============================================ */

.newsletter-card {
  background: #0a0a0a;
  border: 1.5px solid #FF6B1A;
  border-radius: 16px;
  padding: 24px 22px;
  color: #f5f5f5;
}

.newsletter-label {
  display: inline-block;
  background: rgba(255, 107, 26, 0.15);
  color: #FFB875;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.newsletter-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #fff;
}

.newsletter-intro {
  font-size: 14px;
  line-height: 1.55;
  color: #aaa;
  margin: 0 0 16px;
}
.newsletter-intro strong { color: #fff; font-weight: 600; }

.newsletter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.5;
}
.newsletter-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: #ccc;
}
.newsletter-list .nl-icon {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
}
.newsletter-list strong { color: #fff; font-weight: 600; }

#newsletter-form { margin: 0; }

.newsletter-input {
  width: 100%;
  box-sizing: border-box;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  margin-bottom: 10px;
  -webkit-appearance: none;
  appearance: none;
}
.newsletter-input::placeholder { color: #666; }
.newsletter-input:focus {
  border-color: #FF6B1A;
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.2);
}

.newsletter-btn {
  width: 100%;
  background: #FF6B1A;
  color: #1a1a1a;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.05s;
}
.newsletter-btn:hover { background: #FF8033; }
.newsletter-btn:active { transform: scale(0.99); }
.newsletter-btn:disabled { background: #555; cursor: not-allowed; transform: none; }

.newsletter-trust {
  font-size: 11px;
  color: #666;
  margin: 12px 0 0;
  line-height: 1.5;
  text-align: center;
}

.newsletter-result {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.5;
}
.newsletter-result.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}
.newsletter-result.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

@media (max-width: 480px) {
  .newsletter-card { padding: 20px 18px; }
  .newsletter-title { font-size: 19px; }
}

/* ============================================
   TELEGRAM JOIN CARD (replaces newsletter on landing)
   Brand: Telegram blue #2AABEE on near-black panel.
   ============================================ */

.telegram-card {
  background: #0a0a0a;
  border: 1.5px solid #2AABEE;
  border-radius: 16px;
  padding: 24px 22px;
  color: #f5f5f5;
}

.telegram-label {
  display: inline-block;
  background: rgba(42, 171, 238, 0.15);
  color: #7CD0F5;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.telegram-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #fff;
}

.telegram-intro {
  font-size: 14px;
  line-height: 1.55;
  color: #aaa;
  margin: 0 0 16px;
}
.telegram-intro strong { color: #fff; font-weight: 600; }

.telegram-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.5;
}
.telegram-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  color: #ccc;
}
.telegram-list .tg-icon {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
}
.telegram-list strong { color: #fff; font-weight: 600; }

.telegram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  background: #2AABEE;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.05s;
  -webkit-tap-highlight-color: transparent;
}
.telegram-btn:hover { background: #229ED9; }
.telegram-btn:active { transform: scale(0.99); }
.telegram-btn .tg-btn-icon {
  font-size: 16px;
  display: inline-block;
  transform: translateY(-1px);
}

.telegram-trust {
  font-size: 11px;
  color: #666;
  margin: 12px 0 0;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 480px) {
  .telegram-card { padding: 20px 18px; }
  .telegram-title { font-size: 19px; }
}

/* ============================================
   CUSTOM SERVICE CARD
   ============================================ */

.custom-card {
  background: linear-gradient(180deg, #fff 0%, #fefaf3 100%);
  border: 2px solid #ffd9b3;
  position: relative;
}

.custom-intro {
  font-size: 15px;
  margin: 8px 0 14px;
}

.custom-list { margin: 14px 0; }
.custom-list li { font-size: 14.5px; padding: 6px 0; }

.custom-summary {
  background: #fff;
  border: 1px solid #ffd9b3;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 14px 0;
}

.custom-summary .summary-total {
  font-size: 18px;
  font-weight: 800;
}

.custom-summary .summary-total span:last-child {
  color: var(--accent);
}

/* ============================================
   EXCLUSIVITY BANNER (custom video USP)
   ============================================ */

.exclusive-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  margin: 16px 0 20px;
  border: 1px solid #10b981;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.18);
}

.exclusive-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.exclusive-title {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #6ee7b7;
  margin-bottom: 4px;
}

.exclusive-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: #ecfdf5;
}

.exclusive-desc strong {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ============================================
   PREMIUM BUTTON (custom video CTA)
   ============================================ */

.pay-btn-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(245, 158, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
  -webkit-tap-highlight-color: transparent;
}

.pay-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(245, 158, 11, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.pay-btn-premium:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.premium-icon { font-size: 20px; line-height: 1; }
.premium-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 200ms ease;
}
.pay-btn-premium:hover .premium-arrow { transform: translateX(4px); }

/* ============================================
   CHECKOUT TRUST/REASSURANCE BLOCK
   Sits between the order summary and the Stripe iframe.
   Goal: kill the "what happens after I pay" anxiety that
   makes 90% of checkout-openers leave without paying.
   ============================================ */
.checkout-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 14px;
  padding: 14px 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
}
.trust-item-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-icon-circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.trust-item-row strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #065f46;
  line-height: 1.3;
}
.trust-item-row .trust-sub {
  font-size: 11.5px;
  color: #047857;
  margin-top: 2px;
  line-height: 1.4;
}

/* Social proof / urgency reminder right before the iframe */
.checkout-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 8px 12px;
  background: #fef3c7;
  border-left: 3px solid #f59e0b;
  border-radius: 6px;
  font-size: 12.5px;
  color: #92400e;
  font-weight: 500;
}
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.6);
  animation: dot-pulse 1.8s ease-out infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
