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

:root {
  --bg-dark: #080816;
  --bg-dark-secondary: #0c0c24;
  --bg-dark-elevated: #111130;
  --bg-dark-rich: #0a0a20;
  --bg-light: #f7f5ff;
  --bg-light-secondary: #ffffff;
  --bg-light-warm: #f3f0fe;
  --bg-light-cream: #faf8ff;
  --bg-card-dark: rgba(255, 255, 255, 0.04);
  --bg-card-light: rgba(255, 255, 255, 0.88);
  --text-primary: #ffffff;
  --text-primary-light: #1a1a2e;
  --text-secondary: #a8a8cc;
  --text-secondary-light: #5a5a7a;
  --accent-blue: #4f46e5;
  --accent-purple: #7c3aed;
  --accent-pink: #ec4899;
  --accent-rose: #f43f5e;
  --accent-gold: #f59e0b;
  --accent-indigo: #4338ca;
  --accent-gradient: linear-gradient(135deg, #4f46e5, #7c3aed);
  --accent-gradient-warm: linear-gradient(135deg, #7c3aed, #ec4899);
  --accent-gradient-full: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899);
  --accent-gradient-rose: linear-gradient(135deg, #7c3aed, #f43f5e);
  --accent-glow: rgba(79, 70, 229, 0.3);
  --accent-glow-pink: rgba(236, 72, 153, 0.25);
  --accent-glow-rose: rgba(244, 63, 94, 0.2);
  --border-glass-dark: rgba(255, 255, 255, 0.08);
  --border-glass-light: rgba(0, 0, 0, 0.06);
  --font-primary: 'Outfit', 'Inter', -apple-system, sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

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

/* Glassmorphism */
.glass {
  background: var(--bg-card-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass-dark);
  border-radius: 20px;
  position: relative;
}

.glass::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(236, 72, 153, 0.04), transparent 60%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glass:hover::before {
  opacity: 1;
}

.section-light .glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--border-glass-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section-light .glass:hover {
  box-shadow: 0 16px 48px rgba(79, 70, 229, 0.1), 0 2px 8px rgba(236, 72, 153, 0.04);
  border-color: rgba(79, 70, 229, 0.2);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(8, 8, 22, 0.95) 0%, rgba(10, 10, 32, 0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass-dark);
  transition: all 0.3s ease;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), var(--accent-pink), transparent);
  opacity: 0.35;
}

.navbar.scrolled {
  padding: 10px 0;
  background: linear-gradient(180deg, rgba(8, 8, 22, 0.98) 0%, rgba(12, 12, 36, 0.96) 100%);
  box-shadow: 0 4px 30px rgba(79, 70, 229, 0.08);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo-amp {
  color: var(--accent-purple);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Sections common */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), var(--accent-pink), var(--accent-rose), transparent);
  opacity: 0.5;
  z-index: 1;
}

.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink), var(--accent-rose));
  filter: blur(6px);
  opacity: 0.7;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-pink), var(--accent-rose));
  border-radius: 4px;
  margin: 16px auto 0;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.2);
}

.section-badge {
  display: inline-block;
  padding: 7px 22px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(236, 72, 153, 0.1));
  color: var(--accent-blue);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--accent-gradient-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(79, 70, 229, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 25%, rgba(124, 58, 237, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 75%, rgba(236, 72, 153, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 10%, rgba(67, 56, 202, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(244, 63, 94, 0.04) 0%, transparent 40%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 0;
}

.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-el {
  position: absolute;
  font-size: 1.8rem;
  animation: float 20s infinite ease-in-out;
}

.floating-el i {
  filter: drop-shadow(0 0 20px rgba(79, 70, 229, 0.15));
}

.floating-el:nth-child(odd) { color: rgba(79, 70, 229, 0.08); }
.floating-el:nth-child(even) { color: rgba(236, 72, 153, 0.06); }

.el-1 { top: 15%; left: 10%; animation-delay: 0s; }
.el-2 { top: 25%; right: 12%; animation-delay: -3s; }
.el-3 { bottom: 30%; left: 8%; animation-delay: -6s; }
.el-4 { bottom: 20%; right: 10%; animation-delay: -9s; }
.el-5 { top: 50%; left: 5%; animation-delay: -12s; }
.el-6 { top: 10%; right: 25%; animation-delay: -15s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(5deg); }
  50% { transform: translateY(-15px) rotate(-3deg); }
  75% { transform: translateY(-40px) rotate(4deg); }
}

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

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(236, 72, 153, 0.12));
  border: 1px solid rgba(79, 70, 229, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #a5b4fc;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-style: italic;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary {
  background: var(--accent-gradient-full);
  color: #fff;
  box-shadow: 0 4px 25px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-blue);
  background: rgba(79, 70, 229, 0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number::after {
  content: '+';
  -webkit-text-fill-color: initial;
  background: var(--accent-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Light Section */
.section-light {
  --text-primary: var(--text-primary-light);
  --text-secondary: var(--text-secondary-light);
}

.section-light .section-header h2 {
  background: var(--accent-gradient-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-light .stat-number {
  background: var(--accent-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark {
  background: var(--bg-dark-rich);
}

.section-dark .section-header p {
  color: var(--text-secondary);
}

/* About Section */
.about {
  background: var(--bg-light-cream);
  background-image:
    linear-gradient(180deg, var(--bg-light-cream) 0%, var(--bg-light) 100%),
    radial-gradient(ellipse at 10% 20%, rgba(79, 70, 229, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 40%, rgba(124, 58, 237, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 40%);
}

.about .about-card p,
.about .about-mission p {
  color: var(--text-secondary-light);
}

.about .about-role {
  color: var(--accent-blue);
}

.about .about-card h3 {
  color: var(--text-primary-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.about-card {
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.3);
}

.about-card .about-icon {
  background: var(--accent-gradient-full);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.25);
}

.about-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #fff;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.about-role {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-blue);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-mission {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 48px;
  text-align: center;
  position: relative;
  border-image: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(236, 72, 153, 0.1)) 1;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.03), rgba(236, 72, 153, 0.02));
}

.mission-quote {
  font-size: 2rem;
  background: var(--accent-gradient-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.about-mission p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Services Section */
.services {
  background: var(--bg-dark-rich);
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(79, 70, 229, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(124, 58, 237, 0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 85%, rgba(236, 72, 153, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(67, 56, 202, 0.03) 0%, transparent 50%);
}

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

.service-card {
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(79, 70, 229, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent-gradient-full);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Why Choose Us */
.why-us {
  background: var(--bg-light-warm);
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(79, 70, 229, 0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 60%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 10%, rgba(236, 72, 153, 0.03) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 90%, rgba(244, 63, 94, 0.02) 0%, transparent 40%);
}

.why-us .why-item {
  background: var(--bg-card-light);
  border: 1px solid var(--border-glass-light);
  position: relative;
  overflow: hidden;
}

.why-us .why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient-warm);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-us .why-item:hover::before {
  opacity: 1;
}

.why-us .why-item span {
  color: var(--text-primary-light);
}

.why-us .why-item i {
  background: var(--accent-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.why-item {
  padding: 24px 16px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-glass-dark);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.1);
}

.why-item i {
  display: block;
  font-size: 1.5rem;
  color: var(--accent-blue);
  margin-bottom: 10px;
}

.why-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient-full);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.3);
}

.pricing-card.featured {
  border-color: rgba(79, 70, 229, 0.4);
  box-shadow: 0 8px 40px rgba(79, 70, 229, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: scale(1.03);
}

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

.popular-badge {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--accent-gradient-warm);
  color: #fff;
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(236, 72, 153, 0.3);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

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

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

.amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plus {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-custom {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li i {
  color: #22c55e;
  font-size: 0.8rem;
}

/* Testimonials */
.testimonials {
  background: var(--bg-light);
  background-image:
    radial-gradient(ellipse at 10% 40%, rgba(79, 70, 229, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 10%, rgba(244, 63, 94, 0.02) 0%, transparent 40%);
}

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

.testimonial-card {
  padding: 32px 28px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.testimonial-card .stars {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-secondary-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary-light);
  font-size: 0.9rem;
}

.testimonial-author span {
  color: var(--text-secondary-light);
  font-size: 0.8rem;
}

/* Form Section */
.form-section {
  background: var(--bg-dark-elevated);
  background-image:
    radial-gradient(ellipse at 10% 20%, rgba(79, 70, 229, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 30%, rgba(124, 58, 237, 0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 10%, rgba(67, 56, 202, 0.05) 0%, transparent 45%);
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-glass-dark);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
  outline: none;
}

.form-group select {
  cursor: pointer;
  appearance: auto;
}

.form-group select option {
  background: #1a1a3a;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* Contact Section */
.contact {
  background: var(--bg-light-cream);
  background-image:
    radial-gradient(ellipse at 15% 30%, rgba(79, 70, 229, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 60%, rgba(124, 58, 237, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 90%, rgba(236, 72, 153, 0.03) 0%, transparent 40%);
}

.contact .contact-card h3 {
  color: var(--text-primary-light);
}

.contact .contact-details p {
  color: var(--text-secondary-light);
}

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

.contact-card {
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
  border-color: rgba(79, 70, 229, 0.3);
}

.contact-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-gradient-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 4px 24px rgba(79, 70, 229, 0.25);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.contact-details p {
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.contact-details i {
  margin-right: 8px;
  color: var(--accent-blue);
}

.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(79, 70, 229, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse at 30% 100%, rgba(124, 58, 237, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 100%, rgba(236, 72, 153, 0.03) 0%, transparent 40%);
  border-top: 1px solid var(--border-glass-dark);
  padding: 60px 0 24px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), var(--accent-pink), transparent);
  opacity: 0.5;
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

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

.footer-links ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-blue);
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--accent-blue);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-glass-dark);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.95);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
  backdrop-filter: blur(10px);
}

.toast.error {
  background: rgba(239, 68, 68, 0.95);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* GWT ai Assistant */
.gwt-ai-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gwt-ai-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 4px 25px var(--accent-glow);
  transition: all 0.3s ease;
}

.gwt-ai-toggle:hover .gwt-ai-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 40px var(--accent-glow);
}

.gwt-ai-label {
  background: var(--accent-gradient-full);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--accent-glow);
  font-family: var(--font-primary);
}

.gwt-ai-widget {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  height: 500px;
  background: linear-gradient(160deg, rgba(12, 12, 36, 0.98) 0%, rgba(16, 16, 48, 0.97) 50%, rgba(20, 15, 40, 0.97) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-dark);
  border-radius: 20px;
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(79, 70, 229, 0.05);
  animation: aiSlideUp 0.35s ease;
}

.gwt-ai-widget.open {
  display: flex;
}

@keyframes aiSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.gwt-ai-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-glass-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(236, 72, 153, 0.05));
}

.gwt-ai-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gwt-ai-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 2px 12px rgba(79, 70, 229, 0.3);
}

.gwt-ai-header h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.gwt-ai-header span {
  font-size: 0.75rem;
  color: #22c55e;
  font-weight: 500;
}

.gwt-ai-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.gwt-ai-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.gwt-ai-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gwt-ai-messages::-webkit-scrollbar {
  width: 4px;
}

.gwt-ai-messages::-webkit-scrollbar-track {
  background: transparent;
}

.gwt-ai-messages::-webkit-scrollbar-thumb {
  background: var(--accent-blue);
  border-radius: 4px;
}

.gwt-ai-message {
  display: flex;
  max-width: 85%;
}

.gwt-ai-message.user {
  align-self: flex-end;
}

.gwt-ai-message.ai {
  align-self: flex-start;
}

.gwt-ai-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-primary);
}

.gwt-ai-message.ai .gwt-ai-bubble {
  background: rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: 4px;
}

.gwt-ai-message.user .gwt-ai-bubble {
  background: var(--accent-gradient);
  border-bottom-right-radius: 4px;
  color: #fff;
}

.gwt-ai-input {
  padding: 12px 16px;
  border-top: 1px solid var(--border-glass-dark);
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.gwt-ai-input input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-glass-dark);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-primary);
  outline: none;
  transition: all 0.3s ease;
}

.gwt-ai-input input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.gwt-ai-input input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.gwt-ai-input button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--accent-gradient-full);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.gwt-ai-input button:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-secondary);
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

@media (max-width: 480px) {
  .gwt-ai-widget {
    width: calc(100% - 32px);
    right: 16px;
    bottom: 88px;
    height: 440px;
  }
  .gwt-ai-label { display: none; }
}

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

.section {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 998;
    border-left: 1px solid var(--border-glass-dark);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 999;
  }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .section-header h2 { font-size: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 32px 24px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about-card,
  .service-card,
  .pricing-card,
  .contact-card { padding: 28px 20px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
}
