/* ==================== BASE & MOBILE OPTIMIZATIONS ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: floatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  gap: 3rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d1d1f;
  text-decoration: none;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.nav-links li {
  animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}

.nav-links li:nth-child(1) { animation-delay: 0.3s; }
.nav-links li:nth-child(2) { animation-delay: 0.4s; }
.nav-links li:nth-child(3) { animation-delay: 0.5s; }
.nav-links li:nth-child(4) { animation-delay: 0.6s; }
.nav-links li:nth-child(5) { animation-delay: 0.7s; }

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.nav-links a {
  color: #6e6e73;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.nav-links a:hover {
  color: #1d1d1f;
  background: #f5f5f7;
  transform: translateY(-2px);
}

.nav-links a.active {
  color: #ffffff;
  background: #1d1d1f;
  box-shadow: 0 2px 8px rgba(29, 29, 31, 0.25);
}

.mobile-toggle {
  display: none;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  max-width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
  opacity: 0.12;
  z-index: 0;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: morph ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 500px;
  height: 500px;
  top: -15%;
  left: -10%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  animation: morph 15s ease-in-out infinite;
}

.shape:nth-child(2) {
  width: 450px;
  height: 450px;
  top: 35%;
  right: -12%;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  animation: morph 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.shape:nth-child(3) {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: 25%;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  animation: morph 20s ease-in-out infinite;
  animation-delay: -10s;
}

.shape:nth-child(4) {
  width: 350px;
  height: 350px;
  top: 10%;
  right: 15%;
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  animation: morph 12s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.shape:nth-child(5) {
  width: 380px;
  height: 380px;
  bottom: 20%;
  left: 10%;
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  animation: morph 16s ease-in-out infinite;
  animation-delay: -8s;
}

.shape:nth-child(6) {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  animation: morph 14s ease-in-out infinite;
  animation-delay: -12s;
}

.shape:nth-child(7) {
  width: 280px;
  height: 280px;
  top: 25%;
  left: 35%;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  animation: morph 13s ease-in-out infinite reverse;
  animation-delay: -6s;
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    border-radius: 70% 30% 50% 50% / 30% 50% 50% 50%;
    transform: translate(20px, 20px) rotate(270deg);
  }
}

/* Mobile optimization for hero section - prevent color merging */
@media (max-width: 768px) {
  .shape {
    filter: blur(40px) !important;
    opacity: 0.3 !important;
  }

  .shape:nth-child(1) {
    width: 250px !important;
    height: 250px !important;
    top: -5% !important;
    left: -20% !important;
  }

  .shape:nth-child(2) {
    width: 220px !important;
    height: 220px !important;
    top: 40% !important;
    right: -20% !important;
  }

  .shape:nth-child(3) {
    width: 200px !important;
    height: 200px !important;
    bottom: -5% !important;
    left: 10% !important;
  }

  .shape:nth-child(4) {
    width: 180px !important;
    height: 180px !important;
    top: 15% !important;
    right: 5% !important;
  }

  .shape:nth-child(5) {
    width: 190px !important;
    height: 190px !important;
    bottom: 25% !important;
    left: -10% !important;
  }

  .shape:nth-child(6) {
    width: 160px !important;
    height: 160px !important;
  }

  .shape:nth-child(7) {
    width: 140px !important;
    height: 140px !important;
  }

  /* Fix feature cards - icon and title on same line, description below */
  .feature-item {
    padding: 2rem 0 !important;
  }

  .feature-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .feature-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }

  .feature-icon svg {
    width: 18px !important;
    height: 18px !important;
  }

  .feature-title {
    font-size: 1.25rem !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    margin-left: 0 !important;
    line-height: 1.3 !important;
    flex: 1 !important;
  }

  .feature-text {
    font-size: 1rem !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
    line-height: 1.7 !important;
    width: 100% !important;
    display: block !important;
  }

  /* Additional specificity to override any conflicting styles */
  .about-section .feature-list .feature-item {
    padding: 2rem 0 !important;
  }

  .about-section .feature-list .feature-item .feature-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .about-section .feature-list .feature-item .feature-header .feature-icon {
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }

  .about-section .feature-list .feature-item .feature-header .feature-title {
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: auto !important;
    flex: 1 !important;
  }

  .about-section .feature-list .feature-item .feature-text {
    padding-left: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
  }

  /* NUCLEAR OPTION - Maximum specificity override for mobile layout */
  #about .container .split-layout .content-side .feature-list .feature-item .feature-header,
  section#about .feature-list .feature-item .feature-header,
  .about-section .feature-list .feature-item:nth-child(n) .feature-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  /* Add proper spacing to comparison section to prevent overlap */
  .comparison-section {
    padding-top: 6rem !important;
    margin-top: 2rem !important;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-logo {
  font-size: 4.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.hero-tagline {
  font-size: 1.75rem;
  color: #6e6e73;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

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

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.btn {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #1d1d1f;
  color: #ffffff;
  border: 2px solid #1d1d1f;
}

.btn-primary:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 29, 31, 0.25);
}

.btn-secondary {
  background: transparent;
  color: #1d1d1f;
  border: 2px solid #1d1d1f;
}

.btn-secondary:hover {
  background: #1d1d1f;
  color: #ffffff;
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 10;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards, subtleBounce 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #86868b;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #86868b;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes subtleBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ==================== SCROLL ANIMATIONS ==================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.scroll-fade.visible {
  opacity: 1;
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-scale.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; }
.stagger-6 { transition-delay: 0.9s; }
.stagger-7 { transition-delay: 1.05s; }
.stagger-8 { transition-delay: 1.2s; }

/* Visual cards specific stagger delays - Mobile */
.visual-card.stagger-1 { transition-delay: 0.5s; }
.visual-card.stagger-2 { transition-delay: 0.7s; }
.visual-card.stagger-3 { transition-delay: 0.9s; }

/* Visual cards faster delays for desktop */
@media (min-width: 769px) {
  .visual-card.stagger-1 { transition-delay: 0.1s; }
  .visual-card.stagger-2 { transition-delay: 0.2s; }
  .visual-card.stagger-3 { transition-delay: 0.3s; }
}

/* ==================== ABOUT US SECTION ==================== */
.about-section {
  padding: 8rem 2rem;
  background: #fafafa;
  max-width: 100%;
  overflow-x: hidden;
}

/* Flowing SVG Animation */
.flowing-svg {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.flowing-svg.animate-in {
  opacity: 1;
}

.flowing-svg path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.flowing-svg.animate-in path {
  animation: drawPath 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

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

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.content-side {
  animation: fadeIn 1s ease forwards;
}

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

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #86868b;
  margin-bottom: 1.5rem;
}

.main-title {
  font-size: 3.75rem;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.main-description {
  font-size: 1.25rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8ed;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-item:first-child {
  border-top: 1px solid #e8e8ed;
}

.feature-item:hover {
  padding-left: 1.5rem;
  background: rgba(29, 29, 31, 0.02);
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  background: #1d1d1f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.feature-text {
  font-size: 1.0625rem;
  color: #6e6e73;
  line-height: 1.7;
  padding-left: 55px;
}

.visual-side {
  position: relative;
  height: 600px;
}

.visual-card {
  position: absolute;
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8ed;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-1 {
  top: 0;
  left: 0;
  width: 70%;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
  top: 35%;
  right: 0;
  width: 65%;
  z-index: 2;
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: -2s;
}

.card-3 {
  bottom: 0;
  left: 10%;
  width: 60%;
  z-index: 1;
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: -4s;
}

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

.card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #86868b;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.card-stat {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.04em;
  line-height: 1;
}

.card-description {
  font-size: 0.9375rem;
  color: #6e6e73;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.card-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f5f5f7;
}

.metric-item {
  text-align: center;
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== PLANS SECTION ==================== */
.plans-section {
  padding: 8rem 2rem;
  background: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #86868b;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}

/* Toggle Buttons */
.toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  gap: 1rem;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  border: 2px solid #e8e8ed;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1rem;
  font-weight: 600;
  color: #6e6e73;
}

.toggle-btn:hover {
  border-color: #1d1d1f;
  transform: translateY(-2px);
}

.toggle-btn.active {
  background: #1d1d1f;
  border-color: #1d1d1f;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(29, 29, 31, 0.2);
}

.meta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}

/* Card Flip Container */
.card-container {
  position: relative;
  height: auto;
  min-height: 600px;
}

.card-flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card-container.flipped .card-flipper {
  transform: rotateY(180deg);
}

.plan-card {
  position: relative;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid #e8e8ed;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  display: block;
}

.card-container:not(.flipped) .plan-card.card-black {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.card-container.flipped .plan-card.card-white {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.plan-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* White Side (Front) */
.card-white {
  background: #ffffff;
  border-color: #e8e8ed;
}

/* Black Side (Back) */
.card-black {
  background: #1d1d1f;
  border-color: #1d1d1f;
  color: #ffffff;
  transform: rotateY(180deg);
}

.card-black .plan-label,
.card-black .user-label {
  color: rgba(255, 255, 255, 0.7);
}

.card-black .plan-pricing .current-price,
.card-black .poa-price {
  color: #ffffff;
}

.card-black .original-price {
  color: rgba(255, 255, 255, 0.4);
}

.card-black .feature-item {
  color: rgba(255, 255, 255, 0.9);
}

.card-black .user-type {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-black .user-spend {
  color: rgba(255, 255, 255, 0.7);
}

.card-black .cta-button {
  background: #ffffff;
  color: #1d1d1f;
}

.card-black .cta-button:hover {
  background: #f5f5f7;
}

.plan-card.featured {
  border-width: 2px;
}

.card-white.featured {
  border-color: #1d1d1f;
}

.discount-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #34c759;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f5f5f7;
}

.card-black .plan-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.plan-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #86868b;
  margin-bottom: 1rem;
}

.plan-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.original-price {
  font-size: 1.25rem;
  font-weight: 500;
  color: #d1d1d6;
  text-decoration: line-through;
}

.current-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.04em;
  line-height: 1;
}

.discount-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #34c759;
  margin-top: 0.25rem;
}

.card-black .discount-tag {
  color: #4ade80;
}

.poa-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.poa-label {
  font-size: 0.9375rem;
  color: #86868b;
  font-weight: 500;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: #4a5568;
  font-weight: 500;
  line-height: 1.5;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.3s ease;
}

.feature-item.hidden-feature {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.features-list.expanded .feature-item.hidden-feature {
  display: flex;
  opacity: 1;
  max-height: 100px;
  animation: fadeInFeature 0.4s ease forwards;
}

@keyframes fadeInFeature {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.view-all-features-btn {
  width: 100%;
  padding: 0.875rem;
  background: transparent;
  color: #1d1d1f;
  border: 2px solid #e8e8ed;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.view-all-features-btn:hover {
  background: #f5f5f7;
  border-color: #1d1d1f;
}

.view-all-features-btn .btn-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-all-features-btn.active .btn-icon {
  transform: rotate(180deg);
}

.card-black .view-all-features-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.card-black .view-all-features-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.feature-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #34c759;
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.user-type {
  background: #f5f5f7;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  border: 1px solid #e8e8ed;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.user-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #86868b;
  margin-bottom: 0.25rem;
}

.user-spend {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d1d1f;
  line-height: 1.4;
}

.cta-button {
  width: 100%;
  padding: 1.125rem;
  background: #1d1d1f;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: block;
  text-align: center;
}

.cta-button:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 29, 31, 0.25);
}

.price-frequency {
  font-size: 1rem;
  color: #86868b;
  font-weight: 500;
  margin-left: 0.5rem;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 4rem 2rem 8rem;
  background: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e8e8ed;
  transition: all 0.3s ease;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: top center;
}

.faq-item.fold-in {
  animation: foldIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-item:nth-child(1).fold-in { animation-delay: 0.05s; }
.faq-item:nth-child(2).fold-in { animation-delay: 0.1s; }
.faq-item:nth-child(3).fold-in { animation-delay: 0.15s; }
.faq-item:nth-child(4).fold-in { animation-delay: 0.2s; }
.faq-item:nth-child(5).fold-in { animation-delay: 0.25s; }
.faq-item:nth-child(6).fold-in { animation-delay: 0.3s; }
.faq-item:nth-child(7).fold-in { animation-delay: 0.35s; }

.faq-item:first-child {
  border-top: 1px solid #e8e8ed;
}

.faq-question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question-wrapper:hover {
  padding-left: 0.5rem;
}

.faq-question-text {
  font-weight: 600;
  font-size: 1.125rem;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  padding-right: 2rem;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f7;
  color: #1d1d1f;
  font-size: 1.125rem;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 2px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #1d1d1f;
  color: #ffffff;
  padding-bottom: 0;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-answer-text {
  padding-bottom: 1.5rem;
  padding-right: 3rem;
  color: #6e6e73;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  padding: 8rem 2rem;
  background: #fafafa;
  max-width: 100%;
  overflow-x: hidden;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #86868b;
  margin-bottom: 1rem;
}

/* Carousel Container */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 450px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e8e8ed;
  scroll-snap-align: start;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 280px;
  cursor: pointer;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: #1d1d1f;
}

.testimonial-card::after {
  content: "Read More";
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d1d1f;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
  opacity: 0.6;
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8e8ed;
  flex-shrink: 0;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.125rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: #ffd700;
  font-size: 0.875rem;
}

/* Review Text */
.review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4a5568;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

/* Navigation Arrows */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e8e8ed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #1d1d1f;
  border-color: #1d1d1f;
  transform: scale(1.05);
}

.nav-btn:hover svg {
  stroke: #ffffff;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: #1d1d1f;
  stroke-width: 2.5;
  transition: stroke 0.3s ease;
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-btn:disabled:hover {
  background: #ffffff;
  border-color: #e8e8ed;
  transform: scale(1);
}

.nav-btn:disabled:hover svg {
  stroke: #1d1d1f;
}

/* Dots Indicator */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d1d6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #1d1d1f;
  width: 24px;
  border-radius: 4px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e8e8ed;
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.125rem;
  color: #6e6e73;
  margin-bottom: 2rem;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #e8e8ed;
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: #1d1d1f;
  stroke-width: 2.5;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.modal-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #e8e8ed;
}

.modal-user-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
}

.modal-stars {
  display: flex;
  gap: 0.25rem;
}

.modal-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

/* ==================== EXTRA SERVICES SECTION ==================== */
.services-section {
  padding: 8rem 2rem;
  background: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .services-section {
    padding-bottom: 14rem;
  }
}

.featured-services {
  margin-bottom: 5rem;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e8e8ed;
  transition: all 0.3s ease;
  opacity: 0;
  transform: rotateX(-90deg);
  transform-origin: top center;
}

.service-item.fold-in {
  animation: foldIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes foldIn {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}

.service-item:nth-child(1).fold-in { animation-delay: 0.1s; }
.service-item:nth-child(2).fold-in { animation-delay: 0.2s; }
.service-item:nth-child(3).fold-in { animation-delay: 0.3s; }
.service-item:nth-child(4).fold-in { animation-delay: 0.4s; }
.service-item:nth-child(5).fold-in { animation-delay: 0.5s; }
.service-item:nth-child(6).fold-in { animation-delay: 0.6s; }

.service-item:first-child {
  border-top: 1px solid #e8e8ed;
}

.service-item:hover {
  padding-left: 1rem;
}

.service-number {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1d1f;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover .service-number {
  background: #1d1d1f;
  color: #ffffff;
  transform: scale(1.1);
}

.service-content {
  padding-top: 0.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-description {
  font-size: 1.0625rem;
  color: #6e6e73;
  line-height: 1.6;
  max-width: 700px;
}

.section-divider {
  text-align: center;
  margin: 5rem 0;
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8e8ed, transparent);
}

.divider-text {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #ffffff;
  color: #86868b;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.view-more-section {
  text-align: center;
  margin: 4rem 0;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.5rem;
  background: #ffffff;
  color: #1d1d1f;
  border: 2px solid #1d1d1f;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-more-btn:hover {
  background: #1d1d1f;
  color: #ffffff;
  transform: scale(1.03);
}

.view-more-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-more-btn.active svg {
  transform: rotate(180deg);
}

.hidden-services {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hidden-services.show {
  max-height: 4000px;
}

/* Mobile fix for Extra Services section */
@media (max-width: 768px) {
  .hidden-services.show {
    max-height: none;
    overflow: visible;
  }

  .simple-card {
    margin-bottom: 1rem;
  }

  .contact-purchase-section {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}

.pricing-section {
  margin-top: 4rem;
}

@media (max-width: 968px) {
  .pricing-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
  }
}

.pricing-category {
  margin-bottom: 3rem;
}

.category-header {
  margin-bottom: 1.5rem;
}

.category-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.category-subtitle {
  font-size: 0.9375rem;
  color: #86868b;
}

.pricing-table {
  background: #fafafa;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8e8ed;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e8e8ed;
  transition: background 0.2s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: #ffffff;
}

.tier-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1d1d1f;
}

.tier-time {
  font-size: 0.9375rem;
  color: #6e6e73;
  min-width: 100px;
  text-align: right;
}

.tier-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d1d1f;
  min-width: 120px;
  text-align: right;
}

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

.simple-card {
  background: #fafafa;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid #e8e8ed;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.simple-card.double-width {
  grid-column: span 2;
}

@media (max-width: 968px) {
  .simple-card.double-width {
    grid-column: span 1;
  }
}

.simple-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.simple-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
}

.simple-price {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.simple-time {
  font-size: 1rem;
  color: #6e6e73;
  font-weight: 500;
}

.price-note {
  font-size: 1.5rem;
  font-weight: 600;
  color: #6e6e73;
}

.price-note-inline {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6e6e73;
  margin-left: 0.25rem;
}

/* ==================== CONTACT PURCHASE SECTION ==================== */
.contact-purchase-section {
  text-align: center;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .contact-purchase-section {
    margin: 2rem 0 6rem 0;
    padding-bottom: 4rem;
  }
}

.contact-purchase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background: #1d1d1f;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(29, 29, 31, 0.2);
}

.contact-purchase-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 29, 31, 0.3);
}

/* ==================== CONTACT MODAL ==================== */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-modal-content {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.active .contact-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.contact-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f7;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-modal-close:hover {
  background: #e8e8ed;
  transform: rotate(90deg);
}

.contact-modal-close svg {
  width: 20px;
  height: 20px;
  stroke: #1d1d1f;
}

.contact-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.contact-modal-subtitle {
  font-size: 1rem;
  color: #6e6e73;
  margin-bottom: 2rem;
}

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

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f5f5f7;
  border-radius: 16px;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
}

.contact-option:hover {
  background: #ffffff;
  border-color: #1d1d1f;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #1d1d1f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  stroke: #ffffff;
}

@media (max-width: 768px) {
  .contact-modal-content {
    width: calc(100% - 2rem);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 2.5rem 1.75rem;
  }

  .contact-modal-close {
    width: 40px;
    height: 40px;
    top: 1.25rem;
    right: 1.25rem;
  }
}

@media (max-width: 568px) {
  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-modal-content {
    padding: 2rem 1.5rem;
    width: calc(100% - 2rem);
    margin: 1rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }

  .contact-modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .contact-modal-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .contact-option {
    padding: 1.25rem;
  }

  .contact-modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    z-index: 10;
  }
}

/* ==================== COMPARISON SECTION ==================== */
.comparison-section {
  padding: 8rem 2rem;
  background: #fafafa;
  max-width: 100%;
  overflow-x: hidden;
}

.table-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8ed;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

thead th {
  background: #fafafa;
  padding: 1.25rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #86868b;
  text-align: center;
  border-bottom: 1px solid #e8e8ed;
  transition: all 0.3s ease;
  transform-origin: top center;
  animation: columnFoldDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
  opacity: 0;
}

.comparison-section.animate thead th {
  animation-play-state: running;
}

thead th:nth-child(1) { animation-delay: 0.1s; }
thead th:nth-child(2) { animation-delay: 0.3s; }
thead th:nth-child(3) { animation-delay: 0.5s; }

@keyframes columnFoldDown {
  0% {
    opacity: 0;
    transform: perspective(800px) rotateX(-90deg);
  }
  100% {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg);
  }
}

thead th:first-child {
  text-align: left;
}

thead th.active {
  background: #1d1d1f;
  color: #ffffff;
}

tbody tr {
  border-bottom: 1px solid #f5f5f7;
  transition: background 0.2s ease;
  transform-origin: top center;
}

tbody tr td {
  animation: columnFoldDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
  opacity: 0;
}

.comparison-section.animate tbody tr td {
  animation-play-state: running;
}

tbody tr:nth-child(1) td:nth-child(1) { animation-delay: 0.6s; }
tbody tr:nth-child(1) td:nth-child(2) { animation-delay: 0.7s; }
tbody tr:nth-child(1) td:nth-child(3) { animation-delay: 0.8s; }

tbody tr:nth-child(2) td:nth-child(1) { animation-delay: 0.7s; }
tbody tr:nth-child(2) td:nth-child(2) { animation-delay: 0.8s; }
tbody tr:nth-child(2) td:nth-child(3) { animation-delay: 0.9s; }

tbody tr:nth-child(3) td:nth-child(1) { animation-delay: 0.8s; }
tbody tr:nth-child(3) td:nth-child(2) { animation-delay: 0.9s; }
tbody tr:nth-child(3) td:nth-child(3) { animation-delay: 1s; }

tbody tr:nth-child(4) td:nth-child(1) { animation-delay: 0.9s; }
tbody tr:nth-child(4) td:nth-child(2) { animation-delay: 1s; }
tbody tr:nth-child(4) td:nth-child(3) { animation-delay: 1.1s; }

tbody tr:nth-child(5) td:nth-child(1) { animation-delay: 1s; }
tbody tr:nth-child(5) td:nth-child(2) { animation-delay: 1.1s; }
tbody tr:nth-child(5) td:nth-child(3) { animation-delay: 1.2s; }

tbody tr:nth-child(6) td:nth-child(1) { animation-delay: 1.1s; }
tbody tr:nth-child(6) td:nth-child(2) { animation-delay: 1.2s; }
tbody tr:nth-child(6) td:nth-child(3) { animation-delay: 1.3s; }

tbody tr:nth-child(7) td:nth-child(1) { animation-delay: 1.2s; }
tbody tr:nth-child(7) td:nth-child(2) { animation-delay: 1.3s; }
tbody tr:nth-child(7) td:nth-child(3) { animation-delay: 1.4s; }

tbody tr:nth-child(8) td:nth-child(1) { animation-delay: 1.3s; }
tbody tr:nth-child(8) td:nth-child(2) { animation-delay: 1.4s; }
tbody tr:nth-child(8) td:nth-child(3) { animation-delay: 1.5s; }

tbody tr:nth-child(9) td:nth-child(1) { animation-delay: 1.4s; }
tbody tr:nth-child(9) td:nth-child(2) { animation-delay: 1.5s; }
tbody tr:nth-child(9) td:nth-child(3) { animation-delay: 1.6s; }

tbody tr:nth-child(10) td:nth-child(1) { animation-delay: 1.5s; }
tbody tr:nth-child(10) td:nth-child(2) { animation-delay: 1.6s; }
tbody tr:nth-child(10) td:nth-child(3) { animation-delay: 1.7s; }

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background: #fafafa;
}

tbody td {
  padding: 1.125rem 2rem;
  font-size: 1rem;
  text-align: center;
  color: #1d1d1f;
  font-weight: 400;
}

tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1d1d1f;
}

.icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #34c759;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
}

.icon-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d1d1d6;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 600;
}

.badge.gold {
  background: #1d1d1f;
  color: #ffffff;
}

.badge.silver {
  background: #f5f5f7;
  color: #86868b;
}

.badge.green {
  background: #d1f4e0;
  color: #248a3d;
}

.badge.red {
  background: #ffe5e5;
  color: #d70015;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 8rem 2rem;
  background: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
}

.contact-wrapper {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.clean-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.8rem;
  border-radius: 12px;
  border: 2px solid #111;
  background: rgba(255, 255, 255, 0);
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
}

.clean-btn svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.clean-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.clean-btn:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.ticket:hover {
  border-color: #e63946;
  color: #e63946;
}

.whatsapp:hover {
  border-color: #25d366;
  color: #25d366;
}

.telegram:hover {
  border-color: #0088cc;
  color: #0088cc;
}

.discord:hover {
  border-color: #5865f2;
  color: #5865f2;
}

/* ==================== FOOTER ==================== */
.footer {
  background: #1d1d1f;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 1rem;
  color: #86868b;
  margin-bottom: 3rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #86868b;
}

.footer-bottom {
  border-top: 1px solid #3d3d3f;
  padding-top: 2rem;
  color: #86868b;
  font-size: 0.875rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
  nav {
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    transform: none;
    border-radius: 20px;
  }

  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(-30px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .nav-container {
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1.25rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 0;
    overflow: hidden;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    max-height: 400px;
  }

  .nav-links a {
    text-align: center;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
    z-index: 10;
  }

  .mobile-toggle:hover {
    background: #f5f5f7;
  }

  .mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #1d1d1f;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }

  .hero-logo {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .visual-side {
    height: 800px;
    margin-top: 3rem;
  }

  .card-1,
  .card-2,
  .card-3 {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 1.5rem;
    padding: 2rem !important;
    animation: none !important;
  }

  .card-3 {
    margin-bottom: 0;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .main-title {
    font-size: 2.75rem;
  }

  .visual-side {
    height: 650px;
  }

  .card-1,
  .card-2,
  .card-3 {
    width: 90% !important;
    padding: 1.5rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .card-1 {
    left: 0 !important;
  }

  .card-2 {
    right: 0 !important;
    left: 0 !important;
    top: 30%;
  }

  .card-3 {
    left: 5%;
    bottom: -10%;
  }

  .card-eyebrow {
    font-size: 0.75rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-metric {
    font-size: 2.5rem;
  }

  .card-description {
    font-size: 0.875rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }

  .service-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .service-title {
    font-size: 1.25rem;
  }

  .service-description {
    font-size: 0.9375rem;
  }

  .feature-item {
    padding: 1.5rem 0;
  }

  /* .feature-header rule removed - using 768px breakpoint rules instead */

  .feature-icon {
    width: 36px;
    height: 36px;
  }

  .feature-icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .feature-text {
    font-size: 0.9375rem;
    padding-left: 0;
    margin-top: 0.5rem;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .tier-time,
  .tier-price {
    text-align: left;
  }

  .simple-services {
    grid-template-columns: 1fr;
  }

  /* Plans responsive */
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .toggle-container {
    flex-direction: column;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .card-container {
    min-height: 650px;
  }

  /* Testimonials responsive */
  .testimonial-card {
    flex: 0 0 320px;
  }

  .modal-content {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-logo {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
  }

  .main-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .visual-side {
    height: 600px;
  }

  .card-1,
  .card-2,
  .card-3 {
    width: 92% !important;
    padding: 1.25rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .card-metric {
    font-size: 2.25rem;
  }

  .card-description {
    font-size: 0.8125rem;
  }

  .service-item {
    padding: 1.5rem 0;
  }

  .service-title {
    font-size: 1.125rem;
  }

  .service-description {
    font-size: 0.875rem;
  }

  .feature-item {
    padding: 1.25rem 0;
  }

  /* .feature-header rule removed - using 768px breakpoint rules instead */

  .feature-icon {
    width: 32px;
    height: 32px;
  }

  .feature-icon svg {
    width: 16px;
    height: 16px;
  }

  .feature-title {
    font-size: 1.125rem;
    width: 100%;
  }

  .feature-text {
    font-size: 0.875rem;
    padding-left: 0;
    margin-top: 0.5rem;
    line-height: 1.6;
    width: 100%;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .clean-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .testimonial-card {
    flex: 0 0 280px;
  }

  .modal {
    padding: 1rem;
  }

  .modal-content {
    padding: 1.5rem;
  }
}

/* ============================================
   CLEAN ABOUT SECTION - Mobile First Approach
   ============================================ */

/* Base styles (Mobile-first - applies to all screen sizes) */
.about-features-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-feature-card:last-child {
  border-bottom: none;
}

/* Icon and Title Row - ALWAYS horizontal */
.about-feature-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.about-feature-icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #1d1d1f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon-box svg {
  width: 18px;
  height: 18px;
  fill: white;
  stroke: white;
  stroke-width: 2;
}

.about-feature-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

.about-feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #86868b;
  margin: 0;
  padding-left: 0;
}

/* Desktop styles (min-width: 769px) */
@media (min-width: 769px) {
  .about-features-container {
    gap: 1rem;
  }

  .about-feature-card {
    padding: 2rem 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .about-feature-card:hover {
    padding-left: 1.5rem;
    background: rgba(29, 29, 31, 0.02);
  }

  .about-feature-top {
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .about-feature-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .about-feature-icon-box svg {
    width: 20px;
    height: 20px;
  }

  .about-feature-card:hover .about-feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
  }

  .about-feature-heading {
    font-size: 1.5rem;
  }

  .about-feature-description {
    font-size: 1.0625rem;
  }
}

/* Fix comparison table on mobile - prevent text overflow */
@media (max-width: 768px) {
  thead th {
    padding: 1rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
  
  thead th:first-child {
    padding-left: 1rem !important;
  }
  
  thead th:last-child {
    padding-right: 1rem !important;
  }
  
  tbody td {
    padding: 0.875rem 0.5rem !important;
    font-size: 0.875rem !important;
  }
  
  tbody td:first-child {
    padding-left: 1rem !important;
  }
  
  tbody td:last-child {
    padding-right: 1rem !important;
  }
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */

.social-section {
  padding: 4rem 0;
  background: #fafafa;
}

.social-header {
  text-align: center;
  margin-bottom: 2rem;
}

.social-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #1d1d1f;
  border-radius: 50%;
  color: white;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon {
  width: 28px;
  height: 28px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .social-section {
    padding: 3rem 0;
  }

  .social-title {
    font-size: 1.25rem;
  }

  .social-links {
    gap: 1.5rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community-section {
  padding: 5rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto;
}

.community-stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fafafa;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.community-stat-card:hover {
  transform: translateY(-5px);
  background: #f5f5f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1d1d1f;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.loading-dots {
  font-size: 2rem;
  animation: pulse 1.5s ease-in-out infinite;
}

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

.live-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #00ff00;
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
  animation: blink 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}

.community-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.community-join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: #1d1d1f;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.community-join-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .community-section {
    padding: 3rem 0;
  }

  .community-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
  }

  .community-stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
    min-height: 2.5rem;
  }
}

/* ============================================
   AFFILIATES SECTION
   ============================================ */

.affiliates-section {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.affiliates-header {
  text-align: center;
  margin-bottom: 3rem;
}

.affiliates-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.affiliate-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 1.5rem;
  border-radius: 12px;
  background: #fafafa;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.affiliate-card:hover {
  transform: translateY(-5px);
  background: #f5f5f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.affiliate-logo-wrapper {
  width: 100%;
  max-width: 150px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.affiliate-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.affiliate-card:hover .affiliate-logo {
  transform: scale(1.05);
}

.affiliate-label {
  font-size: 1rem;
  font-weight: 500;
  color: #86868b;
  text-align: center;
  margin: 0;
  transition: color 0.3s ease;
}

.affiliate-card:hover .affiliate-label {
  color: #1d1d1f;
}

/* Mobile styles */
@media (max-width: 768px) {
  .affiliates-section {
    padding: 3rem 0;
  }

  .affiliates-header {
    margin-bottom: 2rem;
  }

  .affiliates-title {
    font-size: 1.25rem;
  }

  .affiliates-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .affiliate-card {
    padding: 1.5rem;
  }

  .affiliate-logo-wrapper {
    max-width: 180px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .affiliate-label {
    font-size: 0.9375rem;
  }
}
