/* ========================================
   PIXFIND — Premium Institutional Website
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --purple: #7B1FA2;
  --purple-mid: #9C27B0;
  --purple-light: #CE93D8;
  --pink: #E91E8C;
  --coral: #FF6B6B;
  --orange: #FF8C42;
  --gradient-brand: linear-gradient(135deg, #7B1FA2 0%, #E91E8C 50%, #FF8C42 100%);
  --gradient-hero: linear-gradient(135deg, #1a0033 0%, #2d0060 40%, #1a003a 100%);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --dark-bg: #0d0020;
  --card-bg: rgba(255, 255, 255, 0.04);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-mid);
  border-radius: 3px;
}

/* ── Utility ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--pink);
  border-radius: 1px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 24px rgba(233, 30, 140, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(233, 30, 140, 0.55);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ── Ambient orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.25;
}

.orb-purple {
  background: #7B1FA2;
}

.orb-pink {
  background: #E91E8C;
}

.orb-orange {
  background: #FF8C42;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 0, 32, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero .orb {
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero .orb:nth-child(1) {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
  animation-delay: 0s;
}

.hero .orb:nth-child(2) {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  animation-delay: -3s;
}

.hero .orb:nth-child(3) {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  animation-delay: -5s;
}

@keyframes floatOrb {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(40px) scale(1.08);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 30, 140, 0.15);
  border: 1px solid rgba(233, 30, 140, 0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #F48FB1;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-mockup {
  width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

.phone-screen {
  background: linear-gradient(160deg, #1e0040 0%, #2d0060 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: 20px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-logo-txt {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.phone-avatar-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(#1e0040, #1e0040) padding-box,
    var(--gradient-brand) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.6);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(233, 30, 140, 0);
  }
}

.phone-scan-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 1px;
}

.phone-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  flex: 1;
}

.phone-photo {
  border-radius: 10px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.phone-photo.matched {
  background: rgba(233, 30, 140, 0.2);
  border: 2px solid var(--pink);
  animation: matchBlink 2s ease-in-out infinite;
}

@keyframes matchBlink {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.5);
  }

  50% {
    box-shadow: 0 0 12px 4px rgba(233, 30, 140, 0.3);
  }
}

.phone-result-bar {
  background: rgba(233, 30, 140, 0.15);
  border: 1px solid rgba(233, 30, 140, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.72rem;
  color: #F48FB1;
  font-weight: 600;
  text-align: center;
}

/* Floating badges on hero visual */
.float-badge {
  position: absolute;
  background: rgba(13, 0, 32, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 600;
}

.float-badge .icon {
  font-size: 1.3rem;
}

.float-badge-1 {
  top: 10%;
  right: -40px;
  animation: floatBadge 3s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 20%;
  left: -50px;
  animation: floatBadge 3s ease-in-out infinite 1.5s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.section-how {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #120028 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.666% + 30px);
  right: calc(16.666% + 30px);
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.35;
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover .step-icon {
  border-color: var(--pink);
  background: rgba(233, 30, 140, 0.1);
  box-shadow: 0 0 30px rgba(233, 30, 140, 0.3);
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-brand);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================
   FEATURES
   ========================================== */
.section-features {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 30, 140, 0.4);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(233, 30, 140, 0.12);
  border: 1px solid rgba(233, 30, 140, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================
   FOR PHOTOGRAPHERS / GUESTS TABS
   ========================================== */
.section-audience {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0a001e 100%);
}

.audience-tabs {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 60px;
}

.tab-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.4);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.audience-visual {
  display: flex;
  justify-content: center;
}

.audience-card-stack {
  position: relative;
  width: 320px;
  height: 380px;
}

.a-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 24px;
  width: 260px;
}

.a-card:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 1;
}

.a-card:nth-child(2) {
  top: 40px;
  left: 40px;
  transform: rotate(2deg);
  z-index: 2;
}

.a-card:nth-child(3) {
  top: 80px;
  left: 25px;
  z-index: 3;
  background: rgba(123, 31, 162, 0.15);
  border-color: rgba(123, 31, 162, 0.35);
}

.a-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.a-card-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.a-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(233, 30, 140, 0.1);
  border: 1px solid rgba(233, 30, 140, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.benefit-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.benefit-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* ==========================================
   PRICING
   ========================================== */
.section-pricing {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--pink);
  background: rgba(233, 30, 140, 0.06);
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-brand);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.plan-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  height: 38px;
  line-height: 1.4;
}

.plan-price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.main-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.plan-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 4px;
}

.plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.plan-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-bottom: 4px;
}

.sub-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sub-price-item {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.plan-divider {
  height: 1px;
  background: var(--glass-border);
  margin: 20px 0;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.4;
}

.plan-feature-item .check {
  color: var(--pink);
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-feature-item .cross {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-feature-item.muted {
  color: var(--text-muted);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.section-testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #120028 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.testimonial-stars {
  color: #FFD700;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================
   FAQ
   ========================================== */
.section-faq {
  padding: 100px 0;
  background: var(--dark-bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(233, 30, 140, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  gap: 12px;
  text-align: left;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.section-cta {
  padding: 80px 0;
  background: var(--dark-bg);
}

.cta-inner {
  background: linear-gradient(135deg, rgba(123, 31, 162, 0.35) 0%, rgba(233, 30, 140, 0.25) 100%);
  border: 1px solid rgba(233, 30, 140, 0.25);
  border-radius: 32px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner .orb {
  opacity: 0.15;
}

.cta-inner .orb:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.cta-inner .orb:nth-child(2) {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -30px;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: #07001a;
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 30px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  color: #fff;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.social-btn.whatsapp {
  width: auto;
  padding: 0 18px;
  border-radius: 50px;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
  font-size: 0.82rem;
  font-weight: 700;
}

.social-btn.whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
  color: #fff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-col ul a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================
   ANIMATIONS (scroll-reveal)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 0, 26, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.mobile-menu .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  /* ── Scroll offset for fixed navbar ── */
  section[id] {
    scroll-margin-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* ── Hero Stats: vertical stack on mobile ── */
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  /* ── Phone mockup & floating badges ── */
  .hero-visual {
    margin-top: 40px;
    overflow: visible;
  }

  .hero-phone-mockup {
    width: 260px;
  }

  /* Hide floating badges on mobile to prevent overlap */
  .float-badge {
    display: none;
  }

  /* ── Steps ── */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  /* ── Features ── */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* ── Audience Tabs ── */
  .audience-tabs {
    width: 100%;
  }

  .tab-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.82rem;
    text-align: center;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-card-stack {
    width: 260px;
    height: 320px;
    margin: 0 auto;
  }

  .a-card {
    width: 220px;
    padding: 18px;
  }

  /* ── Pricing ── */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 60px auto 0;
  }

  /* ── FAQ ── */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* ── Navigation ── */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ── CTA ── */
  .cta-inner {
    padding: 50px 28px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* ── Section spacing ── */
  .section-how,
  .section-features,
  .section-audience,
  .section-pricing,
  .section-testimonials,
  .section-faq {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-cta {
    padding: 40px 0;
  }
}

/* ==========================================
   EXTRA SMALL SCREENS (< 400px)
   ========================================== */
@media (max-width: 400px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .stat-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .hero-phone-mockup {
    width: 240px;
  }

  .audience-card-stack {
    width: 230px;
    height: 300px;
  }

  .a-card {
    width: 200px;
    padding: 14px;
  }

  .testimonial-card {
    width: 280px;
    padding: 22px;
  }

  .cta-inner {
    padding: 40px 20px;
    border-radius: 20px;
  }
}