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

:root {
  --primary-color: #0a0e27;
  --secondary-color: #0f1629;
  --accent-color: #00d4ff;
  --accent-hover: #00f0ff;
  --accent-secondary: #6366f1;
  --accent-purple: #8b5cf6;
  --text-dark: #e2e8f0;
  --text-light: #94a3b8;
  --text-lighter: #64748b;
  --bg-light: #0f1629;
  --bg-white: #1a1f3a;
  --bg-card: #1e2544;
  --border-color: #2d3552;
  --border-glow: rgba(0, 212, 255, 0.3);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 16px 60px rgba(0, 0, 0, 0.4);
  --shadow-strong: 0 24px 90px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 28px 100px rgba(0, 212, 255, 0.25);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.4);
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --spacing-xs: 16px;
  --spacing-sm: 32px;
  --spacing-md: 64px;
  --spacing-lg: 96px;
  --spacing-xl: 128px;
  --spacing-xxl: 160px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08), transparent 60%),
    linear-gradient(135deg, #0a0e27 0%, #0f1629 50%, #0a0e27 100%);
  background-attachment: fixed;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 22, 41, 0.9) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 212, 255, 0.3);
  border-bottom: 1px solid var(--border-glow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: var(--transition);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f9fafb;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: var(--transition);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
}

nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
  transition: var(--transition);
  border-radius: 2px;
}

nav a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

nav a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  margin-left: auto;
}

.burger-menu span {
  width: 28px;
  height: 3px;
  background: #e5e7eb;
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 0 4px rgba(0, 212, 255, 0.3);
}

.burger-menu:hover span {
  background: var(--accent-color);
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

/* Hero Section */
.hero {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 22, 41, 0.9) 60%, rgba(10, 14, 39, 0.95) 100%);
  position: relative;
  overflow: hidden;
  color: #f9fafb;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  box-shadow: var(--shadow-strong), inset 0 0 100px rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid var(--border-glow);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite alternate;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: orbFloat 15s ease-in-out infinite alternate-reverse;
  filter: blur(40px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  text-align: left;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr;
  gap: var(--spacing-sm);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-sm);
  color: #f9fafb;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(249, 250, 251, 0.85);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-medium);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-purple));
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover), 0 0 25px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium), 0 0 20px rgba(0, 212, 255, 0.4);
  border-color: var(--accent-hover);
}

/* Sections */
section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

main > section:not(.hero):not(.cta) {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin: 0 var(--spacing-sm);
  padding: calc(var(--spacing-md) + 8px) 0;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

main > section:not(.hero):not(.cta)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(0, 212, 255, 0.08), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(99, 102, 241, 0.06), transparent 32%);
  pointer-events: none;
}

main > section:nth-of-type(even):not(.hero):not(.cta) {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-white) 100%);
}

main > section:not(.hero):not(.cta) .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1.1fr;
  gap: var(--spacing-sm);
}

.about-preview .content-page {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-white) 100%);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.process .section-title,
.process .section-subtitle {
  text-align: center;
}

.process .features-grid {
  position: relative;
  counter-reset: step;
}

.process .feature-item {
  border-left: 3px solid rgba(0, 212, 255, 0.4);
  padding-left: calc(var(--spacing-sm) - 4px);
  background: var(--bg-card);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

.process .feature-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -18px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4), 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.service-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-white) 50%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--spacing-xs);
  animation: fadeInUp 0.7s ease both;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong), 0 0 30px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--spacing-sm);
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.05);
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.2s; }

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: calc(var(--spacing-md) - 10px);
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: var(--spacing-xs);
  position: relative;
  animation: fadeInUp 0.7s ease both;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong), 0 0 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 2.3rem;
  margin-bottom: var(--spacing-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.25), rgba(99, 102, 241, 0.15));
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
  color: var(--accent-color);
}

.feature-icon i {
  font-size: inherit;
  color: inherit;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.features-grid .feature-item:nth-child(1) { animation-delay: 0.05s; }
.features-grid .feature-item:nth-child(2) { animation-delay: 0.1s; }
.features-grid .feature-item:nth-child(3) { animation-delay: 0.15s; }
.features-grid .feature-item:nth-child(4) { animation-delay: 0.2s; }

.feature-item h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  aspect-ratio: 4/3;
  animation: fadeInUp 0.7s ease both;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.gallery-item.dragging {
  opacity: 0.6;
  transform: scale(0.98);
}

.gallery-item.drag-over {
  outline: 2px dashed var(--accent-color);
  outline-offset: -10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0) 0%, rgba(0, 212, 255, 0.4) 100%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
  box-shadow: inset 0 0 50px rgba(0, 212, 255, 0.3);
}

.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.2s; }

/* CTA Section */
.cta {
  background: radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.2), rgba(99, 102, 241, 0.15)),
    linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-white);
  padding: calc(var(--spacing-xl) - 10px) 0;
  text-align: center;
  border-radius: var(--border-radius);
  margin: var(--spacing-lg) var(--spacing-sm);
  box-shadow: var(--shadow-strong), 0 0 50px rgba(0, 212, 255, 0.2);
  border: 1px solid var(--border-glow);
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.cta .btn:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent-purple));
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover), 0 0 30px rgba(0, 212, 255, 0.6);
}

.cta::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -30%;
  width: 50%;
  height: 140%;
  background: linear-gradient(115deg, rgba(0, 212, 255, 0.15), rgba(99, 102, 241, 0.1), transparent);
  transform: rotate(12deg);
  animation: sheen 6s ease-in-out infinite;
  pointer-events: none;
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--primary-color) 0%, #050812 100%);
  color: var(--bg-white);
  padding: 12px 0 10px;
  margin-top: var(--spacing-sm);
  border-top: 1px solid var(--border-glow);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.footer-section p {
  color: rgba(229, 231, 235, 0.7);
  line-height: 1.5;
  margin-bottom: 8px;
}

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

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

.footer-links a {
  color: rgba(229, 231, 235, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 8px;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-lighter);
}

/* Content Pages */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-md) 0;
}

.content-page h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.content-page h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.content-page p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  font-size: 1.0625rem;
}

.content-page ul,
.content-page ol {
  margin-left: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
  line-height: 1.8;
}

.content-page li {
  margin-bottom: var(--spacing-xs);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: var(--spacing-md) auto;
  background: var(--bg-card);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15), 0 0 15px rgba(0, 212, 255, 0.3);
  background: var(--bg-card);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --spacing-xs: 12px;
    --spacing-sm: 24px;
    --spacing-md: 48px;
    --spacing-lg: 64px;
    --spacing-xl: 80px;
    --spacing-xxl: 96px;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .header-content {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--spacing-sm);
  }

  main > section:not(.hero):not(.cta) {
    margin: var(--spacing-xs);
    padding: var(--spacing-md) 0;
  }

  .logo {
    font-size: 1.4rem;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  nav {
    width: 100%;
    justify-self: end;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-strong);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
    gap: var(--spacing-sm);
    border-bottom: 1px solid var(--border-glow);
  }

  nav ul.active {
    display: flex;
    transform: translateX(0);
  }

  .burger-menu {
    display: flex;
    position: relative;
    right: 0;
    top: auto;
    transform: none;
    margin-left: auto;
    z-index: 1001;
  }

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

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

  .services-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .process .feature-item {
    padding-left: var(--spacing-sm);
  }

  .process .feature-item::before {
    left: 0;
    top: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  section {
    padding: var(--spacing-md) 0;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 56px;
    --spacing-xl: 64px;
  }

  body {
    font-size: 16px;
  }

  .service-card,
  .feature-item {
    padding: var(--spacing-sm);
  }
}

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

@keyframes orbFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(14px, -16px, 0) scale(1.04);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%) rotate(12deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translateX(220%) rotate(12deg);
    opacity: 0.9;
  }
  100% {
    transform: translateX(220%) rotate(12deg);
    opacity: 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 40px rgba(99, 102, 241, 0.4);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

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

::-moz-selection {
  background: var(--accent-color);
  color: var(--primary-color);
}

/* Content Showcase Section */
.content-showcase {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-white) 100%);
  border-radius: var(--border-radius);
  margin: var(--spacing-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.showcase-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.showcase-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong), 0 0 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-color);
}

.showcase-card:hover::before {
  transform: scaleX(1);
}

.showcase-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.25), rgba(99, 102, 241, 0.15));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
  color: var(--accent-color);
}

.showcase-icon i {
  font-size: inherit;
  color: inherit;
}

.showcase-card:hover .showcase-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.showcase-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.showcase-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.showcase-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.showcase-features li {
  padding: var(--spacing-xs) 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.showcase-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Achievements Section */
.achievements {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-white) 100%);
  border-radius: var(--border-radius);
  margin: var(--spacing-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.achievements-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.achievements-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.achievement-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.achievement-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.achievement-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong), 0 0 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-color);
}

.achievement-item:hover::before {
  transform: scaleX(1);
}

.achievement-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: var(--spacing-xs);
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.achievement-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.achievement-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Service Benefits Section */
.service-benefits {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-white) 100%);
  border-radius: var(--border-radius);
  margin: var(--spacing-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.benefits-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.benefits-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.benefits-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.benefits-text {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-soft);
}

.benefits-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
  margin-top: var(--spacing-sm);
}

.benefits-text h3:first-child {
  margin-top: 0;
}

.benefits-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
}

.benefits-visual {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.benefit-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.benefit-highlight:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-strong), 0 0 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-color);
}

.benefit-highlight:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
  display: inline-block;
}

.benefit-highlight h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.benefit-highlight p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Portfolio Insights Section */
.portfolio-insights {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-white) 100%);
  border-radius: var(--border-radius);
  margin: var(--spacing-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.insights-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.insights-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong), 0 0 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-color);
}

.insight-card:hover::before {
  transform: scaleX(1);
}

.insight-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.insight-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.insight-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
}

.stat-item {
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.insight-card:hover .stat-item {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(99, 102, 241, 0.15));
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Contact Info Section */
.contact-info {
  padding: var(--spacing-lg) 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-white) 100%);
  border-radius: var(--border-radius);
  margin: var(--spacing-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.info-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.info-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.info-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
  transform: scaleX(0);
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong), 0 0 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent-color);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.info-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.info-details {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-color);
}

.info-details p {
  margin-bottom: var(--spacing-xs);
  font-size: 0.95rem;
}

.info-details p strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
  .showcase-grid,
  .achievements-grid,
  .insights-grid,
  .info-content {
    grid-template-columns: 1fr;
  }

  .benefits-content {
    grid-template-columns: 1fr;
  }

  .benefits-visual {
    margin-top: var(--spacing-sm);
  }
}

