:root {
  --brand-dark: #0a0a0a;
  --brand-blue: #3b82f6;
  --brand-indigo: #6366f1;
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-900: #111827;
}

.icon-purple svg {
  color: #7c3aed;
}

.icon-blue svg {
  color: #2563eb;
}

.icon-emerald svg {
  color: #059669;
}

.icon-sky svg {
  color: #0284c7;
}

.icon-violet svg {
  color: #6d28d9;
}

/* ══════════════════════════════════════════════════════
           RESET & BASE - 200OK BRAND THEME
        ═══════════════════════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #050505;
  --bg-secondary: #0c0c0e;
  --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);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  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", 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 {
  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: var(--text-muted);
  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 - 3D FLOATING CUBES ANIMATION
        ═══════════════════════════════════════════════════════ */

/* 3D Scene Container */
/* .scene-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  pointer-events: none;
} */

/* 3D Floating Cubes/Containers */
/* .cube-container {
  position: absolute;
  transform-style: preserve-3d;
  animation: float3d 20s ease-in-out infinite;
}

.cube {
  position: relative;
  width: 80px;
  height: 80px;
  transform-style: preserve-3d;
  animation: rotate3d 15s linear infinite;
}

.cube-face {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-primary);
  background: linear-gradient(
    135deg,
    rgba(0, 163, 255, 0.1) 0%,
    rgba(6, 182, 212, 0.05) 100%
  );
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent-primary);
  opacity: 0.8;
} */

/* Docker-like lines inside cubes */
/* .cube-face::before,
.cube-face::after {
  content: "";
  position: absolute;
  background: var(--accent-primary);
  opacity: 0.5;
}

.cube-face::before {
  width: 60%;
  height: 2px;
  top: 35%;
}

.cube-face::after {
  width: 40%;
  height: 2px;
  top: 55%;
} */

/* Cube face positions */
/* .cube-face.front {
  transform: translateZ(40px);
}

.cube-face.back {
  transform: rotateY(180deg) translateZ(40px);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(40px);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(40px);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(40px);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(40px);
} */

/* Different cube positions and animations */
/* .cube-container-1 {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}

.cube-container-1 .cube {
  animation-duration: 12s;
}

.cube-container-2 {
  top: 20%;
  right: 20%;
  animation-delay: 2s;
}

.cube-container-2 .cube {
  animation-duration: 18s;
  animation-direction: reverse;
}

.cube-container-3 {
  top: 60%;
  left: 10%;
  animation-delay: 4s;
}

.cube-container-3 .cube {
  width: 100px;
  height: 100px;
  animation-duration: 14s;
}

.cube-container-3 .cube-face {
  width: 100px;
  height: 100px;
}

.cube-container-4 {
  top: 70%;
  right: 15%;
  animation-delay: 6s;
}

.cube-container-4 .cube {
  animation-duration: 16s;
}

.cube-container-5 {
  top: 40%;
  left: 50%;
  animation-delay: 8s;
}

.cube-container-5 .cube {
  width: 60px;
  height: 60px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.cube-container-5 .cube-face {
  width: 60px;
  height: 60px;
}

.cube-container-6 {
  top: 30%;
  right: 40%;
  animation-delay: 3s;
}

.cube-container-6 .cube {
  animation-duration: 17s;
}

@keyframes float3d {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translate3d(30px, -30px, 100px) rotateX(10deg) rotateY(15deg);
  }
  50% {
    transform: translate3d(-20px, -60px, 50px) rotateX(-5deg) rotateY(-10deg);
  }
  75% {
    transform: translate3d(-30px, -30px, 150px) rotateX(15deg) rotateY(20deg);
  }
}

@keyframes rotate3d {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  33% {
    transform: rotateX(120deg) rotateY(120deg) rotateZ(0deg);
  }
  66% {
    transform: rotateX(240deg) rotateY(240deg) rotateZ(180deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
} */

/* Depth of Field Particles */
/* .dof-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle-3d {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-tertiary);
  border-radius: 50%;
  opacity: 0;
  animation: particleDepth 8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

@keyframes particleDepth {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate3d(var(--x), var(--y), 200px) scale(2);
  }
}

.particle-3d:nth-child(1) {
  top: 20%;
  left: 30%;
  --x: 50px;
  --y: -80px;
  animation-delay: 0s;
}
.particle-3d:nth-child(2) {
  top: 40%;
  left: 70%;
  --x: -60px;
  --y: 90px;
  animation-delay: 1s;
}
.particle-3d:nth-child(3) {
  top: 60%;
  left: 20%;
  --x: 70px;
  --y: -50px;
  animation-delay: 2s;
}
.particle-3d:nth-child(4) {
  top: 80%;
  left: 80%;
  --x: -80px;
  --y: -70px;
  animation-delay: 3s;
}
.particle-3d:nth-child(5) {
  top: 30%;
  left: 50%;
  --x: 40px;
  --y: 60px;
  animation-delay: 4s;
}
.particle-3d:nth-child(6) {
  top: 50%;
  left: 15%;
  --x: -50px;
  --y: -90px;
  animation-delay: 1.5s;
}
.particle-3d:nth-child(7) {
  top: 70%;
  left: 60%;
  --x: 90px;
  --y: 80px;
  animation-delay: 2.5s;
}
.particle-3d:nth-child(8) {
  top: 15%;
  left: 85%;
  --x: -70px;
  --y: 50px;
  animation-delay: 3.5s;
} */

/* Cloud Layers with 3D depth */
/* .cloud-3d {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(0, 163, 255, 0.15) 0%,
    rgba(6, 182, 212, 0.08) 50%,
    transparent 100%
  );
  filter: blur(60px);
  animation: cloudDepth 25s ease-in-out infinite;
}

@keyframes cloudDepth {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(100px, -50px, 150px) scale(1.3);
    opacity: 0.7;
  }
}

.cloud-3d-1 {
  width: 400px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.cloud-3d-2 {
  width: 350px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation-delay: 5s;
}

.cloud-3d-3 {
  width: 300px;
  height: 200px;
  bottom: 15%;
  left: 30%;
  animation-delay: 10s;
} */

/* Grid with perspective */
/* .grid-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 163, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 163, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  transform: rotateX(60deg) translateZ(-500px);
  transform-origin: center center;
  animation: gridPerspective 30s linear infinite;
}

@keyframes gridPerspective {
  0% {
    transform: rotateX(60deg) translateZ(-500px) translateY(0);
  }
  100% {
    transform: rotateX(60deg) translateZ(-500px) translateY(100px);
  }
} */

/* ══════════════════════════════════════════════════════
           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-primary {
  background: var(--accent-primary);
  color: var(--text-white);
  padding: 18px 44px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0ea5e9e6;
}

.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: var(--accent-primary);
  margin-bottom: 24px;
}

.intro-section {
  background: #ffffff;
  position: relative;
}

.intro-section h2 {
  color: #000000;
}

.intro-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);
}

.intro-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #050505;
  max-width: none;
  text-align: justify;
}

/* ══════════════════════════════════════════════════════
           CHALLENGES SECTION
        ═══════════════════════════════════════════════════════ */
/* .challenges-section {
  background: #1a1f2c;
}

.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: var(--text-light);
}

.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-section h2 {
  color: #000000;
}

.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: #1a1f2c;
}

.tech-section h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #ffffff;
}

.tech-categories {
  display: grid;
  gap: 24px;
}

.tech-category {
  background: #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);
}

.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;
  color: #000000;
}

.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;
}

.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: #ffffff !important;
}

.outcomes-section h2 {
  text-align: center;
  margin-bottom: 64px;
  color: #1a1f2c !important;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.outcome-card {
  background: #f9fafb !important;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.outcome-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%
  );
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.outcome-card:hover {
  background: #f9fafbc4 !important;
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.outcome-card p {
  margin: 0;
  color: #1a1f2c !important;
  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: #1a1f2c !important;
  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;
  color: #ffffff !important;
}

.cta-content p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--text-light) !important;
}
