: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;
  --bg-dark: #050505;
  --bg-secondary: #0c0c0e;
  --bg-card: #111114;
  --accent-primary: #00a3ff;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #06b6d4;
  --text-light: #e5e5e5;
  --text-muted: #737373;
  --border-color: rgba(255, 255, 255, 0.06);
  --glow-primary: rgba(0, 163, 255, 0.15);
}

/* ══════════════════════════════════════════════════════
           RESET & BASE - 200OK BRAND THEME
        ═══════════════════════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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;
}

/* CTA Button */
.navbar-cta {
  display: block;
}

/* Demo styling */
.demo-content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* CTA Button */
.navbar-cta {
  display: block;
}

.btn-primary-get {
  padding: 0.625rem 1.25rem;
  background-color: #6366f1;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #4f46e5;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #374151;
  padding: 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 81px;
  left: 0;
  width: 100%;
  height: calc(100vh - 81px);
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 1.5rem;
}

.mobile-menu-section {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.mobile-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
}

.mobile-section-header svg {
  transition: transform 0.3s ease;
}

.mobile-section-header.active svg {
  transform: rotate(180deg);
}

.mobile-section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-section-content.active {
  max-height: 2000px;
}

.mobile-submenu {
  padding: 0.5rem 0;
}

.mobile-submenu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--gray-900);
  transition: background-color 0.2s ease;
}

.mobile-submenu-item:hover {
  background-color: rgba(99, 102, 241, 0.05);
}

.mobile-icon-wrapper {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

/* Icon Colors for Mobile */
.icon-indigo {
  color: #6366f1;
}
.icon-green {
  color: #10b981;
}
.icon-yellow {
  color: #f59e0b;
}
.icon-purple {
  color: #a855f7;
}
.icon-blue {
  color: #3b82f6;
}
.icon-emerald {
  color: #10b981;
}
.icon-sky {
  color: #0ea5e9;
}
.icon-violet {
  color: #8b5cf6;
}
.icon-orange {
  color: #f97316;
}
.icon-red {
  color: #ef4444;
}
.icon-pink {
  color: #ec4899;
}
.icon-lime {
  color: #84cc16;
}

.mobile-submenu-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-cta {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .navbar-menu {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-logo img {
    height: 48px;
  }
}

.demo-content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* CTA Button */
.navbar-cta {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999;
  padding-top: calc(64px + 1.5rem);
  width: 100vw;
  margin: 0;
  box-sizing: border-box;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 1.5rem;
}

.mobile-menu-section {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.mobile-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
}
.mobile-section-header svg {
  transition: transform 0.3s ease;
}

.mobile-section-header.active svg {
  transform: rotate(180deg);
}

.mobile-section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-section-content.active {
  max-height: 2000px;
}

.mobile-submenu {
  padding: 0.5rem 0;
}

.mobile-submenu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--gray-900);
  transition: background-color 0.2s ease;
}

.mobile-submenu-item:hover {
  background-color: rgba(99, 102, 241, 0.05);
}

.mobile-icon-wrapper {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

/* Icon Colors for Mobile */
.icon-indigo {
  color: #6366f1;
}
.icon-green {
  color: #10b981;
}
.icon-yellow {
  color: #f59e0b;
}
.icon-purple {
  color: #a855f7;
}
.icon-blue {
  color: #3b82f6;
}
.icon-emerald {
  color: #10b981;
}
.icon-sky {
  color: #0ea5e9;
}
.icon-violet {
  color: #8b5cf6;
}
.icon-orange {
  color: #f97316;
}
.icon-red {
  color: #ef4444;
}
.icon-pink {
  color: #ec4899;
}
.icon-lime {
  color: #84cc16;
}

.mobile-submenu-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-cta {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .navbar-menu {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-logo img {
    height: 48px;
  }
}

/* Navbar Ends here */

/* ══════════════════════════════════════════════════════
           TYPOGRAPHY - CORMORANT + OUTFIT
        ═══════════════════════════════════════════════════════ */
h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-white);
}

h1 {
  font-size: clamp(48px, 7vw, 72px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
}

p {
  /* font-size: 18px; */
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════
           LAYOUT
        ═══════════════════════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

section {
  padding: 100px 0;
}

.logo span {
  color: var(--accent-blue);
}

.gradient-text {
  background-image: linear-gradient(
    to right,
    var(--brand-blue),
    var(--brand-indigo)
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ══════════════════════════════════════════════════════
           HERO SECTION WITH 3D VISUALIZATION
  ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #1a1f2c;
  width: 100%;
  margin: 0;
  padding-top: 120px;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 0;
}

.hero-tag {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-intro {
  font-size: 20px;
  color: #d1d5db;
  max-width: 820px;
  line-height: 1.8;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-value-props {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* gap: 6px; */
  max-width: 800px;
  margin-bottom: 0;
  animation: fadeInUp 1s ease-out 0.4s backwards;
  color: #d1d5db;
}

.value-prop::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  margin-right: 8px;
  box-shadow: 0 0 10px var(--glow-primary);
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .hero-value-props {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.value-prop {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3D Legacy to Modern Transformation Visualization */
/* .hero-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  pointer-events: none;
}

.transformation-system {
  position: relative;
  width: 100%;
  height: 100%;
  animation: systemFloat 10s ease-in-out infinite;
}

@keyframes systemFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
} */

/* Legacy blocks (left) - fragmented */
/* .legacy-blocks {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 300px;
}

.legacy-block {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 107, 107, 0.5);
  background: rgba(255, 107, 107, 0.1);
  animation: legacyPulse 4s ease-in-out infinite;
}

.block-1 {
  top: 0;
  left: 0;
  animation-delay: 0s;
}
.block-2 {
  top: 0;
  right: 0;
  animation-delay: 0.5s;
}
.block-3 {
  top: 80px;
  left: 20px;
  animation-delay: 1s;
}
.block-4 {
  top: 80px;
  right: 30px;
  animation-delay: 1.5s;
}
.block-5 {
  top: 160px;
  left: 10px;
  animation-delay: 2s;
}
.block-6 {
  top: 160px;
  right: 10px;
  animation-delay: 2.5s;
}
.block-7 {
  top: 240px;
  left: 30px;
  animation-delay: 3s;
}

@keyframes legacyPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05) rotate(2deg);
  }
} */

/* Transformation arrow */
.transform-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 107, 107, 0.5),
    var(--accent-blue)
  );
  animation: arrowFlow 3s ease-in-out infinite;
}

.transform-arrow::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid var(--accent-blue);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

@keyframes arrowFlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 20px var(--accent-blue);
  }
}

/* Modern blocks (right) - organized */
/* .modern-blocks {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 300px;
}

.modern-block {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-blue);
  background: rgba(0, 163, 255, 0.1);
  animation: modernPulse 4s ease-in-out infinite;
}

.mod-1 {
  top: 40px;
  left: 20px;
  animation-delay: 0.2s;
}
.mod-2 {
  top: 40px;
  left: 80px;
  animation-delay: 0.4s;
}
.mod-3 {
  top: 100px;
  left: 20px;
  animation-delay: 0.6s;
}
.mod-4 {
  top: 100px;
  left: 80px;
  animation-delay: 0.8s;
}
.mod-5 {
  top: 160px;
  left: 20px;
  animation-delay: 1s;
}
.mod-6 {
  top: 160px;
  left: 80px;
  animation-delay: 1.2s;
}

@keyframes modernPulse {
  0%,
  100% {
    opacity: 0.6;
    box-shadow: 0 0 10px var(--accent-blue);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 20px var(--accent-blue);
  }
} */

/* Ambient lighting */
/* .ambient-light {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.15), transparent);
  animation: pulse 12s ease-in-out infinite;
}

.light-1 {
  top: -20%;
  right: -10%;
}

.light-2 {
  bottom: -20%;
  left: -10%;
  animation-delay: 6s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
} */

/* ══════════════════════════════════════════════════════
           INTRO SECTION
        ═══════════════════════════════════════════════════════ */
.intro-section {
  background: var(--bg-cream);
  color: var(--text-navy);
}

.intro-section p {
  color: var(--text-navy);
  opacity: 0.85;
}

/* ══════════════════════════════════════════════════════
           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;
}

/* ══════════════════════════════════════════════════════
           APPROACH SECTION (5 PHASES)
        ═══════════════════════════════════════════════════════ */
.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: #d1d5d1;
  line-height: 1.8;
}

.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════
           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;
    color: #ffffff;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d5db;
  }
}

/* ══════════════════════════════════════════════════════
           CAPABILITIES 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: #d1d5db;
}

/* ══════════════════════════════════════════════════════
           CASE STUDIES SECTION
        ═══════════════════════════════════════════════════════ */
.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);
}

.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;
  }

  .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: #1a1f2c;
  padding: 120px 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.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;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  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: var(--bg-cream);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--text-navy);
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 32px;
}

.cta-content p {
  color: #000000;
  opacity: 0.8;
  font-size: 19px;
  margin: 0 auto 48px;
  max-width: 700px;
}

/* ══════════════════════════════════════════════════════
           BUTTON
        ═══════════════════════════════════════════════════════ */
.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;
}

/* ══════════════════════════════════════════════════════
           FOOTER
  ═══════════════════════════════════════════════════════ */
.footer {
  background-color: #202632;
  color: white;
  padding: 3rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Logo and Social Section */
.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 64px;
  width: auto;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social-link i {
  width: 20px;
  height: 20px;
}

/* Footer Columns */
.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .footer-copyright {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/*------------- Back to top button -------------- */

.floating-home {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: none;
}

.floating-wrapper {
  position: relative;
}

.progress-ring {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
  pointer-events: none;
}

.ring-bg {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 2;
}

.ring-progress {
  fill: none;
  stroke: #6366f1;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}

.home-btn {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);

  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  position: relative;
  z-index: 2;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  transition: all 0.3s ease;
}

.home-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.home-btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3);
}

/* ICON */
.home-btn svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

/* TOOLTIP */
.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.75rem;

  background: #111827;
  color: #ffffff;
  font-size: 0.875rem;

  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;

  opacity: 0;
  pointer-events: none;
  white-space: nowrap;

  transition: opacity 0.3s ease;
}

.floating-wrapper:hover .tooltip {
  opacity: 1;
}

.tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #111827;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #818cf8;
  opacity: 0.2;
  animation: pulse 2s infinite;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.25;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
