/* =========================================
   LINKEDIN BRAND ENGINE — LANDING PAGE CSS
   ========================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --li-blue: #0077B5;
  --li-blue-light: #00a0dc;
  --purple: #7c3aed;
  --cyan: #06b6d4;
  --bg-dark: #050c18;
  --bg-card: #0d1b2e;
  --bg-card2: #0f2137;
  --border: rgba(255, 255, 255, 0.07);
  --text: #e2e8f0;
  --text-muted: #8aa3bc;
  --gradient: linear-gradient(135deg, var(--li-blue), var(--purple));
  --gradient-text: linear-gradient(90deg, #00a0dc, #7c3aed, #0077B5);
  /* WhatsApp */
  --wa-green: #25D366;
  --wa-green-dark: #1da851;
  --wa-gradient: linear-gradient(135deg, #25D366, #128C7E);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding: 0 0 100px 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(5, 12, 24, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--gradient);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(5, 12, 24, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-link {
  padding: 16px 24px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: #fff;
}

.mobile-cta-link {
  padding: 16px 24px;
  color: var(--li-blue-light);
  text-decoration: none;
  font-weight: 700;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 119, 181, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 181, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbit 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--li-blue);
  top: -100px;
  left: -100px;
  animation-duration: 14s;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: var(--purple);
  top: 40%;
  right: -80px;
  animation-duration: 10s;
  animation-delay: -5s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  bottom: -80px;
  left: 40%;
  animation-duration: 16s;
  animation-delay: -3s;
}

@keyframes orbit {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 30px) scale(1.08);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 119, 181, 0.15);
  border: 1px solid rgba(0, 119, 181, 0.3);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--li-blue-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 119, 181, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 119, 181, 0.5);
}

.btn-primary:hover::after {
  background: rgba(255, 255, 255, 0.07);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  padding: 14px 8px;
}

.btn-ghost:hover {
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.87rem;
}

.avatars {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.av1 {
  background: #0077B5;
}

.av2 {
  background: #7c3aed;
}

.av3 {
  background: #059669;
}

.av4 {
  background: #d97706;
}

/* ---- DASHBOARD CARD ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 119, 181, 0.1);
  animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% {
    transform: translateY(0) rotate(-1deg);
  }

  100% {
    transform: translateY(-12px) rotate(1deg);
  }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dots span:nth-child(1) {
  background: #ff5f57;
}

.dash-dots span:nth-child(2) {
  background: #febc2e;
}

.dash-dots span:nth-child(3) {
  background: #28c840;
}

.dash-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 600;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 1.5s infinite;
}

.dash-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workflow-nodes {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.wf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
  min-width: 70px;
  text-align: center;
}

.wf-node.visible {
  opacity: 1;
  transform: translateY(0);
}

.node-icon {
  font-size: 1.1rem;
}

.node-trigger {
  border-color: rgba(0, 119, 181, 0.4);
}

.node-research {
  border-color: rgba(124, 58, 237, 0.4);
}

.node-ai {
  border-color: rgba(6, 182, 212, 0.4);
}

.node-publish {
  border-color: rgba(34, 197, 94, 0.4);
}

.wf-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.wf-arrow.visible {
  opacity: 1;
}

.post-preview {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.post-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--li-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.post-name {
  font-size: 0.83rem;
  font-weight: 700;
  color: #fff;
}

.post-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.post-text {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.6;
  min-height: 52px;
  margin-bottom: 12px;
}

.cursor {
  animation: blink 0.8s infinite;
  color: var(--li-blue-light);
}

.post-actions {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.post-actions span {
  cursor: pointer;
  transition: color 0.2s;
}

.post-actions span:hover {
  color: var(--li-blue-light);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}

.metric-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--li-blue-light);
}

.metric-label {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-gradient {
  background: linear-gradient(180deg, #070e1a 0%, #0b1628 50%, #070e1a 100%);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--li-blue-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 181, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--c), transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- STEPS GRID (beautiful card layout) ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  margin: 0 8px;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 119, 181, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.step-card:hover::before {
  opacity: 1;
}

.step-card-top {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}

.step-badge {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: var(--gradient);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 119, 181, 0.4);
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 119, 181, 0.5), rgba(124, 58, 237, 0.15));
  margin-left: 12px;
}

.step-emoji {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- AUDIENCE GRID ---- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
}

.audience-emoji {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.audience-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- TWO-COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.col-text .section-sub {
  margin-bottom: 32px;
}

.col-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.deliverable-item:first-child {
  padding-top: 0;
}

.di-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 119, 181, 0.12);
  border: 1px solid rgba(0, 119, 181, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.deliverable-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.deliverable-item p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-featured {
  border-color: rgba(0, 119, 181, 0.4);
  background: rgba(0, 119, 181, 0.07);
  transform: scale(1.02);
}

.testimonial-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.87rem;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq-container {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  margin-top: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--li-blue-light);
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--li-blue-light);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.faq-a.open {
  max-height: 300px;
}

.faq-a p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- PRICING ---- */
.pricing-cards {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pricing-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  width: 100%;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  width: 100%;
  position: relative;
}

.pricing-featured {
  border-color: rgba(0, 119, 181, 0.5);
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.08), rgba(124, 58, 237, 0.06));
  box-shadow: 0 24px 80px rgba(0, 119, 181, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 5px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.price-orig {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.price-now {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
}

.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-guarantee {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 80px 0 120px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(0, 119, 181, 0.15), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(0, 119, 181, 0.3);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.orb-cta-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--li-blue);
  top: -80px;
  left: -80px;
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 50%;
}

.orb-cta-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--purple);
  bottom: -60px;
  right: -60px;
  filter: blur(80px);
  opacity: 0.2;
  border-radius: 50%;
}

.cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-box .btn-primary {
  position: relative;
}

/* ---- FOOTER ---- */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    transform: none;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.65rem;
  }

  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-three {
    grid-template-columns: 1fr;
  }
}

/* ---- OUTLINE BUTTON ---- */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
  border-color: rgba(0, 119, 181, 0.6);
  color: var(--li-blue-light);
  background: rgba(0, 119, 181, 0.06);
}

/* ==== WHATSAPP BUTTON ==== */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-gradient);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  filter: brightness(1.05);
}

.btn-wa:active {
  transform: scale(0.97);
}

.btn-wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-wa.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-wa.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-wa.btn-outline-wa {
  background: transparent;
  color: var(--wa-green);
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: none;
}

.btn-wa.btn-outline-wa:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: var(--wa-green);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

/* ==== STICKY MOBILE WhatsApp BAR ==== */
.mobile-wa-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 20px;
  background: rgba(5, 12, 24, 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.mobile-wa-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-gradient);
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

/* ============================================================
   SUPER MOBILE OPTIMIZATION
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 100px 20px 60px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    transform: none;
  }

  .testimonial-featured:hover {
    transform: translateY(-4px);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-three {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .nav-logo {
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    padding: 90px 20px 60px;
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 12px;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 0.93rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .btn-ghost {
    justify-content: center;
    padding: 10px;
  }

  .hero-visual {
    display: none;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-sub {
    font-size: 0.9rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .feature-card {
    padding: 22px 18px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .step-card {
    margin: 0;
    padding: 24px 20px;
  }

  .step-connector {
    display: none;
  }

  /* Timeline */
  .timeline-line {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.65rem;
  }

  .step-item {
    gap: 16px;
    padding: 24px 0;
  }

  .step-content h3 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  /* Audience */
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .audience-card {
    padding: 22px 18px;
  }

  .audience-emoji {
    font-size: 2rem;
  }

  /* Deliverables */
  .col-list {
    margin-top: 0;
  }

  .deliverable-item {
    gap: 14px;
    padding: 18px 0;
  }

  .di-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .testimonial-featured {
    transform: none;
  }

  /* FAQ */
  .faq-q {
    font-size: 0.9rem;
    padding: 18px 0;
  }

  .faq-a p {
    font-size: 0.85rem;
  }

  /* Metrics */
  .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing */
  .pricing-three {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-featured {
    order: -1;
  }

  /* Show Pro card first on mobile */
  .price-now {
    font-size: 2.6rem !important;
  }

  .pricing-list li {
    font-size: 0.87rem;
  }

  /* CTA */
  .cta-box {
    padding: 48px 20px;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .btn-wa.btn-large {
    padding: 15px 24px;
    font-size: 0.95rem;
    width: 100%;
  }

  .btn-primary.btn-large {
    padding: 15px 24px;
    font-size: 0.95rem;
    width: 100%;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  /* Sticky WhatsApp bar */
  .mobile-wa-bar {
    display: block;
  }

  /* Add bottom padding so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 76px;
  }
}

/* Small mobile (≤420px) */
@media (max-width: 420px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .audience-emoji {
    font-size: 1.8rem;
  }

  .testimonial-card p {
    font-size: 0.83rem;
  }

  .faq-q {
    font-size: 0.85rem;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .price-now {
    font-size: 2.2rem !important;
  }

  .btn-wa,
  .btn-primary,
  .btn-outline {
    padding: 13px 20px;
    font-size: 0.88rem;
  }

  .mobile-wa-bar a {
    font-size: 0.88rem;
    padding: 13px;
  }
}