/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a1a;
  --bg-dark-2: #0f0f2a;
  --bg-light: #f8f6f3;
  --bg-card: #16163a;
  --bg-card-light: #ffffff;
  --text-light: #ffffff;
  --text-muted: #a0a0c0;
  --text-dark: #1a1a2e;
  --text-dark-muted: #555;
  --accent-coral: #ff6b6b;
  --accent-pink: #ee5a9f;
  --accent-purple: #8b5cf6;
  --accent-gold: #f5c542;
  --accent-green: #25d366;
  --gradient-main: linear-gradient(135deg, #ee5a9f, #8b5cf6);
  --gradient-gold: linear-gradient(135deg, #f5c542, #f09819);
  --gradient-dark: linear-gradient(180deg, #0a0a1a, #16163a);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--bg-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-purple);
  border: 2px solid var(--accent-purple);
}

.btn-outline:hover {
  background: var(--accent-purple);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #1a1a2e;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245, 197, 66, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 197, 66, 0.6);
}

.btn-whatsapp {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--gradient-main);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar i {
  margin-right: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  padding: 12px 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  background: rgba(10, 10, 26, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.logo-accent {
  color: #6366f1;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobFloat 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-purple);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-pink);
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-coral);
  top: 50%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-badge i {
  color: var(--accent-green);
}

/* ===== IDENTITY GAP ===== */
.identity-gap {
  background: var(--bg-dark-2);
  color: var(--text-light);
  padding: 100px 0;
  text-align: center;
}

.identity-gap .section-title {
  color: var(--text-light);
}

.identity-gap .gradient-text {
  -webkit-text-fill-color: transparent;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  box-shadow: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 4px solid var(--accent-coral);
  backdrop-filter: blur(10px);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 107, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-coral);
  margin-bottom: 18px;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.4;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-card p strong {
  color: var(--accent-coral);
}

.section-closer {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-closer strong {
  color: var(--accent-coral);
}

.identity-gap .btn {
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-dark);
  padding: 100px 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(139, 92, 246, 0.3);
}

.service-problem {
  background: rgba(255, 107, 107, 0.1);
  border-left: 3px solid var(--accent-coral);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--accent-coral);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-problem i {
  margin-right: 6px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 18px;
  line-height: 1.4;
}

.icon-google {
  color: #4285f4;
  margin-right: 8px;
}

.icon-insta {
  color: #e1306c;
  margin-right: 8px;
}

.icon-web {
  color: var(--accent-purple);
  margin-right: 8px;
}

.service-outcomes {
  margin-bottom: 20px;
}

.service-outcomes li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-outcomes i {
  color: var(--accent-green);
  margin-top: 4px;
  flex-shrink: 0;
}

.service-testimonial {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
}

.service-testimonial i {
  color: var(--accent-purple);
  margin-right: 6px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-meta i {
  color: var(--accent-purple);
  margin-right: 4px;
}

.you-vs-we {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.you-col,
.we-col {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.col-label {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.you-col .col-label {
  color: var(--accent-coral);
}

.we-col .col-label {
  color: var(--accent-green);
}

.you-col p,
.we-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.vs-divider {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== BUNDLE ===== */
.bundle {
  background: var(--bg-dark-2);
  padding: 100px 0;
  text-align: center;
}

.bundle-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid rgba(245, 197, 66, 0.3);
  box-shadow: 0 0 40px rgba(245, 197, 66, 0.1);
}

.bundle-table {
  margin-bottom: 28px;
}

.bundle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  text-align: left;
  gap: 12px;
}

.bundle-row span:first-child {
  flex: 1;
}

.bundle-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
}

.bundle-row i {
  margin-right: 8px;
  color: var(--accent-purple);
}

.bundle-row.bonus i {
  color: var(--accent-gold);
}

.bundle-row.bonus {
  color: var(--accent-gold);
}

.bundle-header {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.bundle-total {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}

.total-value {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.bundle-investment {
  background: rgba(245, 197, 66, 0.08);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border-bottom: none;
}

.investment-value {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bundle-guarantee {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.bundle-guarantee i {
  color: var(--accent-green);
  margin-right: 6px;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 100px 0;
}

.pricing .section-title {
  color: var(--text-light);
}

.pricing .section-sub {
  color: var(--text-muted);
}

.currency-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.currency-btn {
  padding: 10px 24px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.currency-btn:first-child {
  border-radius: 50px 0 0 50px;
}

.currency-btn:last-child {
  border-radius: 0 50px 50px 0;
  border-left: none;
}

.currency-btn.active {
  background: var(--gradient-main);
  color: #fff;
  border-color: var(--accent-purple);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 10px 24px;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  color: var(--text-muted);
}

.pricing-tab.active {
  background: var(--gradient-main);
  color: #fff;
}

.pricing-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-grid.active {
  display: grid;
}

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: none;
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(139, 92, 246, 0.3);
}

.price-card.popular {
  border-color: var(--accent-purple);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
  z-index: 2;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), var(--bg-card));
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.price-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.price-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #fff;
}

.price {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.price-card ul {
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.price-card li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card li i {
  color: var(--accent-green);
  flex-shrink: 0;
  font-size: 0.8rem;
}

.price-card .btn {
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-note a {
  color: var(--accent-pink);
  font-weight: 600;
  text-decoration: underline;
}

/* ===== PROCESS ===== */
.process {
  background: var(--bg-dark);
  padding: 100px 0;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  max-width: 280px;
  padding: 20px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(139, 92, 246, 0.1);
  font-family: var(--font-heading);
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-line {
  width: 60px;
  height: 2px;
  background: var(--gradient-main);
  margin-top: 56px;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg-dark-2);
  padding: 100px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-4px);
}

.stars {
  margin-bottom: 16px;
  color: var(--accent-gold);
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-bar {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.stat-bar i {
  color: var(--accent-purple);
  margin-right: 8px;
}

/* ===== URGENCY ===== */
.urgency {
  background: var(--gradient-main);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.urgency p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.urgency p:last-of-type {
  margin-bottom: 24px;
}

.urgency i {
  margin-right: 6px;
}

.urgency .btn {
  background: #fff;
  color: var(--accent-purple);
  font-weight: 700;
}

.urgency .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-dark);
  padding: 100px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  gap: 16px;
}

.faq-question i {
  color: var(--accent-purple);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--gradient-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
  top: -200px;
  right: -100px;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.response-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.response-badge i {
  color: var(--accent-gold);
  margin-right: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: #060612;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-pink);
}

.footer-contact i {
  margin-right: 6px;
  color: var(--accent-purple);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gradient-main);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.15);
  }
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #0a0a1a;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.4s ease;
    z-index: 1001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    border-left: 1px solid rgba(139, 92, 246, 0.2);
  }

  .nav-links.active {
    display: flex;
    right: 0;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
    gap: 10px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .price-card.popular {
    transform: none;
  }

  .price-card.popular:hover {
    transform: translateY(-6px);
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-line {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .you-vs-we {
    flex-direction: column;
    gap: 16px;
  }

  .bundle-row {
    font-size: 0.8rem;
    padding: 10px 8px;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .bundle-card {
    padding: 24px 16px;
  }

  .price-card {
    padding: 24px 16px;
  }

  .service-card {
    padding: 24px 18px;
  }
}
