.robust-systems-hero {
  background-color: #2b3b57; /* Deep navy background */
  padding: 100px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Left Content Styles */
.hero-content {
  flex: 1;
  max-width: 550px;
}

.eyebrow-tag {
  color: #f25b1c; /* Orange accent */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(242, 91, 28, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  border: 1px solid rgba(242, 91, 28, 0.2);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.highlight {
  color: #f25b1c;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #94a3b8; /* Muted gray text */
  margin-bottom: 48px;
}

/* Button Styles */
.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-orange {
  background-color: #f25b1c;
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  color: #050a12;
}

/* Right Visual Styles */
.hero-visual {
  flex: 1.2;
}

.visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  background: #0b1d33;
}

.visual-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.8; /* Subtle darkening to match aesthetic */
}

/* Responsive Logic */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 64px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}


:root {
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --orange: #f25b1c;
  --card-bg: #ffffff;
}

.strategic-overview {
  padding: 100px 24px;
  background-color: #ffffff;
  font-family: 'Inter', system-ui, sans-serif;
  display: flex;
  justify-content: center;
}

.overview-container {
  max-width: 1200px;
  width: 100%;
}

/* Header Split Layout */
.overview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.header-left {
  flex: 1;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-left h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 12px 0 0 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.header-right {
  flex: 1;
  max-width: 500px;
  padding-top: 25px;
}

.header-right p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Grid & Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  padding: 48px;
  border-radius: 12px;
  /* Matches soft shadow from the image */
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f8fafc;
}

.icon-box {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .overview-header {
    flex-direction: column;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .header-left h2 {
    font-size: 2.2rem;
  }
}

:root {
  --navy: #0b1d33;
  --orange: #f25b1c;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --white: #ffffff;
}

.capabilities-section {
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 1200px;
  width: 100%;
}

/* Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white); /* Assuming section is on a dark background */
  margin-bottom: 12px;
}

.section-header p {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* Bento Grid Setup */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.span-2 {
  grid-column: span 2;
}

/* Base Card Styling */
.card {
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 320px;
  box-sizing: border-box;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Color Themes */
.dark-card {
  background-color: var(--navy);
  color: var(--white);
}

.white-card {
  background-color: var(--white);
  color: var(--text-dark);
  flex-direction: column;
}

.orange-card {
  background-color: var(--orange);
  color: var(--white);
}

.orange-text {
  color: var(--orange);
}

/* Elements & Icons */
.icon {
  font-size: 24px;
  margin-bottom: 24px;
}

.card-text {
  width: 55%;
  position: relative;
  z-index: 2;
}

/* Image Positioning within Cards */
.card-image {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40%;
  height: 75%;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: span 1;
  }
  .card-text {
    width: 100%;
  }
  .card-image {
    display: none; /* Simplifies layout for small screens */
  }
}

.architectural-process {
  padding: 80px 24px;
  background-color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  display: flex;
  justify-content: center;
}

.process-container {
  max-width: 1200px;
  width: 100%;
}

/* Header Styles */
.process-header {
  margin-bottom: 80px;
}

.process-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.process-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 450px;
  line-height: 1.5;
}

/* Steps Grid Styles */
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

/* Large Background Number */
.step-number {
  font-size: 8rem;
  font-weight: 800;
  color: #f6c8ae; /* Muted peach/orange tint */
  line-height: 1;
  margin-bottom: -18px; /* Overlap with text */
  position: relative;
  z-index: 1;
}

.step-content {
  position: relative;
  z-index: 2; /* Sits on top of the number */
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  padding: 0 10px;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .process-steps {
    flex-wrap: wrap;
  }
  .step-item {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .step-item {
    flex: 0 0 100%;
  }
  .process-header h2 {
    font-size: 2rem;
  }
}

.enterprise-stack {
  background-color: #050a12; /* Deep navy matching the image */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
}

.stack-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.stack-header {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

/* Grid Layout */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card Styling */
.stack-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.stack-card img {
  height: 45px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.logo-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive Logic */
@media (max-width: 992px) {
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stack-grid {
    grid-template-columns: 1fr;
  }
  .stack-header {
    font-size: 1.8rem;
  }
}

.modernize-cta {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.cta-banner {
  /* Vibrant orange gradient matching the image */
  background: linear-gradient(135deg, #f25b1c 0%, #ff9e67 100%);
  border-radius: 24px;
  padding: 80px 60px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.cta-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* Button Styles */
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: #f25b1c;
}

.btn-dark {
  background-color: #050a12; /* Match deep navy theme */
  color: #ffffff;
}

/* Decorative Icon Styling */
.cta-icon {
  flex: 0 0 120px;
  opacity: 0.2; /* Subtle appearance from image */
  color: #ffffff;
}

.cta-icon svg {
  width: 100%;
  height: auto;
}

/* Responsive Logic */
@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 30px;
    text-align: center;
    flex-direction: column;
  }
  
  .cta-banner h2 { font-size: 2.2rem; }
  
  .cta-actions { justify-content: center; }
  
  .cta-icon { display: none; }
}