/* =========================================
   BRAND CLICK META ADS AGENCY — Landing Page
   Design: Dark Navy + Gold + Blue Accent
   Font: Outfit + Inter (Google Fonts)
   ========================================= */

:root {
  --navy: #0a0f1e;
  --navy-2: #0d1526;
  --navy-3: #111d35;
  --navy-4: #162040;
  --blue: #1877f2;
  --blue-light: #4a9eff;
  --gold: #c89b3c;
  --gold-light: #e8b84b;
  --gold-glow: rgba(200, 155, 60, 0.25);
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-10: rgba(255, 255, 255, 0.08);
  --white-5: rgba(255, 255, 255, 0.04);
  --green: #22c55e;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.text-gold {
  color: var(--gold-light);
}

.text-blue {
  color: var(--blue-light);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white-10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--white-60);
  margin-bottom: 48px;
  max-width: 560px;
}

.section-sub.white {
  color: rgba(255, 255, 255, 0.75);
}

.section-title.white {
  color: var(--white);
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px var(--gold-glow), 0 0 0 0 var(--gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--gold-glow), 0 0 24px rgba(232, 184, 75, 0.3);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary-small {
  display: inline-block;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: var(--transition);
}

.btn-secondary-small:hover {
  color: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, #0d47a1 100%);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(24, 119, 242, 0.4);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 16px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-meta-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.badge-meta-img {
  height: 14px;
  width: auto;
  object-fit: contain;
  margin-right: 2px;
}

.badge-meta-img-large {
  height: 20px;
  width: auto;
  object-fit: contain;
  margin-right: 4px;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-brandclick {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.logo-click {
  color: var(--white);
}

.logo-tagline {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 1px;
}

.logo-meta-text {
  color: #ff2a74;
}

.logo-agency {
  background: linear-gradient(135deg, #f9bd26 20%, #a726f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-badges {
  display: flex;
  gap: 8px;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white-10);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-80);
}

.platform-badge.google {
  gap: 6px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  background: rgba(10, 15, 30, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-menu a {
  color: var(--white-80);
  text-decoration: none;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--white-5);
}

.mobile-menu.open {
  display: flex;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 15, 30, 0.82) 0%,
      rgba(10, 15, 30, 0.65) 40%,
      rgba(10, 15, 30, 0.28) 65%,
      rgba(10, 15, 30, 0.08) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(24, 119, 242, 0.3);
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-heading {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #f5d580 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--white-80);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--white);
}

.hero-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--white-10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.flow-arrow {
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-demo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
}

.demo-star {
  font-size: 18px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--white-60);
  font-weight: 500;
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-60);
  font-size: 12px;
  z-index: 1;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-wheel {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0;
  }
}

/* ========== ANIMATIONS ========== */
.animate-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.delay-5 {
  animation-delay: 0.75s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SECTION SHARED ========== */
section {
  padding: 96px 0;
}

section:first-child {
  padding-top: 0;
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
}

.problem-section .container {
  position: relative;
  z-index: 1;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white-5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--white-10);
}

.problem-card.featured-problem {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.15) 0%, rgba(24, 119, 242, 0.05) 100%);
  border-color: rgba(24, 119, 242, 0.3);
}

.problem-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.6;
}

/* ========== PROCESS SECTION ========== */
.process-section {
  background: var(--navy);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.step-card {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  gap: 0;
  align-items: start;
  padding: 0 0 0 0;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-icon-wrap {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy-4), var(--navy-3));
  border: 1px solid rgba(24, 119, 242, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.1);
  transition: var(--transition);
  z-index: 1;
  position: relative;
}

.step-card:hover .step-icon {
  border-color: rgba(24, 119, 242, 0.7);
  box-shadow: 0 4px 24px rgba(24, 119, 242, 0.3);
  transform: scale(1.05);
}

.step-line {
  width: 2px;
  background: linear-gradient(to bottom, rgba(24, 119, 242, 0.5), rgba(24, 119, 242, 0.1));
  margin: 68px auto 0;
  min-height: 60px;
  border-radius: 2px;
}

.last-step .step-line {
  visibility: hidden;
}

.step-content {
  padding: 4px 0 40px 24px;
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.25);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 520px;
}

.mission-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy-4), var(--navy-3));
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 16px;
}

.mission-icon {
  font-size: 36px;
}

.mission-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mission-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* ========== RESULTS SECTION ========== */
.results-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
}

.results-section .container {
  position: relative;
  z-index: 1;
}

.results-header {
  text-align: center;
  margin-bottom: 56px;
}

.megaphone-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

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

.result-card {
  background: var(--navy-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 119, 242, 0.3);
  box-shadow: var(--shadow-card);
}

.result-card.featured-result {
  grid-column: span 1;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), rgba(10, 15, 30, 0.8));
  border-color: rgba(24, 119, 242, 0.3);
}

.result-status {
  font-size: 12px;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 16px;
}

.result-status:not(.active) {
  color: var(--white-60);
}

.result-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.brand-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1877f2, #0d47a1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.brand-avatar.red {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.brand-avatar.green {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.brand-avatar.purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.brand-avatar.orange {
  background: linear-gradient(135deg, #f97316, #c2410c);
}

.brand-avatar.teal {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.brand-date {
  font-size: 12px;
  color: var(--white-60);
  margin-top: 2px;
}

.result-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}

.metric-label {
  font-size: 11px;
  color: var(--white-60);
  font-weight: 500;
}

.results-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  flex-wrap: wrap;
}

.summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summary-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.summary-label {
  font-size: 12px;
  color: var(--white-60);
  font-weight: 500;
  margin-top: 4px;
}

.summary-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ========== WHY SECTION ========== */
.why-section {
  background: var(--navy);
}

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

.why-card {
  background: var(--white-5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.why-card.highlight-why {
  background: linear-gradient(135deg, rgba(200, 155, 60, 0.12), rgba(200, 155, 60, 0.04));
  border-color: rgba(200, 155, 60, 0.3);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.6;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-blur-1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24, 119, 242, 0.12) 0%, transparent 70%);
}

.contact-blur-2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
}

/* Centered layout — no two-column form anymore */
.contact-center {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-center .section-tag {
  margin: 0 auto 16px;
}

.contact-center .contact-perks {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 auto 36px;
  text-align: left;
}

.contact-heading {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 17px;
  color: var(--white-60);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.perk {
  font-size: 15px;
  color: var(--white-80);
  font-weight: 500;
}

/* Big WhatsApp CTA */
.wa-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25d366;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  padding: 20px 48px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.btn-wa-big:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  animation: none;
  background: #20c05c;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 48px rgba(37, 211, 102, 0.7);
  }
}

.wa-note {
  font-size: 13px;
  color: var(--white-60);
}

.contact-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-badge-large {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white-10);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* Form */
.form-card {
  background: var(--navy-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--white-60);
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-80);
}

.form-group input,
.form-group select {
  background: var(--white-5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15);
}

.form-group select option {
  background: var(--navy-3);
  color: var(--white);
}

.form-note {
  font-size: 12px;
  color: var(--white-60);
  text-align: center;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 56px;
  margin-bottom: 12px;
}

.form-success h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--white-60);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--white-60);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 4px;
}

.footer-links a,
.footer-wa {
  color: var(--white-80);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s;
}

.footer-links a:hover,
.footer-wa:hover {
  color: var(--gold-light);
}

.footer-email,
.footer-note {
  font-size: 15px;
  color: var(--white-80);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  font-size: 13px;
  color: var(--white-60);
}

.footer-badge {
  color: var(--gold);
  font-weight: 600;
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: wa-bounce 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes wa-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.wa-label {
  white-space: nowrap;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SECTION BACKGROUND IMAGES ========== */
.section-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 15, 30, 0.72) 0%,
      rgba(10, 15, 30, 0.55) 50%,
      rgba(10, 15, 30, 0.72) 100%);
}

/* ========== RESULTS GRID V2 ========== */
.results-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  z-index: 2;
  position: relative;
}
.result-img-card {
  background: rgba(13, 21, 38, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}
.result-img-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 32px rgba(24, 119, 242, 0.25);
}
.result-img-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

/* ── Tablet (≤768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-badges {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-container {
    padding: 12px 20px;
  }

  /* General layout */
  section {
    padding: 64px 0;
  }

  /* Hero */
  .hero-container {
    padding: 110px 20px 72px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-heading {
    font-size: clamp(34px, 7.5vw, 48px);
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-trust {
    gap: 20px;
    flex-wrap: wrap;
  }

  /* Steps */
  .step-card {
    grid-template-columns: 60px 32px 1fr;
  }
  .step-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  /* Grids → single column */
  .results-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .problems-grid {
    grid-template-columns: 1fr;
  }

  /* Results image grid → 2 cols */
  .results-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
  .result-img-card {
    height: 200px;
    padding: 12px;
  }

  /* Results stats */
  .results-summary {
    gap: 20px;
    padding: 0;
    margin-top: 40px;
  }

  /* Mission banner */
  .mission-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* WA float — icon only */
  .wa-label {
    display: none;
  }
  .wa-float {
    padding: 14px;
    border-radius: 50%;
  }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Sections */
  section {
    padding: 52px 0;
  }

  /* Navbar */
  .nav-container {
    padding: 11px 16px;
  }
  .logo-meta-img {
    height: 30px;
  }
  .logo-brandclick {
    font-size: 19px;
  }

  /* Hero */
  .hero-container {
    padding: 96px 16px 60px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-heading {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.12;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-tag {
    font-size: 11px;
    padding: 5px 11px;
    margin-bottom: 18px;
  }

  /* Hero flow */
  .hero-flow {
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 24px;
  }
  .flow-step {
    font-size: 12px;
    padding: 6px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .flow-arrow {
    font-size: 15px;
    flex-shrink: 0;
  }

  /* Hero CTA */
  .btn-primary {
    font-size: 14px;
    padding: 14px 20px;
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 32px;
  }

  /* Hero trust stats — stay horizontal, wrap */
  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: flex-start;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    flex: 0 0 auto;
  }
  .trust-num {
    font-size: 22px;
  }
  .trust-label {
    font-size: 11px;
  }

  /* Section type */
  .section-title {
    font-size: clamp(22px, 6.5vw, 28px);
    line-height: 1.25;
  }
  .section-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .section-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Problem section */
  .problems-grid {
    gap: 14px;
    margin-top: 32px;
  }
  .problem-card {
    padding: 22px 18px;
  }
  .problem-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .problem-card h3 {
    font-size: 16px;
  }
  .problem-card p {
    font-size: 14px;
  }

  /* Steps / process */
  .steps-list {
    margin-top: 32px;
  }
  .step-card {
    grid-template-columns: 44px 24px 1fr;
  }
  .step-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
    border-radius: 10px;
  }
  .step-line {
    margin-top: 52px;
    min-height: 44px;
  }
  .step-content {
    padding: 2px 0 28px 14px;
  }
  .step-content h3 {
    font-size: 17px;
  }
  .step-content p {
    font-size: 14px;
  }
  .step-num {
    font-size: 10px;
    padding: 2px 8px;
  }
  .mission-banner {
    padding: 18px 16px;
    gap: 10px;
    margin-top: 12px;
  }
  .mission-icon {
    font-size: 26px;
  }
  .mission-text {
    font-size: 15px;
  }
  .mission-label {
    font-size: 10px;
    margin-bottom: 4px;
  }

  /* Results section */
  .results-header {
    margin-bottom: 28px;
  }
  .megaphone-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .results-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .result-img-card {
    height: 170px;
    padding: 10px;
    border-radius: 12px;
  }
  .results-summary {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-top: 28px;
  }
  .summary-divider {
    display: none;
  }
  .summary-stat {
    flex: 0 0 auto;
    min-width: 72px;
  }
  .summary-num {
    font-size: 22px;
  }
  .summary-label {
    font-size: 11px;
  }

  /* Why section */
  .why-grid {
    gap: 12px;
    margin-top: 32px;
  }
  .why-card {
    padding: 20px 16px;
  }
  .why-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .why-card h3 {
    font-size: 16px;
  }
  .why-card p {
    font-size: 14px;
  }

  /* Contact section */
  .contact-heading {
    font-size: clamp(26px, 7.5vw, 36px);
    line-height: 1.15;
  }
  .contact-sub {
    font-size: 14px;
  }
  .contact-center .contact-perks {
    margin-bottom: 28px;
  }
  .perk {
    font-size: 13px;
  }
  .btn-wa-big {
    font-size: 16px;
    padding: 16px 24px;
    gap: 10px;
    width: 100%;
    justify-content: center;
    border-radius: 50px;
  }
  .btn-wa-big svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .wa-note {
    font-size: 12px;
  }
  .wa-cta-block {
    margin-bottom: 24px;
  }

  /* Footer */
  .footer {
    padding: 44px 0 0;
  }
  .footer-top {
    gap: 24px;
    padding-bottom: 24px;
  }
  .footer-tagline {
    font-size: 13px;
  }
  .footer-links h4,
  .footer-contact h4 {
    font-size: 11px;
  }
  .footer-links a,
  .footer-wa,
  .footer-email,
  .footer-note {
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 16px 0;
  }

  /* WA float */
  .wa-float {
    bottom: 18px;
    right: 14px;
    padding: 12px;
  }
}

/* ── Very small phones (≤375px) ── */
@media (max-width: 375px) {
  .hero-heading {
    font-size: 27px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .btn-primary {
    font-size: 13px;
    padding: 13px 16px;
  }
  .results-grid-v2 {
    grid-template-columns: 1fr;
  }
  .result-img-card {
    height: 220px;
  }
  .btn-wa-big {
    font-size: 15px;
    padding: 14px 18px;
  }
  .section-title {
    font-size: 21px;
  }
}