/* ===============================================
   CSS VARIABLES & RESET
   =============================================== */
:root {
  --primary-color: #00ce93;
  --primary-dark: #00b581;
  --primary-light: #00e6a5;
  --accent-color: #00a878;
  --text-color: #1a1a1a;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --bg-light: #e6faf4;
  --bg-gradient: linear-gradient(135deg, #e6faf4 0%, #ccf5e8 100%);
  --border-color: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 206, 147, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 206, 147, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 206, 147, 0.18);
  --shadow-xl: 0 12px 48px rgba(0, 206, 147, 0.24);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Test Founders Grotesk Medium", "Test Founders Grotesk Medium Placeholder",
    sans-serif;
  /* font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif; */
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===============================================
   HEADER - FIXED WITH ROUNDED CONTAINER
   =============================================== */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
}

.header-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 14px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 206, 147, 0.1);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: center;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.desktop-nav a:hover {
  color: var(--primary-color);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.btn-primary-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0, 206, 147, 0.3);
  white-space: nowrap;
  border: 2px solid var(--primary-color);
}

.btn-primary-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 206, 147, 0.4);
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}

.btn-text {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.btn-text:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(0, 206, 147, 0.1);
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* ===============================================
   MOBILE MENU
   =============================================== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu {
  background: var(--white);
  width: 85%;
  max-width: 420px;
  height: 100%;
  padding: 70px 35px 40px;
  position: relative;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(0, 206, 147, 0.1);
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-menu:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(0, 206, 147, 0.08);
  color: var(--primary-color);
  transform: translateX(8px);
}

.mobile-btn {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  margin-top: 16px;
  box-shadow: var(--shadow-md);
}

.mobile-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateX(0) !important;
}

.mobile-signin {
  color: var(--primary-color) !important;
  text-align: center;
  margin-top: 8px;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-wrapper {
  padding: 110px 0 0;
  background: var(--bg-gradient);
  min-height: 100vh;
  position: relative;
}

.hero-background {
  background-image: url('data:image/svg+xml,%3Csvg width="1440" height="800" xmlns="http://www.w3.org/2000/svg"%3E%3Cdefs%3E%3ClinearGradient id="grad1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%23e6faf4;stop-opacity:1" /%3E%3Cstop offset="100%25" style="stop-color:%23ccf5e8;stop-opacity:1" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="1440" height="800" fill="url(%23grad1)"/%3E%3C/svg%3E');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: calc(100vh - 110px);
}

.hero-container {
  background: linear-gradient(
    135deg,
    rgba(230, 250, 244, 0.98) 0%,
    rgba(204, 245, 232, 0.98) 100%
  );
  border-radius: 40px;
  padding: 80px 20px 0;
  position: relative;
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 206, 147, 0.15);
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}

.hero-badge-avatars {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 24px 12px 12px;
  border-radius: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 206, 147, 0.15);
}

.avatar-group {
  display: flex;
  margin-left: 4px;
}

.avatar-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.avatar-group img:hover {
  transform: scale(1.15) translateY(-2px);
  z-index: 2;
}

.hero-badge-avatars span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-color);
  letter-spacing: -1.5px;
  margin-top: 1.5rem;
}

.heart {
  color: var(--primary-color);
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.1);
  }
  20%,
  40% {
    transform: scale(1);
  }
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-color);
  max-width: 850px;
  line-height: 1.75;
  margin-top: 1.75rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-subtitle strong {
  font-weight: 800;
  color: var(--primary-color);
}

.btn-custom-primary {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  border: 2px solid var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 206, 147, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  padding: 16px 40px;
}

.btn-custom-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 206, 147, 0.45);
  color: var(--white);
}

.btn-custom-secondary {
  background: var(--white);
  color: var(--text-color);
  border: 2px solid var(--text-color);
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  padding: 16px 40px;
}

.btn-custom-secondary:hover {
  background: var(--text-color);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--text-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   TESTIMONIAL CARDS
   =============================================== */
/* .testimonial-cards-bottom {
  position: absolute;
  bottom: -90px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 20px;
} */

.testimonial-card {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0, 206, 147, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  max-width: 420px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 24px 70px rgba(0, 206, 147, 0.5);
}

.testimonial-image {
  position: relative;
  width: 100%;
  padding-bottom: 130%;
  overflow: hidden;
}

.testimonial-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.08);
}

.card-watermark {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.testimonial-info h4 {
  font-size: 22px;
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.testimonial-info p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

.play-btn-circle {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 11px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
  pointer-events: auto;
}

.play-btn-circle:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* ===============================================
   LOGOS SECTION
   =============================================== */
.logos-section {
  background: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  padding: 90px 0;
  border-top: 1px solid rgba(0, 206, 147, 0.1);
}

.section-title-small {
  font-size: 17px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.logo-item {
  font-weight: 800;
  font-size: 20px;
  opacity: 0.4;
  color: var(--text-color);
  transition: all 0.3s ease;
  letter-spacing: 1px;
  cursor: default;
}

.logo-item:hover {
  opacity: 0.7;
  color: var(--primary-color);
}

/* ===============================================
   HOW IT WORKS SECTION
   =============================================== */
.how-it-works {
  padding: 120px 0;
  background: var(--white);
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--text-color);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-light);
  font-weight: 500;
  max-width: 650px;
  margin: 0 auto;
}

.step-card {
  background: var(--white);
  border: 2px solid rgba(0, 206, 147, 0.12);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 206, 147, 0.3);
  transition: transform 0.4s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-icon i {
  font-size: 32px;
  color: var(--white);
}

.step-number {
  font-size: 72px;
  font-weight: 900;
  color: rgba(0, 206, 147, 0.08);
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
  letter-spacing: -2px;
}

.step-card h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.step-card p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ===============================================
   FEATURES SECTION
   =============================================== */
.features-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 206, 147, 0.1),
    rgba(0, 168, 120, 0.15)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: color 0.4s ease;
}

.feature-card:hover .feature-icon i {
  color: var(--white);
}

.feature-card h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ===============================================
   PRICING SECTION
   =============================================== */
.pricing {
  padding: 120px 0;
  background: var(--white);
}

.pricing-card {
  background: var(--white);
  border: 2px solid rgba(0, 206, 147, 0.15);
  border-radius: 28px;
  padding: 48px 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  border-color: transparent;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-12px);
}

.pricing-card.featured * {
  color: var(--ext-color) !important;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--primary-color);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-header h4 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.pricing-price {
  margin-bottom: 36px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.pricing-price .currency {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  margin-right: 4px;
}

.pricing-card.featured .pricing-price .currency {
  color: var(--white);
}

.pricing-price .amount {
  font-size: 68px;
  font-weight: 900;
  color: var(--text-color);
  line-height: 1;
  letter-spacing: -2px;
}

.pricing-card.featured .pricing-price .amount {
  color: var(--white);
}

.pricing-price .period {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 6px;
}

.pricing-card.featured .pricing-price .period {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  padding: 14px 0;
  font-size: 15px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i {
  color: var(--white);
}

.pricing-features li.text-muted {
  opacity: 0.5;
}

.btn-pricing {
  width: 100%;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary-color);
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-pricing:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-pricing-featured {
  width: 100%;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-pricing-featured:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact {
  padding: 120px 0;
  background: var(--bg-light);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(0, 206, 147, 0.1);
}

.contact-form .form-label {
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 206, 147, 0.1);
  outline: none;
}

.btn-contact {
  background: var(--primary-color);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.btn-contact:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-brand .logo-text {
  color: var(--white);
  background: none;
  -webkit-text-fill-color: unset;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 48px 0 32px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 991px) {
  .header {
    top: 12px;
  }

  .header-container {
    padding: 12px 24px;
    border-radius: 50px;
  }

  .hero-wrapper {
    padding: 100px 0 0;
  }

  .hero-background {
    padding: 16px;
  }

  .hero-container {
    padding: 60px 20px 0;
    min-height: calc(100vh - 130px);
    border-radius: 32px;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .testimonial-cards-bottom {
    bottom: -70px;
  }

  .logos-section {
    padding: 70px 0;
  }

  .how-it-works,
  .features-section,
  .pricing,
  .contact {
    padding: 90px 0;
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero-wrapper {
    padding: 90px 0 0;
  }

  .hero-background {
    padding: 12px;
  }

  .hero-container {
    padding: 40px 16px 0;
    border-radius: 28px;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .testimonial-cards-bottom {
    bottom: -120px;
  }

  .testimonial-card {
    margin-bottom: 24px;
  }

  .logos-section {
    margin-top: 20px;
  }

  .btn-custom-primary,
  .btn-custom-secondary {
    min-height: 54px;
    font-size: 16px;
    padding: 16px 32px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .step-card,
  .feature-card {
    padding: 36px 28px;
  }

  .pricing-card {
    padding: 40px 28px;
  }

  .contact-form-wrapper {
    padding: 36px 24px;
  }

  .footer {
    padding: 60px 0 32px;
  }
}

@media (max-width: 575px) {
  .header {
    top: 8px;
  }

  .header-container {
    padding: 10px 18px;
    border-radius: 40px;
  }

  .logo-text {
    font-size: 20px;
  }

  .btn-primary-header {
    padding: 10px 22px;
    font-size: 13px;
  }

  .hero-badge-avatars {
    padding: 10px 18px 10px 10px;
  }

  .hero-badge-avatars span {
    font-size: 13px;
  }

  .avatar-group img {
    width: 32px;
    height: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .testimonial-overlay {
    padding: 20px;
  }

  .testimonial-info h4 {
    font-size: 19px;
  }

  .play-btn-circle {
    padding: 8px 14px;
    font-size: 10px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

/* ===============================================
   ANIMATIONS
   =============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.bounce-in {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.bounce-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.15s;
}
.stagger-2 {
  transition-delay: 0.3s;
}
.stagger-3 {
  transition-delay: 0.45s;
}
.stagger-4 {
  transition-delay: 0.6s;
}
.stagger-5 {
  transition-delay: 0.75s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.loading {
  animation: pulse 1.8s ease-in-out infinite;
}
