/* ============================================
   AtendeBem AI WordPress Theme - Main CSS
   ============================================ */

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

/* ============ CSS VARIABLES ============ */
:root {
  --primary: #25D366;
  --primary-hover: #1EBE57;
  --brand-blue-dark: #0077B6;
  --brand-blue-light: #00B4D8;
  --brand-navy: #03045E;
  --text-primary: #1a365d;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --surface: #f8fafc;
  --surface-blue: #e0f7fa;
  --border: #e2e8f0;
  --radius: 0.75rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-green: 0 4px 25px rgba(37,211,102,0.35);
  --shadow-green-lg: 0 8px 30px rgba(37,211,102,0.4);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--brand-blue-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-blue-dark); }
::selection { background: rgba(0,180,216,0.2); color: var(--text-primary); }

/* ============ UTILITIES ============ */
.text-gradient {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pattern-dots {
  background-image: radial-gradient(rgba(0,180,216,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}

.section-label {
  display: block;
  color: var(--brand-blue-dark);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.animate-float { animation: float 5s ease-in-out infinite; }
.animate-float-reverse { animation: floatReverse 4s ease-in-out infinite; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-green-lg);
}

.btn-outline {
  background: transparent;
  color: var(--brand-blue-dark);
  border: 2px solid var(--brand-blue-dark);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
}
.btn-outline:hover {
  background: var(--brand-blue-dark);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-xs {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-shimmer:hover::before {
  transform: translateX(100%);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .navbar-logo img { height: 3rem; }
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
}

.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--brand-blue-dark);
}

.navbar-cta {
  display: none;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  }
  .navbar-cta:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
  }
}

.navbar-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-blue-dark);
  padding: 0.5rem;
}

@media (min-width: 1024px) {
  .navbar-mobile-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  padding-top: 5rem;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-top: 7rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--brand-blue-dark);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, rgba(224,247,250,0.3) 50%, #ffffff 100%);
}

.hero-glow-1 {
  position: absolute;
  top: 5rem;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0,180,216,0.08);
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37,211,102,0.04);
  filter: blur(100px);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,180,216,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badge img {
  height: 2rem;
}

@media (min-width: 768px) {
  .hero-badge img { height: 3.5rem; }
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  animation: fadeInLeft 0.5s ease-out forwards;
  opacity: 0;
}

.hero-feature:nth-child(1) { animation-delay: 0.3s; }
.hero-feature:nth-child(2) { animation-delay: 0.4s; }
.hero-feature:nth-child(3) { animation-delay: 0.5s; }

.hero-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-cta-group { flex-direction: row; }
}

.hero-channels {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.hero-channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem 0.5rem 0.625rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
}

.hero-channel-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-channel-pill img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

/* Legacy - keep for backward compat */
.hero-channel-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  transition: transform 0.3s;
}

.hero-channel-icon:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .hero-channel-pill { padding: 0.625rem 1.125rem 0.625rem 0.75rem; font-size: 0.9375rem; }
  .hero-channel-pill img { width: 1.75rem; height: 1.75rem; }
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-phone-floater {
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 10;
}

.hero-phone {
  width: 280px;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .hero-phone { width: 600px; }
}

.hero-stats-card {
  position: absolute;
  left: -2rem;
  top: 33%;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,180,216,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatReverse 3s ease-in-out 0.5s infinite;
  z-index: 20;
}

.hero-stats-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(37,211,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hero-stats-label {
  color: var(--text-light);
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stats-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.hero-rate-card {
  position: absolute;
  right: -1rem;
  top: 25%;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,180,216,0.15);
  text-align: center;
  animation: float 4s ease-in-out 1s infinite;
  z-index: 20;
}

.hero-rate-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-blue-dark);
}

.hero-rate-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============ SOCIAL PROOF MARQUEE ============ */
.marquee-section {
  padding: 1.5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.25rem 0;
}

.marquee-icon {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue-light);
  flex-shrink: 0;
}

/* ============ STATS COUNTER SECTION ============ */
.stats-section {
  padding: 4rem 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
  .stat-item { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-right: none; }
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-value { font-size: 3rem; }
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============ PAIN POINTS SECTION ============ */
.pain-points {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .pain-points { padding: 8rem 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { gap: 2rem; }
}

.card-light {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-light:hover {
  border-color: rgba(0,180,216,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-light .card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0,180,216,0), var(--brand-blue-light), rgba(0,180,216,0));
  opacity: 0;
  transition: opacity 0.3s;
}

.card-light:hover .card-top-accent {
  opacity: 1;
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(0,180,216,0.08);
  transition: background 0.3s;
}

.card-light:hover .card-icon {
  background: rgba(0,180,216,0.15);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--brand-blue-dark);
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============ SOLUTION SECTION ============ */
.solution {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, rgba(224,247,250,0.2) 100%);
}

@media (min-width: 768px) {
  .solution { padding: 8rem 0; }
}

.solution-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-logo img {
  width: 6rem;
  height: 6rem;
}

@media (min-width: 768px) {
  .solution-logo img { width: 8rem; height: 8rem; }
}

.benefit-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,211,102,0.3);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(37,211,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.benefit-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefit-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ FEATURES SECTION ============ */
.features {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--brand-blue-dark) 0%, var(--brand-navy) 100%);
}

@media (min-width: 768px) {
  .features { padding: 8rem 0; }
}

.features-title {
  color: #fff;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.feature-row + .feature-row {
  margin-top: 3rem;
}

.feature-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(37,211,102,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

@media (min-width: 768px) {
  .feature-name { font-size: 1.875rem; }
}

.feature-desc {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-stat {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.feature-stat-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--primary);
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

.feature-highlight svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.3s;
}

.feature-link:hover {
  gap: 0.75rem;
}

/* ============ DIFFERENTIATORS SECTION ============ */
.differentiators {
  padding: 5rem 0;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .differentiators { padding: 8rem 0; }
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.diff-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.diff-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 26rem;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0,180,216,0.15);
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue-dark);
  margin-right: -0.5rem;
}

.trust-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.25rem;
}

.trust-stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

.trust-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.diff-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diff-item {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.diff-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: var(--brand-blue-light);
  opacity: 0;
  transition: opacity 0.3s;
}

.diff-item:hover {
  border-color: rgba(0,180,216,0.3);
  box-shadow: var(--shadow-md);
}

.diff-item:hover::before {
  opacity: 1;
}

.diff-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.diff-item:hover .diff-item-icon {
  background: rgba(0,180,216,0.2);
}

.diff-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-blue-dark);
}

.diff-item-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.diff-item:hover .diff-item-title {
  color: var(--brand-blue-dark);
}

.diff-item-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============ PRICING SECTION ============ */
.pricing {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(224,247,250,0.3) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pricing { padding: 8rem 0; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.pricing-card-regular {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.pricing-card-regular:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-popular {
  background: linear-gradient(180deg, var(--brand-blue-dark) 0%, var(--brand-navy) 100%);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,119,182,0.35);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-popular-badge {
  background: var(--primary);
  padding: 0.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-popular-badge svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  color: #fff;
}

.pricing-popular-badge span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-body {
  padding: 2rem;
}

.pricing-card-popular .pricing-body {
  padding-top: 2rem;
}

.pricing-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card-regular .pricing-name { color: var(--text-primary); }
.pricing-card-popular .pricing-name { color: #fff; }

.pricing-description {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing-card-regular .pricing-description { color: var(--text-secondary); }
.pricing-card-popular .pricing-description { color: rgba(255,255,255,0.7); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.pricing-currency {
  font-size: 0.875rem;
}

.pricing-card-regular .pricing-currency { color: var(--text-secondary); }
.pricing-card-popular .pricing-currency { color: rgba(255,255,255,0.7); }

.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
}

.pricing-card-regular .pricing-amount { color: var(--brand-blue-dark); }
.pricing-card-popular .pricing-amount { color: #fff; }

.pricing-period {
  font-size: 0.875rem;
}

.pricing-card-regular .pricing-period { color: var(--text-secondary); }
.pricing-card-popular .pricing-period { color: rgba(255,255,255,0.7); }

.pricing-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-cta-primary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.pricing-cta-primary:hover {
  background: var(--primary-hover);
}

.pricing-cta-primary svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.pricing-cta-secondary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s;
}

.pricing-card-regular .pricing-cta-secondary {
  border: 2px solid rgba(0,119,182,0.2);
  color: var(--brand-blue-dark);
}
.pricing-card-regular .pricing-cta-secondary:hover {
  background: rgba(0,119,182,0.05);
}

.pricing-card-popular .pricing-cta-secondary {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
}
.pricing-card-popular .pricing-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.pricing-features-label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card-regular .pricing-features-label { color: var(--text-primary); }
.pricing-card-popular .pricing-features-label { color: rgba(255,255,255,0.9); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-feature.excluded {
  opacity: 0.4;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-icon.check { color: var(--primary); fill: none; stroke: var(--primary); stroke-width: 2.5; }
.pricing-feature-icon.cross { stroke-width: 2.5; }
.pricing-card-regular .pricing-feature-icon.cross { color: #d1d5db; stroke: #d1d5db; }
.pricing-card-popular .pricing-feature-icon.cross { color: rgba(255,255,255,0.4); stroke: rgba(255,255,255,0.4); }

.pricing-feature-text {
  font-size: 0.875rem;
}

.pricing-card-regular .pricing-feature.included .pricing-feature-text { color: var(--text-secondary); }
.pricing-card-regular .pricing-feature.excluded .pricing-feature-text { color: #9ca3af; }
.pricing-card-popular .pricing-feature.included .pricing-feature-text { color: rgba(255,255,255,0.9); }
.pricing-card-popular .pricing-feature.excluded .pricing-feature-text { color: rgba(255,255,255,0.4); }

.pricing-footer {
  text-align: center;
  margin-top: 3rem;
}

.pricing-footer p {
  color: var(--text-secondary);
}

.pricing-footer a {
  color: var(--brand-blue-dark);
  font-weight: 600;
  transition: color 0.2s;
}

.pricing-footer a:hover {
  color: var(--primary);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--brand-blue-dark) 0%, var(--brand-navy) 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials { padding: 8rem 0; }
}

.testimonials-title {
  color: #fff;
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.testimonial-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.15);
}

.testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  color: #fff;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #f59e0b;
  color: #f59e0b;
}

.testimonial-text {
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(37,211,102,0.3);
}

.testimonial-name {
  color: #fff;
  font-weight: 600;
}

.testimonial-role {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

/* ============ FAQ SECTION ============ */
.faq {
  padding: 5rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .faq { padding: 8rem 0; }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.faq-left {
  position: relative;
}

@media (min-width: 1024px) {
  .faq-left {
    position: sticky;
    top: 8rem;
    align-self: start;
    height: fit-content;
  }
}

.faq-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.faq-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.faq-contact-box {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.faq-contact-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.faq-contact-link {
  color: var(--primary);
  font-weight: 600;
  transition: color 0.2s;
}

.faq-contact-link:hover {
  color: var(--primary-hover);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
  transition: all 0.3s ease;
}

.faq-item.open {
  border-color: rgba(0,180,216,0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  transition: color 0.2s;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--brand-blue-dark);
}

.faq-item.open .faq-question {
  color: var(--brand-blue-dark);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, rgba(224,247,250,0.3) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .final-cta { padding: 8rem 0; }
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0,180,216,0.08);
  filter: blur(150px);
  pointer-events: none;
}

.final-cta-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-subtitle {
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.final-cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 3rem;
}

.final-cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.final-cta-benefit svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  fill: var(--primary);
  flex-shrink: 0;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .final-cta-buttons { flex-direction: row; justify-content: center; }
}

.final-cta-trust {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.final-cta-trust strong {
  color: var(--brand-blue-dark);
}

/* ============ FOOTER ============ */
.footer {
  padding: 5rem 0 2rem;
  background: var(--brand-navy);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 3rem;
  width: auto;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-label {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-right: 0.25rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

.footer-social-link:hover {
  color: var(--primary);
  border-color: rgba(37,211,102,0.3);
  background: rgba(37,211,102,0.1);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact-text a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s;
  animation: pulse-float 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  color: #fff;
}

@keyframes pulse-float {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,0.7); }
}

/* ============ RESPONSIVE ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
