/* ============================================
   GenZcareers - Light Premium Theme
   ============================================ */

/* CSS Variables - Responsive */
:root {
  --bg-primary: #FFFFFF;
  --bg-soft: #FAFBFC;
  --text-primary: #1A1A2E;
  --text-muted: #64748B;
  --accent-gold: #C9A227;
  --accent-blue: #0095FF;
  --accent-teal: #0D9488;
  --font-primary: 'Poppins', sans-serif;
  --section-padding: clamp(1.5rem, 4vw, 3rem);
  --section-padding-tablet: 2.5rem;
  --section-padding-mobile: clamp(1.25rem, 4vw, 2rem);
  --container-max: min(1200px, 92vw);
  --container-padding: clamp(1rem, 4vw, 2rem);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 60px rgba(13, 148, 136, 0.15);
  --touch-min: 44px;
  --safe-top: env(safe-area-inset-top, 0);
  --safe-bottom: env(safe-area-inset-bottom, 0);
  --safe-left: env(safe-area-inset-left, 0);
  --safe-right: env(safe-area-inset-right, 0);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .page-glows__orb,
  .hero__glow {
    animation: none;
  }
  .testimonials__track {
    animation: none;
  }
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

/* ============================================
   Page Background Glows
   ============================================ */

.page-glows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-glows__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: pageGlowFloat 12s ease-in-out infinite;
}

.page-glows__orb--1 {
  width: clamp(200px, 50vw, 500px);
  height: clamp(200px, 50vw, 500px);
  background: radial-gradient(circle, rgba(0, 149, 255, 0.25) 0%, transparent 70%);
  top: 15%;
  right: -5%;
  animation-delay: 0s;
}

.page-glows__orb--2 {
  width: clamp(180px, 45vw, 450px);
  height: clamp(180px, 45vw, 450px);
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  bottom: 25%;
  left: -8%;
  animation-delay: -4s;
}

.page-glows__orb--3 {
  width: clamp(150px, 38vw, 380px);
  height: clamp(150px, 38vw, 380px);
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  bottom: -5%;
  right: 10%;
  opacity: 0.4;
  animation-delay: -8s;
}

@keyframes pageGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.98); }
}

/* Section base + dividers */
.section {
  position: relative;
  z-index: 1;
  scroll-margin-top: 80px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .services,
  .pricing,
  .how-it-works,
  .why-choose-us,
  .testimonials,
  .contact {
    padding-top: var(--section-padding-tablet);
    padding-bottom: var(--section-padding-tablet);
  }
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 60vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 149, 255, 0.5) 20%,
    rgba(13, 148, 136, 0.5) 50%,
    rgba(0, 149, 255, 0.5) 80%,
    transparent 100%
  );
  opacity: 0.9;
}

/* Section title scroll reveal */
.services__title[data-scroll-animate],
.pricing__title[data-scroll-animate],
.how-it-works__header[data-scroll-animate],
.why-choose-us__title[data-scroll-animate],
.testimonials__header[data-scroll-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.services__title.is-visible,
.pricing__title.is-visible,
.how-it-works__header.is-visible,
.why-choose-us__title.is-visible,
.testimonials__header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card tilt effect - applied via JS */
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease-out-expo);
}

/* ============================================
   Navbar - Glassmorphism Sticky
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
  margin: clamp(0.5rem, 2vw, 1rem) clamp(0.75rem, 3vw, 1.5rem) 0;
  margin-top: calc(clamp(0.5rem, 2vw, 1rem) + var(--safe-top));
  max-width: min(calc(1200px + 4rem), 96vw);
  margin-left: auto;
  margin-right: auto;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: padding 0.3s ease, margin 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  padding: 0.5rem 2rem;
  margin-top: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.navbar.scrolled .navbar__link {
  font-size: 0.85rem;
}

.navbar.scrolled .navbar__link--cta {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

.navbar__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: font-size 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.navbar__logo:hover {
  color: var(--accent-blue);
  opacity: 0.95;
}

.navbar.scrolled .navbar__logo {
  font-size: 1.1rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.navbar__link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.navbar__link--cta {
  padding: 0.5rem 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-teal) 0%, #0B7A6B 100%);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(13, 148, 136, 0.35);
}

.navbar__link--cta::after {
  display: none;
}

.navbar__link--cta:hover,
.navbar__link--cta.active {
  color: #fff;
  background: linear-gradient(135deg, #0d9a8a 0%, #0B7A6B 100%);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.45);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--text-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/* Hamburger - Hidden by default */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.navbar__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--accent-teal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__toggle.is-active .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle.is-active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.is-active .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  .navbar {
    margin: 0.75rem clamp(0.5rem, 3vw, 1rem) 0;
    margin-top: calc(0.75rem + var(--safe-top));
    padding: 0.75rem 1rem;
  }

  .navbar.scrolled {
    margin-top: calc(0.5rem + var(--safe-top));
    padding: 0.5rem 1rem;
  }

  .navbar__toggle {
    display: flex;
    min-width: var(--touch-min);
    min-height: var(--touch-min);
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 90vw);
    height: 100vh;
    height: 100dvh;
    padding-top: var(--safe-top);
    padding-bottom: var(--safe-bottom);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.06);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .navbar__menu.is-open {
    transform: translateX(0);
  }

  .navbar__link {
    font-size: 1.05rem;
    padding: 0.6rem 1.5rem;
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
  }

  .navbar__link--cta {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    min-height: var(--touch-min);
  }
}

/* Extra small: < 375px */
@media (max-width: 374px) {
  .navbar__menu {
    width: 100vw;
  }

  .navbar__logo {
    font-size: 1.1rem;
  }
}

main {
  position: relative;
  z-index: 1;
}

/* Section placeholders - min-height for scroll targets */
main section:not(.hero):not(.stats) {
  min-height: clamp(50vh, 60svh, 70vh);
}

@media (max-width: 767px) {
  main section:not(.hero):not(.stats) {
    min-height: auto;
    padding-top: var(--section-padding-mobile);
    padding-bottom: var(--section-padding-mobile);
  }
}

/* ============================================
   Stats Section
   ============================================ */

.stats {
  padding: clamp(1.5rem, 4vw, 2rem) var(--container-padding);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(0, 149, 255, 0.06) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.stats__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.stats__item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.stats__item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stats__item:nth-child(1) { transition-delay: 0s; }
.stats__item:nth-child(2) { transition-delay: 0.1s; }
.stats__item:nth-child(3) { transition-delay: 0.2s; }
.stats__item:nth-child(4) { transition-delay: 0.3s; }

.stats__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stats__suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-teal);
}

.stats__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 4vw, 1.5rem);
  }

  .stats__number {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
  }

  .stats__suffix {
    font-size: clamp(1rem, 3vw, 1.25rem);
  }

  .stats__label {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
  }
}

@media (max-width: 374px) {
  .stats__grid {
    gap: 0.75rem;
  }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Animated background glows */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

.hero__glow--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 149, 255, 0.2) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.18) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -3s;
}

.hero__glow--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  bottom: -5%;
}

.hero__logo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(180px, 45vh, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__logo-bg-img {
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.75;
  filter: drop-shadow(0 4px 24px rgba(13, 148, 136, 0.15)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  max-width: var(--container-max);
  padding: var(--container-padding);
  margin-top: clamp(200px, 45vh, 500px);
}

.hero__content {
  flex: 1;
  min-width: 0;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero__badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(0, 149, 255, 0.1) 100%);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 100px;
  color: var(--accent-teal);
  animation: heroTextEntrance 0.8s ease-out 0.05s forwards;
  opacity: 0;
  transform: translateY(15px);
}

.hero__badge:nth-child(2) { animation-delay: 0.1s; }
.hero__badge:nth-child(3) { animation-delay: 0.15s; }

.hero__headline-gradient {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 255, 255, 0.5);
  animation: heroCardEntrance 0.8s ease-out forwards;
}

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

.hero__headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  animation: heroTextEntrance 0.8s ease-out 0.15s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero__headline .hero__headline-accent {
  color: var(--accent-teal);
}

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

.hero__subheadline {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 520px;
  animation: heroTextEntrance 0.8s ease-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero__features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  animation: heroTextEntrance 0.8s ease-out 0.35s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.hero__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
  flex-shrink: 0;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroTextEntrance 0.8s ease-out 0.45s forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Buttons - Micro hover animations */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn:active::after {
  opacity: 1;
  transform: scale(2);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-teal) 0%, #0B7A6B 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}

.btn--primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(13, 148, 136, 0.45), var(--shadow-glow);
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(13, 148, 136, 0.45), var(--shadow-glow); }
  50% { box-shadow: 0 14px 48px rgba(13, 148, 136, 0.5), 0 0 80px rgba(13, 148, 136, 0.2); }
}

.btn--primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn--secondary {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid rgba(0, 149, 255, 0.5);
}

.btn--secondary:hover {
  background: rgba(0, 149, 255, 0.06);
  border-color: var(--accent-blue);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 149, 255, 0.15);
}

.btn--secondary:active {
  transform: translateY(0) scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.btn--outline:hover {
  background: rgba(13, 148, 136, 0.06);
  border-color: var(--accent-teal);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.hero__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: relative;
  animation: heroImageEntrance 0.9s ease-out 0.4s forwards;
  opacity: 0;
  transform: translateX(20px);
}

.hero__floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  animation: floatShape 6s ease-in-out infinite;
}

.hero__shape--1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.hero__shape--2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.2) 0%, transparent 70%);
  bottom: 25%;
  left: 5%;
  animation-delay: -2s;
}

.hero__shape--3 {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
  bottom: 10%;
  right: 25%;
  animation-delay: -4s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10px, -15px) scale(1.1); }
  66% { transform: translate(-8px, 10px) scale(0.95); }
}

@keyframes heroImageEntrance {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__image {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--accent-teal);
  text-decoration: none;
  animation: heroScrollBounce 2s ease-in-out infinite;
  animation-delay: 1.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

.hero__scroll-icon {
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -8px;
}

/* Mobile: image below text */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero__inner {
    flex-direction: column;
    padding: clamp(1rem, 4vw, 1.5rem) clamp(0.75rem, 3vw, 1rem);
    margin-top: clamp(160px, 38vh, 220px);
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
    width: 100%;
  }

  .hero__card {
    padding: clamp(1.25rem, 4vw, 1.75rem);
  }

  .hero__headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero__subheadline {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }

  .hero__features {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__cta .btn {
    width: 100%;
    min-height: var(--touch-min);
    padding: 0.875rem 1.25rem;
  }

  .hero__scroll {
    bottom: clamp(1rem, 4vw, 1.5rem);
    bottom: calc(clamp(1rem, 4vw, 1.5rem) + var(--safe-bottom));
  }

  .hero__image {
    max-width: min(400px, 90vw);
  }
}

/* Extra small phones */
@media (max-width: 374px) {
  .hero__inner {
    margin-top: clamp(140px, 35vh, 180px);
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ============================================
   Services Section - Carousel Style
   ============================================ */

.services {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
  background: var(--bg-soft);
}

.services__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.services__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.services__grid.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__card {
  min-height: clamp(280px, 35vh, 360px);
  border-radius: clamp(16px, 4vw, 24px);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.services__card--1 {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(0, 149, 255, 0.1) 100%);
}

.services__card--2 {
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.12) 0%, rgba(13, 148, 136, 0.1) 100%);
}

.services__card--3 {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(0, 149, 255, 0.08) 100%);
}

.services__card--4 {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
}

.services__card--5 {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.services__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.services__icon-svg {
  margin-bottom: auto;
  color: var(--text-primary);
}

.services__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.services__card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

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

  .services__card {
    min-height: 360px;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .services__card {
    min-height: 340px;
  }
}

@media (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 767px) {
  .services {
    padding: var(--section-padding-mobile) clamp(0.75rem, 3vw, 1rem);
  }

  .services__title {
    text-align: center;
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .services__card {
    min-height: 260px;
  }

  .services__card-title {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
  }

  .services__card-desc {
    font-size: clamp(0.8rem, 2.2vw, 0.9rem);
  }
}


/* ============================================
   Pricing Section - Glassy Design
   ============================================ */

.pricing {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  animation: pricingGlow 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pricingGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(2%, 2%) scale(1.1); opacity: 0.8; }
}

.pricing__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.pricing__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text-primary);
}

.pricing__title-accent {
  color: var(--accent-teal);
}

.pricing__subtitle {
  margin-top: 0.75rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;
}

.pricing__card {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
}

.pricing__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: cardPopIn 0.5s var(--ease-out-expo) forwards;
}

.pricing__card:nth-child(2).is-visible { animation-delay: 0.08s; }
.pricing__card:nth-child(3).is-visible { animation-delay: 0.16s; }

.pricing__card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.pricing__card--popular {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: var(--shadow-card), 0 0 0 2px rgba(13, 148, 136, 0.2);
}

.pricing__card--popular.is-visible {
  transform: scale(1.05);
}

.pricing__card--popular:hover {
  transform: translateY(-6px) scale(1.07);
  border-color: rgba(13, 148, 136, 0.5);
  box-shadow: var(--shadow-card), 0 0 40px rgba(13, 148, 136, 0.15);
}

.pricing__card--premium .pricing__cta {
  background: #fff;
  color: var(--accent-teal);
  border: 2px solid rgba(13, 148, 136, 0.4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pricing__card--premium .pricing__cta:hover {
  background: #fff;
  border-color: var(--accent-teal);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.2);
}

.pricing__badge {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-teal);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}

.pricing__plan-name {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing__plan-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing__amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.pricing__amount {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.pricing__period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing__divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.25rem;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.pricing__features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  opacity: 0.9;
  padding: 0.35rem 0;
  line-height: 1.4;
}

.pricing__check {
  flex-shrink: 0;
  color: var(--accent-teal);
}

.pricing__cta {
  width: 100%;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

/* Ripple effect for pricing buttons */
.btn-ripple {
  position: relative;
}

/* Ripple animation keyframes */
@keyframes js-ripple-animation {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(1); opacity: 0; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__card--popular {
    transform: scale(1);
  }

  .pricing__card--popular.is-visible {
    transform: scale(1);
  }

  .pricing__card--popular:hover {
    transform: translateY(-6px) scale(1.02);
  }
}

@media (max-width: 767px) {
  .pricing {
    padding: var(--section-padding-mobile) clamp(0.75rem, 3vw, 1rem);
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .pricing__card {
    padding: clamp(1.25rem, 4vw, 1.5rem);
  }

  .pricing__card--popular {
    transform: scale(1);
  }

  .pricing__card--popular.is-visible {
    transform: scale(1);
  }

  .pricing__card--popular:hover {
    transform: translateY(-6px) scale(1.02);
  }

  .pricing__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .pricing__plan-name {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .pricing__amount {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .pricing__cta {
    min-height: var(--touch-min);
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .pricing__grid {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   How It Works Section - Bento Grid
   ============================================ */

.how-it-works {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
  background: var(--bg-soft);
}

.how-it-works__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.how-it-works__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.how-it-works__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  max-width: min(380px, 92vw);
}

.how-step {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.how-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.how-step:hover {
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(13, 148, 136, 0.1);
}

.how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.12);
  color: var(--accent-teal);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-step__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.how-step__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.how-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
  color: var(--accent-teal);
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.6;
}

.how-step:nth-child(1).is-visible { transition-delay: 0s; }
.how-step:nth-child(3).is-visible { transition-delay: 0.08s; }
.how-step:nth-child(5).is-visible { transition-delay: 0.16s; }
.how-step:nth-child(7).is-visible { transition-delay: 0.24s; }

@media (max-width: 767px) {
  .how-it-works {
    padding: var(--section-padding-mobile) clamp(0.75rem, 3vw, 1rem);
  }

  .how-it-works__title {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }

  .how-step {
    padding: clamp(0.875rem, 3vw, 1rem) clamp(1rem, 3vw, 1.25rem);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .how-it-works__steps {
    max-width: 420px;
  }
}

/* ============================================
   Why Choose Us Section
   ============================================ */

.why-choose-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
  background: var(--bg-soft);
}

.why-choose-us__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.why-choose-us__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-choose-us__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.why-choose-us__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

.why-choose-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-choose-us__card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-soft);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
}

.why-choose-us__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.why-choose-us__card--1 {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(0, 149, 255, 0.08) 100%);
}

.why-choose-us__card--2 {
  background: linear-gradient(135deg, rgba(0, 149, 255, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.why-choose-us__card--3 {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
}

.why-choose-us__card--4 {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(13, 148, 136, 0.08) 100%);
}

.why-choose-us__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: cardPopIn 0.5s var(--ease-out-expo) forwards;
}

.why-choose-us__card:nth-child(2).is-visible { animation-delay: 0.06s; }
.why-choose-us__card:nth-child(3).is-visible { animation-delay: 0.12s; }
.why-choose-us__card:nth-child(4).is-visible { animation-delay: 0.18s; }

.why-choose-us__card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: var(--shadow-card), 0 0 30px rgba(13, 148, 136, 0.12);
}

.why-choose-us__icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose-us__card:hover .why-choose-us__icon-wrap {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
}

.why-choose-us__icon-svg {
  color: var(--accent-teal);
}

.why-choose-us__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.why-choose-us__card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.why-choose-us__card:nth-child(1) { transition: opacity 0.6s ease 0s, transform 0.6s ease 0s, border-color 0.35s ease, box-shadow 0.35s ease; }
.why-choose-us__card:nth-child(2) { transition: opacity 0.6s ease 0.05s, transform 0.6s ease 0.05s, border-color 0.35s ease, box-shadow 0.35s ease; }
.why-choose-us__card:nth-child(3) { transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s, border-color 0.35s ease, box-shadow 0.35s ease; }
.why-choose-us__card:nth-child(4) { transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s, border-color 0.35s ease, box-shadow 0.35s ease; }

.why-choose-us__card:hover {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  transition-delay: 0s;
}

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

@media (min-width: 1024px) {
  .why-choose-us__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .why-choose-us {
    padding: var(--section-padding-mobile) clamp(0.75rem, 3vw, 1rem);
  }

  .why-choose-us__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.25rem);
  }

  .why-choose-us__card {
    padding: clamp(1.25rem, 4vw, 1.5rem);
  }

  .why-choose-us__title {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }

  .why-choose-us__card-title {
    font-size: clamp(1rem, 3vw, 1.15rem);
  }
}

/* ============================================
   Testimonials Section - Infinite Scroll Marquee
   ============================================ */

.testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
  background: var(--bg-primary);
}

.testimonials__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials__badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  margin-bottom: 1rem;
}

.testimonials__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.testimonials__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto;
}

.testimonials__marquee-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  max-height: 680px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 8%, black 92%, transparent);
}

.testimonials__column {
  flex: 0 0 auto;
  width: min(280px, 85vw);
}

.testimonials__column--2 {
  display: none;
}

.testimonials__column--3 {
  display: none;
}

.testimonials__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  animation: testimonialScroll 18s linear infinite;
}

.testimonials__marquee-wrap:hover .testimonials__track {
  animation-play-state: paused;
}

.testimonials__column--2 .testimonials__track {
  animation-duration: 22s;
}

.testimonials__column--3 .testimonials__track {
  animation-duration: 20s;
}

@keyframes testimonialScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(13, 148, 136, 0.1);
}

.testimonial-card__quote {
  margin: 0;
  padding: 0;
}

.testimonial-card__quote p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-teal);
  background: rgba(13, 148, 136, 0.12);
  border-radius: 50%;
  border: 2px solid rgba(13, 148, 136, 0.2);
}

.testimonial-card cite {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  font-style: normal;
  margin-bottom: 0.15rem;
}

.testimonial-card footer div span {
  font-size: 0.8rem;
  color: var(--accent-teal);
}

@media (min-width: 768px) {
  .testimonials__column--2 {
    display: block;
  }
}

@media (min-width: 1024px) {
  .testimonials__column--3 {
    display: block;
  }
}

@media (max-width: 767px) {
  .testimonials {
    padding: var(--section-padding-mobile) clamp(0.75rem, 3vw, 1rem);
  }

  .testimonials__column {
    width: min(260px, 88vw);
  }

  .testimonials__marquee-wrap {
    max-height: clamp(400px, 70vh, 520px);
  }

  .testimonials__title {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }

  .testimonial-card {
    padding: clamp(1.25rem, 4vw, 1.75rem);
  }

  .testimonial-card__quote p {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
}

@media (max-width: 374px) {
  .testimonials__column {
    width: min(240px, 92vw);
  }
}

/* ============================================
   FAQ Section
   ============================================ */

.faq {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
}

.faq__inner {
  width: 100%;
  max-width: min(700px, 92vw);
  margin: 0 auto;
}

.faq__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.faq__title[data-scroll-animate],
.testimonials__title[data-scroll-animate],
.testimonials__subtitle[data-scroll-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.faq__title.is-visible,
.testimonials__title.is-visible,
.testimonials__subtitle.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.faq__item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}

.faq__item.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), box-shadow 0.3s ease;
}

.faq__item:hover {
  box-shadow: var(--shadow-card);
  border-color: rgba(13, 148, 136, 0.2);
}

.faq__question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-teal);
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__answer p {
  margin: 0;
}

@media (max-width: 767px) {
  .faq {
    padding: var(--section-padding-mobile) clamp(0.75rem, 3vw, 1rem);
  }

  .faq__title {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }

  .faq__question {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 3vw, 1.5rem);
    min-height: var(--touch-min);
  }

  .faq__answer {
    padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.25rem);
    font-size: clamp(0.875rem, 2.5vw, 0.95rem);
  }
}

/* ============================================
   Contact Section - ContactCard Design
   ============================================ */

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding) var(--container-padding);
  background: var(--bg-soft);
}

.contact__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact__card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(24px);
}

.contact__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact__corner {
  position: absolute;
  color: var(--accent-teal);
  opacity: 0.6;
  z-index: 1;
}

.contact__corner--tl { top: -0.75rem; left: -0.75rem; }
.contact__corner--tr { top: -0.75rem; right: -0.75rem; }
.contact__corner--bl { bottom: -0.75rem; left: -0.75rem; }
.contact__corner--br { bottom: -0.75rem; right: -0.75rem; }

.contact__main {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.contact__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem;
}

.contact__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

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

.contact__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.contact__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 8px;
  color: var(--accent-teal);
}

.contact__info-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.contact__info-value {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact__info-value a {
  color: inherit;
  text-decoration: none;
}

.contact__info-value a:hover {
  color: var(--accent-teal);
}

.contact__info-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.contact__info-row .contact__info {
  flex: 1;
  min-width: 0;
}

.contact__whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.contact__form-wrap {
  background: rgba(13, 148, 136, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-family: var(--font-primary);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.15);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.contact__textarea {
  min-height: 80px;
  resize: vertical;
}

.contact__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.contact__submit:hover {
  box-shadow: 0 8px 32px rgba(13, 148, 136, 0.45);
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  border: none;
  text-decoration: none;
}

.btn--whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}


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

  .contact__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__info--wide {
    grid-column: 1 / -1;
  }

  .contact__form-wrap {
    border-top: none;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
  }
}

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

  .contact__info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact__info--wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .contact {
    padding: var(--section-padding-mobile) clamp(0.75rem, 3vw, 1rem);
  }

  .contact__content {
    padding: clamp(1.25rem, 4vw, 1.5rem) clamp(1rem, 3vw, 1.25rem);
  }

  .contact__form-wrap {
    padding: clamp(1rem, 3vw, 1.25rem);
  }

  .contact__title {
    font-size: clamp(1.5rem, 5vw, 1.75rem);
  }

  .contact__info-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact__whatsapp-cta {
    min-height: var(--touch-min);
    justify-content: center;
  }

  .contact__submit {
    min-height: var(--touch-min);
  }

  .contact__input,
  .contact__textarea {
    min-height: var(--touch-min);
  }

  .contact__textarea {
    min-height: 100px;
  }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */

