/* ==============================================================
   LANDING PAGE — Premium Design Upgrade
   Additive overrides for landing page styles
   ============================================================== */

/* ---- Scroll Anchor Offset (account for fixed top bar + nav) ---- */
.landing-page {
  scroll-padding-top: 110px;
}

/* ---- Navigation Premium ---- */
.landing-nav {
  background: var(--color-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.landing-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.landing-nav-link {
  font-family: var(--font-family-heading);
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}

.landing-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-merlot-mid);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav-link:hover::after {
  width: 100%;
}

.landing-nav-cta {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: #ffffff;
  background: var(--color-merlot-mid);
  border-radius: var(--radius-full);
  box-shadow: none;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav-cta:hover {
  color: #ffffff;
  background: var(--color-merlot-deep);
  box-shadow: none;
}

.landing-nav-search-input {
  border: none;
  outline: none;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-nav-search-input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

/* ---- Hero Section Premium ---- */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(250, 79, 85, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 79, 85, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-headline {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.25rem);
  /* Tighten the gap down to the CTA buttons */
  margin-bottom: 0.5rem;
}

/* ---- Hero headline engagement animations ---- */

/* Staggered entrance: elements rise + fade in on load */
.hero-animate {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-animate-2 {
  animation-delay: 0.18s;
}

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

/* Highlighted phrase: continuous gradient shimmer */
.hero-highlight {
  background: linear-gradient(
    90deg,
    #FA4F55 0%,
    #FA4F55 25%,
    #ff8a5c 50%,
    #FA4F55 75%,
    #FA4F55 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 5s linear infinite;
}

@keyframes heroShimmer {
  to {
    background-position: 200% center;
  }
}

/* Typewriter caret — blinks after the last typed character */
.hero-caret {
  display: inline-block;
  width: 3px;
  height: 1em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--color-merlot-mid);
  border-radius: 2px;
  animation: heroCaretBlink 0.9s step-end infinite;
}
/* Hide the caret until JS starts typing (avoids a stray bar with JS off) */
.hero-typed:not(.is-typing):not(.is-done) .hero-caret {
  display: none;
}

@keyframes heroCaretBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Respect reduced-motion: no entrance, shimmer, or caret blink */
@media (prefers-reduced-motion: reduce) {
  .hero-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-highlight {
    animation: none;
    background-position: 0 center;
  }
  .hero-caret {
    display: none;
  }
}

.hero-categories-title {
  font-family: var(--font-family-heading);
  font-weight: 600;
}

/* Hero category cards */
.hero-category-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary-200);
}

.hero-category-card:hover .hero-category-icon {
  transform: scale(1.1);
  color: var(--color-primary);
}

.hero-category-icon {
  transition: transform 0.3s ease, color 0.3s ease;
}

.hero-category-name {
  font-family: var(--font-family-heading);
  font-weight: 600;
}

/* Hero images */
.hero-grid-img {
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.hero-grid-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

/* Hero float animation */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-grid-img--large {
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-grid-img:nth-child(2) {
  animation: heroFloat 6s ease-in-out 0.5s infinite;
}

.hero-grid-img:nth-child(3) {
  animation: heroFloat 7s ease-in-out 1s infinite;
}

/* Hero stats */
.hero-stat strong {
  font-weight: 800;
}

.hero-stat-icon {
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.hero-stat:hover .hero-stat-icon {
  transform: scale(1.15);
}

/* Hero trust stats badge */
.hero-trust-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* ---- Services Section Premium ---- */
.landing-services-title,
.landing-section-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.landing-services-subtitle {
  font-family: var(--font-family);
  color: var(--color-gray-500);
}

.landing-service-card,
.service-card-landing {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.landing-service-card:hover,
.service-card-landing:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary-200);
}

.landing-service-card:hover .landing-service-icon,
.service-card-landing:hover .service-icon {
  transform: scale(1.12) rotate(3deg);
  color: var(--color-primary);
}

.landing-service-icon,
.service-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.landing-service-name {
  font-family: var(--font-family-heading);
  font-weight: 700;
}

/* ---- Section Headers Decorative Underline (Task 3) ---- */
.landing-services-title,
.about-title,
.benefits-title,
.testimonials-title,
.faq-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.landing-services-subtitle::after,
.about-subtitle::after,
.benefits-subtitle::after,
.testimonials-subtitle::after,
.faq-subtitle::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-premium);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.landing-services-header,
.about-header,
.benefits-header,
.testimonials-header,
.faq-header {
  text-align: center;
}

/* ---- About Section Premium ---- */
.about-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.about-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-premium);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.about-card:hover::before {
  opacity: 1;
}

.about-card-icon {
  transition: transform 0.3s ease;
}

.about-card:hover .about-card-icon {
  transform: scale(1.1);
}

.about-card-title {
  font-family: var(--font-family-heading);
  font-weight: 700;
}

/* ---- Benefits Section Premium (Card Grid) ---- */
.benefits-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.benefits-item {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: white;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefits-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-premium);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefits-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

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

.benefits-item-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--color-primary-50);
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-item:hover .benefits-item-icon {
  transform: scale(1.15);
  box-shadow: 0 6px 16px rgba(250, 79, 85, 0.2);
}

.benefits-item-title {
  font-family: var(--font-family-heading);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.benefits-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Stats Counter Section Premium (Dark Background) ---- */
.stats-counter-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 4rem 0;
}

.stats-counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(250, 79, 85, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(250, 79, 85, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-counter-container {
  position: relative;
  z-index: 1;
}

.stats-counter-number {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 2.75rem;
  color: white;
}

.stats-counter-plus {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: #FA4F55;
  font-size: 2rem;
}

.stats-counter-label {
  font-family: var(--font-family-heading);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.stats-counter-item {
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.stats-counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stats-counter-item:hover {
  transform: scale(1.08);
}

/* ---- Testimonials Premium ---- */
.testimonials-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.testimonial-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  line-height: 1;
  font-family: var(--font-family-heading);
  color: var(--color-primary-100);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.testimonial-name {
  font-family: var(--font-family-heading);
  font-weight: 700;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-premium);
  border: 3px solid var(--color-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar-initials {
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-family-heading);
}

/* ---- FAQ Premium ---- */
.faq-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.faq-item {
  border-radius: var(--radius-lg, 12px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  border-left: 4px solid var(--color-primary);
  border-color: var(--color-primary-200);
  background: rgba(250, 79, 85, 0.02);
  box-shadow: 0 4px 16px rgba(250, 79, 85, 0.08);
}

/* ---- CTA Section Premium ---- */
.landing-cta-section,
.cta-section {
  position: relative;
  overflow: hidden;
}

.landing-cta-section::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.landing-cta-title,
.cta-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---- Mobile Menu Premium ---- */
.mobile-menu-overlay {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-menu-link {
  font-family: var(--font-family-heading);
  font-weight: 500;
  transition: all 0.25s ease;
}

.mobile-menu-link:hover {
  color: var(--color-primary);
  padding-left: 8px;
}

.mobile-menu-cta {
  background: var(--gradient-premium);
  border-radius: var(--radius-full);
  color: var(--color-white);
  text-align: center;
  justify-content: center;
}

.mobile-menu-cta:hover {
  color: var(--color-white);
  padding-left: 0;
}

/* ---- Search Results Premium ---- */
.search-results-dropdown {
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---- Footer Premium ---- */
.footer {
  position: relative;
}

.footer-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.footer-heading {
  font-family: var(--font-family-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.footer-link {
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-link:hover {
  color: var(--color-primary-200);
  padding-left: 4px;
}

.footer-social-link {
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  color: var(--color-primary-200);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
}

/* ---- Top Contact Bar ---- */
.top-contact-bar {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  height: 36px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}

.top-contact-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-contact-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contact-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-contact-item:hover {
  color: #fff;
}

.top-contact-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-contact-social {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.top-contact-social:hover {
  color: var(--color-primary);
}

/* Adjust nav and main for top bar */
.landing-nav {
  top: 36px;
}

.landing-main {
  padding-top: 104px; /* 36px top bar + 68px nav */
}

/* ---- Trust Badges Strip ---- */
.trust-badges-strip {
  background: var(--color-gray-50);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0.875rem 1.5rem;
}

.trust-badges-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--color-gray-600);
  font-family: var(--font-family-heading);
}

.trust-badge svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ---- Hero CTA Buttons ---- */
.hero-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--gradient-premium);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.938rem;
  font-weight: 600;
  font-family: var(--font-family-heading);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(250, 79, 85, 0.3);
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 79, 85, 0.4);
  color: #fff;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--color-gray-700);
  border: 2px solid var(--color-gray-300);
  border-radius: var(--radius-full);
  font-size: 0.938rem;
  font-weight: 600;
  font-family: var(--font-family-heading);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ---- How It Works Section ---- */
.how-it-works-section {
  padding: 5rem 1.5rem;
  background: var(--color-white);
}

.how-it-works-container {
  max-width: 1140px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.how-it-works-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  font-family: var(--font-family-heading);
  color: var(--color-gray-900);
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
}

.how-it-works-subtitle {
  font-size: 1.063rem;
  color: var(--color-gray-500);
  margin: 0;
}

.how-it-works-subtitle::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-premium);
  border-radius: 2px;
  margin: 1rem auto 0;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.how-it-works-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-family-heading);
  color: var(--color-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(250, 79, 85, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.how-it-works-step:hover .step-icon {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(250, 79, 85, 0.25);
}

.step-title {
  font-size: 1.063rem;
  font-weight: 700;
  font-family: var(--font-family-heading);
  color: var(--color-gray-900);
  margin: 0 0 0.5rem;
}

.step-desc {
  font-size: 0.813rem;
  color: var(--color-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ---- Partners Section ---- */
.partners-section {
  padding: 2.5rem 1.5rem;
  background: var(--color-gray-50);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.partners-container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.partners-title {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-400);
  margin: 0 0 1.25rem;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.25s ease;
}

.partner-logo-item:hover {
  color: var(--color-gray-600);
}

.partner-text-logo {
  font-family: var(--font-family-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-gray-400);
  transition: color 0.25s ease;
}

.partner-logo-item:hover .partner-text-logo {
  color: var(--color-primary);
}

/* ---- CTA Banner Section ---- */
.cta-banner-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #FA4F55 50%, var(--color-primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-family-heading);
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner-subtitle {
  font-size: 1.063rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 2rem;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.5rem;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-family-heading);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--color-primary);
}

/* ---- Floating Action Buttons ---- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp {
  background: #25d366;
  color: #fff;
}

.floating-call {
  background: var(--color-primary);
  color: #fff;
}

@keyframes floatingPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.floating-whatsapp {
  animation: floatingPulse 3s ease-in-out infinite;
}

/* ---- Scroll Reveal Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal-children > * {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-children.revealed > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-children.revealed > *:nth-child(1) { transition-delay: 0.06s; }
.reveal-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-children.revealed > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-children.revealed > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-children.revealed > *:nth-child(5) { transition-delay: 0.30s; }
.reveal-children.revealed > *:nth-child(6) { transition-delay: 0.36s; }
.reveal-children.revealed > *:nth-child(7) { transition-delay: 0.42s; }
.reveal-children.revealed > *:nth-child(8) { transition-delay: 0.48s; }
.reveal-children.revealed > *:nth-child(9) { transition-delay: 0.54s; }
.reveal-children.revealed > *:nth-child(10) { transition-delay: 0.60s; }
.reveal-children.revealed > *:nth-child(11) { transition-delay: 0.66s; }
.reveal-children.revealed > *:nth-child(12) { transition-delay: 0.72s; }

/* Hero entrance animations */
.hero-content {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.hero-images {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2rem;
    letter-spacing: -0.025em;
  }

  .hero-grid-img:hover {
    transform: none;
  }

  .hero-grid-img--large,
  .hero-grid-img:nth-child(2),
  .hero-grid-img:nth-child(3) {
    animation: none;
  }

  /* Top bar hide on mobile */
  .top-contact-bar {
    display: none;
  }
  .landing-nav {
    top: 0;
  }
  .landing-main {
    padding-top: 60px;
  }
  .landing-page {
    scroll-padding-top: 66px;
  }

  /* Trust badges */
  .trust-badges-container {
    gap: 1rem;
  }
  .trust-badge span {
    font-size: 0.7rem;
  }

  /* Hero CTAs */
  .hero-cta-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  /* How It Works */
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .how-it-works-step {
    padding: 1.25rem 0.75rem;
  }

  /* CTA Banner */
  .cta-banner-title {
    font-size: 1.5rem;
  }

  /* Partners */
  .partners-logos {
    gap: 1.5rem;
  }

  /* Floating buttons */
  .floating-actions {
    bottom: 16px;
    right: 16px;
  }
  .floating-btn {
    width: 46px;
    height: 46px;
  }

  .about-card:hover,
  .landing-service-card:hover,
  .benefits-item:hover {
    transform: none;
  }

  .about-card:active,
  .landing-service-card:active,
  .benefits-item:active {
    transform: scale(0.98);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefits-item {
    padding: 1.5rem 1rem;
  }

  .stats-counter-number {
    font-size: 2rem;
  }

  .stats-counter-plus {
    font-size: 1.25rem;
  }

  .stats-counter-item:not(:last-child)::after {
    display: none;
  }

  .stats-counter-section {
    padding: 2.5rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card::before {
    font-size: 3.5rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .hero-stat {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .reveal,
  .reveal-children > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
  .trust-badges-container {
    gap: 0.75rem;
    justify-content: flex-start;
  }
  .trust-badge {
    font-size: 0.7rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-counter-item:not(:last-child)::after {
    display: none;
  }
  .stats-counter-number {
    font-size: 2.5rem;
  }
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-contact-container {
    padding: 0 1rem;
  }
  .mobile-menu-overlay {
    top: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-children > *,
  .hero-content,
  .hero-images {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-grid-img--large,
  .hero-grid-img:nth-child(2),
  .hero-grid-img:nth-child(3) {
    animation: none;
  }
}

