: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: #0ea5e9;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #06b6d4;
  --text-white: #ffffff;
  --text-light: #e5e5e5;
  --text-muted: #d1d5d1;
  --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 {
  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 ********/

/* Network/Connection Background */
/* .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

/* Animated Network Nodes */
/* .network-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.network-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-primary);
  animation: nodePulse 3s ease-in-out infinite;
}

.network-node::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: nodeRipple 3s ease-out infinite;
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes nodeRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
} */

/* Position nodes strategically */
/* .network-node:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.network-node:nth-child(2) {
  top: 25%;
  left: 85%;
  animation-delay: 0.5s;
}

.network-node:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 1s;
}

.network-node:nth-child(4) {
  top: 75%;
  left: 75%;
  animation-delay: 1.5s;
}

.network-node:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 2s;
}

.network-node:nth-child(6) {
  top: 80%;
  left: 40%;
  animation-delay: 2.5s;
} */

/* Connection Lines */
/* .connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.connection-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-primary),
    transparent
  );
  opacity: 0.3;
  animation: lineFlow 4s ease-in-out infinite;
}

@keyframes lineFlow {
  0%,
  100% {
    opacity: 0.1;
  }

  50% {
    opacity: 0.5;
  }
}

.connection-line:nth-child(1) {
  top: 15%;
  left: 10%;
  width: 75%;
  transform: rotate(8deg);
  animation-delay: 0s;
}

.connection-line:nth-child(2) {
  top: 60%;
  left: 20%;
  width: 55%;
  transform: rotate(-5deg);
  animation-delay: 0.5s;
}

.connection-line:nth-child(3) {
  top: 25%;
  left: 50%;
  width: 35%;
  transform: rotate(80deg);
  animation-delay: 1s;
}

.connection-line:nth-child(4) {
  top: 40%;
  left: 20%;
  width: 30%;
  transform: rotate(25deg);
  animation-delay: 1.5s;
}

/* Data Flow Particles */
/* .data-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.data-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-tertiary);
  border-radius: 50%;
  opacity: 0;
  animation: dataFlow 6s linear infinite;
}

@keyframes dataFlow {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.data-particle:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.data-particle:nth-child(2) {
  top: 25%;
  left: 85%;
  animation-delay: 1s;
  animation-duration: 6s;
}

.data-particle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 5.5s;
}

.data-particle:nth-child(4) {
  top: 75%;
  left: 75%;
  animation-delay: 3s;
  animation-duration: 6.5s;
}

.data-particle:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 1.5s;
  animation-duration: 5s;
}

.data-particle:nth-child(6) {
  top: 80%;
  left: 40%;
  animation-delay: 2.5s;
  animation-duration: 6s;
} */

/* Animated path for particles */
/* .data-particle:nth-child(1) {
  animation-name: dataFlow1;
}

.data-particle:nth-child(2) {
  animation-name: dataFlow2;
}

.data-particle:nth-child(3) {
  animation-name: dataFlow3;
}

.data-particle:nth-child(4) {
  animation-name: dataFlow4;
}

.data-particle:nth-child(5) {
  animation-name: dataFlow5;
}

.data-particle:nth-child(6) {
  animation-name: dataFlow6;
}

@keyframes dataFlow1 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(600px, 100px);
  }

  90% {
    opacity: 1;
  }
}

@keyframes dataFlow2 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(-400px, 250px);
  }

  90% {
    opacity: 1;
  }
}

@keyframes dataFlow3 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(300px, -150px);
  }

  90% {
    opacity: 1;
  }
}

@keyframes dataFlow4 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(-350px, -200px);
  }

  90% {
    opacity: 1;
  }
}

@keyframes dataFlow5 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(200px, 180px);
  }

  90% {
    opacity: 1;
  }
}

@keyframes dataFlow6 {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(-250px, -100px);
  }

  90% {
    opacity: 1;
  }
} */

/* Grid overlay */
/* .grid-overlay {
  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: 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-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(6, 4, 15, 0.2);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════════════
           VALUE PROPOSITION SECTION
        ═══════════════════════════════════════════════════════ */
.value-section {
  background: #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-section h2 {
  color: #000000;
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.value-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #050505;
  text-align: justify;
}

.value-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.pillar {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.pillar:hover {
  transform: translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: 0 16px 48px rgba(0, 163, 255, 0.15);
}

.pillar h4 {
  color: var(--text-white);
  margin-bottom: 12px;
  font-weight: 600;
}

.pillar p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════
           CHALLENGE SECTION
        ═══════════════════════════════════════════════════════ */
/* .challenge-section {
  background: #1a1f2c;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 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-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.challenge-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-primary);
} */

/* .challenge-card p {
  margin: 0;
  font-size: 15px;
  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;
}

.challenge-response {
  text-align: center;
  margin-top: 48px;
}

.challenge-response p {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-white);
  margin: 0 auto;
} */

/* ══════════════════════════════════════════════════════
           APPROACH SECTION
        ═══════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════
           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;
  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;
  }
} */

/* ══════════════════════════════════════════════════════
           TECHNOLOGIES SECTION
        ═══════════════════════════════════════════════════════ */
/* .tech-section {
  background: #1a1f2c;
  position: relative;
}

.tech-section h2 {
  text-align: center;
  margin-bottom: 64px;
}

.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);
}

.tech-category p {
  margin: 0;
  color: var(--text-muted);
}

.tech-philosophy {
  text-align: center;
  max-width: 700px;
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
}

.tech-philosophy p {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 18px;
  font-style: italic;
}

.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: #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;
  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: 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;
  color: #000000;
}

.cta-content p {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 48px;
  color: #050505;
} */
