:root {
  --brand-dark: #1a1f2c;
  --brand-blue: #3b82f6;
  --brand-indigo: #6366f1;
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-900: #111827;
}

:root {
  --bg-secondary: #0a0a0a;
  --bg-card: #111114;
  --accent-primary: #00a3ff;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #06b6d4;
  --text-white: #ffffff;
  --text-light: #e5e5e5;
  --text-muted: #d1d5db;
  --border-color: rgba(255, 255, 255, 0.06);
  --glow-primary: rgba(0, 163, 255, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════════════════════
           TYPOGRAPHY - 200OK BRAND
        ═══════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  /* color: var(--text-white); */
  letter-spacing: -1.5px;
}

h1 {
  font-size: clamp(48px, 7vw, 72px);
  /* margin-bottom: 32px; */
}

h2 {
  margin-top: 0;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

p {
  margin-bottom: 20px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
  max-width: 70ch;
}

.gradient-text {
  background-image: linear-gradient(to right, var(--brand-blue), var(--brand-indigo));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ══════════════════════════════════════════════════════
           LAYOUT
        ═══════════════════════════════════════════════════════ */
.container {
  max-width: 100%;
  padding: 0 16px;
}

.container-narrow {
  max-width: 100%;
  padding: 0 16px;
}

@media (min-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .container-narrow {
    padding: 0 24px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding: 0 32px;
  }

  .container-narrow {
    max-width: 960px;
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
  }
}

section {
  padding: 160px 0;
}

/* ══════════════════════════════════════════════════════
           HERO SECTION - PRODUCT DEVELOPMENT STYLE
        ═══════════════════════════════════════════════════════ */

/* Animated Mesh Gradient Background */
/* .hero-background {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 163, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(6, 182, 212, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(0, 163, 255, 0.28) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(6, 182, 212, 0.22) 0%,
      transparent 50%
    );
  animation: meshRotate 20s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes meshRotate {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
} */

/* Floating Orbs */
/* .floating-orbs {
  background-color: #1a1f2c;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    var(--accent-tertiary) 100%
  );
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--accent-tertiary) 0%,
    var(--accent-primary) 100%
  );
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #0090e0 100%);
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
} */

/* Grid Pattern Overlay */
/* .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: #1a1f2c;
  background-size: 60px 60px;
  animation: gridSlide 30s linear infinite;
  opacity: 0.5;
}

@keyframes gridSlide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
} */

/* ══════════════════════════════════════════════════════
           BUTTONS - 200OK BRAND
        ═══════════════════════════════════════════════════════ */
.btn {
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  padding: 17px 40px;
  border: 1px solid #00a3ff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════════════
           SECTIONS
        ═══════════════════════════════════════════════════════ */

.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0ea5e9;
  margin-bottom: 24px;
}

.section-label h2 {
  color: var(--bg-card);
}

.value-section {
  background-color: #ffffff;
  position: relative;
}

.value-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.5), transparent);
}

.value-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #050505;
  text-align: justify;
}

/* ══════════════════════════════════════════════════════
           CHALLENGES SECTION
        ═══════════════════════════════════════════════════════ */
/* .challenges-section {
  background-color: #1a1f2c;
}

.challenges-section h2 {
  color: #ffffff;
}

.challenges-section p {
  color: #d1d5db;
  text-align: left;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.challenge-card {
  background: #252a37;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--accent-primary) 0%,
    var(--accent-tertiary) 100%
  );
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(0, 163, 255, 0.2);
}

.challenge-card:hover::before {
  transform: scaleY(1);
}

.challenge-card p {
  margin: 0;
  color: #d1d5db;
}

.challenge-response {
  text-align: center;
  margin-top: 64px;
  padding: 48px;
  background: rgba(0, 163, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 163, 255, 0.2);
}

.challenge-response p {
  font-size: 20px;
  color: var(--text-white);
  font-weight: 500;
  margin: 0;
} */

/* ══════════════════════════════════════════════════════
           METHODOLOGY SECTION
        ═══════════════════════════════════════════════════════ */
/* .methodology-section {
  background: #ffffff;
}

.methodology-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.process-steps {
  display: grid;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 163, 255, 0.5) 0%,
    rgba(6, 182, 212, 0.5) 50%,
    rgba(0, 163, 255, 0.5) 100%
  );
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.step-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    var(--accent-tertiary) 100%
  );
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  box-shadow: 0 8px 24px var(--glow-primary);
  position: relative;
  z-index: 2;
}

.step-content {
  background-color: #252a37;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.step-content h3 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.step-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
} */

/* ══════════════════════════════════════════════════════
           RESPONSIVE STYLES
        ═══════════════════════════════════════════════════════ */

/* @media (max-width: 768px) {
  .methodology-intro {
    margin: 0 auto 48px;
  }

  .process-steps {
    gap: 32px;
  }

  .process-steps::before {
    left: 30px;
    top: 60px;
    bottom: 60px;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }

  .step-marker {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .step-content {
    padding: 24px;
  }

  .step-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .methodology-intro {
    margin: 0 auto 32px;
  }

  .process-steps {
    gap: 24px;
  }

  .process-steps::before {
    left: 22px;
    top: 45px;
    bottom: 45px;
  }

  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .step-marker {
    width: 44px;
    height: 44px;
    font-size: 18px;
    box-shadow: 0 4px 16px var(--glow-primary);
  }

  .step-content {
    padding: 20px;
  }

  .step-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }
} */

/* ══════════════════════════════════════════════════════
           TECHNOLOGY SECTION
        ═══════════════════════════════════════════════════════ */
/* .tech-section {
  background-color: #1a1f2c;
}

.tech-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}

.tech-categories {
  display: grid;
  gap: 24px;
}

.tech-category {
  background-color: #252a37;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.4s ease;
}

.tech-category:hover {
  background: rgba(0, 163, 255, 0.03);
  border-color: var(--accent-primary);
  transform: translateX(10px);
}

.tech-category h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-primary);
  margin-top: 0px;
}

.tech-category p {
  margin: 0;
  color: var(--text-muted);
} */

/* ══════════════════════════════════════════════════════
           CASE STUDIES
        ═══════════════════════════════════════════════════════ */
/* .case-studies-section {
  background: #ffffff;
}

.case-studies-section h2 {
  text-align: center;
  margin-bottom: 64px;
}

.case-study {
  background: #252a37;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.case-study::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-primary) 0%,
    var(--accent-tertiary) 100%
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.case-study:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 163, 255, 0.15);
  border-color: var(--accent-primary);
}

.case-study:hover::before {
  transform: scaleX(1);
}

.case-study-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.case-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--brand-blue) 0%,
    var(--brand-indigo) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.case-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-white);
}

.case-title h3 {
  color: var(--text-white);
  margin-bottom: 8px;
  margin-top: 0;
}

.case-subtitle {
  color: var(--text-muted);
  font-size: 14px;
}

.case-study p {
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-light);
  text-align: justify;
}

.case-tech {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(0, 163, 255, 0.1);
  border: 1px solid rgba(0, 163, 255, 0.2);
  border-radius: 6px;
  font-size: 14px;
}

.case-tech-color {
  color: #ffffff;
}

.case-tech strong {
  color: var(--accent-primary);
} */

/* ══════════════════════════════════════════════════════
           RESPONSIVE STYLES
        ═══════════════════════════════════════════════════════ */

/* @media (max-width: 768px) {
  .case-studies-section h2 {
    margin-bottom: 48px;
  }

  .case-study {
    padding: 32px;
    margin-bottom: 24px;
  }

  .case-study:hover {
    transform: translateY(-4px);
  }

  .case-study-header {
    gap: 20px;
    margin-bottom: 20px;
  }

  .case-icon {
    width: 48px;
    height: 48px;
  }

  .case-icon svg {
    width: 24px;
    height: 24px;
  }

  .case-title h3 {
    font-size: 20px;
  }

  .case-tech {
    gap: 8px;
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .case-studies-section h2 {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .case-study {
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .case-study:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 163, 255, 0.15);
  }

  .case-study-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .case-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .case-icon svg {
    width: 22px;
    height: 22px;
  }

  .case-title h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .case-subtitle {
    font-size: 13px;
  }

  .case-study p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
  }

  .case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .case-tech strong {
    width: 100%;
  }
} */

/* ══════════════════════════════════════════════════════
           OUTCOMES SECTION
        ═══════════════════════════════════════════════════ */
/* .outcomes-section {
  background-color: #1a1f2c;
}

.outcomes-section h2 {
  text-align: center;
  margin-bottom: 64px;
  color: #ffffff;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.outcome-card {
  background: #252a37;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.outcome-card::before {
  content: "";
  position: absolute;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--accent-primary) 0%,
    var(--accent-tertiary) 100%
  );
}

.outcome-card:hover {
  background: rgba(0, 163, 255, 0.03);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.outcome-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
} */

/* ══════════════════════════════════════════════════════
           RESPONSIVE STYLES
        ═══════════════════════════════════════════════════ */

/* @media (max-width: 768px) {
  .outcomes-section h2 {
    margin-bottom: 48px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .outcome-card {
    padding: 24px;
  }

  .outcome-card:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .outcomes-section h2 {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .outcomes-grid {
    gap: 16px;
  }

  .outcome-card {
    padding: 20px;
  }

  .outcome-card::before {
    width: 3px;
  }

  .outcome-card p {
    font-size: 14px;
    line-height: 1.6;
  }
} */

/* ══════════════════════════════════════════════════════
           CTA SECTION
        ═══════════════════════════════════════════════════════ */
/* .cta-section {
  background: #ffffff;
  position: relative;
  padding: 120px 0;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 48px;
  color: #050505;
} */

.cta-section h2 {
  color: #1a1f2c;
}
