 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #0a0c10;
      font-family: 'Inter', sans-serif;
      color: #e5e9f0;
      overflow-x: hidden;
      line-height: 1.5;
      /* max-width: 1280px; */
    }

    /* ================= NAVBAR ================= */
    .navbar {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1280px;
      padding: 16px 32px;
      border-radius: 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(10, 12, 16, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 240, 255, 0.1);
      box-shadow: 0 8px 30px -10px rgba(0,0,0,0.5);
      transition: 0.3s ease;
      z-index: 1000;
      box-sizing: border-box;
    }

    .navbar.scrolled {
      padding: 12px 32px;
      background: rgba(8, 10, 14, 0.95);
      border-color: rgba(0, 240, 255, 0.2);
    }

    .logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 48px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      text-decoration: none;
      color: #a0a8b8;
      font-size: 15px;
      font-weight: 500;
      transition: 0.2s;
      position: relative;
      white-space: nowrap;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #00f0ff;
      transition: width 0.2s ease;
    }

    .nav-links a:hover {
      color: #ffffff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn-primary {
      padding: 10px 28px;
      border-radius: 40px;
      background: transparent;
      color: #00f0ff;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: 0.2s;
      border: 1.5px solid #00f0ff;
      white-space: nowrap;
      display: inline-block;
    }

    .btn-primary:hover {
      background: #00f0ff;
      color: #0a0c10;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px -8px rgba(0, 240, 255, 0.3);
    }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 1100;
      padding: 5px;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: #00f0ff;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* mobile menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #0a0c10;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      transform: translateY(-100%);
      transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1200;
    }

    .mobile-menu.active {
      transform: translateY(0);
    }

    .mobile-menu a {
      color: #ffffff;
      text-decoration: none;
      font-size: 28px;
      font-weight: 500;
      font-family: 'Space Grotesk', sans-serif;
      transition: 0.2s;
    }

    .mobile-menu a:hover {
      color: #00f0ff;
    }

    .close-btn {
      position: absolute;
      top: 30px;
      right: 35px;
      font-size: 40px;
      color: #00f0ff;
      cursor: pointer;
      transition: 0.2s;
    }

    /* ================= NAVBAR RESPONSIVE FIXES ================= */

    /* Large Tablets */
    @media (max-width: 1024px) {
      .navbar {
        padding: 14px 24px;
        width: 92%;
      }
      
      .nav-links {
        gap: 28px;
      }
      
      .nav-links a {
        font-size: 14px;
      }
      
      .btn-primary {
        padding: 8px 20px;
        font-size: 13px;
      }
    }

    /* Tablets */
    @media (max-width: 900px) {
      .navbar {
        padding: 14px 20px;
        width: 94%;
      }
      
      .nav-links {
        display: none;
      }
      
      .btn-primary {
        display: none;
      }
      
      .hamburger {
        display: flex;
      }
      
      .logo img {
        height: 36px;
      }
    }

    /* Small Tablets */
    @media (max-width: 768px) {
      .navbar {
        width: 92%;
        padding: 12px 18px;
        border-radius: 60px;
        top: 16px;
      }
      
      .logo img {
        height: 34px;
      }
      
      .hamburger span {
        width: 22px;
      }
    }

    /* Mobile - FIXED THE WIDTH VALUES HERE */
    @media (max-width: 480px) {
      .navbar {
        top: 12px;
        padding: 10px 16px;
        border-radius: 40px;
        width: 92%; /* Fixed: was 40px */
      }
      
      .logo img {
        height: 28px;
      }
      
      .hamburger {
        gap: 5px;
      }
      
      .hamburger span {
        width: 20px;
        height: 1.8px;
      }
      
      .mobile-menu a {
        font-size: 24px;
      }
      
      .close-btn {
        font-size: 32px;
        top: 20px;
        right: 20px;
      }
    }

    /* Small Mobile - FIXED THE WIDTH VALUES HERE */
    @media (max-width: 360px) {
      .navbar {
        padding: 8px 14px;
        width: 94%; /* Fixed: was 4% */
      }
      
      .logo img {
        height: 24px;
      }
      
      .hamburger span {
        width: 18px;
        height: 1.5px;
      }
    }

    /* Fix for very small devices - FIXED THE WIDTH VALUES HERE */
    @media (max-width: 320px) {
      .navbar {
        padding: 8px 12px;
        width: 96%; /* Fixed: was 6% */
      }
      
      .logo img {
        height: 22px;
      }
      
      .hamburger span {
        width: 16px;
      }
    }

    /* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  background: #0a0c10;
  position: relative;
  overflow: hidden; /* Prevents glow from causing horizontal scroll */
  width: 100%;
}

.hero-glow {
  position: absolute;

  width: min(600px, 80vw); /* Responsive glow size */
  height: min(600px, 80vw);
  background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.03), transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  z-index: 0;
  pointer-events: none;
}

.hero-glow-two {
  left: -200px;
  bottom: -200px;
  width: min(500px, 70vw);
  height: min(500px, 70vw);
  background: radial-gradient(circle, rgba(0, 240, 255, 0.02), transparent 70%);
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  position: relative;
  z-index: 15;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto; /* Center the content */
}

.hero-left {
  flex: 1 1 450px;
  min-width: 280px; /* Prevents content from squishing too much */
}

.hero-eyebrow {
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00f0ff;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-headline .light {
  color: #ffffff;
  font-weight: 400;
  opacity: 0.9;
}

.hero-headline .cyan {
  color: #00f0ff;
}

.hero-description {
  font-size: clamp(15px, 4vw, 18px);
  color: #a0a8b8;
  max-width: 550px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-primary {
  background: #00f0ff;
  color: #0a0c10;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid #00f0ff;
  font-size: clamp(14px, 3vw, 16px);
  white-space: nowrap;
  display: inline-block;
}

@media (max-width: 480px) {
  .cta-primary {
    padding: 12px 24px;
    white-space: normal; /* Allows text to wrap on very small screens */
    text-align: center;
    width: 100%; /* Full width on mobile */
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-secondary {
    text-align: center;
    width: 100%;
  }
}

.cta-primary:hover {
  background: transparent;
  color: #00f0ff;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -10px rgba(0,240,255,0.2);
}

.cta-secondary {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid #3a4a5a;
  padding-bottom: 4px;
  transition: 0.2s;
  display: inline-block;
}

.cta-secondary:hover {
  color: #00f0ff;
  border-bottom-color: #00f0ff;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 48px);
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  color: #00f0ff;
}

.stat-label {
  font-size: clamp(12px, 3vw, 14px);
  color: #7f8a9e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-right {
  flex: 1 1 350px;
  min-width: 280px;
  background: rgba(20, 24, 32, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 24px; /* Slightly smaller radius for mobile */
  padding: clamp(30px, 5vw, 48px) clamp(24px, 4vw, 40px);
}

.right-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
}

.right-title .dot {
  color: #00f0ff;
  margin-right: 8px;
}

.feature-item {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-marker {
  color: #00f0ff;
  font-size: 16px;
  min-width: 20px;
}

.feature-content h4 {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: clamp(14px, 3.5vw, 15px);
  color: #9aaebf;
  line-height: 1.5;
  margin: 0;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 60px;
    min-height: auto; /* Allows content to determine height */
  }
  
  .hero-split {
    gap: 50px;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-right {
    max-width: 500px;
    margin: 0 auto; /* Centers the right column on mobile */
  }
  
  .stat-item {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 20px;
    justify-content: space-around;
  }
}

/* Fix for Space Grotesk font - add this if not already included */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

    /* ========== SERVICES GRID ========== */
    .services-section {
      padding: 120px 24px;
      background: #0a0c10;
      position: relative;
    }

    .services-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .section-header {
      margin-bottom: 70px;
    }

    .section-eyebrow {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #00f0ff;
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: #ffffff;
      max-width: 600px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .service-card {
      background: #111418;
      border: 1px solid #232830;
      border-radius: 32px;
      padding: 40px;
      transition: 0.25s ease;
    }

    .service-card:hover {
      border-color: #00f0ff;
      transform: translateY(-4px);
      box-shadow: 0 25px 40px -20px rgba(0,240,255,0.15);
    }

    .card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .card-icon {
      color: #00f0ff;
      font-size: 28px;
      font-weight: 300;
    }

    .card-header h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(20px, 4vw, 24px);
      font-weight: 600;
      color: #ffffff;
    }

    .service-list {
      list-style: none;
    }

    .service-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      border-bottom: 1px solid #232830;
      color: #b0b8c8;
      font-size: 16px;
      transition: 0.2s;
    }

    .service-list li:last-child {
      border-bottom: none;
    }

    .service-list li:hover {
      color: #ffffff;
      transform: translateX(4px);
    }

    .service-list .bullet {
      color: #00f0ff;
      font-size: 14px;
      min-width: 20px;
    }

    /* ========== VALUES SECTION ========== */
    .values-section {
      padding: 100px 24px;
      background: #0e1218;
      border-top: 1px solid #1a2028;
      border-bottom: 1px solid #1a2028;
    }

    .values-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .value-item {
      padding: 32px;
      background: #111418;
      border: 1px solid #232830;
      border-radius: 24px;
    }

    .value-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: #00f0ff;
      opacity: 0.5;
      margin-bottom: 24px;
    }

    .value-item h4 {
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .value-item p {
      color: #9aaebf;
      font-size: 15px;
      line-height: 1.6;
    }

    /* ========== CLIENTS / PARTNERS SECTION ========== */
    .clients-section {
      padding: 100px 24px;
      background: #0a0c10;
      position: relative;
      overflow: hidden;
    }

    .clients-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .clients-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .clients-subtitle {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #00f0ff;
      margin-bottom: 20px;
      background: rgba(0, 240, 255, 0.05);
      padding: 8px 16px;
      border-radius: 40px;
      border: 1px solid rgba(0, 240, 255, 0.1);
    }

    .clients-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .clients-description {
      font-size: clamp(16px, 4vw, 18px);
      color: #a0a8b8;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      padding: 0 20px;
    }

    .clients-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-bottom: 40px;
    }

    .client-card {
      background: #111418;
      border: 1px solid #232830;
      border-radius: 24px;
      padding: 40px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .client-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .client-card:hover {
      border-color: #00f0ff;
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -15px rgba(0, 240, 255, 0.2);
    }

    .client-card:hover::before {
      left: 100%;
    }

    .client-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(20px, 4vw, 24px);
      font-weight: 700;
      color: #ffffff;
      opacity: 0.7;
      transition: all 0.3s ease;
      position: relative;
      text-align: center;
    }

    .client-card:hover .client-logo {
      opacity: 1;
      color: #00f0ff;
      transform: scale(1.05);
    }

    .client-logo.light {
      font-weight: 300;
      letter-spacing: 2px;
    }

    .client-logo.outline {
      -webkit-text-stroke: 1px rgba(255,255,255,0.3);
      color: transparent;
    }

    .client-logo.outline:hover {
      -webkit-text-stroke-color: #00f0ff;
    }

    .clients-grid.second-row {
      margin-top: 30px;
    }

    /* ========== PREMIUM PORTFOLIO ========== */
    .premium-portfolio {
      padding: 140px 24px;
      background: #0a0c10;
      position: relative;
      overflow: hidden;
    }

    .premium-portfolio::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #00f0ff, transparent);
      opacity: 0.15;
    }

    .portfolio-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .portfolio-header {
      margin-bottom: 80px;
      position: relative;
    }

    .header-subtitle {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #00f0ff;
      margin-bottom: 20px;
      background: rgba(0, 240, 255, 0.05);
      padding: 8px 16px;
      border-radius: 40px;
      border: 1px solid rgba(0, 240, 255, 0.1);
    }

    .header-title-wrapper {
      display: flex;
      align-items: flex-end;
      gap: 40px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .header-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(36px, 6vw, 72px);
      font-weight: 700;
      line-height: 1.1;
      color: #ffffff;
      letter-spacing: -0.02em;
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 0%, #00f0ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .header-line {
      flex: 1;
      height: 2px;
      background: linear-gradient(90deg, #00f0ff, transparent);
      max-width: 200px;
      margin-bottom: 15px;
    }

    .header-description {
      font-size: clamp(16px, 4vw, 18px);
      color: #a0a8b8;
      max-width: 500px;
      line-height: 1.6;
    }

    .premium-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 60px;
    }

    .card-large {
      grid-column: span 2;
      grid-row: span 2;
    }

    .premium-card {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      aspect-ratio: 16/10;
      cursor: pointer;
    }

    .card-large {
      aspect-ratio: 16/9;
    }

    .card-media {
      position: absolute;
      inset: 0;
      background: linear-gradient(145deg, #1a2028 0%, #0e1218 100%);
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .premium-card:nth-child(1) .card-media {
      background: linear-gradient(145deg, #1a2638 0%, #0a0f1a 100%);
    }

    .premium-card:nth-child(2) .card-media {
      background: linear-gradient(145deg, #1a2828 0%, #0a1212 100%);
    }

    .premium-card:nth-child(3) .card-media {
      background: linear-gradient(145deg, #231a28 0%, #0e0a12 100%);
    }

    .premium-card:nth-child(4) .card-media {
      background: linear-gradient(145deg, #281a1a 0%, #120a0a 100%);
    }

    .media-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.2);
      transition: background 0.4s ease;
    }

    .premium-card:hover .media-overlay {
      background: rgba(0, 0, 0, 0.5);
    }

    .premium-card:hover .card-media {
      transform: scale(1.05);
    }

    .media-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: clamp(20px, 5vw, 40px);
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      transform: translateY(0);
      transition: transform 0.4s ease;
    }

    .premium-card:hover .media-content {
      transform: translateY(-10px);
    }

    .project-category {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      color: #00f0ff;
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .project-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(20px, 4vw, 28px);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .card-large .project-name {
      font-size: clamp(28px, 5vw, 42px);
    }

    .project-stats {
      display: flex;
      gap: clamp(20px, 5vw, 40px);
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .stat-value {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(20px, 4vw, 28px);
      font-weight: 700;
      color: #00f0ff;
    }

    .stat-label {
      font-size: 13px;
      color: #a0a8b8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .project-metrics {
      font-size: 14px;
      color: #00f0ff;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      border-bottom: 1px solid transparent;
      transition: all 0.3s ease;
    }

    .project-link:hover {
      color: #00f0ff;
      gap: 16px;
    }

    .link-arrow {
      width: 16px;
      height: 16px;
    }

    .portfolio-footer {
      text-align: center;
      margin-top: 60px;
    }

    .premium-cta {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 20px 52px;
      background: transparent;
      border: 2px solid rgba(0, 240, 255, 0.3);
      border-radius: 60px;
      color: #ffffff;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .premium-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .premium-cta:hover {
      border-color: #00f0ff;
      gap: 24px;
      box-shadow: 0 20px 30px -15px rgba(0, 240, 255, 0.2);
    }

    .premium-cta:hover::before {
      left: 100%;
    }

    .cta-arrow {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .premium-cta:hover .cta-arrow {
      transform: translateX(8px);
    }

    /* ========== INFINITE CAROUSEL ========== */
    .carousel-section {
      padding: 80px 24px;
      background: #0a0c10;
      overflow: hidden;
      position: relative;
    }

    .carousel-header {
      max-width: 1300px;
      margin: 0 auto 50px;
      padding: 0 20px;
    }

    .carousel-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(24px, 5vw, 32px);
      font-weight: 600;
      color: #ffffff;
    }

    .carousel-header h2 span {
      color: #00f0ff;
    }

    .carousel-track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: scroll 30s linear infinite;
    }

    .carousel-item {
      padding: 16px 36px;
      background: #111418;
      border: 1px solid #232830;
      border-radius: 60px;
      color: #ffffff;
      font-size: clamp(14px, 3vw, 18px);
      font-weight: 500;
      white-space: nowrap;
      transition: 0.2s;
    }

    .carousel-item:hover {
      border-color: #00f0ff;
      background: #1a2028;
    }

    .carousel-track.reverse {
      animation: scrollReverse 30s linear infinite;
      margin-top: 20px;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes scrollReverse {
      0% { transform: translateX(-50%); }
      100% { transform: translateX(0); }
    }

    .carousel-section::before,
    .carousel-section::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: min(200px, 15%);
      pointer-events: none;
      z-index: 2;
    }

    .carousel-section::before {
      left: 0;
      background: linear-gradient(to right, #0a0c10, transparent);
    }

    .carousel-section::after {
      right: 0;
      background: linear-gradient(to left, #0a0c10, transparent);
    }

    /* ========== CONTACT SECTION ========== */
    .contact-section {
      padding: 120px 24px;
      background: #0a0c10;
      position: relative;
      border-top: 1px solid rgba(0, 240, 255, 0.1);
    }

    .contact-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .contact-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .contact-subtitle {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #00f0ff;
      margin-bottom: 20px;
      background: rgba(0, 240, 255, 0.05);
      padding: 8px 16px;
      border-radius: 40px;
      border: 1px solid rgba(0, 240, 255, 0.1);
    }

    .contact-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
      padding: 0 20px;
    }

    .contact-header p {
      font-size: clamp(16px, 4vw, 18px);
      color: #a0a8b8;
      max-width: 600px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    .contact-info {
      background: #111418;
      border: 1px solid #232830;
      border-radius: 32px;
      padding: clamp(32px, 5vw, 48px);
    }

    .info-item {
      margin-bottom: 40px;
    }

    .info-item:last-child {
      margin-bottom: 0;
    }

    .info-label {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #00f0ff;
      margin-bottom: 12px;
    }

    .info-value {
      font-size: clamp(20px, 4vw, 24px);
      font-weight: 500;
      color: #ffffff;
      line-height: 1.4;
      font-family: 'Space Grotesk', sans-serif;
      word-break: break-word;
    }

    .info-small {
      font-size: 16px;
      color: #a0a8b8;
      margin-top: 8px;
    }

    .contact-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 48px;
      padding-top: 48px;
      border-top: 1px solid #232830;
    }

    .contact-stat {
      text-align: center;
    }

    .contact-stat .stat-number {
      font-size: clamp(28px, 5vw, 36px);
      margin-bottom: 8px;
    }

    .contact-stat .stat-label {
      font-size: 13px;
    }

    .contact-form {
      background: #111418;
      border: 1px solid #232830;
      border-radius: 32px;
      padding: clamp(32px, 5vw, 48px);
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: #a0a8b8;
      margin-bottom: 8px;
    }

    .form-input,
    .form-textarea {
      width: 100%;
      background: #1a2028;
      border: 1px solid #232830;
      border-radius: 16px;
      padding: 16px 20px;
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      color: #ffffff;
      transition: all 0.3s ease;
    }

    .form-input:focus,
    .form-textarea:focus {
      outline: none;
      border-color: #00f0ff;
      background: #202832;
      box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1);
    }

    .form-textarea {
      height: 140px;
      resize: vertical;
    }

    .form-submit {
      width: 100%;
      padding: 18px 32px;
      background: transparent;
      border: 2px solid #00f0ff;
      border-radius: 50px;
      color: #00f0ff;
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .form-submit::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
      transition: left 0.5s ease;
    }

    .form-submit:hover {
      background: #00f0ff;
      color: #0a0c10;
      transform: translateY(-2px);
      box-shadow: 0 20px 30px -15px rgba(0, 240, 255, 0.3);
    }

    .form-submit:hover::before {
      left: 100%;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: #0e1218;
      border-top: 1px solid #1a2028;
      padding: 60px 24px 30px;
    }

    .footer-container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .footer-main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 50px;
    }

    .footer-brand p {
      color: #a0a8b8;
      margin: 20px 0;
      font-size: 15px;
      line-height: 1.6;
      max-width: 300px;
    }

    .footer-social {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: #1a2028;
      border: 1px solid #232830;
      border-radius: 50%;
      color: #a0a8b8;
      text-decoration: none;
      font-size: 20px;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      border-color: #00f0ff;
      color: #00f0ff;
      transform: translateY(-4px);
      background: #202832;
    }

    .footer-links h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 24px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 14px;
    }

    .footer-links a {
      color: #a0a8b8;
      text-decoration: none;
      font-size: 15px;
      transition: 0.2s;
      display: inline-block;
    }

    .footer-links a:hover {
      color: #00f0ff;
      transform: translateX(4px);
    }

    .footer-newsletter p {
      color: #a0a8b8;
      font-size: 15px;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .newsletter-input {
      flex: 1;
      min-width: 200px;
      background: #1a2028;
      border: 1px solid #232830;
      border-radius: 40px;
      padding: 14px 20px;
      color: #ffffff;
      font-size: 14px;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #00f0ff;
    }

    .newsletter-btn {
      width: 50px;
      height: 50px;
      background: transparent;
      border: 1px solid #00f0ff;
      border-radius: 50%;
      color: #00f0ff;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .newsletter-btn:hover {
      background: #00f0ff;
      color: #0a0c10;
      transform: translateX(4px);
    }

    .footer-bottom {
      padding-top: 30px;
      border-top: 1px solid #1a2028;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      color: #6b7a90;
      font-size: 14px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      color: #6b7a90;
      text-decoration: none;
      transition: 0.2s;
    }

    .footer-bottom-links a:hover {
      color: #00f0ff;
    }

    /* ========== RESPONSIVE FIXES ========== */

    /* Large Desktop */
    @media (max-width: 1400px) {
      .premium-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .card-large {
        grid-column: span 1;
        grid-row: span 1;
      }
    }

    /* Desktop */
    @media (max-width: 1200px) {
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
      
      .nav-links {
        gap: 32px;
      }
      
      .navbar {
        padding: 14px 24px;
      }
    }

    /* Large Tablets */
    @media (max-width: 1024px) {
      .nav-links {
        gap: 24px;
      }
      
      .nav-links a {
        font-size: 14px;
      }
      
      .btn-primary {
        padding: 8px 20px;
        font-size: 13px;
      }
      
      .hero-split {
        gap: 40px;
      }
      
      .hero-right {
        padding: 40px 30px;
      }
      
      .services-grid {
        gap: 24px;
      }
      
      .service-card {
        padding: 32px;
      }
      
      .clients-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Tablets */
    @media (max-width: 900px) {
      .nav-links, 
      .btn-primary {
        display: none;
      }
      
      .hamburger {
        display: flex;
      }
      
      .navbar {
        padding: 14px 20px;
      }
      
      .clients-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .premium-grid {
        grid-template-columns: 1fr;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .hero-stats {
        gap: 30px;
      }
    }

    /* Small Tablets */
    @media (max-width: 768px) {
      .navbar {
        width: 92%;
        padding: 12px 18px;
        border-radius: 60px;
        top: 16px;
      }
      
      .logo img {
        height: 34px;
      }
      
      .hero {
        padding: 120px 20px 60px;
      }
      
      .hero-headline {
        font-size: clamp(32px, 8vw, 48px);
      }
      
      .hero-description {
        font-size: 16px;
      }
      
      .hero-actions {
        gap: 16px;
      }
      
      .cta-primary {
        padding: 14px 32px;
        font-size: 15px;
      }
      
      .hero-right {
        padding: 32px 24px;
      }
      
      .services-section,
      .values-section,
      .clients-section,
      .premium-portfolio,
      .contact-section {
        padding: 80px 20px;
      }
      
      .section-header {
        margin-bottom: 50px;
      }
      
      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .service-card {
        padding: 28px;
      }
      
      .card-header h3 {
        font-size: 22px;
      }
      
      .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .value-item {
        padding: 28px;
      }
      
      .value-number {
        font-size: 36px;
      }
      
      .header-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
      
      .header-line {
        max-width: 150px;
        margin-bottom: 0;
      }
      
      .media-content {
        padding: 24px;
      }
      
      .project-stats {
        gap: 24px;
      }
      
      .premium-cta {
        padding: 16px 40px;
        font-size: 15px;
      }
      
      .contact-info,
      .contact-form {
        padding: 28px;
      }
      
      .info-value {
        font-size: 20px;
      }
      
      .contact-stats {
        margin-top: 32px;
        padding-top: 32px;
        gap: 20px;
      }
      
      .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .footer-brand p {
        max-width: 100%;
      }
      
      .newsletter-form {
        flex-wrap: nowrap;
      }
      
      .carousel-item {
        padding: 12px 24px;
      }
    }

    /* Mobile */
    @media (max-width: 480px) {
      .navbar {
        top: 12px;
        padding: 10px 16px;
        border-radius: 40px;
        width: 92%;
      }
      
      .logo img {
        height: 28px;
      }
      
      .hamburger span {
        width: 20px;
      }
      
      .mobile-menu a {
        font-size: 24px;
      }
      
      .close-btn {
        font-size: 32px;
        top: 20px;
        right: 20px;
      }
      
      .hero {
        padding: 100px 16px 40px;
      }
      
      .hero-eyebrow {
        font-size: 12px;
        margin-bottom: 16px;
      }
      
      .hero-headline {
        font-size: clamp(28px, 10vw, 36px);
        margin-bottom: 20px;
      }
      
      .hero-description {
        font-size: 15px;
        margin-bottom: 32px;
      }
      
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
      }
      
      .cta-primary,
      .cta-secondary {
        text-align: center;
      }
      
      .cta-secondary {
        border-bottom: none;
        padding: 12px;
      }
      
      .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
      }
      
      .stat-item {
        align-items: center;
        text-align: center;
      }
      
      .hero-right {
        padding: 24px 20px;
      }
      
      .right-title {
        font-size: 18px;
        margin-bottom: 24px;
      }
      
      .feature-item {
        gap: 12px;
        margin-bottom: 24px;
      }
      
      .feature-content h4 {
        font-size: 16px;
      }
      
      .feature-content p {
        font-size: 14px;
      }
      
      .services-section,
      .values-section,
      .clients-section,
      .premium-portfolio,
      .contact-section {
        padding: 60px 16px;
      }
      
      .section-eyebrow {
        font-size: 12px;
        margin-bottom: 12px;
      }
      
      .section-title {
        font-size: clamp(28px, 8vw, 32px);
      }
      
      .service-card {
        padding: 24px 20px;
        border-radius: 24px;
      }
      
      .card-header {
        margin-bottom: 24px;
      }
      
      .card-icon {
        font-size: 24px;
      }
      
      .card-header h3 {
        font-size: 20px;
      }
      
      .service-list li {
        font-size: 14px;
        padding: 12px 0;
      }
      
      .value-item {
        padding: 24px 20px;
      }
      
      .value-number {
        font-size: 32px;
        margin-bottom: 16px;
      }
      
      .value-item h4 {
        font-size: 18px;
      }
      
      .value-item p {
        font-size: 14px;
      }
      
      .clients-subtitle {
        font-size: 11px;
        padding: 6px 12px;
      }
      
      .clients-title {
        font-size: 28px;
      }
      
      .clients-description {
        font-size: 15px;
      }
      
      .clients-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      
      .client-card {
        padding: 30px 20px;
      }
      
      .client-logo {
        font-size: 20px;
      }
      
      .header-subtitle {
        font-size: 11px;
        padding: 6px 12px;
      }
      
      .header-title {
        font-size: 32px;
      }
      
      .header-description {
        font-size: 15px;
      }
      
      .premium-grid {
        gap: 20px;
      }
      
      .premium-card {
        border-radius: 24px;
      }
      
      .media-content {
        padding: 20px;
      }
      
      .project-category {
        font-size: 10px;
        margin-bottom: 8px;
      }
      
      .project-name {
        font-size: 22px;
        margin-bottom: 12px;
      }
      
      .card-large .project-name {
        font-size: 28px;
      }
      
      .project-stats {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
      }
      
      .stat {
        flex-direction: row;
        align-items: center;
        gap: 12px;
      }
      
      .stat-value {
        font-size: 24px;
      }
      
      .project-link {
        font-size: 14px;
      }
      
      .portfolio-footer {
        margin-top: 40px;
      }
      
      .premium-cta {
        padding: 14px 32px;
        font-size: 14px;
        gap: 12px;
      }
      
      .carousel-section {
        padding: 60px 16px;
      }
      
      .carousel-header {
        margin-bottom: 30px;
      }
      
      .carousel-header h2 {
        font-size: 24px;
      }
      
      .carousel-item {
        padding: 10px 20px;
        font-size: 14px;
      }
      
      .contact-header h2 {
        font-size: 28px;
      }
      
      .contact-header p {
        font-size: 15px;
      }
      
      .contact-info,
      .contact-form {
        padding: 24px 20px;
        border-radius: 24px;
      }
      
      .info-item {
        margin-bottom: 30px;
      }
      
      .info-label {
        font-size: 12px;
        margin-bottom: 8px;
      }
      
      .info-value {
        font-size: 18px;
      }
      
      .info-small {
        font-size: 14px;
      }
      
      .contact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 24px;
        padding-top: 24px;
      }
      
      .form-input,
      .form-textarea {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
      }
      
      .form-submit {
        padding: 16px 24px;
        font-size: 15px;
      }
      
      .footer {
        padding: 40px 16px 20px;
      }
      
      .footer-main {
        gap: 30px;
        margin-bottom: 30px;
      }
      
      .footer-brand p {
        font-size: 14px;
      }
      
      .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
      
      .footer-links h4 {
        font-size: 16px;
        margin-bottom: 20px;
      }
      
      .footer-links li {
        margin-bottom: 12px;
      }
      
      .footer-links a {
        font-size: 14px;
      }
      
      .footer-newsletter p {
        font-size: 14px;
      }
      
      .newsletter-form {
        flex-direction: column;
        gap: 12px;
      }
      
      .newsletter-input {
        width: 100%;
        padding: 12px 16px;
      }
      
      .newsletter-btn {
        width: 100%;
        height: 46px;
        border-radius: 40px;
        font-size: 16px;
        gap: 8px;
      }
      
      .newsletter-btn::after {
        content: 'Subscribe';
        font-size: 14px;
      }
      
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        gap: 15px;
      }
      
      .footer-bottom-links {
        justify-content: center;
        gap: 20px;
      }
      
      .footer-bottom-links a {
        font-size: 13px;
      }
    }

    /* Small Mobile */
    @media (max-width: 360px) {
      .navbar {
        padding: 8px 14px;
        width: 94%;
      }
      
      .hero-headline {
        font-size: 28px;
      }
      
      .cta-primary {
        padding: 12px 24px;
        font-size: 14px;
      }
      
      .hero-right {
        padding: 20px 16px;
      }
      
      .service-card {
        padding: 20px 16px;
      }
      
      .card-header h3 {
        font-size: 18px;
      }
      
      .client-card {
        padding: 24px 16px;
      }
      
      .project-name {
        font-size: 20px;
      }
      
      .card-large .project-name {
        font-size: 24px;
      }
      
      .premium-cta {
        padding: 12px 24px;
        font-size: 13px;
      }
      
      .footer-bottom {
        font-size: 12px;
      }
      
      .footer-bottom-links {
        gap: 15px;
      }
    }

    /* Fix for very small devices */
    @media (max-width: 320px) {
      .navbar {
        padding: 8px 12px;
        width: 96%;
      }
      
      .logo img {
        height: 22px;
      }
      
      .hamburger span {
        width: 16px;
      }
    }

    /* Landscape Mode */
    @media (max-height: 600px) and (orientation: landscape) {
      .hero {
        min-height: auto;
        padding: 120px 24px 60px;
      }
      
      .mobile-menu a {
        font-size: 20px;
      }
      
      .mobile-menu {
        gap: 20px;
      }
    }

    /* Animations */
    .premium-card {
      animation: fadeUp 0.8s ease backwards;
    }

    .premium-card:nth-child(1) { animation-delay: 0.1s; }
    .premium-card:nth-child(2) { animation-delay: 0.2s; }
    .premium-card:nth-child(3) { animation-delay: 0.3s; }
    .premium-card:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }