:root {
  --primary-dark: #0a0e27;
  --primary-darker: #05070f;
  --secondary-dark: #1a1f3a;
  --accent-cyan: #00d9ff; 
  --accent-blue: #0080ff;
  --accent-violet: #7c3aed;
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-tertiary: #64748b;
  --border-color: #1e293b;
  --glow-cyan: rgba(0, 217, 255, 0.1);
  --glow-blue: rgba(0, 128, 255, 0.1);
  --spacing-unit: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background: linear-gradient(
    135deg,
    var(--primary-darker) 0%,
    var(--primary-dark) 100%
  );
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: calc(var(--spacing-unit) * 1.5) 0;
  padding: 2rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 0.75);
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  color: var(--accent-cyan);
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: calc(var(--spacing-unit) * 3);
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--accent-cyan);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 2);
  margin-top: 60px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      0deg,
      transparent 24%,
      rgba(0, 217, 255, 0.05) 25%,
      rgba(0, 217, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 217, 255, 0.05) 75%,
      rgba(0, 217, 255, 0.05) 76%,
      transparent 77%,
      transparent
    ),
    linear-gradient(
      90deg,
      transparent 24%,
      rgba(0, 217, 255, 0.05) 25%,
      rgba(0, 217, 255, 0.05) 26%,
      transparent 27%,
      transparent 74%,
      rgba(0, 217, 255, 0.05) 75%,
      rgba(0, 217, 255, 0.05) 76%,
      transparent 77%,
      transparent
    );
  background-size: 80px 80px;
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(80px);
  }
}

.glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -100px;
  right: 10%;
  filter: blur(40px);
  animation: floatGlow 8s ease-in-out infinite;
}

.glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -50px;
  left: 5%;
  filter: blur(40px);
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.1;
  margin-bottom: calc(var(--spacing-unit) * 2);
  font-weight: 700;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
  flex-wrap: wrap;
}

.btn {
  padding: calc(var(--spacing-unit) * 1.25) calc(var(--spacing-unit) * 3);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  color: var(--primary-dark);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-secondary:hover {
  background: var(--glow-cyan);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.ai-orb {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--accent-cyan),
    var(--accent-violet)
  );
  box-shadow:
    0 0 60px rgba(0, 217, 255, 0.4),
    0 0 100px rgba(124, 58, 237, 0.2),
    inset -50px -50px 100px rgba(0, 0, 0, 0.3);
  animation: orb-rotate 8s linear infinite;
}

@keyframes orb-rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* ============ INTRO SECTION ============ */
.intro-section {
  position: relative;
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(180deg, transparent, var(--secondary-dark));
}

.intro-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  background: linear-gradient(135deg, var(--accent-cyan), var(--text-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-section p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ============ TRUST SECTION ============ */
.trust-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 39, 0.8),
    rgba(26, 31, 58, 0.6)
  );
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-section h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 4);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.trust-item {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.08),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 2.5);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  transition: all 0.3s ease;
}

.trust-item::before {
  content: "✔";
  position: relative;
  top: 1px;
  left: 0px;
  color: var(--accent-cyan);
  font-weight: 700;
  opacity: 0.6;
}

.trust-item:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
  color: var(--text-primary);
}

/* ============ DELIVERABLES SECTION ============ */
.deliverables-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(180deg, transparent, rgba(26, 31, 58, 0.8));
}

.deliverables-section h2 {
  font-size: 2.25rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 2.5);
}

.deliverable-item {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.6),
    rgba(30, 41, 59, 0.4)
  );
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: calc(var(--spacing-unit) * 3);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.deliverable-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.12),
    rgba(124, 58, 237, 0.08)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.deliverable-item:hover::after {
  opacity: 1;
}

.deliverable-item:hover {
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 128, 255, 0.18);
}

.deliverable-item h4 {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  margin-bottom: calc(var(--spacing-unit) * 1);
  position: relative;
  z-index: 1;
}

.deliverable-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ============ SOLUTIONS PREVIEW ============ */
.solutions-preview {
  padding: calc(var(--spacing-unit) * 8) 0;
}

.solutions-preview h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.solution-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 2.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glow-cyan), var(--glow-blue));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.solution-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.solution-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  display: inline-block;
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--text-primary);
}

.solution-card p {
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 2);
  line-height: 1.8;
}

.card-link {
  color: var(--accent-cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 0.5);
}

.card-link:hover {
  gap: calc(var(--spacing-unit) * 1);
}

/* ============ INDUSTRIES SECTION ============ */
.industries-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(180deg, var(--secondary-dark), transparent);
}

.industries-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.industry-card {
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.1),
    rgba(0, 128, 255, 0.05)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 2.5);
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--accent-violet);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.industry-card h3 {
  font-size: 1.125rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--accent-cyan);
}

.industry-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05),
    rgba(124, 58, 237, 0.05)
  );
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ PAGE HEADER ============ */
.page-header {
  background: linear-gradient(
    135deg,
    var(--secondary-dark),
    var(--primary-dark)
  );
  border-bottom: 1px solid var(--border-color);
  padding: calc(var(--spacing-unit) * 8) 0;
  text-align: center;
  margin-top: 60px;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ============ ABOUT SECTION ============ */
.about-section {
  padding: calc(var(--spacing-unit) * 8) 0;
}

/* ============ HOW WE WORK SECTION ============ */
.about-section-1 {
  padding: calc(var(--spacing-unit) * 8) 0;
}

@media (max-width: 768px) {
  .about-section-1 .about-text {
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 2);
  }

  .about-section-1 h2 {
    font-size: 1.75rem;
  }
}

.about-section-1 h2 {
  font-size: 2.25rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-section-1 .about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 3);
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.65),
    rgba(30, 41, 59, 0.4)
  );
  border: 1px solid var(--border-color);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.about-section-1 .about-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.12),
    rgba(124, 58, 237, 0.08)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-section-1 .about-text:hover::before {
  opacity: 1;
}

.about-section- .about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  position: relative;
  z-index: 1;
}

.about-section .about-text p:last-child {
  margin-bottom: 0;
}

.about-section .about-text:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 25px 50px rgba(0, 217, 255, 0.18);
  transform: translateY(-6px);
  transition: all 0.4s ease;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 4);
  align-items: center;
}

.about-text h2 {
  font-size: 2.25rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 2);
  line-height: 1.9;
  font-size: 1rem;
}

.vision-card {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 3);
  text-align: center;
}

.vision-card span {
  display: block;
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.vision-card p {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* ============ VALUES SECTION ============ */
.values-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(180deg, var(--secondary-dark), transparent);
}

.values-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.value-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 2.5);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(124, 58, 237, 0.05)
  );
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ EXPERTISE SECTION ============ */
.expertise-section {
  padding: calc(var(--spacing-unit) * 8) 0;
}

.expertise-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.expertise-item {
  text-align: center;
}

.expertise-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  line-height: 80px;
}

.expertise-item h3 {
  font-size: 1.25rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--text-primary);
}

.expertise-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ TRUSTED SECTION ============ */
.trusted-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(180deg, var(--secondary-dark), transparent);
  text-align: center;
}

.trusted-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trusted-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.trust-marker {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: calc(var(--spacing-unit) * 2);
  color: var(--accent-cyan);
  font-weight: 600;
  transition: all 0.3s ease;
}

.trust-marker:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

/* ============ TEAM SECTION ============ */
.team-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(180deg, var(--secondary-dark), transparent);
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-intro {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto calc(var(--spacing-unit) * 5);
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.team-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: calc(var(--spacing-unit) * 3);
  transition: all 0.3s ease;
  text-align: left;
}

.team-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.12);
}

.team-image {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: calc(var(--spacing-unit) * 2);
  border: 1px solid var(--border-color);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.team-role {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: calc(var(--spacing-unit) * 1.25);
}

.team-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Mobile */
@media (max-width: 480px) {
  .team-image {
    height: 220px;
  }
}

/* ============ SOLUTIONS DETAIL ============ */
.solutions-detail {
  padding: calc(var(--spacing-unit) * 4) 0;
}

.solution-detail-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 3);
  transition: all 0.3s ease;
}

.solution-detail-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.solution-header h2 {
  font-size: 1.75rem;
  margin-bottom: calc(var(--spacing-unit) * 0.5);
  color: var(--accent-cyan);
}

.solution-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.solution-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: var(--text-secondary);
  padding: calc(var(--spacing-unit) * 0.75) 0;
  padding-left: calc(var(--spacing-unit) * 2.5);
  position: relative;
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

/* ============ INDUSTRIES DETAIL ============ */
.industries-detail {
  padding: calc(var(--spacing-unit) * 4) 0;
}

.industry-detail-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 3);
  transition: all 0.3s ease;
}

.industry-detail-card:hover {
  border-color: var(--accent-violet);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.industry-header h2 {
  font-size: 1.75rem;
  color: var(--accent-cyan);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.industry-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.industry-body h4 {
  color: var(--accent-blue);
  margin-top: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

/* ============ INDUSTRY STATS ============ */
.industry-stats {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05),
    rgba(124, 58, 237, 0.05)
  );
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.industry-stats h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.stat-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 3);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.stat-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============ PROJECTS SECTION ============ */
.projects-grid-section {
  padding: calc(var(--spacing-unit) * 4) 0;
}

.projects-grid-section > .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: calc(var(--spacing-unit) * 2.5);
}

.project-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 2.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-cyan),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.project-card:hover::before {
  opacity: 1;
}

.project-tag {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.2),
    rgba(124, 58, 237, 0.1)
  );
  color: var(--accent-cyan);
  padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 1.25);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card h3 {
  font-size: 1.25rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--text-primary);
}

.project-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: calc(var(--spacing-unit) * 0.75);
  margin-bottom: calc(var(--spacing-unit) * 2);
  padding: calc(var(--spacing-unit) * 1.5) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.detail-item {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 1);
}

.project-link {
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 0.5);
  transition: gap 0.3s ease;
}

.project-link:hover {
  gap: calc(var(--spacing-unit) * 1);
}

/* ============ IMPACT SECTION ============ */
.impact-section {
  padding: calc(var(--spacing-unit) * 8) 0;
  background: linear-gradient(180deg, var(--secondary-dark), transparent);
  text-align: center;
}

.impact-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.impact-item {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1),
    rgba(124, 58, 237, 0.05)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 3);
  transition: all 0.3s ease;
}

.impact-item:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.1);
}

.impact-item h3 {
  font-size: 2rem;
  color: var(--accent-cyan);
  margin-bottom: calc(var(--spacing-unit) * 0.75);
}

.impact-item p {
  color: var(--text-secondary);
}

/* ============ BENEFITS SECTION ============ */
.benefits-section {
  padding: calc(var(--spacing-unit) * 8) 0;
}

.benefits-section h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: calc(var(--spacing-unit) * 2);
}

.benefit-item {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 2.5);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--accent-blue);
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(0, 128, 255, 0.1),
    rgba(0, 128, 255, 0.05)
  );
}

.benefit-item h3 {
  font-size: 1.125rem;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--accent-blue);
}

.benefit-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  padding: calc(var(--spacing-unit) * 8) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 4);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-item {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.info-item h3 {
  color: var(--accent-cyan);
  margin-bottom: calc(var(--spacing-unit) * 0.75);
  font-size: 1.1rem;
}

.info-item p {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: calc(var(--spacing-unit) * 0.5);
}

.info-item p a {
  color: var(--accent-cyan);
  transition: all 0.3s ease;
}

.info-item p a:hover {
  text-decoration: underline;
}

.info-desc {
  color: var(--text-secondary) !important;
  font-size: 0.9rem !important;
}

.quick-links {
  list-style: none;
}

.quick-links li {
  margin-bottom: calc(var(--spacing-unit) * 0.75);
}

.quick-links a {
  color: var(--accent-blue);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: calc(var(--spacing-unit) * 0.5);
}

.quick-links a:hover {
  color: var(--accent-cyan);
  gap: calc(var(--spacing-unit) * 1);
}

/* ============ FOOTER SOCIAL LINKS ============ */
.social-links {
  display: flex;
  gap: calc(var(--spacing-unit) * 1.25);
  margin-top: calc(var(--spacing-unit) * 1.5);
}

.social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--accent-cyan);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.05),
    rgba(124, 58, 237, 0.05)
  );
}

.social-links a:hover {
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
  transform: translateY(-2px);
}

/* ============ CONTACT FORM ============ */
.contact-form {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.5),
    rgba(30, 41, 59, 0.3)
  );
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: calc(var(--spacing-unit) * 3);
}

.form-group {
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.form-group label {
  display: block;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: calc(var(--spacing-unit) * 0.75);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 1.25);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.form-group input::placeholder {
  color: var(--text-tertiary);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300d9ff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right calc(var(--spacing-unit) * 1.25) center;
  padding-right: calc(var(--spacing-unit) * 3);
}

.form-submit {
  width: 100%;
  margin-top: calc(var(--spacing-unit) * 1.5);
}

.form-message {
  margin-top: calc(var(--spacing-unit) * 1.5);
  padding: calc(var(--spacing-unit) * 1.5);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.1),
    rgba(34, 197, 94, 0.05)
  );
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #22c55e;
}

.form-message.error {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.1),
    rgba(239, 68, 68, 0.05)
  );
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ef4444;
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(
    135deg,
    var(--primary-darker),
    var(--primary-dark)
  );
  border-top: 1px solid var(--border-color);
  padding: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 3);
  margin-top: calc(var(--spacing-unit) * 8);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.footer-section h4 {
  color: var(--accent-cyan);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: calc(var(--spacing-unit) * 0.75);
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: calc(var(--spacing-unit) * 0.75);
}

.footer-section a {
  color: var(--accent-blue);
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: calc(var(--spacing-unit) * 3);
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

/* ============ RESPONSIVE DESIGN ============ */

@media (max-width: 768px) {
  .trust-section h2,
  .deliverables-section h2 {
    font-size: 1.75rem;
  }

  .trust-item,
  .deliverable-item {
    padding: calc(var(--spacing-unit) * 2);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar.active .nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 2);
    gap: calc(var(--spacing-unit) * 1.5);
    border-bottom: 1px solid var(--border-color);
  }

  .hero {
    flex-direction: column;
    padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 250px;
    margin-bottom: calc(var(--spacing-unit) * 2);
  }

  .ai-orb {
    width: 200px;
    height: 200px;
  }

  .hero-cta {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .solutions-preview h2,
  .industries-section h2,
  .values-section h2,
  .expertise-section h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 calc(var(--spacing-unit) * 1);
  }

  .solutions-grid,
  .industries-grid,
  .values-grid,
  .expertise-grid,
  .benefits-grid,
  .stats-grid,
  .impact-grid,
  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 1);
    margin-top: 60px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 2);
  }

  .page-header-content h1 {
    font-size: 1.5rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

