/* Modern IT Services Agency Design - Grayscale Focus */

/* Import base styles */
@import url("base.ui.css");

/* Google Fonts - Modern Typography System */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Albert+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* Typography Variables */
:root {
  /* Font Families */
  --font-display: "Outfit", system-ui, -apple-system, sans-serif;
  --font-body: "Albert Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;

  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
}

/* Page Wrapper - No push navigation needed for overlay */
.page-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
}

/* Enhanced Header Styles - Modern Agency Design */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  color: var(--text-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

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

/* Brand Section */
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: var(--tracking-wider);
  line-height: 1.2;
}

/* Subheader Navigation */
.subheader {
  background-color: rgba(249, 250, 251, 0.95);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 80px;
  z-index: 90;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.subheader.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.subnav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.subnav-links::-webkit-scrollbar {
  display: none;
}

.subnav-link {
  font-family: var(--font-body);
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  transition: var(--transition-normal);
  font-weight: 500;
  font-size: var(--text-sm);
  line-height: 1.4;
  position: relative;
  white-space: nowrap;
  border-radius: 6px;
}

.subnav-link:hover {
  color: var(--primary-400);
  background-color: var(--gray-100);
}

.subnav-link.active {
  color: var(--primary-600);
  background-color: var(--primary-50);
}

.subnav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  transition: width var(--transition-normal);
}

.subnav-link:hover::after,
.subnav-link.active::after {
  width: 80%;
}

/* Contact Section */
.nav-contact {
  display: flex;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid var(--gray-200);
}

/* Hamburger Menu */
.hamburger {
  display: block;
  background: none;
  border: none;
  color: var(--gray-900);
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 110;
}

.hamburger:hover {
  background-color: var(--gray-100);
}

.hamburger:active {
  transform: scale(0.95);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--gray-900);
  margin: 4px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background-color: var(--primary-600);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: var(--primary-600);
}

/* Responsive Design */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  /* Show desktop CTA button on tablet and desktop */
  .nav-contact {
    display: flex;
    padding-left: 32px;
  }

  .subnav-links {
    gap: 40px;
  }

  /* Hide mobile navigation on desktop */
  .nav-links {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .nav-contact {
    padding-left: 40px;
  }

  .subnav-links {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .subheader {
    display: none;
  }

  /* Hide desktop CTA button on mobile */
  .nav-contact {
    display: none;
  }

  /* Mobile navigation is now handled by the separate mobile-nav panel */
}

@media (max-width: 767px) {
  .nav {
    padding: 16px 0;
  }

  .nav-brand {
    gap: 2px;
  }

  .logo {
    font-size: 20px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  /* Mobile Navigation - Now handled by the separate mobile-nav panel */
}

/* --- OVERLAY NAVIGATION --- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100vw;
  left: auto;
  width: 100vw;
  height: 100vh;
  background: #ffffff; /* Solid white background */
  z-index: 1200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.mobile-nav.nav-open {
  right: 0;
}

/* Overlay for dimming background */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(31, 41, 55, 0.6); /* dark overlay */
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Remove page push effect */
.page-wrapper {
  position: relative;
  z-index: 1000;
  background: white;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  background: #ffffff; /* Solid white background */
}

.mobile-nav-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-brand .logo-img {
  height: 32px;
  width: auto;
}

.mobile-nav-brand .logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-close:hover {
  background: var(--gray-100);
}

.close-line {
  width: 20px;
  height: 2px;
  background: var(--gray-600);
  transition: all 0.3s ease;
  transform-origin: center;
}

.close-line:first-child {
  transform: rotate(45deg) translate(2px, 2px);
}

.close-line:last-child {
  transform: rotate(-45deg) translate(2px, -2px);
}

.mobile-nav-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  gap: 40px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.mobile-nav-link {
  display: block;
  width: calc(100vw - 48px); /* Full width minus padding */
  max-width: 400px;
  padding: var(--space-2) var(--space-4);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-950);
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: #ffffff; /* Solid white background */
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in width */
  outline: none; /* Remove default outline */
}

.mobile-nav-link:hover {
  color: var(--primary-900);
  background: none;
}

.mobile-nav-link.active {
  color: var(--primary-500);
  background: none;
}
/* Mobile navigation overlay not needed for push navigation */
.mobile-nav-overlay {
  display: none;
}

/* Extra Small Mobile - Show only logo */
@media (max-width: 480px) {
  .logo-text-container {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  .nav-brand {
    gap: 0;
  }

  /* Completely hide CTA button on mobile */
  .nav-contact {
    display: none !important;
  }
}

/* ===== HERO SECTION ===== */
/* Base Hero Styles */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-50) 0%,
    var(--secondary-50) 100%
  );
  color: var(--text-primary);
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%233b82f6" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero > .container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-48);
  align-items: center;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  padding: var(--space-16) 0;
}

/* Hero Pill Badge */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(
    135deg,
    var(--primary-400) 0%,
    var(--secondary-400) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-16);
  animation: fadeInUp 0.8s ease-out 0.1s both;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-pill::before {
  content: "";
  position: absolute;
  inset: 0 -100% 0 -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.hero-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--secondary-500) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-pill:hover::before {
  left: 100%;
}

/* Hero Text & Typography */
.hero-text h1 {
  font-size: var(--text-5xl);
  font-weight: 900;
  margin-bottom: var(--space-16);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: var(--tracking-tight);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.hero-text h1::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--gray-400) 0%, var(--gray-600) 100%);
  border-radius: 2px;
  animation: slideInLeft 1s ease-out 0.5s both;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-100) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Animations */
@keyframes slideInLeft {
  to {
    width: 60px;
    opacity: 1;
  }
}

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

/* Hero Description */
.hero-description {
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-16);
  color: var(--gray-600);
  max-width: 600px;
  position: relative;
  padding-left: var(--space-4);
}

.hero-description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
  border-radius: 2px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
  padding: var(--space-8) 0;
  border-block: 1px solid var(--gray-200);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
}

.hero-stats::before,
.hero-stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.hero-stats::before {
  top: 0;
}
.hero-stats::after {
  bottom: 0;
}

/* Stat Elements */
.stat {
  text-align: center;
  position: relative;
  padding: var(--space-4);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.3s ease;
}

.stat:hover .stat-label {
  color: var(--gray-800);
}

/* Hero specific stat colors */
.hero .stat-number {
  color: var(--gray-900);
}
.hero .stat-label {
  color: var(--gray-700);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: var(--space-16);
  margin-top: var(--space-8);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  position: relative;
}

.hero-buttons::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-buttons:hover::before {
  opacity: 1;
}

/* Hero Visual Container */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Code Editor Styles */
.code-editor {
  width: 100%;
  max-width: 500px;
  height: 70vh;
  min-height: 450px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25), 0 12px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-700);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.5;
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out 0.6s both;
  position: relative;
}

.code-editor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-600), transparent);
}

.code-editor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.code-editor:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(0.5deg) translateY(-8px);
  box-shadow: 0 48px 96px rgba(0, 0, 0, 0.35), 0 16px 32px rgba(0, 0, 0, 0.2);
  border-color: var(--gray-600);
}

.code-editor-header {
  background: var(--gray-800);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-700);
}

.code-editor-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-600);
}

.control.close {
  background: #ff5f56;
}

.control.minimize {
  background: #ffbd2e;
}

.control.maximize {
  background: #27c93f;
}

.code-editor-title {
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
}

.code-editor-body {
  display: flex;
  background: var(--gray-900);
  min-height: 300px;
}

.line-numbers {
  background: var(--gray-800);
  padding: 16px 12px;
  border-right: 1px solid var(--gray-700);
  color: var(--gray-500);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
  user-select: none;
}

.line-numbers span {
  display: block;
  min-width: 20px;
}

.code-content {
  flex: 1;
  padding: 16px;
  color: var(--gray-300);
}

.code-line {
  display: flex;
  align-items: center;
  min-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  gap: 8px;
}

.code-line.indent-1 {
  padding-left: 20px;
}

.code-line.indent-2 {
  padding-left: 40px;
}

.code-line.indent-3 {
  padding-left: 60px;
}

/* Syntax Highlighting */
.keyword {
  color: #ff7b72;
  font-weight: 600;
}

.class-name {
  color: #d2a8ff;
  font-weight: 600;
}

.property {
  color: #79c0ff;
}

.method {
  color: #d2a8ff;
}

.variable {
  color: #ffa657;
}

.string {
  color: #a5d6ff;
}

.comment {
  color: #7d8590;
  font-style: italic;
}

/* Intelligent spacing rules for code syntax */
.code-line {
  gap: 0;
}

/* Space element for explicit spacing control */
.code-line .space {
  width: 8px;
  display: inline-block;
}

/* Remove default margins from syntax elements */
.code-line .keyword,
.code-line .class-name,
.code-line .property,
.code-line .variable,
.code-line .string,
.code-line .comment,
.code-line .method {
  margin-right: 0;
  margin-left: 0;
}

/* Mobile responsive spacing */
@media (max-width: 768px) {
  .code-line .space {
    width: 6px;
  }
}

/* Cursor Animation */
.code-line:last-child::after {
  content: "|";
  color: var(--gray-400);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .code-editor {
    max-width: 100%;
    font-size: 12px;
  }

  .code-content {
    padding: 12px;
  }

  .line-numbers {
    padding: 12px 8px;
    font-size: 11px;
  }

  .code-line.indent-1 {
    padding-left: 16px;
  }

  .code-line.indent-2 {
    padding-left: 32px;
  }

  .code-line.indent-3 {
    padding-left: 48px;
  }
}

.visual-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: var(--text-lg);
  border: 2px solid var(--gray-700);
}

/* ===== HERO RESPONSIVE STYLES ===== */
/* Tablet & Mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 32px;
    max-width: 150px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 60px 0 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    text-align: center;
    width: 100%;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-pill {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-12);
  }

  .hero-text h1 {
    font-size: var(--text-3xl);
    line-height: 1.2;
    margin-bottom: var(--space-12);
  }

  .hero-description {
    font-size: var(--text-base);
    margin-bottom: var(--space-20);
    max-width: 95%;
    margin-inline: auto;
  }

  .hero-stats {
    order: 2;
    justify-content: center;
    gap: var(--space-12);
    padding: var(--space-16) 0;
    flex-wrap: wrap;
    width: 100%;
  }

  .stat {
    flex: 1;
    min-width: 80px;
    max-width: 120px;
    padding: var(--space-2);
  }

  .stat-number {
    font-size: var(--text-lg);
  }
  .stat-label {
    font-size: var(--text-xs);
  }

  .hero-buttons {
    order: 3;
    flex-direction: column;
    align-items: center;
    gap: var(--space-12);
    width: 100%;
    margin-bottom: var(--space-24);
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 16px 24px;
    font-size: 16px;
  }

  .hero-visual {
    order: 4;
    width: 100%;
  }

  .code-editor {
    transform: none;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    font-size: 12px;
    border-radius: 16px;
  }

  .code-editor:hover {
    transform: none;
  }
  .code-editor-body {
    min-height: 200px;
  }
  .code-content {
    padding: 12px;
  }
  .line-numbers {
    padding: 12px 8px;
    font-size: 11px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-12);
  }

  .hero {
    min-height: 95vh;
    padding: 0 0 30px;
  }

  .hero-content {
    gap: 0;
  }

  .hero-text h1 {
    font-size: var(--text-2xl);
    line-height: 1.1;
  }

  .hero-description {
    font-size: var(--text-sm);
    margin-bottom: var(--space-16);
  }

  .hero-stats {
    gap: var(--space-8);
    padding: var(--space-12) 0;
  }

  .stat {
    min-width: 70px;
    max-width: 100px;
  }

  .stat-number {
    font-size: var(--text-base);
  }
  .stat-label {
    font-size: 10px;
  }

  .hero-buttons {
    gap: var(--space-8);
    margin-bottom: var(--space-20);
  }

  .hero-buttons .btn {
    max-width: 260px;
    padding: 14px 20px;
    font-size: 15px;
  }

  .code-editor {
    height: 60vh;
    min-height: 320px;
  }

  .hero-service-header::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Contact section mobile optimizations */
  .contact-method {
    text-align: center;
    align-items: center;
  }

  .contact-form {
    padding: var(--space-10);
  }

  /* Footer link group title centering */
  .link-group-title {
    text-align: center;
  }

  .link-group-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

/* Enhanced About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(147, 51, 234, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(16, 185, 129, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Enhanced Header */
.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(147, 51, 234, 0.1)
  );
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  color: var(--primary-600);
  display: flex;
  align-items: center;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-700);
  letter-spacing: var(--tracking-wide);
}

.about-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
}

.about-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Content Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Enhanced Intro Section */
.about-intro {
  position: relative;
}

.intro-header {
  margin-bottom: 32px;
  position: relative;
}

.intro-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 16px;
}

.intro-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  border-radius: 2px;
  margin-top: 16px;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  position: relative;
}

.intro-text:first-child::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 8px;
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--primary-500), var(--secondary-500));
  border-radius: 2px;
}

/* Enhanced Principles Section */
.about-principles {
  position: relative;
}

.principles-header {
  margin-bottom: 40px;
  text-align: center;
}

.principles-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: var(--tracking-tight);
}

.principles-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-600);
  font-style: italic;
}

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

.principle-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

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

.principle-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--primary-300);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.principle-card:hover .principle-icon-wrapper {
  background: var(--primary-300);
  transform: scale(1.05);
}

.principle-icon {
  color: #000000;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.principle-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.principle-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: var(--tracking-tight);
}

.principle-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* Enhanced Approach Section */
.about-approach {
  position: relative;
}

.approach-header {
  margin-bottom: 32px;
  position: relative;
}

.approach-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: var(--tracking-tight);
}

.approach-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  border-radius: 2px;
}

.approach-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.approach-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
}

/* Enhanced Visual Content */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Enhanced Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

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

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-300);
  border-radius: 12px;
  margin: 0 auto 16px;
  color: #000000;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: var(--primary-300);
  transform: scale(1.1);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: var(--tracking-tight);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.stat-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.stat-link:hover {
  transform: translateY(-2px);
}

.stat-link:hover .stat-number {
  color: var(--primary-600);
}

.stat-link:hover .stat-label {
  color: var(--primary-700);
}

/* Enhanced Tech Preview Section */
.about-tech-preview {
  position: relative;
}

.tech-preview-header {
  text-align: center;
  margin-bottom: 40px;
}

.tech-preview-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: var(--tracking-tight);
}

.tech-preview-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-600);
  font-style: italic;
}

.tech-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tech-preview-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tech-preview-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-preview-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

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

.tech-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.6)
  );
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tech-preview-item:hover .tech-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(147, 51, 234, 0.1)
  );
  transform: scale(1.1);
}

.tech-icon-wrapper img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.tech-preview-item:hover .tech-icon-wrapper img {
  transform: scale(1.1);
}

.tech-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  letter-spacing: var(--tracking-wide);
  transition: color 0.3s ease;
}

.tech-preview-item:hover .tech-name {
  color: var(--primary-700);
}

/* Responsive Design for Enhanced About Section */
@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-subtitle {
    font-size: 19px;
  }

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

  .principles-title,
  .approach-title {
    font-size: 32px;
  }

  .tech-preview-title {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .about {
    padding: 140px 0;
  }

  .about-content {
    gap: 100px;
  }

  .about-title {
    font-size: 48px;
  }

  .about-subtitle {
    font-size: 21px;
  }

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

  .principles-grid {
    gap: 32px;
  }

  .principle-card {
    padding: 40px;
  }

  .about-stats {
    gap: 32px;
  }

  .stat-card {
    padding: 40px 32px;
  }

  .stat-number {
    font-size: 48px;
  }

  .tech-preview-grid {
    gap: 20px;
  }

  .tech-preview-item {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 80px 0;
  }

  .about-header {
    margin-bottom: 60px;
  }

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

  .about-subtitle {
    font-size: 14px;
  }

  .about-content {
    gap: 60px;
  }

  .intro-title {
    font-size: 28px;
  }

  .intro-text {
    font-size: 16px;
  }

  .principles-title,
  .approach-title {
    font-size: 24px;
  }

  .principles-subtitle,
  .tech-preview-subtitle {
    font-size: 14px;
  }

  .principle-card {
    padding: 24px;
  }

  .principle-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .principle-icon {
    font-size: 24px;
  }

  .principle-title {
    font-size: 18px;
  }

  .principle-description {
    font-size: 15px;
  }

  .approach-text {
    font-size: 16px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tech-preview-header {
    margin-bottom: 32px;
  }

  .tech-preview-title {
    font-size: 20px;
  }

  .tech-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .tech-preview-item {
    padding: 16px 12px;
    gap: 8px;
  }

  .tech-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .tech-icon-wrapper img {
    width: 28px;
    height: 28px;
  }

  .tech-name {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 0;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .about-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-content {
    gap: 40px;
  }

  .intro-title {
    font-size: 22px;
  }

  .intro-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .principles-title,
  .approach-title {
    font-size: 20px;
  }

  .principles-grid {
    gap: 16px;
  }

  .principle-card {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .principle-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    justify-self: center;
  }

  .principle-icon {
    font-size: 20px;
  }

  .principle-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .principle-description {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-stats {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .tech-preview-header {
    margin-bottom: 24px;
  }

  .tech-preview-title {
    font-size: 18px;
  }

  .tech-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }

  .tech-preview-item {
    padding: 12px 8px;
    border-radius: 8px;
  }

  .tech-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .tech-icon-wrapper img {
    width: 24px;
    height: 24px;
  }

  .tech-name {
    font-size: 11px;
  }

  .approach-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Trust Indicators */
.trust-indicators {
  padding: var(--space-32) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.trust-indicators::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-50) 0%,
    var(--secondary-50) 100%
  );
  opacity: 0.5;
  pointer-events: none;
}

.trust-header {
  text-align: center;
  margin-bottom: 64px;
}

.trust-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
}

.trust-header p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.trust-item:hover {
  border-color: var(--primary-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.trust-item:hover::before {
  opacity: 1;
}

.trust-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--primary-300);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.trust-icon {
  font-size: 24px;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-wrapper {
  background: var(--primary-600);
  transform: scale(1.1);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
}

.trust-subtext {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.4;
}

.trust-item:hover .trust-text {
  color: var(--gray-800);
}

.trust-item:hover .trust-subtext {
  color: var(--gray-700);
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    padding: 40px;
  }

  .trust-header h3 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .trust-indicators {
    padding: 60px 0;
  }

  .trust-header {
    margin-bottom: 48px;
  }

  .trust-header h3 {
    font-size: 28px;
  }

  .trust-header p {
    font-size: 16px;
  }

  .trust-grid {
    gap: 24px;
  }

  .trust-item {
    padding: 24px;
  }

  .trust-icon {
    font-size: 20px;
  }

  .trust-text {
    font-size: 16px;
  }
}

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

.section-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-16);
  color: var(--gray-900);
  letter-spacing: -0.025em;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gray-400) 0%,
    var(--gray-300) 50%,
    var(--gray-400) 100%
  );
  border-radius: 2px;
  transition: all 0.3s ease;
}

.section-header:hover h2::after {
  width: 100px;
  background: linear-gradient(
    90deg,
    var(--gray-600) 0%,
    var(--gray-500) 50%,
    var(--gray-600) 100%
  );
}

.section-header p {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.6;
}

/* Services Section */
.services {
  background-color: var(--gray-50);
  padding: var(--space-48) 0;
}

/* Hero Service */
.hero-service {
  position: relative;
  background: var(--gray-50);
  border-radius: 0;
  padding: var(--space-32) var(--space-8);
  margin-bottom: var(--space-32);
  overflow: hidden;
  border: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.hero-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
  opacity: 1;
}

/* Premium Badge */
.hero-service-premium-badge {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  background: var(--primary-300);
  color: var(--gray-900);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border: none;
  z-index: 20;
  margin-bottom: var(--space-12);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: all var(--transition-normal);
}

.hero-service-premium-badge:hover {
  background: var(--primary-400);
}

.premium-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--gray-900);
  stroke: var(--gray-900);
}

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

.premium-text {
  font-weight: 600;
}

/* Content Wrapper */
.hero-service-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  position: relative;
  z-index: 2;
  color: var(--text-primary);
  margin-top: 0;
}

.hero-service-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-service-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  margin-bottom: var(--space-20);
  position: relative;
}

.hero-service-header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary-500));
  border-radius: 2px;
}

.hero-service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-300);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  border: 2px solid var(--primary-400);
  flex-shrink: 0;
}

.hero-service-title h3 {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  line-height: 1.2;
}

.hero-service-subtitle {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-service-description {
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-24);
  color: var(--text-secondary);
}

/* Enhanced Features Section */
.hero-service-features {
  margin-bottom: var(--space-24);
}

.features-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-12);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.4;
  padding: var(--space-8) var(--space-8);
  transition: all var(--transition-normal);
}

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

.feature-item:hover .feature-text {
  font-weight: 600;
}

.feature-icon {
  color: var(--gray-400);
  font-weight: bold;
  font-size: var(--text-xs);
  flex-shrink: 0;
}

.feature-text {
  font-weight: 500;
}

/* Enhanced Stats Section */
.hero-service-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  padding: var(--space-16);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: var(--space-24);
}

.stat-item {
  text-align: center;
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: var(--space-2);
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* Animation for counting stats */
.stat-number.animate {
  animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.2;
}

/* Enhanced CTA Section */
.hero-service-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-top: auto;
}

.cta-text {
  font-weight: 600;
}

.cta-arrow {
  font-size: var(--text-lg);
  transition: transform var(--transition);
}

.hero-service-cta:hover .cta-arrow {
  transform: translateX(4px);
}

.hero-service-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-4) var(--space-8);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.guarantee-icon {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.guarantee-text {
  font-weight: 500;
}

/* Enhanced Visual Section */
.hero-service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-container {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
}

.visual-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.visual-title {
  display: block;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.visual-subtitle {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.visual-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  flex: 1;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  flex: 1;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-12);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.platform-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gray-200) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.platform-item:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
  transform: translateY(-1px);
}

.platform-item:hover::before {
  opacity: 0.3;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 2;
  border: 1px solid var(--gray-300);
}

.platform-icon img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.platform-name {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 2;
}

.platform-description {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
  flex: 1;
}

.platform-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  position: relative;
  z-index: 2;
}

.stat-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--gray-600);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Quality Metrics Section */
.quality-metrics {
  margin-top: var(--space-12);
  padding-top: var(--space-12);
  border-top: 1px solid var(--gray-200);
}

.metrics-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-8);
  background: var(--gray-100);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  flex: 1;
}

.metric-item:hover {
  background: var(--gray-200);
  border-color: var(--gray-300);
  transform: translateY(-1px);
}

.metric-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.metric-label {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Supporting Services - Modern Card Design */
.supporting-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-24);
  margin-top: var(--space-32);
}

.service-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(250, 250, 250, 0.95) 100%
  );
  backdrop-filter: blur(20px);
  padding: var(--space-24);
  border-radius: 20px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: cardFloat 0.6s ease-out;
  z-index: 1;
}

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

/* Staggered animation for service cards */
.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gray-800) 0%,
    var(--gray-600) 50%,
    var(--gray-400) 100%
  );
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 100%
    ),
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover,
.service-card.aos-init:hover,
.service-card.aos-animate:hover {
  transform: translateY(-6px) scale(1.08) !important;
  box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.06),
    0 4px 6px -1px rgba(0, 0, 0, 0.03);
  z-index: 10;
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-16);
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-300);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  color: var(--gray-900);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  padding: 8px;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-badge {
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
  color: var(--primary-300) !important;
  padding: var(--space-2) var(--space-3);
  border-radius: 20px;
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover .service-badge {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-8);
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: var(--tracking-tight);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--gray-800);
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-16);
  font-size: var(--text-sm);
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: var(--gray-700);
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-16);
}

.highlight {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  color: var(--gray-700);
  padding: var(--space-2) var(--space-3);
  border-radius: 12px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  border: 1px solid rgba(229, 231, 235, 0.6);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .highlight {
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  color: var(--gray-800);
  border-color: rgba(209, 213, 219, 0.8);
}

.service-card:hover .highlight::before {
  opacity: 1;
}

.service-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
  line-height: 1.4;
  letter-spacing: var(--tracking-wide);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.service-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: var(--space-2);
  vertical-align: middle;
}

.service-link:hover {
  color: var(--gray-900);
  transform: translateX(2px);
}

.service-link:hover::after {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-service {
    padding: var(--space-24) var(--space-4);
    margin-top: var(--space-16);
    margin-bottom: var(--space-24);
  }

  .hero-service-premium-badge {
    padding: var(--space-2) var(--space-4);
    font-size: 11px;
    z-index: 20;
    margin-bottom: var(--space-16);
  }

  .hero-service-content-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-24);
    margin-top: var(--space-16);
  }

  .hero-service-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-16);
  }

  .hero-service-header::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-service-content h3 {
    font-size: var(--text-2xl);
    text-align: center;
  }

  .hero-service-subtitle {
    text-align: center;
  }

  .hero-service-description {
    text-align: center;
    font-size: var(--text-sm);
  }

  .hero-service-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    padding: var(--space-12);
  }

  .stat-item {
    padding: var(--space-8) var(--space-4);
  }

  .stat-number {
    font-size: var(--text-lg);
  }

  .stat-label {
    font-size: var(--text-xs);
  }

  .visual-container {
    min-height: 300px;
    padding: var(--space-16);
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .platform-item {
    padding: var(--space-12);
    min-height: 120px;
  }

  .platform-icon {
    width: 32px;
    height: 32px;
  }

  .platform-icon img {
    width: 24px;
    height: 24px;
  }

  .platform-name {
    font-size: var(--text-xs);
    font-weight: 700;
  }

  .platform-description {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: var(--space-4);
  }

  .stat-value {
    font-size: var(--text-sm);
  }

  .quality-metrics {
    margin-top: var(--space-12);
    padding-top: var(--space-12);
  }

  .metrics-row {
    gap: var(--space-3);
    flex-direction: column;
    width: 100%;
  }

  .metric-item {
    padding: var(--space-8) var(--space-8);
    flex-direction: row;
    justify-content: space-between;
  }

  .metric-value {
    font-size: var(--text-lg);
  }

  .metric-label {
    font-size: var(--text-sm);
  }

  .service-card {
    padding: var(--space-12);
    border-radius: 16px;
    margin-bottom: var(--space-16);
  }

  .service-card:hover {
    zoom: 1;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: var(--text-lg);
  }

  .service-card h3 {
    font-size: var(--text-xl);
    line-height: 1.3;
  }

  .service-card p {
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  .service-highlights {
    gap: var(--space-3);
    margin-bottom: var(--space-20);
  }

  .highlight {
    font-size: 11px;
    padding: var(--space-2) var(--space-3);
    border-radius: 8px;
    font-weight: 600;
  }

  .service-link {
    font-size: var(--text-sm);
    font-weight: 700;
  }
}

@media (min-width: 768px) {
  .supporting-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .supporting-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Technology Stack Section - Clean & Innovative Design */
.tech-stack {
  padding: var(--space-48) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}

.tech-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e5e5" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.2;
  pointer-events: none;
}

.tech-stack::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(99, 102, 241, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.tech-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  margin-top: var(--space-24);
  position: relative;
  z-index: 1;
}

.tech-category {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  transition: none;
  position: relative;
  overflow: visible;
}

.tech-category::before {
  display: none;
}

.tech-category:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

.tech-category:hover::before {
  opacity: 0;
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-20);
  padding-bottom: var(--space-12);
  border-bottom: 2px solid var(--gray-300);
  position: relative;
}

.category-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-700) 0%, var(--gray-600) 100%);
  transition: width 0.3s ease;
}

.category-header:hover::after {
  width: 100px;
  background: linear-gradient(90deg, var(--gray-800) 0%, var(--gray-700) 100%);
}

.category-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-size: var(--text-lg);
  letter-spacing: 0.1em;
  position: relative;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-16) var(--space-8);
  padding: var(--space-12) 0;
  position: relative;
  z-index: 1;
}

.tech-stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-8) var(--space-8);
  background: transparent;
  border-radius: 0;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: visible;
  min-height: 60px;
  width: 100%;
  box-sizing: border-box;
}

.tech-stack-item::before {
  display: none;
}

.tech-stack-item:hover::before {
  left: 0;
}

.tech-stack-item:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: none;
}

.tech-stack-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}

.tech-stack-item:hover::after {
  width: 120px;
  height: 120px;
}

.tech-stack-item img {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-4);
  border-radius: 6px;
  transition: all 0.3s ease;
  filter: brightness(0.9);
  opacity: 0.8;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.tech-stack-item:hover img {
  filter: brightness(1.2);
  opacity: 1;
  transform: scale(1.2) rotate(5deg);
  filter: brightness(1.3) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.tech-name {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  padding: 0 var(--space-1);
  position: relative;
  z-index: 1;
}

.tech-stack-item:hover .tech-name {
  color: var(--gray-900);
  font-weight: 700;
  transform: translateY(-2px);
}

/* Responsive Design for Tech Stack */
@media (max-width: 768px) {
  .tech-stack {
    padding: 60px 0;
  }

  .tech-showcase {
    gap: var(--space-24);
    margin-top: var(--space-20);
  }

  .category-header {
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-8);
  }

  .category-header h3 {
    font-size: var(--text-lg);
    font-weight: 700;
  }

  .tech-items {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: var(--space-16) var(--space-8);
    padding: var(--space-12) 0;
  }

  .tech-stack-item {
    padding: var(--space-8) var(--space-4);
    min-height: 80px;
  }

  .tech-stack-item img {
    width: 32px;
    height: 32px;
    margin-bottom: var(--space-3);
  }

  .tech-name {
    font-size: 12px;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .tech-stack {
    padding: 50px 0;
  }

  .feature-item {
    padding: 0;
  }

  .tech-showcase {
    gap: var(--space-20);
  }

  .category-header h3 {
    font-size: var(--text-base);
  }

  .tech-items {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12) var(--space-8);
    padding: var(--space-8) 0;
  }

  .tech-stack-item {
    padding: var(--space-8) var(--space-3);
    min-height: 70px;
  }

  .tech-stack-item img {
    width: 28px;
    height: 28px;
    margin-bottom: var(--space-2);
  }

  .tech-name {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
  }

  .supporting-services {
    gap: var(--space-12);
  }

  .services {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .tech-items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-32) var(--space-16);
  }

  .tech-item {
    padding: var(--space-16) var(--space-12);
  }

  .tech-item img {
    width: 56px;
    height: 56px;
  }

  .tech-name {
    font-size: 13px;
  }
}

/* Animation for tech items on scroll */
@keyframes techItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes categoryPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes techItemFloat {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tech-stack-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  will-change: opacity, transform;
}

.tech-stack-item.aos-animate {
  animation: techItemFloat 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.category-header:hover h3 {
  animation: categoryPulse 2s ease-in-out infinite;
}

.tech-stack-item:nth-child(1).aos-animate {
  animation-delay: 0.1s;
}
.tech-stack-item:nth-child(2).aos-animate {
  animation-delay: 0.2s;
}
.tech-stack-item:nth-child(3).aos-animate {
  animation-delay: 0.3s;
}
.tech-stack-item:nth-child(4).aos-animate {
  animation-delay: 0.4s;
}
.tech-stack-item:nth-child(5).aos-animate {
  animation-delay: 0.5s;
}
.tech-stack-item:nth-child(6).aos-animate {
  animation-delay: 0.6s;
}
.tech-stack-item:nth-child(7).aos-animate {
  animation-delay: 0.7s;
}
.tech-stack-item:nth-child(8).aos-animate {
  animation-delay: 0.8s;
}
.tech-stack-item:nth-child(9).aos-animate {
  animation-delay: 0.9s;
}
.tech-stack-item:nth-child(10).aos-animate {
  animation-delay: 1s;
}
.tech-stack-item:nth-child(11).aos-animate {
  animation-delay: 1.1s;
}
.tech-stack-item:nth-child(12).aos-animate {
  animation-delay: 1.2s;
}

/* Process Section - Optimized for Performance */
.process {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(107, 114, 128, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(107, 114, 128, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Process Flow Container */
.process-flow-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 64px;
}

/* Process Step */
.process-step {
  display: flex;
  gap: 48px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:hover {
  transform: translateY(-2px);
}

/* Step Visual */
.step-visual {
  flex-shrink: 0;
  position: relative;
  width: 140px;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: var(--primary-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 4;
  border: 2px solid transparent;
}

.process-step:hover .step-circle {
  background: var(--primary-400);
  transform: scale(1.05);
  border-color: var(--primary-400);
}

.step-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  z-index: 2;
  transition: transform 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.05);
}

/* Step Connector */
.step-connector {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  width: 114px;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-300) 0%, var(--gray-400) 100%);
  transition: background 0.3s ease;
  z-index: -1;
}

.process-step:nth-child(even) .step-connector {
  left: auto;
  right: 80px;
}

.process-step:hover .step-connector {
  background: linear-gradient(90deg, var(--gray-600) 0%, var(--gray-700) 100%);
}

/* Step Content */
.step-content {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 24px;
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  min-width: 0;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-step:hover .step-content {
  border-color: var(--primary-300);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Step Header */
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
  transition: border-bottom-color 0.3s ease;
}

.process-step:hover .step-header {
  border-bottom-color: var(--gray-300);
}

.step-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.process-step:hover .step-header h3 {
  color: var(--gray-800);
}

.step-duration {
  background: var(--primary-300);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover .step-duration {
  background: var(--primary-400);
  transform: scale(1.02);
}

.step-description {
  margin-bottom: 24px;
}

.step-description p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
  transition: color 0.3s ease;
}

.process-step:hover .step-description p {
  color: var(--gray-700);
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateX(4px);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.feature:hover .feature-check {
  background: var(--green-200);
  transform: scale(1.1);
}

.feature span {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.feature:hover span {
  color: var(--gray-800);
}

/* Simplified Visual Elements */
.step-visual-elements {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

/* Meeting Scene - Simplified */
.meeting-scene {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meeting-participants {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.participant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: var(--gray-50);
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 80px;
}

.participant:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.participant-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background-color 0.3s ease;
}

.participant:hover .participant-avatar {
  background: var(--primary-400);
}

.participant-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  transition: color 0.3s ease;
}

.participant:hover .participant-name {
  color: var(--gray-700);
}

.meeting-details {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.meeting-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 12px;
  color: var(--gray-600);
  transition: border-color 0.3s ease, background-color 0.3s ease,
    transform 0.3s ease;
}

.meeting-item:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  transform: translateY(-1px);
}

.meeting-icon {
  width: 14px;
  height: 14px;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.meeting-item:hover .meeting-icon {
  color: var(--gray-600);
}

.meeting-item span {
  font-weight: 500;
  transition: color 0.3s ease;
}

.meeting-item:hover span {
  color: var(--gray-700);
}

/* Development Scene - Simplified */
.development-scene {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.development-timeline {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 80px;
}

.timeline-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: all 0.5s ease;
  position: relative;
}

.timeline-marker.active {
  background: var(--primary-300);
  box-shadow: 0 0 0 4px var(--green-100);
  transform: scale(1.2);
}

.timeline-marker.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.3);
  transform: translate(-50%, -50%);
  animation: glow 2s infinite;
}

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

.timeline-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 2px;
}

.timeline-status {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 500;
  transition: all 0.5s ease;
}

/* Timeline status colors based on actual status */
.timeline-status[data-status="Completed"] {
  color: var(--success-600);
}

.timeline-status[data-status="In Progress"] {
  color: #fbbf24; /* Yellow */
}

.timeline-status[data-status="Planned"] {
  color: var(--secondary-600);
}

.timeline-status[data-status="Future"] {
  color: var(--gray-500);
}

/* Timeline marker colors based on status */
.timeline-marker[data-status="Completed"] {
  background: var(--success-500);
}

.timeline-marker[data-status="In Progress"] {
  background: #fbbf24; /* Yellow */
}

.timeline-marker[data-status="Planned"] {
  background: var(--secondary-500);
}

.timeline-marker[data-status="Future"] {
  background: var(--gray-300);
}

.timeline-marker.active {
  background: #fbbf24; /* Yellow for active/in progress */
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
  transform: scale(1.2);
}

/* Timeline animation enhancements */
.timeline-item {
  transition: all 0.5s ease;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.timeline-item.entering {
  opacity: 0;
  transform: translateX(20px);
}

.timeline-item.exiting {
  opacity: 0;
  transform: translateX(-20px);
}

/* Smooth sliding transitions */
.development-timeline {
  position: relative;
  overflow: hidden;
}

.timeline-item {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow animation for active marker */
@keyframes glow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}

/* Pulse animation for active marker */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.code-window {
  background: var(--gray-900);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.code-window:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.window-header {
  background: var(--gray-800);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-600);
}

.window-controls span:nth-child(1) {
  background: var(--red-500);
}

.window-controls span:nth-child(2) {
  background: var(--yellow-500);
}

.window-controls span:nth-child(3) {
  background: var(--green-500);
}

.window-title {
  font-size: 12px;
  color: var(--gray-300);
  font-weight: 500;
}

.code-content {
  padding: 12px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 12px;
  line-height: 1.4;
}

.code-line {
  color: var(--gray-300);
  margin-bottom: 2px;
}

.code-line .keyword {
  color: var(--purple-400);
  font-weight: 600;
}

.code-line .function-name {
  color: var(--blue-400);
  font-weight: 600;
}

.code-line .variable {
  color: var(--yellow-400);
}

.code-line .string {
  color: var(--green-400);
}

.code-line .comment {
  color: var(--gray-500);
  font-style: italic;
}

/* Quality Scene - Simplified */
.quality-scene {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quality-metrics {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 100px;
  justify-content: center;
}

.metric-item:hover {
  border-color: var(--gray-300);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.metric-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  padding: 6px;
}

.metric-item:hover .metric-icon {
  background: var(--primary-400);
  transform: scale(1.05);
}

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

.metric-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1;
  transition: color 0.3s ease;
}

.metric-item:hover .metric-value {
  color: var(--gray-900);
}

.metric-label {
  font-size: 10px;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: 2px;
}

/* Process Benefits - Simplified */
.process-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.benefit-card:hover {
  border-color: var(--gray-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-300);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--black);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-400);
  transform: scale(1.05);
}

.benefit-card:hover .benefit-icon svg {
  transform: translateY(-2px);
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
}

.benefit-card:hover h4 {
  color: var(--gray-800);
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.benefit-card:hover p {
  color: var(--gray-700);
}

/* CTA Section */
.cta {
  background: url("cta-background-2.jpg") center center/cover no-repeat;
  position: relative;
  color: var(--gray-50);
  padding: var(--space-48) 0;
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-16);
  color: var(--gray-50);
  letter-spacing: -0.025em;
}

.cta p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-24);
  color: var(--gray-50);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
  padding: var(--space-48) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: var(--space-32);
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-16);
  color: white;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-header p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
  margin-bottom: var(--space-48);
  position: relative;
  z-index: 2;
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.contact-intro h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-12);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-intro p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding: var(--space-16);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.method-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-300);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--primary-950);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.method-content h4 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.method-content p {
  color: var(--gray-700);
  margin: 0 0 var(--space-2) 0;
  font-weight: 600;
}

.method-subtitle {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-weight: 500;
}

/* Response Promise */
.response-promise {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding: var(--space-20);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  color: var(--gray-900);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promise-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 12px;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.promise-content h4 {
  font-weight: 700;
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  color: var(--gray-900);
}

.promise-content p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-32);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  min-width: 500px;
  width: 100%;
}

.form-header {
  margin-bottom: var(--space-16);
  text-align: center;
  position: relative;
  z-index: 1;
}

.form-header h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-8);
  color: var(--gray-900);
}

.form-header p {
  color: var(--gray-600);
  font-size: var(--text-base);
}

.project-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  height: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-group label {
  font-weight: 600;
  color: var(--gray-900);
  font-size: var(--text-sm);
}

.form-group input,
.form-group textarea {
  padding: var(--space-8);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: var(--text-base);
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--gray-900);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gray-300);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  background-color: white;
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* Form Submit */
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-16);
  position: relative;
  z-index: 1;
}

.form-submit .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-12) var(--space-28);
  font-size: var(--text-base);
  font-weight: 600;
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form-submit .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.form-submit .btn:hover::before {
  left: 100%;
}

.form-submit .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.form-submit .btn:hover .btn-icon {
  transform: translateX(4px);
}

.form-note {
  font-size: var(--text-sm);
  color: var(--gray-500);
  text-align: center;
  margin: 0;
}

/* Contact Highlights */
.contact-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  position: relative;
  z-index: 2;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding: var(--space-20);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-300);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--primary-950);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.highlight-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.highlight-item h4 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.highlight-item p {
  color: var(--gray-600);
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive Design */
@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }

  .contact-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-content {
    gap: var(--space-48);
  }

  .contact-form {
    padding: var(--space-24);
  }
}

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

  .contact-header {
    margin-bottom: var(--space-24);
  }

  .contact-header h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-12);
  }

  .contact-header p {
    font-size: var(--text-base);
    line-height: 1.6;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-24);
    margin-bottom: var(--space-32);
  }

  .contact-intro h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-8);
  }

  .contact-intro p {
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  .contact-methods {
    gap: var(--space-12);
  }

  .contact-method {
    padding: var(--space-16);
    border-radius: 12px;
    gap: var(--space-8);
  }

  .method-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .method-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
  }

  .method-content p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
  }

  .method-subtitle {
    font-size: var(--text-xs);
  }

  .response-promise {
    padding: var(--space-16);
    border-radius: 12px;
    gap: var(--space-8);
  }

  .promise-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .promise-content h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
  }

  .promise-content p {
    font-size: var(--text-sm);
    line-height: 1.5;
  }

  .contact-form {
    padding: var(--space-20);
    border-radius: 16px;
    min-height: auto;
    min-width: auto;
  }

  .form-header {
    margin-bottom: var(--space-12);
  }

  .form-header h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
  }

  .form-header p {
    font-size: var(--text-sm);
  }

  .project-form {
    gap: var(--space-8);
  }

  .form-group label {
    font-size: var(--text-sm);
  }

  .form-group input,
  .form-group textarea {
    padding: var(--space-8);
    font-size: var(--text-sm);
    border-radius: 8px;
  }

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

  .form-submit {
    padding-top: var(--space-12);
    gap: var(--space-8);
  }

  .form-submit .btn {
    padding: var(--space-10) var(--space-20);
    font-size: var(--text-sm);
  }

  .form-note {
    font-size: var(--text-xs);
  }

  .contact-highlights {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .highlight-item {
    padding: var(--space-16);
    border-radius: 12px;
    gap: var(--space-8);
  }

  .highlight-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .highlight-item h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
  }

  .highlight-item p {
    font-size: var(--text-sm);
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 50px 0;
  }

  .contact-intro {
    align-items: center;
  }

  .contact-header h2 {
    font-size: var(--text-2xl);
  }

  .contact-intro h3 {
    font-size: var(--text-lg);
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: var(--space-12);
  }

  .method-icon {
    align-self: center;
    width: 40px;
    height: 40px;
  }

  .response-promise {
    flex-direction: column;
    text-align: center;
    padding: var(--space-12);
  }

  .promise-icon {
    align-self: center;
    width: 40px;
    height: 40px;
  }

  .contact-form {
    padding: var(--space-16);
  }

  .form-header h3 {
    font-size: var(--text-base);
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: var(--space-12);
  }

  .highlight-icon {
    align-self: center;
    width: 40px;
    height: 40px;
  }
  .highlight-icon svg {
    width: 24px;
  }

  /* Center contact-title::after on mobile */
  .contact-title {
    text-align: center;
    margin-bottom: 0;
  }

  .contact-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Footer - Modern Professional Design */
.footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: white;
  padding: var(--space-48) 0 var(--space-32);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-48);
  margin-bottom: var(--space-32);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
}

.footer-right {
  display: flex;
  flex-direction: column;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-logo-text-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-950);
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
}

.logo-text.bg-dark {
  color: var(--primary-50);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: var(--tracking-wider);
  line-height: 1.2;
}

.footer-description {
  color: var(--gray-200);
  line-height: 1.6;
  font-size: var(--text-base);
  max-width: 400px;
}

.footer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
  margin-top: var(--space-16);
}

.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-16);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.footer-stat:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-stat .stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-50) !important;
  line-height: 1;
  margin-bottom: var(--space-4);
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.footer-stat .stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-50);
  text-align: center;
  letter-spacing: var(--tracking-wide);
}

/* Links Section */
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.link-group-title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-8);
  position: relative;
}

.link-group-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-400) 0%, transparent 100%);
  border-radius: 1px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: var(--space-8) var(--space-12);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.footer-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.footer-link:hover::before {
  left: 100%;
}

.footer-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(4px);
}

/* Contact Section */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.contact-title {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-16);
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-400) 0%, transparent 100%);
  border-radius: 1px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: var(--space-8) var(--space-12);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.02);
}

.contact-link:hover::before {
  left: 100%;
}

.contact-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: transparent;
  color: var(--primary-300);
  transition: all 0.3s ease;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--primary-300);
  stroke: currentColor;
  transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
  transform: scale(1.05);
}

.contact-link:hover .contact-icon svg {
  transform: scale(1.1);
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 8px;
  color: var(--primary-300);
  transition: all 0.3s ease;
}

.link-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: all 0.3s ease;
}

.footer-link:hover .link-icon {
  color: var(--primary-200);
  transform: scale(1.05);
}

.footer-link:hover .link-icon svg {
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-24);
  margin-top: var(--space-32);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
}

.footer-copyright {
  color: var(--primary-50);
  font-size: 14px;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: var(--space-16);
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--primary-300);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-social .social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-social .social-link:hover {
  color: var(--primary-200);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-social .social-link:hover::before {
  opacity: 1;
}

.footer-social .social-link svg {
  transition: transform 0.3s ease;
}

.footer-social .social-link:hover svg {
  transform: scale(1.1);
}

/* Responsive Design */
@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-84);
  }

  .footer-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-40);
  }

  .contact-links {
    gap: var(--space-16);
  }
}

@media (min-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-80);
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-48);
  }

  .footer-link {
    font-size: 15px;
    padding: var(--space-10) var(--space-16);
  }

  .contact-links {
    gap: var(--space-20);
  }

  .contact-link {
    font-size: 15px;
    padding: var(--space-10) var(--space-16);
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 60px 0 40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-40);
  }

  .footer-left {
    gap: var(--space-24);
  }

  .footer-brand {
    gap: var(--space-20);
  }

  .logo-text {
    font-size: 24px;
    text-align: center;
  }

  .logo-tagline {
    font-size: 13px;
    text-align: center;
  }

  .footer-description {
    font-size: var(--text-sm);
    line-height: 1.6;
    text-align: center;
    max-width: none;
  }

  .footer-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
    margin-top: var(--space-12);
  }

  .footer-stat {
    padding: var(--space-12);
    border-radius: 8px;
  }

  .footer-stat .stat-number {
    font-size: 20px;
  }

  .footer-stat .stat-label {
    font-size: 11px;
  }

  .footer-right {
    gap: var(--space-24);
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }

  .footer-link-group {
    gap: var(--space-12);
  }

  .link-group-title {
    font-size: 15px;
    text-align: center;
    margin-bottom: var(--space-12);
  }

  .link-list {
    gap: var(--space-8);
  }

  .footer-link {
    font-size: 14px;
    padding: var(--space-8) var(--space-12);
    justify-content: center;
    text-align: center;
  }

  .footer-contact {
    gap: var(--space-12);
  }

  .contact-title {
    font-size: 15px;
    text-align: center;
    margin-bottom: var(--space-12);
  }

  .contact-links {
    gap: var(--space-8);
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-link {
    font-size: 14px;
    padding: var(--space-8) var(--space-12);
    border-radius: 6px;
  }

  .footer-bottom {
    margin-top: var(--space-24);
    padding-top: var(--space-20);
  }

  .footer-bottom-content {
    gap: var(--space-16);
  }

  .footer-copyright {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-social {
    gap: var(--space-12);
    justify-content: center;
  }

  .footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 0 30px;
  }

  .footer-main {
    gap: var(--space-32);
  }

  .footer-left {
    gap: var(--space-20);
  }

  .logo-text {
    font-size: 22px;
  }

  .logo-tagline {
    font-size: 12px;
  }

  .footer-description {
    font-size: var(--text-sm);
  }

  .footer-stats {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-stat {
    padding: var(--space-12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .footer-stat .stat-number {
    font-size: 24px;
    order: 2;
  }

  .footer-stat .stat-label {
    font-size: 12px;
    order: 1;
    text-align: left;
  }

  .footer-links {
    gap: var(--space-20);
  }

  .link-group-title {
    font-size: 14px;
    margin-bottom: 0;
  }

  .footer-link {
    font-size: 13px;
    padding: 0;
  }

  .contact-title {
    font-size: 14px;
    text-align: center;
    margin-bottom: 0;
  }

  .contact-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
  }

  .contact-link {
    font-size: 13px;
    padding: 0;
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .footer-social .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

/* Page-specific Button Overrides */

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-text h1::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .intro-accent {
    text-align: center;
  }

  .intro-accent::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  /* Center approach-accent on mobile */
  .approach-accent {
    margin: 0 auto;
  }

  /* Footer logo responsive */
  .footer-logo {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
  }

  .footer-logo-img {
    height: 32px;
  }

  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .about-stats {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .tech-items {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-8) var(--space-4);
  }

  .tech-stack-item {
    padding: var(--space-4);
  }

  .tech-stack-item img {
    width: 28px;
    height: 28px;
  }

  .contact-form {
    min-height: auto;
    min-width: auto;
    padding: var(--space-12);
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .method-icon {
    align-self: center;
  }
}

/* Medium Mobile Devices */
@media (max-width: 640px) {
  .cta-buttons {
    justify-content: center;
  }

  .platform-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8);
  }

  .supporting-services {
    grid-template-columns: 1fr !important;
  }

  .tech-preview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Global Mobile Optimizations */
@media (max-width: 768px) {
  /* Improve touch targets */
  .btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  }

  /* Improve scroll performance */
  * {
    -webkit-overflow-scrolling: touch;
  }

  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden;
  }

  /* Improve font rendering on mobile */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* Optimize animations on mobile */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}

/* Global Tag Styles */
.hero-service-badge,
.service-badge,
.highlight,
.timeline-feature {
  font-size: 8px;
  padding: 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Mobile-specific tag improvements */
@media (max-width: 768px) {
  .hero-service-badge,
  .service-badge,
  .highlight,
  .timeline-feature {
    font-size: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
}

/* Hero Service Badge */
.hero-service-badge {
  background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-700) 100%);
  color: white;
  border: 1px solid var(--gray-600);
  flex-shrink: 0;
}

/* Service Badge */
.service-badge {
  background-color: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

/* Service Highlights */
.highlight {
  background-color: var(--gray-100);
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  font-weight: 500;
}

/* Timeline Features */
.timeline-feature {
  background-color: white;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  font-weight: 500;
}

/* SVG Icon Styles */
.trust-icon svg,
.principle-icon svg,
.hero-service-icon svg,
.guarantee-icon svg,
.service-icon svg,
.contact-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.trust-icon {
  color: var(--gray-700);
}

.principle-icon {
  color: var(--gray-700);
}

.hero-service-icon {
  color: var(--gray-700);
}

.guarantee-icon {
  color: var(--gray-700);
}

.service-icon {
  color: var(--gray-700);
}

.contact-icon {
  color: var(--gray-700);
}

/* Trust Indicators */
.trust-indicators {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-indicators::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(107, 114, 128, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(107, 114, 128, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.trust-header {
  text-align: center;
  margin-bottom: 64px;
}

.trust-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
}

.trust-header p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.trust-item:hover {
  border-color: var(--gray-400);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.trust-item:hover::before {
  opacity: 1;
}

.trust-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--primary-300);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.trust-icon {
  font-size: 24px;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon-wrapper {
  background: var(--primary-600);
  transform: scale(1.1);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1);
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
}

.trust-subtext {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.4;
}

.trust-item:hover .trust-text {
  color: var(--gray-800);
}

.trust-item:hover .trust-subtext {
  color: var(--gray-700);
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    padding: 40px;
  }

  .trust-header h3 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .trust-indicators {
    padding: 60px 0;
  }

  .trust-header {
    margin-bottom: 48px;
  }

  .trust-header h3 {
    font-size: 28px;
  }

  .trust-header p {
    font-size: 16px;
  }

  .trust-grid {
    gap: 24px;
  }

  .trust-item {
    padding: 24px;
  }

  .trust-icon {
    font-size: 20px;
  }

  .trust-text {
    font-size: 16px;
  }
}

/* Case Studies Section */
.case-studies {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.case-studies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  z-index: 1;
}

.case-studies > .container {
  position: relative;
  z-index: 2;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 64px;
}

.case-study-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.case-study-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.case-study-card:hover::before {
  opacity: 0.02;
}

.case-study-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.overlay-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.project-type,
.project-duration {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-900);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-study-content {
  padding: 32px;
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.case-study-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.case-study-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.case-study-stats .stat {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.case-study-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.case-study-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tech-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

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

.result-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.result-value {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.case-studies-cta {
  margin-top: 80px;
  text-align: center;
}

.cta-content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content p {
  color: var(--gray-50);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-900);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cta-button:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

@media (max-width: 768px) {
  .case-studies {
    padding: 80px 0;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 48px;
  }

  .case-study-content {
    padding: 24px;
  }

  .case-study-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .case-study-header h3 {
    font-size: 20px;
  }

  .case-study-stats {
    flex-direction: row;
    align-items: center;
  }

  .case-study-results {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-content h3 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  z-index: 1;
}

.testimonials > .container {
  position: relative;
  z-index: 2;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--gray-200);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 24px;
  left: 32px;
  font-size: 64px;
  color: var(--gray-300);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--gray-300);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-200);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .client-avatar {
  border-color: var(--gray-300);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.client-details p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #fbbf24;
  font-size: 18px;
  line-height: 1;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 24px 0;
  padding-left: 24px;
  position: relative;
}

.testimonial-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gray-300);
  border-radius: 2px;
}

.testimonial-project {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.project-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-name {
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 600;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-200);
}

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

.testimonials-stats .stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 8px;
}

.testimonials-stats .stat-label {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card::before {
    font-size: 48px;
    top: 16px;
    left: 24px;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .client-avatar {
    width: 48px;
    height: 48px;
  }

  .client-details h4 {
    font-size: 16px;
  }

  .testimonial-quote {
    font-size: 14px;
    padding-left: 16px;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
  }

  .testimonials-stats .stat-number {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Trust Indicators - Responsive Layout */
@media (min-width: 769px) {
  .trust-grid {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .trust-item {
    flex: 0 0 auto;
    padding: 20px 16px !important;
    text-align: center;
    width: auto;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .trust-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary-300) !important;
  }

  .trust-text {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 4px;
    color: var(--gray-900) !important;
  }

  .trust-subtext {
    font-size: 13px !important;
    line-height: 1.3 !important;
    color: var(--gray-600) !important;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
  }

  .trust-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 24px 16px !important;
    text-align: center !important;
    width: 100% !important;
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-xl) !important;
    min-height: 120px !important;
  }

  .trust-icon-wrapper {
    width: 48px !important;
    height: 48px !important;
    margin: 0 0 12px 0 !important;
    flex-shrink: 0 !important;
  }

  .trust-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .trust-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
    color: var(--gray-900) !important;
  }

  .trust-subtext {
    font-size: 12px !important;
    color: var(--gray-600) !important;
    line-height: 1.3 !important;
  }
}

/* Responsive Design for Enhanced Process Flow */
@media (min-width: 768px) {
  .process-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .process-timeline {
    gap: 48px;
  }

  .process-step {
    flex-direction: column !important;
    gap: 24px;
  }

  .step-visual {
    width: 100%;
  }

  .step-circle {
    width: 64px;
    height: 64px;
    align-self: center;
  }

  .step-number {
    font-size: 20px;
  }

  .step-connector {
    display: none;
  }

  .step-content {
    padding: 24px;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .step-header h3 {
    font-size: 24px;
  }

  .step-duration {
    align-self: center;
  }

  .step-description p {
    font-size: 14px;
  }

  .feature {
    padding: 10px 12px;
  }

  .feature span {
    font-size: 13px;
  }

  /* Hide complex visual elements on mobile for better performance */
  .step-visual-elements {
    display: none;
  }

  .benefit-card {
    padding: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .process-step {
    gap: 32px;
  }

  .step-content {
    padding: 28px;
  }
}

@media (min-width: 1025px) {
  .process-step {
    gap: 64px;
  }

  .step-content {
    padding: 40px;
  }
}

/* --- SCROLL MARGIN FOR NAVIGATION OFFSET --- */
/* Add scroll margin to sections to account for fixed header and subheader */
#home,
#about,
#services,
#tech-stack,
#process,
#contact {
  scroll-margin-top: 0; /* Account for header (~80px) + subheader (~40px) */
}

/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  #home,
  #about,
  #services,
  #tech-stack,
  #process,
  #contact {
    scroll-margin-top: 100px; /* Slightly less on mobile due to smaller header */
  }
}

@media (max-width: 480px) {
  #home,
  #about,
  #services,
  #tech-stack,
  #process,
  #contact {
    scroll-margin-top: 90px; /* Even less on very small screens */
  }
}
