/* Base Styles */
:root {
  --primary-color: #06B6D4;
  --primary-dark: #0891B2;
  --primary-light: #A5F3FC;
  --dark-bg: #0F172A;
  --darker-bg: #020617;
  --light-bg: #1E293B;
  --lighter-bg: #334155;
  --text-color: #ffffff;
  --text-muted: #94A3B8;
  --border-color: #475569;
  --card-bg: #1E293B;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
  --shadow-light: 0 5px 15px rgba(6, 182, 212, 0.08);
  --gradient: linear-gradient(to right, #06B6D4, #3B82F6);
  --gradient-hover: linear-gradient(to right, #0891B2, #2563EB);
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.light-theme {
  --dark-bg: #F8FAFC;
  --darker-bg: #ffffff;
  --light-bg: #F1F5F9;
  --lighter-bg: #E2E8F0;
  --text-color: #0F172A;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(6, 182, 212, 0.08);
  --shadow-light: 0 5px 15px rgba(6, 182, 212, 0.05);
  --gradient: linear-gradient(to right, #06B6D4, #3B82F6);
  --gradient-hover: linear-gradient(to right, #0891B2, #2563EB);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #040273; /* Lightened */
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  z-index: -1;
  transition: var(--transition);
}

.btn:hover::before {
  background: var(--gradient-hover);
}

.btn i {
  margin-left: 8px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #040273; /* Lightened */
  color: #ffffff;
  margin-left: 15px;
}

.btn-outline::before {
  opacity: 0;
}

.btn-outline:hover {
  color: white;
}

.btn-outline:hover::before {
  opacity: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.tagline .dot {
  width: 8px;
  height: 8px;
  background-color: #888888; /* Lightened */
  border-radius: 50%;
  margin-right: 10px;
}

.tagline p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.highlight {
  color: #888888; /* Lightened */
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--darker-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader .logo-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}

.loading-text {
  font-size: 18px;
  color: var(--text-color);
  letter-spacing: 2px;
}

.loading-text span {
  animation: dots 1.5s infinite;
  opacity: 0;
}

.loading-text span:nth-child(1) {
  animation-delay: 0.2s;
}

.loading-text span:nth-child(2) {
  animation-delay: 0.4s;
}

.loading-text span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes dots {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Header */
header {
  background-color: var(--darker-bg);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header.sticky {
  padding: 15px 0;
  background-color: rgba(37, 37, 37, 0.95); /* Lightened */
  backdrop-filter: blur(10px);
}

body.light-theme header.sticky {
  background-color: rgba(255, 255, 255, 0.95);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-right: 10px;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: flex;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #888888; /* Lightened */
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  border-radius: 50%;
  background-color: var(--light-bg);
}

.theme-toggle:hover {
  color: var(--text-color);
  background-color: var(--lighter-bg);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-color);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle.active .hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--darker-bg);
  padding: 80px 20px 20px;
  z-index: 998;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  margin-bottom: 20px;
}

.mobile-menu li {
  margin-bottom: 15px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
}

.mobile-cta {
  text-align: center;
  margin-bottom: 20px;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-socials a:hover {
  background: var(--gradient);
  transform: translateY(-5px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(37, 37, 37, 0.8), rgba(37, 37, 37, 0.9)); /* Lightened */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero .subtitle {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  position: relative;
}

.hero-buttons {
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.hero-features .feature {
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(136, 136, 136, 0.2); /* Lightened */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.feature-icon i {
  color: #bbbbbb; /* Lightened */
  font-size: 12px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: #888888; /* Lightened */
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

.arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.arrow span {
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--text-muted);
  border-right: 2px solid var(--text-muted);
  transform: rotate(45deg);
  margin: -5px;
  animation: arrow 1.5s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes arrow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Stats Section */
.stats {
  background-color: var(--light-bg);
  padding: 80px 0;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--light-bg);
  clip-path: polygon(0 100%, 100% 100%, 50% 0);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 20px;
  border-radius: var(--border-radius);
  background-color: var(--card-bg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 10px;
}

.stat-item .plus {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.about-features .feature {
  display: flex;
  align-items: center;
}

.about-features .feature i {
  color: #888888; /* Lightened */
  margin-right: 10px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.about-stats .stat {
  padding: 15px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  text-align: center;
  flex: 1;
}

.about-stats .stat h4 {
  font-size: 24px;
  font-weight: 700;
  color: #888888; /* Lightened */
  margin-bottom: 5px;
}

.about-stats .stat p {
  margin-bottom: 0;
  font-size: 14px;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)); /* Lightened */
  z-index: 1;
}

.floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--card-bg);
  padding: 15px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 2;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.card-icon i {
  color: white;
}

.card-content h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--gradient);
  color: white;
  padding: 15px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.experience-badge .years {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 500;
}

/* Founder Section */
.founder {
  padding: 100px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.founder-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.founder-image:hover img {
  transform: scale(1.05);
}

.founder-social {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.founder-social a {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.founder-social a:hover {
  transform: translateY(-5px);
}

.founder-info h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.founder-title {
  font-size: 18px;
  color: #888888;
  margin-bottom: 20px;
  font-weight: 500;
}

.founder-bio {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
}

.founder-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.founder-stats .stat {
  padding: 15px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  text-align: center;
  flex: 1;
}

.founder-stats .stat h4 {
  font-size: 24px;
  font-weight: 700;
  color: #888888;
  margin-bottom: 5px;
}

.founder-stats .stat p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(136, 136, 136, 0.1); /* Lightened */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 24px;
  color: #888888; /* Lightened */
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.service-features li i {
  color: #888888; /* Lightened */
  margin-right: 10px;
  font-size: 14px;
}

.service-link {
  color: #888888; /* Lightened */
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

.services-cta {
  text-align: center;
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.services-cta p {
  margin-bottom: 20px;
  font-size: 18px;
}

/* How We Work Section */
.how-we-work {
  padding: 100px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--gradient);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-right: 30px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* For Creators Section */
.for-creators {
  padding: 100px 0;
  background-color: var(--dark-bg);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step {
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient);
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.step p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(136, 136, 136, 0.1); /* Lightened */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 24px;
  color: #888888; /* Lightened */
}

.step-link {
  color: #888888; /* Lightened */
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.step-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.step-link:hover i {
  transform: translateX(5px);
}

.creator-benefits {
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.creator-benefits h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.benefit {
  text-align: center;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.benefit-icon i {
  color: white;
  font-size: 20px;
}

.benefit h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 8px 20px;
  background-color: var(--card-bg);
  border: none;
  border-radius: 30px;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient);
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.portfolio-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 10px;
}

.portfolio-link {
  color: #888888; /* Lightened */
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.portfolio-link i {
  margin-left: 5px;
  transition: var(--transition);
}

.portfolio-link:hover i {
  transform: translateX(5px);
}

/* Brands Section */
.brands {
  padding: 80px 0;
  background-color: var(--card-bg);
}

.brands-slider {
  padding: 20px 0;
}

.brand {
  padding: 20px;
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(100%);
  text-align: center;
}

.brand:hover {
  opacity: 1;
  filter: grayscale(0);
}

.brand img {
  max-height: 60px;
  margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  padding: 0 15px;
}

.testimonial-content {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-light);
}

.quote-icon {
  color: #888888; /* Lightened */
  font-size: 24px;
  margin-bottom: 15px;
  opacity: 0.3;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.rating {
  color: #ffc107;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid;
  border-image: var(--gradient) 1;
}

.author-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-controls {
  position: relative;
  height: 40px;
  margin-top: 30px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px;
}

.swiper-pagination-bullet {
  background: var(--text-muted);
}

.swiper-pagination-bullet-active {
  background: black; /* Lightened */
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
}

.faq-icon {
  color: #888888; /* Lightened */
  transition: var(--transition);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer p {
  color: var(--text-muted);
  padding-bottom: 20px;
}

.faq-item.active .faq-question {
  background: linear-gradient(to right, rgba(136, 136, 136, 0.1), transparent); /* Lightened */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background-color: var(--darker-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/cta-bg.jpg") center / cover no-repeat;
  opacity: 0.05;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-muted);
  position: relative;
}

.cta-form {
  max-width: 600px;
  margin: 0 auto 50px;
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  text-align: left;
  position: relative;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  transition: var(--transition);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #888888; /* Lightened */
  box-shadow: 0 0 0 2px rgba(136, 136, 136, 0.2); /* Lightened */
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: center;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  color: white;
  font-size: 20px;
}

.contact-text h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-text p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: var(--darker-bg);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: var(--dark-bg);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 50px;
  position: relative;
}

.footer-logo p {
  margin-top: 20px;
  color: var(--text-muted);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: #888888; /* Lightened */
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.contact-info li i {
  margin-right: 10px;
  color: #888888; /* Lightened */
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gradient);
  transform: translateY(-5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.footer-bottom p {
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-legal a:hover {
  color: #888888; /* Lightened */
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  z-index: 999;
  display: none;
}

.cookie-consent.active {
  display: block;
  animation: slideIn 0.5s forwards;
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accept {
  background: var(--gradient);
  color: white;
  border: none;
}

.btn-settings {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.btn-accept:hover {
  transform: translateY(-2px);
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .theme-toggle {
    z-index: 1000;
    position: relative;
  }
  
  .mobile-menu {
    padding-top: 100px;
  }
  
  .mobile-menu ul {
    margin-bottom: 30px;
  }
  
  .mobile-menu li {
    margin-bottom: 20px;
  }
  
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    font-weight: 500;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
  }
  
  body.light-theme .mobile-menu {
    background-color: var(--darker-bg);
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 56px;
  }

  .process-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
  }

  .timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .founder-content {
    grid-template-columns: 1fr;
  }

  .founder-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .nav-links {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  .founder-stats {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline {
    margin-left: 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .stat-item h3,
  .stat-item .plus {
    font-size: 36px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-filter {
    flex-direction: column;
    align-items: center;
  }
}
