/* ═══════════════════════════════════════════════════════════ */
/* RONDAPP LANDING — DARK PREMIUM THEME (Vanilla)             */
/* ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ── */
:root {
  --gold: #C49B3C;
  --gold-light: #e8c44a;
  --gold-dim: rgba(196, 155, 60, 0.15);
  --accent: #FF5722;
  --accent-light: #FF7547;
  --accent-dim: rgba(255, 87, 34, 0.15);
  --bg-1: #0B132B;
  --bg-2: #1C2541;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8e8f0;
  --text-muted: rgba(232, 232, 240, 0.55);
}

/* ── GLOBAL RESETS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-1);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { cursor: pointer; text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; border-radius: 16px; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── RESPONSIVE HELPERS ── */
.desktop-only { display: none !important; }
.mobile-only  { display: flex !important; }

@media (min-width: 1025px) {
  .desktop-only { display: flex !important; }
  .mobile-only  { display: none !important; }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── UTILITY ── */
.gold-gradient {
  background: linear-gradient(135deg, #c49b3c, #e8c44a, #c49b3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orange-gradient {
  background: linear-gradient(135deg, #FF5722, #FF8A65, #FF5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.w-100 { width: 100%; display: block; text-align: center; }
.mb-2 { margin-bottom: 12px; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border: none; border-radius: 12px;
  font-weight: 700; font-size: 1rem;
  padding: 14px 28px;
  cursor: pointer; transition: all 0.25s;
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 87, 34, 0.45);
  color: #fff;
}
.btn-gold.btn-xl { font-size: 1.05rem; padding: 16px 32px; border-radius: 14px; }

.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(255, 87, 34, 0.5);
  border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  padding: 12px 24px;
  cursor: pointer; transition: all 0.25s;
  white-space: nowrap;
}
.btn-outline-gold:hover {
  border-color: var(--accent);
  background: rgba(255, 87, 34, 0.08);
  color: var(--accent);
}
.btn-outline-gold.btn-xl { font-size: 1.05rem; padding: 16px 32px; border-radius: 14px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-weight: 600; font-size: 1rem;
  padding: 14px 28px;
  cursor: pointer; transition: all 0.25s;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost.btn-xl { font-size: 1.05rem; padding: 16px 32px; border-radius: 14px; }

/* ══════════════════════════════════════════════ */
/* WHATSAPP FLOATING BUTTON                       */
/* ══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

.wa-tooltip {
  position: absolute; right: 66px;
  background: #1C2541; color: #e8e8f0;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 14px; border-radius: 10px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════ */
/* HEADER                                         */
/* ══════════════════════════════════════════════ */
.landing-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0 24px;
  background: rgba(11, 19, 43, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-header.scrolled {
  background: rgba(11, 19, 43, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  height: 64px;
  display: flex; align-items: center; gap: 32px;
}

.header-logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #c49b3c, #e8c44a);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #0B132B; font-size: 1rem;
}
.logo-icon.sm { width: 32px; height: 32px; font-size: 0.9rem; border-radius: 8px; }
.logo-text { font-size: 1.2rem; font-weight: 800; color: #e8e8f0; letter-spacing: -0.5px; }

.header-nav { display: flex; align-items: center; gap: 8px; flex: 1; }
.nav-link {
  color: var(--text-muted); font-size: 0.92rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; transition: all 0.2s; cursor: pointer;
}
.nav-link:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.header-ctas { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Mobile hamburger */
.hamburger {
  margin-left: auto;
  background: none; border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--text);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem;
}

.mobile-menu {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(11, 19, 43, 0.99);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { max-height: 420px; }

.mobile-nav-link {
  display: block; padding: 14px 24px;
  color: var(--text-muted); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav-link:active { color: var(--gold); }
.mobile-ctas { padding: 16px 24px; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════ */
/* HERO                                           */
/* ══════════════════════════════════════════════ */
.hero-section {
  display: flex; align-items: center;
  position: relative; padding: 120px 0 80px; overflow: hidden;
}

.hero-bg-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(196, 155, 60, 0.12) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { text-align: center; position: relative; z-index: 1; width: 100%; }

.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(196, 155, 60, 0.1); border: 1px solid rgba(196, 155, 60, 0.3);
  border-radius: 100px; padding: 7px 18px;
  font-size: 0.82rem; font-weight: 600; color: #c49b3c; margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 20px; color: #fff;
}

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px; margin: 0 auto 32px; line-height: 1.7;
}

.hero-ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}

.micro-copy { font-size: 0.82rem; color: var(--text-muted); }

/* Mockup */
.hero-mockup {
  position: relative;
  max-width: 980px; margin: 48px auto 0;
  animation: float 6s ease-in-out infinite;
  width: 100%;
}
.mockup-glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 80px;
  background: radial-gradient(ellipse, rgba(196,155,60,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.mockup-img {
  width: 100%; border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 120px rgba(0,0,0,0.6),
    0 0 80px rgba(196,155,60,0.12);
}

/* ── CSS Laptop Frame ── */
.laptop-frame {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.laptop-screen {
  position: relative;
  background: #1C2541;
  border-radius: 12px 12px 0 0;
  border: 3px solid #2a2a3a;
  border-bottom: none;
  padding: 8px 8px 0;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 120px rgba(0,0,0,0.6),
    0 0 80px rgba(196,155,60,0.1);
}
.laptop-screen::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #3a3a4a;
  border-radius: 50%;
  margin: 0 auto 6px;
}
.laptop-screen img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}
.laptop-base {
  position: relative;
  width: 100%;
  height: 16px;
  background: linear-gradient(180deg, #2a2a3a 0%, #1f1f2f 100%);
  border-radius: 0 0 4px 4px;
  border: 3px solid #2a2a3a;
  border-top: 1px solid #3a3a4a;
}
.laptop-base::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 4px;
  background: #3a3a4a;
  border-radius: 2px;
}
.laptop-base::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 15%; right: 15%;
  height: 8px;
  background: linear-gradient(180deg, #222233 0%, #1a1a2a 100%);
  border-radius: 0 0 12px 12px;
  border: 2px solid #2a2a3a;
  border-top: none;
}

/* ── Laptop Frame Small (for feature sections) ── */
.laptop-frame-sm { position: relative; width: 100%; }
.laptop-frame-sm .laptop-screen {
  padding: 6px 6px 0;
  border-radius: 10px 10px 0 0;
  border-width: 2px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.5);
}
.laptop-frame-sm .laptop-screen::before { width: 6px; height: 6px; margin-bottom: 4px; }
.laptop-frame-sm .laptop-base { height: 12px; border-width: 2px; }
.laptop-frame-sm .laptop-base::before { width: 40px; height: 3px; }
.laptop-frame-sm .laptop-base::after {
  bottom: -6px; height: 6px;
  left: 18%; right: 18%;
  border-radius: 0 0 8px 8px;
}

/* ══════════════════════════════════════════════ */
/* CLIENTS                                        */
/* ══════════════════════════════════════════════ */
.clients-section {
  padding: 48px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(11, 19, 43, 0.6);
}

.clients-label {
  text-align: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 32px;
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.client-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: center;
  width: 200px; height: 110px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.client-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 155, 60, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.client-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: grayscale(20%) brightness(0.95);
  transition: filter 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0%) brightness(1.05);
}

/* ══════════════════════════════════════════════ */
/* AUDIENCE BAR                                   */
/* ══════════════════════════════════════════════ */
.audience-bar {
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: var(--accent);
}
.audience-title {
  letter-spacing: 2px; font-size: 0.85rem;
  text-transform: uppercase; font-weight: 800;
  color: rgba(11, 19, 43, 0.7); margin-bottom: 16px;
}
.audience-icons {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 20px 28px;
}
.audience-item {
  color: var(--bg-1); font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.audience-item:hover { transform: translateY(-3px); }
.audience-item i { font-size: 1.6rem; color: var(--bg-1); }

/* ══════════════════════════════════════════════ */
/* HOW IT WORKS                                   */
/* ══════════════════════════════════════════════ */
.how-it-works-section { padding: 80px 0; }

.section-header { margin-bottom: 56px; }
.section-badge {
  display: inline-block;
  background: rgba(196, 155, 60, 0.1); border: 1px solid rgba(196, 155, 60, 0.3);
  border-radius: 100px; padding: 6px 18px;
  font-size: 0.8rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.5px;
  color: #fff; margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 540px; margin: 0 auto; line-height: 1.7;
}

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

.step-card {
  text-align: center; padding: 28px 20px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  height: 100%; transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(196,155,60,0.3);
}
.step-number {
  font-size: 2.2rem; font-weight: 900; color: var(--gold); opacity: 0.5; margin-bottom: 14px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ══════════════════════════════════════════════ */
/* FEATURES                                       */
/* ══════════════════════════════════════════════ */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0B132B 0%, #1C2541 50%, #0B132B 100%);
}

.feature-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; margin-bottom: 80px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.feature-img-glow { position: absolute; inset: -20%; z-index: 0; pointer-events: none; }
.feature-img-wrap img {
  position: relative; z-index: 1; width: 100%;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.07), 0 30px 80px rgba(0,0,0,0.5);
}

.feature-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  border: 1.5px solid; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 16px;
}

.feature-title { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 800; letter-spacing: -0.5px; color: #fff; margin-bottom: 14px; }
.feature-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }

.feature-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.5;
}
.feature-bullets li i { margin-top: 4px; flex-shrink: 0; }
.feature-bullets li strong { color: var(--text); }

/* ══════════════════════════════════════════════ */
/* FEATURES COMPACT GRID                          */
/* ══════════════════════════════════════════════ */
.features-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-chip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 20px;
  transition: all 0.3s ease;
}
.feature-chip:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(196,155,60,0.2);
  transform: translateY(-3px);
}

.feature-chip-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-chip-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feature-chip-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════ */
/* TESTIMONIALS                                   */
/* ══════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-1);
}

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

.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,155,60,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.testimonial-stars {
  display: flex; gap: 4px;
  color: var(--gold); margin-bottom: 18px;
  font-size: 0.9rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testimonial-logo-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  padding: 4px;
}

.testimonial-name {
  font-weight: 700; font-size: 0.95rem;
  color: var(--text);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════ */
/* BEFORE VS AFTER                                */
/* ══════════════════════════════════════════════ */
.before-after-section {
  padding: 80px 0;
  background: rgba(11, 19, 43, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 900px; margin: 0 auto;
}

.comparison-card {
  padding: 28px; border-radius: 16px; height: 100%;
}
.comparison-card.bad {
  background: rgba(220, 53, 69, 0.05);
  border: 1px solid rgba(220, 53, 69, 0.25);
}
.comparison-card.good {
  background: rgba(25, 135, 84, 0.05);
  border: 1px solid rgba(25, 135, 84, 0.25);
}
.comparison-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.comparison-card.bad h3 { color: #dc3545; }
.comparison-card.good h3 { color: #4caf50; }
.comparison-card h3 i { margin-right: 8px; }

.comparison-card ul { display: flex; flex-direction: column; gap: 12px; }
.comparison-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.4; }
.comparison-card.bad li { color: var(--text-muted); }
.comparison-card.bad li i { color: rgba(220, 53, 69, 0.75); margin-top: 3px; flex-shrink: 0; }
.comparison-card.good li { color: #fff; }
.comparison-card.good li i { color: #4caf50; margin-top: 3px; flex-shrink: 0; }

/* ══════════════════════════════════════════════ */
/* PRICING                                        */
/* ══════════════════════════════════════════════ */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0B132B, #1C2541);
}

.pricing-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 860px; margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 155, 60, 0.25);
  border-radius: 24px; overflow: visible; position: relative;
  display: flex; flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 40px 100px rgba(0,0,0,0.4);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 50px 120px rgba(0,0,0,0.5);
}

.pricing-card.featured { border: 2px solid var(--accent); z-index: 2; transform: scale(1.02); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #FF5722, #FF8A65);
  color: #0B132B; font-size: 0.8rem; font-weight: 800;
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.5px; z-index: 5;
  box-shadow: 0 4px 12px rgba(196,155,60,0.4); white-space: nowrap;
}

.pricing-header-bar { text-align: center; padding: 32px 24px 12px; }
.pricing-plan-name { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: 1px; }

.pricing-price-wrap { padding: 0 24px 24px; text-align: center; border-bottom: 1px solid var(--border); }

.price-original {
  text-decoration: line-through; color: var(--text-muted);
  font-size: 1.1rem; font-weight: 600; margin-bottom: -10px;
}
.pricing-price { display: flex; align-items: center; justify-content: center; gap: 2px; }
.price-currency { font-size: 1.8rem; font-weight: 800; color: var(--gold); margin-top: -12px; }
.price-amount { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -2px; }
.price-period { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; margin-top: 6px; }

.pricing-features-list { padding: 28px 28px 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }

.pricing-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.4;
}
.pricing-feature i { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.pricing-feature.highlight span { color: #fff; }

.pricing-cta-wrap { padding: 0 28px 28px; }

.pricing-note { text-align: center; font-size: 0.88rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════ */
/* FAQ                                            */
/* ══════════════════════════════════════════════ */
.faq-section { padding: 80px 0; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%; background: transparent; border: none;
  color: #fff; font-size: 0.98rem; font-weight: 700;
  padding: 18px 0; text-align: left;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  font-family: 'Inter', sans-serif; gap: 16px;
}
.faq-question i {
  color: var(--text-muted); font-size: 0.85rem;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--gold); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted); font-size: 0.93rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ══════════════════════════════════════════════ */
/* FINAL CTA                                      */
/* ══════════════════════════════════════════════ */
.final-cta-section { padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.final-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(196,155,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.5px; color: #fff; margin-bottom: 14px;
}
.final-cta-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; }
.final-cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}

/* ══════════════════════════════════════════════ */
/* FOOTER                                         */
/* ══════════════════════════════════════════════ */
.landing-footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.footer-col a { font-size: 0.88rem; color: var(--text-muted); cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; gap: 10px;
}

.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 1.1rem; color: var(--text-muted); cursor: pointer; transition: color 0.2s; }
.footer-social a:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════ */
/* RESPONSIVE — TABLET (≤1024px)                             */
/* ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-block { gap: 48px; }
}

/* ══════════════════════════════════════════════════════════ */
/* RESPONSIVE — MOBILE (≤768px)                              */
/* ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Header */
  .landing-header { padding: 0 18px; }
  .header-inner { height: 60px; gap: 12px; }

  /* Hero */
  .hero-section { padding: 88px 0 48px; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 18px; }
  .hero-headline {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
    letter-spacing: -1px; line-height: 1.12;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline-gold,
  .hero-ctas .btn-ghost { width: 100%; max-width: 100%; }
  .cta-wrapper { width: 100%; }
  .hero-mockup {
    margin-top: 36px;
    max-width: 100%;
    animation: none; /* disable float on mobile for performance */
  }
  .mockup-img { border-radius: 12px; }

  /* Clients */
  .clients-section { padding: 36px 0 40px; }
  .clients-grid { gap: 14px; }
  .client-card { width: calc(50% - 8px); height: 90px; padding: 14px 18px; }

  /* Audience bar */
  .audience-bar { padding: 28px 0; }
  .audience-icons { gap: 14px 20px; }
  .audience-item { font-size: 0.8rem; gap: 4px; }
  .audience-item i { font-size: 1.1rem; }

  /* How it works */
  .how-it-works-section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { padding: 24px 18px; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-number { font-size: 2rem; margin-bottom: 0; flex-shrink: 0; line-height: 1; }

  /* Features */
  .features-section { padding: 64px 0; }
  .features-compact-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-chip { padding: 18px 16px; }

  /* Testimonials */
  .testimonials-section { padding: 64px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .testimonial-card { padding: 24px; }

  /* Before/After */
  .before-after-section { padding: 64px 0; }
  .comparison-grid { grid-template-columns: 1fr; gap: 16px; }
  .comparison-card { padding: 22px; }

  /* Pricing — fix the featured card scale issue */
  .pricing-section { padding: 64px 0; }
  .pricing-cards-grid { grid-template-columns: 1fr; gap: 32px; max-width: 420px; }
  .pricing-card.featured {
    transform: none; /* remove scale on mobile — looks bad stacked */
    margin-top: 16px;
  }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .pricing-popular-badge { font-size: 0.75rem; padding: 5px 12px; }
  .pricing-header-bar { padding: 20px 20px 10px; }
  .pricing-price-wrap { padding: 0 20px 20px; }
  .price-amount { font-size: 3rem; }
  .pricing-features-list { padding: 20px; }
  .pricing-cta-wrap { padding: 0 20px 20px; }

  /* FAQ */
  .faq-section { padding: 64px 0; }
  .faq-question { font-size: 0.92rem; padding: 16px 0; }

  /* Final CTA */
  .final-cta-section { padding: 72px 0; }
  .final-cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .final-cta-btns .btn-gold,
  .final-cta-btns .btn-ghost { width: 100%; }
  .final-cta-title { letter-spacing: -0.5px; }

  /* Footer */
  .landing-footer { padding: 40px 0 24px; }
  .footer-top { flex-direction: column; gap: 24px; margin-bottom: 28px; }
  .footer-links { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Floating WA */
  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
  .wa-tooltip { display: none; }
}

/* ══════════════════════════════════════════════════════════ */
/* RESPONSIVE — SMALL MOBILE (≤420px)                        */
/* ══════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .features-compact-grid { grid-template-columns: 1fr; }

  .container { padding: 0 14px; }
  .hero-headline { font-size: clamp(1.65rem, 9vw, 2.4rem); }
  .hero-sub { font-size: 0.9rem; }
  .btn-gold.btn-xl,
  .btn-outline-gold.btn-xl,
  .btn-ghost.btn-xl { font-size: 0.95rem; padding: 14px 20px; }
  .audience-icons { gap: 10px 16px; }
  .step-card { padding: 18px 14px; }
  .pricing-cards-grid { max-width: 100%; }
  .section-title { letter-spacing: -0.3px; }
}

/* ══════════════════════════════════════════════ */
/* FEATURE SPLIT SECTIONS (FUDO STYLE)            */
/* ══════════════════════════════════════════════ */
.feature-split-section {
  padding: 80px 0;
  background: var(--bg-1);
}
.feature-split-section:nth-of-type(even) {
  background: var(--bg-2);
}
.feature-split-container {
  display: flex;
  align-items: center;
  gap: 64px;
}
.feature-split-reverse {
  flex-direction: row-reverse;
}
.feature-split-text {
  flex: 1;
}
.feature-split-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.feature-split-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #fff;
}
.feature-split-title .highlight {
  color: var(--accent);
}
.feature-split-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-split-cta {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  gap: 8px;
  transition: transform 0.2s;
}
.feature-split-cta:hover {
  transform: translateX(4px);
}
.feature-split-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.abstract-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  font-size: 3rem;
}
@media (max-width: 900px) {
  .feature-split-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .feature-split-reverse {
    flex-direction: column;
  }
}
