/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #4A31FC;
  --primary-dark: #3A28CC;
  --primary-light: #6B52FF;
  --background-dark: #000000;
  --background-light: #0A0A0A;
  --background-card: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --border-color: #222222;
  --border-light: #333333;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 20px rgba(74, 49, 252, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 49, 252, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(74, 49, 252, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.page-header-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

.header-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.method-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.method-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(74, 49, 252, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(74, 49, 252, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.card-dots span:first-child {
  background: #EF4444;
}

.card-dots span:nth-child(2) {
  background: #F59E0B;
}

.card-dots span:last-child {
  background: #10B981;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.brand-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon.large {
  width: 48px;
  height: 48px;
  background: var(--background-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.brand-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.brand-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.color-palette {
  display: flex;
  gap: 12px;
}

.color-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.floating-card i {
  color: var(--primary-color);
}

.card-1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: -25%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: -15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(74, 49, 252, 0.05) 0%, transparent 100%);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-toggle-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 12px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-light);
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.discount-badge {
  background: var(--primary-color);
  color: white;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

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

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(74, 49, 252, 0.05) 0%, transparent 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
}

.period {
  font-size: 16px;
  color: var(--text-secondary);
}

.annual-savings {
  text-align: center;
  color: var(--success-color);
  font-size: 14px;
  font-weight: 600;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 14px;
}

/* Add-ons Section */
.addons-section {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.addon-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.addon-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 24px;
}

.addon-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.addon-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 14px;
}

.addon-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Story Section */
.story-section {
  padding: 120px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text {
  max-width: 500px;
}

.story-text h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.story-text p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.story-highlights {
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.highlight-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.story-visual {
  display: flex;
  justify-content: center;
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-year {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Values Section */
.values-section {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.value-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 28px;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 120px 0;
}

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

.team-member {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.member-image {
  margin-bottom: 20px;
}

.member-placeholder {
  width: 80px;
  height: 80px;
  background: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 32px;
}

.member-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.member-bio {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.member-social a {
  width: 32px;
  height: 32px;
  background: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.social-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.contact-form-container {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 49, 252, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

.form-note a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-note a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.faq-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Portfolio Filter */
.portfolio-filter {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-container {
  display: flex;
  justify-content: center;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: white;
}

/* Portfolio Showcase */
.portfolio-showcase {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.portfolio-image {
  height: 280px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder {
  color: white;
  text-align: center;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.placeholder-icon svg {
  width: 48px;
  height: 48px;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  text-align: center;
  color: white;
  padding: 24px;
}

.portfolio-overlay-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-overlay-content p {
  margin-bottom: 16px;
  opacity: 0.9;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tag {
  background: var(--background-dark);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.portfolio-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.portfolio-metrics {
  display: flex;
  gap: 24px;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Process Section */
.process-section {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.process-features {
  list-style: none;
}

.process-features li {
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.process-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.proof-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.proof-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.proof-text p {
  color: var(--text-secondary);
}

.proof-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-item {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74, 49, 252, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: var(--primary-color);
}

.contact-item i {
  width: 20px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
  }
  
  .hero-title {
      font-size: 48px;
  }
  
  .page-header-content h1 {
      font-size: 48px;
  }
  
  .section-header h2 {
      font-size: 40px;
  }
  
  .cta-text h2 {
      font-size: 40px;
  }
  
  .header-stats {
      gap: 32px;
  }
  
  .portfolio-grid {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .story-content {
      grid-template-columns: 1fr;
      gap: 48px;
  }
  
  .contact-container {
      grid-template-columns: 1fr;
      gap: 48px;
  }
  
  .contact-methods {
      flex-direction: column;
      align-items: center;
      gap: 16px;
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 72px;
      flex-direction: column;
      background: var(--background-dark);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      border-top: 1px solid var(--border-color);
      padding: 32px 0;
      gap: 16px;
  }
  
  .nav-menu.active {
      left: 0;
  }
  
  .hero-title {
      font-size: 40px;
  }
  
  .page-header-content h1 {
      font-size: 40px;
  }
  
  .hero-subtitle {
      font-size: 18px;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .btn {
      width: 100%;
      max-width: 280px;
      justify-content: center;
  }
  
  .section-header h2 {
      font-size: 32px;
  }
  
  .cta-text h2 {
      font-size: 32px;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
      grid-template-columns: 1fr;
  }
  
  .process-grid {
      grid-template-columns: 1fr;
  }
  
  .pricing-grid {
      grid-template-columns: 1fr;
  }
  
  .values-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .team-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .addons-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .proof-content {
      flex-direction: column;
      text-align: center;
      gap: 32px;
  }
  
  .proof-logos {
      justify-content: center;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 48px;
  }
  
  .footer-links {
      grid-template-columns: 1fr;
      gap: 32px;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
  
  .floating-card {
      display: none;
  }
  
  .header-stats {
      flex-direction: column;
      gap: 24px;
  }
  
  .filter-buttons {
      justify-content: flex-start;
      overflow-x: auto;
      padding: 8px;
  }
  
  .portfolio-metrics {
      justify-content: center;
  }
  
  .form-row {
      grid-template-columns: 1fr;
  }
  
  .story-text h2 {
      font-size: 32px;
  }
  
  .contact-info h2 {
      font-size: 32px;
  }
  
  .process-step {
      flex-direction: column;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 16px;
  }
  
  .nav-container {
      padding: 0 16px;
  }
  
  .hero {
      padding: 100px 0 60px;
  }
  
  .page-header {
      padding: 100px 0 60px;
  }
  
  .hero-title {
      font-size: 32px;
  }
  
  .page-header-content h1 {
      font-size: 32px;
  }
  
  .hero-stats {
      flex-direction: column;
      gap: 16px;
      text-align: center;
  }
  
  .section-header h2 {
      font-size: 28px;
  }
  
  .cta-text h2 {
      font-size: 28px;
  }
  
  .service-card {
      padding: 24px;
  }
  
  .portfolio-content {
      padding: 20px;
  }
  
  .visual-card {
      padding: 16px;
  }
  
  .pricing-card {
      padding: 24px;
  }
  
  .contact-form-container {
      padding: 24px;
  }
  
  .story-text h2 {
      font-size: 28px;
  }
  
  .contact-info h2 {
      font-size: 28px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Focus styles */
.btn:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4A31FC;
  --primary-dark: #3A28CC;
  --primary-light: #6B52FF;
  --background-dark: #000000;
  --background-light: #0A0A0A;
  --background-card: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --border-color: #222222;
  --border-light: #333333;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  z-index: 1001;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--text-primary);
  background: rgba(74, 49, 252, 0.1);
}

.nav-link.btn-primary {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  margin-left: 8px;
}

.nav-link.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bar {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
  margin: 3px 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: calc(100vh - 70px);
      background: rgba(0, 0, 0, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 0;
      padding: 40px 24px;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      overflow-y: auto;
  }
  
  .nav-menu.active {
      transform: translateX(0);
  }
  
  .nav-item {
      width: 100%;
      max-width: 300px;
  }
  
  .nav-link {
      width: 100%;
      text-align: center;
      padding: 16px 24px;
      margin: 4px 0;
      font-size: 16px;
      border-radius: 12px;
      display: block;
  }
  
  .nav-link.btn-primary {
      background: var(--primary-color);
      color: white;
      margin: 16px 0 0 0;
      font-weight: 600;
  }
  
  .nav-link.btn-primary:hover {
      background: var(--primary-dark);
      transform: none;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
      overflow: hidden;
  }
}

@media (max-width: 480px) {
  .nav-container {
      padding: 0 16px;
      height: 65px;
  }
  
  .logo-text {
      font-size: 18px;
  }
  
  .logo-icon {
      width: 24px;
      height: 24px;
  }
  
  .nav-menu {
      top: 65px;
      height: calc(100vh - 65px);
      padding: 32px 20px;
  }
  
  .nav-link {
      padding: 14px 20px;
      font-size: 15px;
  }
}

/* Navbar scroll effect */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 20px rgba(74, 49, 252, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 49, 252, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(74, 49, 252, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(74, 49, 252, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.card-dots span:first-child {
  background: #EF4444;
}

.card-dots span:nth-child(2) {
  background: #F59E0B;
}

.card-dots span:last-child {
  background: #10B981;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.brand-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon.large {
  width: 48px;
  height: 48px;
  background: var(--background-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.brand-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.brand-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.color-palette {
  display: flex;
  gap: 12px;
}

.color-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.floating-card i {
  color: var(--primary-color);
}

.card-1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: -25%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: -15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* Trusted By Section */
.trusted-by {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.trusted-content {
  text-align: center;
}

.trusted-content h3 {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-weight: 500;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 18px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(74, 49, 252, 0.05) 0%, transparent 100%);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.why-text p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  font-size: 18px;
}

.why-features {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.why-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 24px rgba(74, 49, 252, 0.1);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
  font-size: 20px;
}

.stat-card .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Portfolio Preview Section */
.portfolio-preview {
  padding: 120px 0;
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.portfolio-preview-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-preview-item:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.portfolio-image {
  height: 240px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder {
  color: white;
  text-align: center;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-preview-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  text-align: center;
  color: white;
  padding: 24px;
}

.portfolio-overlay-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-overlay-content p {
  margin-bottom: 16px;
  opacity: 0.9;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tag {
  background: var(--background-dark);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.portfolio-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 14px;
}

.portfolio-metrics {
  display: flex;
  gap: 24px;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

.portfolio-cta {
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #F59E0B;
  font-size: 16px;
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--background-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 20px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Process Section */
.process-section {
  padding: 120px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

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

.process-number {
  width: 64px;
  height: 64px;
  background: var(--primary-color);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
}

.process-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 16px;
}

.process-features {
  list-style: none;
}

.process-features li {
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.process-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

/* Pricing Preview Section */
.pricing-preview {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-preview-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-preview-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(74, 49, 252, 0.1);
}

.pricing-preview-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(74, 49, 252, 0.05) 0%, transparent 100%);
  transform: scale(1.05);
}

.pricing-preview-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-preview-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
}

.period {
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-preview-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 14px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 12px;
}

.pricing-cta {
  text-align: center;
}

.pricing-cta p {
  color: var(--text-secondary);
  font-size: 14px;
}

.pricing-cta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.pricing-cta a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
}

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

.faq-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74, 49, 252, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: var(--primary-color);
}

.contact-item i {
  width: 20px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
      grid-template-columns: 1fr;
      gap: 48px;
      text-align: center;
  }
  
  .hero-title {
      font-size: 48px;
  }
  
  .section-header h2 {
      font-size: 40px;
  }
  
  .cta-text h2 {
      font-size: 40px;
  }
  
  .why-content {
      grid-template-columns: 1fr;
      gap: 48px;
  }
  
  .why-text h2 {
      font-size: 32px;
  }
  
  .process-step {
      flex-direction: column;
      text-align: center;
      gap: 16px;
  }
  
  .portfolio-preview-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .pricing-preview-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .trusted-logos {
      gap: 32px;
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 72px;
      flex-direction: column;
      background: var(--background-dark);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      border-top: 1px solid var(--border-color);
      padding: 32px 0;
      gap: 16px;
  }
  
  .nav-menu.active {
      left: 0;
  }
  
  .hero-title {
      font-size: 40px;
  }
  
  .hero-subtitle {
      font-size: 18px;
  }
  
  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .btn {
      width: 100%;
      max-width: 280px;
      justify-content: center;
  }
  
  .section-header h2 {
      font-size: 32px;
  }
  
  .cta-text h2 {
      font-size: 32px;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
  }
  
  .portfolio-preview-grid {
      grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
      grid-template-columns: 1fr;
  }
  
  .pricing-preview-grid {
      grid-template-columns: 1fr;
  }
  
  .stats-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }
  
  .why-cta {
      flex-direction: column;
      align-items: center;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 48px;
  }
  
  .footer-links {
      grid-template-columns: 1fr;
      gap: 32px;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
  
  .floating-card {
      display: none;
  }
  
  .trusted-logos {
      gap: 24px;
      justify-content: center;
  }
  
  .logo-item {
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 16px;
  }
  
  .nav-container {
      padding: 0 16px;
  }
  
  .hero {
      padding: 100px 0 60px;
  }
  
  .hero-title {
      font-size: 32px;
  }
  
  .hero-stats {
      flex-direction: column;
      gap: 16px;
      text-align: center;
  }
  
  .section-header h2 {
      font-size: 28px;
  }
  
  .cta-text h2 {
      font-size: 28px;
  }
  
  .service-card {
      padding: 24px;
  }
  
  .portfolio-content {
      padding: 20px;
  }
  
  .visual-card {
      padding: 16px;
  }
  
  .pricing-preview-card {
      padding: 24px;
  }
  
  .testimonial-card {
      padding: 24px;
  }
  
  .why-text h2 {
      font-size: 28px;
  }
  
  .stats-grid {
      grid-template-columns: 1fr;
  }
  
  .process-number {
      width: 48px;
      height: 48px;
      font-size: 16px;
  }
  
  .trusted-logos {
      gap: 16px;
  }
  
  .logo-item {
      font-size: 14px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Focus styles */
.btn:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4A31FC;
  --primary-dark: #3A28CC;
  --primary-light: #6B52FF;
  --background-dark: #000000;
  --background-light: #0A0A0A;
  --background-card: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --border-color: #222222;
  --border-light: #333333;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}

/* Import Grotesk font */
@font-face {
  font-family: 'Grotesk';
  src: url('https://fonts.cdnfonts.com/css/space-grotesk') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('https://fonts.cdnfonts.com/css/space-grotesk') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('https://fonts.cdnfonts.com/css/space-grotesk') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  z-index: 1001;
}

/* Removed logo-icon class as requested */

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--text-primary);
  background: rgba(74, 49, 252, 0.1);
}

.nav-link.btn-primary {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  margin-left: 8px;
}

.nav-link.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bar {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
  margin: 3px 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 40px 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-item {
    width: 100%;
    max-width: 300px;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    margin: 4px 0;
    font-size: 16px;
    border-radius: 12px;
    display: block;
  }
  
  .nav-link.btn-primary {
    background: var(--primary-color);
    color: white;
    margin: 16px 0 0 0;
    font-weight: 600;
  }
  
  .nav-link.btn-primary:hover {
    background: var(--primary-dark);
    transform: none;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
    height: 65px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .nav-menu {
    top: 65px;
    height: calc(100vh - 65px);
    padding: 32px 20px;
  }
  
  .nav-link {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Navbar scroll effect */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 20px rgba(74, 49, 252, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 49, 252, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(74, 49, 252, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.page-header-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

.header-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.method-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.method-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(74, 49, 252, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(74, 49, 252, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.card-dots span:first-child {
  background: #EF4444;
}

.card-dots span:nth-child(2) {
  background: #F59E0B;
}

.card-dots span:last-child {
  background: #10B981;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.brand-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon.large {
  width: 48px;
  height: 48px;
  background: var(--background-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.brand-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.brand-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.color-palette {
  display: flex;
  gap: 12px;
}

.color-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.floating-card i {
  color: var(--primary-color);
}

.card-1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: -25%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: -15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(74, 49, 252, 0.05) 0%, transparent 100%);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Portfolio Showcase - Removed hover effects */
.portfolio-showcase {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  /* Removed transition */
}

/* Removed hover effect */

.portfolio-image {
  height: 280px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder {
  color: white;
  text-align: center;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.placeholder-icon svg {
  width: 48px;
  height: 48px;
}

/* Removed portfolio overlay hover effect */
.portfolio-overlay {
  display: none; /* Hide overlay completely */
}

.portfolio-content {
  padding: 24px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tag {
  background: var(--background-dark);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.portfolio-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.portfolio-metrics {
  display: flex;
  gap: 24px;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Portfolio Preview Section - Removed hover effects */
.portfolio-preview {
  padding: 120px 0;
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.portfolio-preview-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  /* Removed transition */
}

/* Removed hover effect */

/* Process Section */
.process-section {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.process-features {
  list-style: none;
}

.process-features li {
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.process-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.proof-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.proof-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.proof-text p {
  color: var(--text-secondary);
}

.proof-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-item {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 16px;
  opacity: 0.7;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74, 49, 252, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: var(--primary-color);
}

.contact-item i {
  width: 20px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .section-header h2 {
    font-size: 40px;
  }
  
  .cta-text h2 {
    font-size: 40px;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .why-text h2 {
    font-size: 32px;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .portfolio-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .pricing-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .trusted-logos {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--background-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    gap: 16px;
    height: calc(100vh - 70px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .cta-text h2 {
    font-size: 32px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .why-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-card {
    display: none;
  }
  
  .trusted-logos {
    gap: 24px;
    justify-content: center;
  }
  
  .logo-item {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .cta-text h2 {
    font-size: 28px;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .portfolio-content {
    padding: 20px;
  }
  
  .visual-card {
    padding: 16px;
  }
  
  .pricing-preview-card {
    padding: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .why-text h2 {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .process-number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  
  .trusted-logos {
    gap: 16px;
  }
  
  .logo-item {
    font-size: 14px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Focus styles */
.btn:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4A31FC;
  --primary-dark: #3A28CC;
  --primary-light: #6B52FF;
  --background-dark: #000000;
  --background-light: #0A0A0A;
  --background-card: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-muted: #666666;
  --border-color: #222222;
  --border-light: #333333;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}

/* Import Grotesk font */
@font-face {
  font-family: 'Grotesk';
  src: url('https://fonts.cdnfonts.com/css/space-grotesk') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('https://fonts.cdnfonts.com/css/space-grotesk') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Grotesk';
  src: url('https://fonts.cdnfonts.com/css/space-grotesk') format('woff2');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  z-index: 1001;
}

/* Removed logo-icon class as requested */

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--text-primary);
  background: rgba(74, 49, 252, 0.1);
}

.nav-link.btn-primary {
  background: var(--primary-color);
  color: white;
  font-weight: 600;
  margin-left: 8px;
}

.nav-link.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.bar {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
  margin: 3px 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 40px 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-item {
    width: 100%;
    max-width: 300px;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    margin: 4px 0;
    font-size: 16px;
    border-radius: 12px;
    display: block;
  }
  
  .nav-link.btn-primary {
    background: var(--primary-color);
    color: white;
    margin: 16px 0 0 0;
    font-weight: 600;
  }
  
  .nav-link.btn-primary:hover {
    background: var(--primary-dark);
    transform: none;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
    height: 65px;
  }
  
  .logo-text {
    font-size: 18px;
  }
  
  .nav-menu {
    top: 65px;
    height: calc(100vh - 65px);
    padding: 32px 20px;
  }
  
  .nav-link {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* Navbar scroll effect */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 20px rgba(74, 49, 252, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 49, 252, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Page Header */
.page-header {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(74, 49, 252, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-header-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.page-header-content p {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

.header-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.method-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.method-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(74, 49, 252, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(74, 49, 252, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.card-dots span:first-child {
  background: #EF4444;
}

.card-dots span:nth-child(2) {
  background: #F59E0B;
}

.card-dots span:last-child {
  background: #10B981;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.brand-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon.large {
  width: 48px;
  height: 48px;
  background: var(--background-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

.brand-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.brand-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.color-palette {
  display: flex;
  gap: 12px;
}

.color-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.floating-card i {
  color: var(--primary-color);
}

.card-1 {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.card-2 {
  top: 60%;
  right: -25%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: -15%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 120px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.service-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(74, 49, 252, 0.05) 0%, transparent 100%);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* Portfolio Showcase - Removed hover effects */
.portfolio-showcase {
  padding: 80px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  /* Removed transition */
}

/* Removed hover effect */

.portfolio-image {
  height: 280px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder {
  color: white;
  text-align: center;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.placeholder-icon svg {
  width: 48px;
  height: 48px;
}

/* Removed portfolio overlay hover effect */
.portfolio-overlay {
  display: none; /* Hide overlay completely */
}

.portfolio-content {
  padding: 24px;
}

.portfolio-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tag {
  background: var(--background-dark);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.portfolio-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.portfolio-metrics {
  display: flex;
  gap: 24px;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* Portfolio Preview Section - Removed hover effects */
.portfolio-preview {
  padding: 120px 0;
}

.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.portfolio-preview-item {
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  /* Removed transition */
}

/* Removed hover effect */

/* Process Section */
.process-section {
  padding: 120px 0;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.process-features {
  list-style: none;
}

.process-features li {
  padding: 4px 0;
  color: var(--text-secondary);
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.process-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Social Proof Section */
.social-proof {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.proof-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.proof-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.proof-text p {
  color: var(--text-secondary);
}

.proof-logos {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-item {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 16px;
  opacity: 0.7;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74, 49, 252, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-text h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: var(--primary-color);
}

.contact-item i {
  width: 20px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--background-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .section-header h2 {
    font-size: 40px;
  }
  
  .cta-text h2 {
    font-size: 40px;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .why-text h2 {
    font-size: 32px;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .portfolio-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .pricing-preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .trusted-logos {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--background-dark);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    gap: 16px;
    height: calc(100vh - 70px);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .cta-text h2 {
    font-size: 32px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .why-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-card {
    display: none;
  }
  
  .trusted-logos {
    gap: 24px;
    justify-content: center;
  }
  
  .logo-item {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .cta-text h2 {
    font-size: 28px;
  }
  
  .service-card {
    padding: 24px;
  }
  
  .portfolio-content {
    padding: 20px;
  }
  
  .visual-card {
    padding: 16px;
  }
  
  .pricing-preview-card {
    padding: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .why-text h2 {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .process-number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  
  .trusted-logos {
    gap: 16px;
  }
  
  .logo-item {
    font-size: 14px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: white;
}

/* Focus styles */
.btn:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}