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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #1C1C1C;
  color: #FFFFFF;
}

/* Navigation Styles */
.navbar {
  position: relative;
  background: #1C1C1C;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
}

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

.logo img {
  height: 35px;
  width: 110px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #FF6B35;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF6B35;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.login-btn {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

.login-btn:hover {
  color: #FF6B35;
}

.login-btn::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FF6B35;
  transition: width 0.3s ease;
}

.login-btn:hover::after {
  width: 100%;
}

.cta-btn {
  padding: 12px 24px;
  background: #FF6B35;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #FF8052;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

/* Tablet Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .nav-container {
    padding: 20px 30px;
  }

  .nav-menu {
    gap: 30px;
  }

  .nav-menu li a {
    font-size: 15px;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .nav-container {
    padding: 15px 20px;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions .login-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1C1C1C;
    padding: 20px;
    border-bottom: 1px solid #3F3F3F;
    gap: 20px;
    z-index: 10;
  }
}

/* Main Content Spacing */
main {
  padding: 40px 20px;
}

/* Hero Section Styles */
.hero-section {
  padding: 60px 30px 60px;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 102px;
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.hero-title-wrapper {
  max-width: 740px;
  width: 100%;
}

.hero-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-style: normal;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.2em;
  color: #FFFFFF;
  letter-spacing: -3px;
  text-align: center;
  text-transform: none;
  text-decoration-line: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  text-decoration-thickness: initial;
  text-decoration-skip-ink: initial;
  text-underline-offset: initial;
  -webkit-text-stroke-width: initial;
  -webkit-text-stroke-color: initial;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-description-wrapper {
  max-width: 514px;
  width: 100%;
}

.hero-description {
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  font-style: normal;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  color: #8C8C8C;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  text-decoration-line: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  text-decoration-thickness: initial;
  text-decoration-skip-ink: initial;
  text-underline-offset: initial;
  -webkit-text-stroke-width: initial;
  -webkit-text-stroke-color: initial;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  margin-bottom: 8px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

/* Hero Image Section */
.hero-image-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.hero-image-container {
  aspect-ratio: 1.82094;
  width: 100%;
  max-height: 626px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(0.5);
  animation: scaleIn 0.8s ease forwards;
  animation-delay: 0.6s;
  margin-bottom: -500px;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUpCenter {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Button Styles */
.btn-primary {
  padding: 16px 32px;
  background: #FF6B35;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #3F3F3F;
  display: inline-block;
}

.btn-primary:hover {
  background: #FF8052;
}

.btn-secondary {
  padding: 16px 32px;
  background: #262626;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #3F3F3F;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #3F3F3F;
}

/* Hero Responsive Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .hero-section {
    padding: 60px 30px 0px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-image-container {
    margin-bottom: -350px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 60px 20px 60px;
  }

  .hero-content {
    gap: 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image-container {
    margin-bottom: -150px;
  }
}

/* Dashboard Image Styles */
.dashboard-image-wrapper {
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
  background-color: rgba(38, 38, 38, 0.54);
  border-radius: 32px;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.5);
  padding: 8px;
  width: 96.27%;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.5);
  animation: scaleIn 0.8s ease forwards;
  animation-delay: 0.8s;
  cursor: pointer;
}

.dashboard-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

/* Video Play Overlay */
.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.video-play-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.video-play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FF6B35;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.video-play-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: #FF6B35;
  animation: pulse 2s infinite;
  z-index: -1;
}

.video-play-button:hover {
  transform: scale(1.1);
  background: #FF8052;
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

.play-icon {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  margin-left: 4px;
}

.video-play-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #FFFFFF;
  z-index: 2;
}

.video-modal-close:hover {
  background: #FF6B35;
  border-color: #FF6B35;
  transform: rotate(90deg);
}

.video-modal-close svg {
  width: 20px;
  height: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* Dashboard Responsive Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .dashboard-image-wrapper {
    padding: 8px;
    border-radius: 28px;
  }

  .dashboard-image {
    border-radius: 20px;
  }

  .video-play-button {
    width: 70px;
    height: 70px;
  }

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

  .video-play-text {
    font-size: 12px;
  }

  .video-play-overlay::before {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 767px) {
  .dashboard-image-wrapper {
    padding: 16px;
    border-radius: 24px;
    width: 90%;
  }

  .dashboard-image {
    border-radius: 16px;
  }

  .video-play-button {
    width: 60px;
    height: 60px;
  }

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

  .video-play-text {
    font-size: 11px;
  }

  .video-play-overlay::before {
    width: 200px;
    height: 200px;
  }

  .video-modal-close {
    top: -40px;
    width: 36px;
    height: 36px;
  }

  .video-modal-close svg {
    width: 18px;
    height: 18px;
  }

  .video-modal-content {
    width: 95%;
  }
}

/* Feature Section Styles */
.feature-section {
  padding: 110px 30px 60px;
  width: 100%;
  position: relative;
}

.feature-container {
  max-width: 1044px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.feature-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
  position: sticky;
  top: 60px;
  z-index: 1;
  background: #1C1C1C;
  padding: 20px 0;
}

.feature-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin: 0;
}

.feature-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Feature Card - Sticky Scroll */
.feature-card {
  background: #262626;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 144px;
  padding: 0 0 0 56px;
  position: sticky;
  min-height: 478px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center;
  will-change: transform, opacity;
}

.feature-card:nth-child(1) {
  top: 140px;
  z-index: 1;
}

.feature-card:nth-child(2) {
  top: 180px;
  z-index: 1;
  gap: 106px;
  padding: 0;
}

.feature-card:nth-child(3) {
  top: 220px;
  z-index: 1;
}

.feature-card:nth-child(4) {
  top: 260px;
  z-index: 1;
  gap: 106px;
  padding: 0;
}

/* Feature Card Content */
.feature-content-left {
  flex: 1;
  max-width: 375px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-card:nth-child(2) .feature-content-left {
  order: 2;
}

.feature-card:nth-child(4) .feature-content-left {
  order: 2;
}

.feature-content-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0;
}

.feature-card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #8C8C8C;
  margin: 0;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.feature-check-text {
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
}

/* Feature Card Images */
.feature-content-right {
  flex: 1;
  position: relative;
  min-height: 478px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
}

.feature-card:nth-child(2) .feature-content-right {
  order: 1;
  width: 45%;
  flex: none;
  padding: 75px 72px;
  border-radius: 16px 0 0 16px;
}

.feature-card:nth-child(4) .feature-content-right {
  order: 1;
  width: 45%;
  flex: none;
  padding: 75px 72px;
  border-radius: 16px 0 0 16px;
}

.feature-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}

.feature-card:nth-child(1) .feature-image-card {
  width: 75%;
  aspect-ratio: 1.87766;
}

.feature-card:nth-child(2) .feature-image-card {
  width: 100%;
  aspect-ratio: 0.987768;
}

.feature-card:nth-child(3) .feature-image-card {
  width: 72%;
  aspect-ratio: 1.07668;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Feature Section Responsive Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .feature-section {
    padding: 80px 30px 40px;
  }

  .feature-title {
    font-size: 42px;
  }

  .feature-card {
    gap: 80px;
    padding: 0 0 0 40px;
  }

  .feature-card:nth-child(1) {
    top: 120px;
  }

  .feature-card:nth-child(2) {
    top: 160px;
    gap: 60px;
  }

  .feature-card:nth-child(3) {
    top: 200px;
    gap: 80px;
    padding: 0 0 0 40px;
  }

  .feature-card:nth-child(4) {
    top: 240px;
    gap: 60px;
  }

  .feature-content-left {
    max-width: unset;
    padding: 50px 0 50px 30px;
  }

  .feature-card:nth-child(2) .feature-content-left {
    padding: 0;
  }

  .feature-card:nth-child(4) .feature-content-left {
    padding: 0;
  }

  .feature-card-title {
    font-size: 36px;
  }

  .feature-checklist {
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .feature-section {
    padding: 60px 20px 60px;
  }

  .feature-title {
    font-size: 32px;
  }

  .feature-title-wrapper {
    top: 80px;
  }

  .feature-cards-wrapper {
    gap: 20px;
  }

  .feature-card {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    position: relative;
    top: auto !important;
    min-height: auto;
  }

  .feature-card:nth-child(2) {
    gap: 30px;
  }

  .feature-content-left {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    order: 1;
    padding: 0;
  }

  .feature-card:nth-child(2) .feature-content-left {
    order: 1;
    padding: 0;
  }

  .feature-card:nth-child(4) .feature-content-left {
    order: 1;
    padding: 0;
  }

  .feature-content-right {
    width: 100%;
    min-height: 316px;
    order: 2;
    padding: 0 !important;
    border-radius: 0 0 16px 16px !important;
  }

  .feature-card:nth-child(2) .feature-content-right {
    order: 2;
    width: 100%;
    flex: 1;
  }

  .feature-card:nth-child(4) .feature-content-right {
    order: 2;
    width: 100%;
    flex: 1;
  }

  .feature-card-title {
    font-size: 28px;
  }

  .feature-card-description {
    font-size: 15px;
  }

  .feature-checklist {
    gap: 8px;
  }
}

/* Workprocess Section Styles */
.workprocess-section {
  padding: 60px 30px 150px;
  width: 100%;
  position: relative;
}

.workprocess-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.workprocess-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.workprocess-title-wrapper {
  text-align: center;
}

.workprocess-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin: 0;
}

.workprocess-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.workprocess-card {
  padding: 0 38px 0 24px;
  border-left: 1px solid #3F3F3F;
  opacity: 0;
  transform: translateY(100px);
  animation: fadeInUp 0.8s ease forwards;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
}

.workprocess-card:nth-child(1) {
  animation-delay: 0.3s;
}

.workprocess-card:nth-child(2) {
  animation-delay: 0.4s;
}

.workprocess-card:nth-child(3) {
  animation-delay: 0.5s;
}

.workprocess-card:nth-child(4) {
  animation-delay: 0.6s;
}

.workprocess-card-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0;
}

.workprocess-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0px;
  color: #8C8C8C;
  margin: 0;
}

/* Workprocess Responsive Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .workprocess-section {
    padding: 80px 30px 0;
  }

  .workprocess-title {
    font-size: 42px;
  }

  .workprocess-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .workprocess-card {
    padding: 0 20px;
    gap: 8px;
  }
}

@media (max-width: 767px) {
  .workprocess-section {
    padding: 60px 20px 0;
  }

  .workprocess-title {
    font-size: 32px;
  }

  .workprocess-content {
    gap: 40px;
  }

  .workprocess-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workprocess-card {
    padding: 0 20px;
    border-left: none;
    gap: 8px;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 0 30px;
  width: 100%;
  position: relative;
}

.pricing-container {
  background: #262626;
  border-radius: 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 96px 40px 114px;
  opacity: 0;
  transform: translateY(100px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.pricing-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  max-width: 100%;
}

.pricing-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin: 0;
}

.pricing-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0px;
  color: #8C8C8C;
  margin: 0;
}

/* Toggle Switch */
.pricing-toggle-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.pricing-toggle-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border-radius: 0;
}

.pricing-toggle-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #FFFFFF;
  margin: 0;
  padding: 0 16px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.pricing-toggle-label.inactive {
  color: #8C8C8C;
}

.pricing-toggle-switch {
  width: 52px;
  height: 28px;
  background: #3F3F3F;
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pricing-toggle-circle {
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 100px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: transform 0.3s ease;
}

.pricing-toggle-switch.yearly .pricing-toggle-circle {
  transform: translateX(24px);
}

.pricing-save-badge {
  background: #FF6B35;
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.pricing-card {
  background: #1C1C1C;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.4s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.5s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.6s;
}

.pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin: 0;
}

.pricing-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #8C8C8C;
  margin: 0;
}

.pricing-card-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-card-price {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin: 0;
}

.pricing-card-period {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #8C8C8C;
  margin: 0;
}

.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card-features-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #8C8C8C;
  margin: 0;
}

.pricing-card-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background: #3F3F3F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.pricing-feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #8C8C8C;
  margin: 0;
}

/* Full Width Pricing Card */
.pricing-card-full-width {
  grid-column: 1 / -1;
  margin-top: 0px;
  animation-delay: 0.7s;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card-full-width .pricing-card-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.pricing-card-full-width .pricing-card-header {
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.pricing-card-full-width .pricing-card-title-wrapper {
  flex-shrink: 0;
}

.pricing-card-full-width .pricing-card-price-wrapper {
  flex-shrink: 0;
  align-items: flex-end;
  text-align: right;
}

.pricing-card-full-width .pricing-card-price {
  font-size: 48px;
}

.pricing-card-full-width .pricing-card-price-custom {
  font-size: 48px;
}

.pricing-card-divider {
  width: 100%;
  height: 1px;
  background: #3F3F3F;
  margin: 0;
}

.pricing-card-full-width .pricing-card-features-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.pricing-card-full-width .pricing-feature-item {
  flex-shrink: 0;
}

/* Pricing Responsive Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .pricing-section {
    padding: 60px 30px;
  }

  .pricing-title {
    font-size: 38px;
    letter-spacing: -1.2px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card-price {
    font-size: 48px;
  }

  .pricing-card-price-custom {
    font-size: 48px;
  }

  .pricing-card-full-width .pricing-card-features-list {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .pricing-card-full-width .pricing-card-header {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-title {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }

  .pricing-content {
    gap: 40px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 24px;
    gap: 24px;
  }

  .pricing-card-price {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .pricing-card-price-custom {
    font-size: 30px !important;
    letter-spacing: -1.5px !important;
    text-align: left;
  }

  .pricing-toggle-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-card-full-width .pricing-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card-full-width .pricing-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .pricing-card-full-width .pricing-card-price {
    font-size: 36px;
  }

  .pricing-card-full-width .pricing-card-price-custom {
    font-size: 36px;
  }

  .pricing-card-full-width .pricing-card-features-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* Review Section Styles */
.review-section {
  padding: 110px 30px;
  width: 100%;
  position: relative;
}

.review-container {
  max-width: 1045px;
  margin: 0 auto;
  width: 100%;
  will-change: transform;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.review-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.review-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 0 30px;
}

.review-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-rating-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-rating-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  opacity: 0.7;
  margin: 0;
}

.review-rating-text .rating-light {
  color: #8C8C8C;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.review-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-info-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.review-info-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  gap: 95px 0;
  width: 100%;
}

.review-card {
  padding: 0 30px;
  border-left: 1px solid #3F3F3F;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
  justify-content: space-between;
}

.review-card:nth-child(1) {
  animation-delay: 0.3s;
}

.review-card:nth-child(2) {
  animation-delay: 0.4s;
}

.review-card:nth-child(3) {
  animation-delay: 0.5s;
}

.review-card:nth-child(4) {
  animation-delay: 0.6s;
}

.review-card:nth-child(5) {
  animation-delay: 0.7s;
}

.review-card:nth-child(6) {
  animation-delay: 0.8s;
}

.review-card-logo {
  width: 110px;
  height: 24px;
  object-fit: contain;
  object-position: left center;
}

.review-card-quote {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #8C8C8C;
  margin: 0;
}

.review-card-profile {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.review-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.review-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-end;
}

.review-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #FFFFFF;
  margin: 0;
}

.review-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #8C8C8C;
  margin: 0;
}

/* Review Responsive Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .review-section {
    padding: 80px 30px;
  }

  .review-title {
    font-size: 42px;
  }

  .review-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .review-card {
    padding: 0 25px;
  }
}

@media (max-width: 767px) {
  .review-section {
    padding: 60px 20px;
  }

  .review-title {
    font-size: 32px;
  }

  .review-content {
    gap: 40px;
  }

  .review-header {
    flex-direction: column;
    gap: 10px;
  }

  .review-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .review-card {
    padding: 0 20px;
    gap: 24px;
  }
}

/* Callout Section Styles */
.callout-section {
  padding: 150px 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.callout-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.callout-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  will-change: transform;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.callout-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.callout-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 715px;
  position: relative;
}

.callout-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.callout-title {
  font-family: 'Inter Display', 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.callout-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  max-width: 504px;
  width: 100%;
}

.callout-button {
  padding: 16px 32px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #000000;
  display: inline-block;
}

.callout-button:hover {
  background: #1C1C1C;
}

/* Callout Responsive Styles */
@media (max-width: 1199px) and (min-width: 768px) {
  .callout-section {
    padding: 80px 30px;
  }

  .callout-container {
    max-width: 100%;
  }

  .callout-title {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .callout-section {
    padding: 60px 30px;
  }

  .callout-container {
    max-width: 100%;
  }

  .callout-title {
    font-size: 36px;
  }

  .callout-subtitle {
    font-size: 16px;
  }
}

/* Footer Styles */
.footer {
  padding: 40px 30px;
  width: 100%;
  background: #262626;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #8C8C8C;
}

.footer-left {
  flex-shrink: 0;
}

.footer-copyright {
  margin: 0;
  color: #8C8C8C;
  font-size: 14px;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.footer-link {
  color: #8C8C8C;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-link:hover {
  color: #FFFFFF;
}

.footer-separator {
  color: #8C8C8C;
}

.footer-right {
  flex-shrink: 0;
}

.footer-discord {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FF6B35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-discord:hover {
  color: #FF8052;
}

.footer-discord-text {
  font-size: 14px;
}

.footer-discord-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Footer Responsive Styles */
@media (max-width: 767px) {
  .footer {
    padding: 32px 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer-center {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-copyright,
  .footer-link,
  .footer-discord-text {
    font-size: 13px;
  }

  .footer-discord-icon {
    width: 18px;
    height: 18px;
  }
}
