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

:root {
  --primary-color: #0047ab;
  --secondary-color: #00b981;
  --accent-color: #f59e0b;
  --dark-bg: #0f172a;
  --light-bg: #f4f4f4;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: inline;
  }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

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

.cta-button:hover {
  background: #003580;
  box-shadow: 0 8px 16px rgba(0, 71, 171, 0.2);
  transform: scale(1.05);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  z-index: 1001;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  pointer-events: none;
}

.mobile-sidebar.active {
  display: block;
  pointer-events: all;
}

.mobile-sidebar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-sidebar.active .mobile-sidebar-overlay {
  opacity: 1;
}

.mobile-sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-sidebar.active .mobile-sidebar-content {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-close-btn:hover {
  color: var(--primary-color);
}

.mobile-nav-links {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-links a {
  display: block;
  padding: 1.25rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  padding-left: 2rem;
}

.mobile-cta-button {
  margin: 1rem 1.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-cta-button:hover {
  background: #003580;
  transform: scale(1.02);
}

/* Utility Classes */
.hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Buttons */
.btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #003580;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 71, 171, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.arrow {
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  background: #5C258D;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #4389A2, #5C258D);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #81949b, #6e13be); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(212, 164, 164, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(182, 116, 116, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 6rem 0 2rem;
    min-height: auto;
  }
}

.hero-content {
  animation: slideInLeft 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #81949b, #6e13be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.hero-stats {
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  animation: fadeIn 1s ease 0.5s both;
}

.stat-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s ease;
  position: relative;
  padding: 2rem;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  padding: 4px;
  background: linear-gradient(135deg, #4389A2, #5C258D, #4389A2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: rotate 8s linear infinite;
  z-index: -1;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
              0 0 0 8px rgba(255, 255, 255, 0.05),
              inset 0 0 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.hero-image:hover .hero-img {
  animation-play-state: paused;
}

.hero-img:hover {
  transform: scale(1.08) rotate(2deg) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4),
              0 0 0 8px rgba(255, 255, 255, 0.1),
              inset 0 0 40px rgba(0, 0, 0, 0.3);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  0% {
    background: linear-gradient(135deg, #4389A2, #5C258D, #4389A2);
  }
  25% {
    background: linear-gradient(225deg, #5C258D, #4389A2, #5C258D);
  }
  50% {
    background: linear-gradient(315deg, #4389A2, #5C258D, #4389A2);
  }
  75% {
    background: linear-gradient(45deg, #5C258D, #4389A2, #5C258D);
  }
  100% {
    background: linear-gradient(135deg, #4389A2, #5C258D, #4389A2);
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
}

/* Why Sachify */
.why-sachify {
  background: var(--light-bg);
}

.why-stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .why-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .why-stats-container {
    grid-template-columns: 1fr;
  }
}

.why-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(67, 137, 162, 0.1), rgba(94, 37, 141, 0.1));
  border-radius: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.why-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4389A2, #5C258D);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-stat:hover {
  transform: translateY(-8px);
  border-color: #4389A2;
  box-shadow: 0 12px 24px rgba(67, 137, 162, 0.25);
  background: linear-gradient(135deg, rgba(67, 137, 162, 0.15), rgba(94, 37, 141, 0.15));
}

.why-stat:hover::before {
  opacity: 1;
}

.why-stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4389A2, #5C258D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-shadow: 0 0 40px rgba(67, 137, 162, 0.3);
}

.why-stat-label {
  display: block;
  font-size: 1rem;
  color: var(--dark-bg);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.why-stat:nth-child(1) {
  background: linear-gradient(135deg, rgba(67, 137, 162, 0.15), rgba(67, 137, 162, 0.05));
}

.why-stat:nth-child(2) {
  background: linear-gradient(135deg, rgba(94, 37, 141, 0.15), rgba(94, 37, 141, 0.05));
}

.why-stat:nth-child(3) {
  background: linear-gradient(135deg, rgba(67, 137, 162, 0.12), rgba(94, 37, 141, 0.08));
}

@media (max-width: 768px) {
  .why-stat-number {
    font-size: 2rem;
  }
  
  .why-stat {
    padding: 1rem;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 71, 171, 0.1);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-bg);
}

.why-card p {
  color: var(--text-light);
}

/* What We Verify */
.what-verify {
  background: var(--white);
}

.verify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.verify-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.verify-card:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.verify-card:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.verify-card:nth-child(4) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.verify-card:nth-child(5) {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.verify-card:nth-child(6) {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.verify-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.verify-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.verify-card p {
  opacity: 0.9;
}

/* Comparison Section */
.comparison {
  background: var(--light-bg);
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: var(--white);
}

.comparison-header {
  background: linear-gradient(135deg, #4389A2, #5C258D);
  color: var(--white);
  font-weight: 700;
}

.comparison-glassdoor {
  background: #ffe6e6;
  color: #cc0000;
}

.comparison-sachify {
  background: #e6f7ff;
  color: #0066cc;
}

.comparison-header > div,
.comparison-row > div {
  padding: 1.5rem;
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-header > div:last-child,
.comparison-row > div:last-child {
  border-right: none;
}

.comparison-row {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.comparison-row:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

.comparison-feature {
  font-weight: 600;
  color: var(--dark-bg);
}

@media (max-width: 768px) {
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 200px 1fr 1fr;
    min-width: 600px;
  }
  
  .comparison-header > div,
  .comparison-row > div {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

/* How It Works */
.how-it-works {
  background: var(--light-bg);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

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

.step {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(0, 71, 171, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark-bg);
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-connector {
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 -1rem;
  }
}

/* Verify Company */
.verify-company {
  background: #5C258D;
  background: -webkit-linear-gradient(to right, #4389A2, #5C258D);
  background: linear-gradient(to bottom, #81949b, #6e13be);
  color: var(--white);
  text-align: center;
}

.verify-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.verify-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.verify-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .verify-form {
    flex-direction: column;
  }
}

.verify-form input {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
}

.verify-note {
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Sample Report */
.sample-report {
  background: var(--white);
}

.report-container {
  background: var(--light-bg);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.report-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(15deg);
  padding: 8px 16px;
  background: linear-gradient(135deg, #4389A2, #5C258D);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  border: 3px solid #6e13be;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0.95;
}

.report-header {
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.report-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-bg);
}

.report-date {
  color: var(--text-light);
  font-size: 0.95rem;
}

.report-scores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.score-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
}

.score-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.score-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.score-value.verified {
  color: var(--secondary-color);
}

.score-value.low {
  color: var(--secondary-color);
}

.score-bar {
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.report-section {
  margin-bottom: 2rem;
}

.report-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.checks-list {
  list-style: none;
}

.checks-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  color: var(--secondary-color);
  font-weight: 700;
}

.report-section p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Pricing */
.pricing {
  background: var(--light-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 16px 32px rgba(0, 71, 171, 0.15);
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: scale(1);
  }
}

.pricing-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.price-period {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
  border-bottom: none;
}

/* Testimonials */
.testimonials {
  background: var(--white);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
}

.testimonials-track::-webkit-scrollbar {
  height: 6px;
}

.testimonials-track::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 3px;
}

.testimonials-track::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 1rem;
  scroll-snap-align: start;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 2rem);
  }
}

.stars {
  color: #fcd34d;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-align: center
}

.testimonial-text {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
  text-align: center;
  padding-left:5px;
  padding-right:5px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-bg);
  margin-bottom: 0.25rem;
  text-align: center
}

.testimonial-role {
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: #003580;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

/* FAQ */
.faq {
  background: var(--light-bg);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-bg);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Join Us Section */
.join-us {
  background: #5C258D;
  background: -webkit-linear-gradient(to right, #4389A2, #5C258D);
  background: linear-gradient(to bottom, #81949b, #6e13be);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.join-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.join-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.join-us .section-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.join-us .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.join-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.join-btn {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  background: var(--white);
  color: var(--primary-color);
  border: none;
}

.join-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  z-index: 998;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    display: flex;
  }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

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