/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #ff0033;
  --red-dark: #cc0029;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #252525;
  --white: #ffffff;
  --gray: #888;
  --gray-light: #ccc;
  --wa-green: #075e54;
  --wa-header: #128c7e;
  --wa-bg: #0b141a;
  --wa-chat-bg: #0b141a;
  --wa-bubble-out: #005c4b;
  --wa-bubble-in: #1f2c34;
  --wa-text: #e9edef;
  --wa-time: #8696a0;
  --warning: #ff4444;
  --gold: #ffd700;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-weight: 900; letter-spacing: -0.02em; }

.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 0, 51, 0.4);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 3rem;
  max-width: 700px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
  border-bottom: 1px solid #222;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 0, 51, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 0, 51, 0.08) 0%, transparent 50%),
    var(--black);
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(255, 0, 51, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  color: var(--red);
  display: block;
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--gray-light);
  max-width: 800px;
  margin-bottom: 2.5rem;
}

.hero-tagline strong {
  color: var(--white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.stat-box {
  background: var(--dark-2);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 1.2rem 2rem;
  min-width: 160px;
}

.stat-box .number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  display: block;
}

.stat-box .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 0, 51, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  color: var(--gray);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== WARNING BANNER ===== */
.warning-banner {
  background: var(--red);
  padding: 1.5rem;
  text-align: center;
  font-weight: 800;
  font-size: clamp(1rem, 3vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== PROFILE CARD ===== */
.profile-card {
  background: var(--dark-2);
  border: 1px solid #333;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .profile-card { grid-template-columns: 1fr 1fr; }
}

.profile-card h3 {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 1rem;
}

.profile-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.profile-detail .icon {
  color: var(--red);
  font-weight: 900;
  min-width: 20px;
}

.profile-detail .value {
  color: var(--gray-light);
  word-break: break-all;
}

.red-flags {
  list-style: none;
}

.red-flags li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #333;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.red-flags li::before {
  content: '⚠';
  color: var(--red);
  flex-shrink: 0;
}

/* ===== WHATSAPP PHONE MOCKUP ===== */
.phone-section {
  background: var(--dark);
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .phone-grid { grid-template-columns: 1fr 1fr; }
}

.phone-grid.single { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

.chat-story {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-story-label {
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  align-self: flex-start;
}

.chat-story-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.phone {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(255, 0, 51, 0.1);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  background: var(--wa-chat-bg);
  border-radius: 32px;
  overflow: hidden;
  height: 620px;
  display: flex;
  flex-direction: column;
}

.wa-status-bar {
  background: var(--wa-header);
  padding: 36px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--wa-text);
  flex-shrink: 0;
}

.wa-header {
  background: var(--wa-header);
  padding: 8px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.wa-contact-info { flex: 1; min-width: 0; }

.wa-contact-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wa-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-contact-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.wa-chat {
  flex: 1;
  overflow-y: auto;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    var(--wa-chat-bg);
}

.wa-date-divider {
  text-align: center;
  margin: 8px 0;
}

.wa-date-divider span {
  background: #182229;
  color: var(--wa-time);
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 8px;
}

.wa-bubble {
  max-width: 82%;
  padding: 6px 8px 4px;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--wa-text);
  position: relative;
  word-break: break-word;
}

.wa-bubble.in {
  background: var(--wa-bubble-in);
  align-self: flex-start;
  border-top-left-radius: 0;
}

.wa-bubble.out {
  background: var(--wa-bubble-out);
  align-self: flex-end;
  border-top-right-radius: 0;
}

.wa-bubble .time {
  font-size: 0.65rem;
  color: var(--wa-time);
  text-align: right;
  margin-top: 2px;
  display: block;
}

.wa-bubble.out .time { color: rgba(134, 150, 160, 0.9); }

.wa-bubble .highlight-text {
  color: #53bdeb;
}

.wa-bubble .money-text {
  color: #ffd700;
  font-weight: 700;
}

.wa-bubble img.payment-img {
  width: 100%;
  border-radius: 6px;
  margin-top: 4px;
  display: block;
}

.wa-input-bar {
  background: var(--wa-header);
  padding: 8px 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wa-input-fake {
  flex: 1;
  background: #2a3942;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--wa-time);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), #333);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--black);
  transform: translateX(-5.5px);
}

.timeline-item.broken::before { background: #666; }

.timeline-date {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.timeline-tag {
  display: inline-block;
  background: rgba(255, 0, 51, 0.2);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-top: 0.5rem;
}

.timeline-tag.lie {
  background: rgba(255, 68, 68, 0.3);
  color: #ff6666;
}

/* ===== EVIDENCE GALLERY ===== */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.evidence-card {
  background: var(--dark-2);
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.evidence-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.evidence-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  display: block;
  cursor: pointer;
}

.privacy-placeholder {
  height: 220px;
  background: var(--dark-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #333;
  padding: 1.5rem;
  text-align: center;
}

.privacy-placeholder .lock-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.privacy-placeholder .privacy-text {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.privacy-placeholder .privacy-sub {
  font-size: 0.75rem;
  color: var(--gray);
}

.evidence-card .caption {
  padding: 1rem;
}

.evidence-card .caption h4 {
  font-size: 0.9rem;
  color: var(--red);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.evidence-card .caption p {
  font-size: 0.85rem;
  color: var(--gray-light);
}

/* ===== VIDEO SECTION ===== */
.video-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 2px solid var(--red);
  border-radius: 8px;
  overflow: hidden;
}

/* ===== MISSING / UNDELIVERED ===== */
.missing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.missing-card {
  background: var(--dark-2);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.missing-card .missing-icon {
  display: block;
  font-size: 2.5rem;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.missing-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.missing-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* ===== TABLE SCROLL (mobile) ===== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding-bottom: 0.5rem;
}

.table-scroll .compare-table {
  min-width: 520px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--red);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.compare-table td {
  padding: 1rem;
  border-bottom: 1px solid #333;
  vertical-align: top;
}

.compare-table tr:nth-child(even) td { background: var(--dark-2); }

.compare-table .promised { color: #4caf50; }
.compare-table .delivered { color: var(--red); font-weight: 700; }
.compare-table .missing { color: var(--red); font-weight: 900; }

/* ===== EXCUSE WALL ===== */
.excuse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.excuse-card {
  background: var(--dark-2);
  border: 1px solid #333;
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 1.2rem;
}

.excuse-card .date {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.excuse-card .promise {
  font-size: 0.85rem;
  color: #4caf50;
  margin-bottom: 0.4rem;
}

.excuse-card .promise::before { content: '✓ Promised: '; font-weight: 700; }

.excuse-card .reality {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
}

.excuse-card .reality::before { content: '✗ Reality: '; font-weight: 900; }

/* ===== FINAL CTA ===== */
.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(255, 0, 51, 0.2) 0%, transparent 70%),
    var(--dark);
  text-align: center;
  padding: 6rem 1.5rem;
}

.final-cta h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.final-cta h2 span { color: var(--red); }

.final-cta p {
  font-size: 1.2rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  border-top: 1px solid #222;
}

footer a { color: var(--gray-light); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STICKY WARNING ===== */
.sticky-warning {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-warning.show { transform: translateY(0); }

body { padding-bottom: 50px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .container { padding: 0 1rem; }

  .hero {
    min-height: auto;
    padding: 2.5rem 1rem 3.5rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
  }

  .stat-box {
    min-width: unset;
    padding: 1rem 0.75rem;
  }

  .stat-box .number {
    font-size: 1.6rem;
  }

  .stat-box .label {
    font-size: 0.68rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }

  .warning-banner {
    font-size: 0.85rem;
    padding: 1rem 0.75rem;
    line-height: 1.4;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .profile-card {
    padding: 1.25rem;
  }

  .phone {
    max-width: 100%;
    border-radius: 32px;
    padding: 10px;
  }

  .phone-notch {
    width: 100px;
    height: 24px;
  }

  .phone-screen {
    height: 520px;
    border-radius: 26px;
  }

  .wa-bubble {
    font-size: 0.78rem;
    max-width: 88%;
  }

  .wa-bubble img.payment-img {
    max-height: none;
    object-fit: contain;
  }

  .phone-grid {
    gap: 2.5rem;
  }

  .chat-story-desc {
    font-size: 0.85rem;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .evidence-card img {
    height: auto;
    max-height: 280px;
    object-fit: contain;
    background: #111;
  }

  .missing-grid {
    grid-template-columns: 1fr;
  }

  .excuse-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item {
    padding-left: 1rem;
  }

  .timeline-item::before {
    left: -1.5rem;
  }

  .final-cta {
    padding: 4rem 1rem;
  }

  .final-cta p {
    font-size: 1rem;
  }

  .share-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .sticky-warning {
    font-size: 0.65rem;
    padding: 0.65rem 0.5rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
  }

  body { padding-bottom: 56px; }

  .scroll-hint { display: none; }
}

/* ===== MOBILE STACKED TABLE (under 600px) ===== */
@media (max-width: 600px) {
  .compare-table, 
  .compare-table thead, 
  .compare-table tbody, 
  .compare-table th, 
  .compare-table td, 
  .compare-table tr { 
    display: block; 
  }
  
  .compare-table thead {
    display: none;
  }
  
  .compare-table tr {
    margin-bottom: 1.5rem;
    border: 1px solid #333;
    border-radius: 8px;
    background: var(--dark-2);
    overflow: hidden;
  }
  
  .compare-table td {
    padding: 1rem;
    border-bottom: 1px solid #222;
    text-align: left;
  }
  
  .compare-table td:last-child {
    border-bottom: none;
  }
  
  .compare-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.4rem;
  }
  
  .table-scroll .compare-table {
    min-width: unset;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 2rem; }

  .phone-screen { height: 460px; }

  .stat-box .number { font-size: 1.4rem; }

  .compare-table th,
  .compare-table td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

@media (hover: none) {
  .evidence-card:hover { transform: none; }
  .btn-primary:hover { transform: none; box-shadow: none; }
}
