:root {
  --bg-dark: #070b14;
  --primary-orange: #f26522;
  --text-white: #ffffff;
  --text-gray: #a0a7b5;
  --card-border: rgba(255, 255, 255, 0.1);
}

.hero-section {
  background-color: #090e1e;
  color: var(--text-white);
  padding: 100px 0;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-side {
  flex: 1.2;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(242, 101, 34, 0.15);
  color: #ff8a50;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
  border: 1px solid rgba(242, 101, 34, 0.3);
}

h1 {
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

h1 span {
  color: var(--primary-orange);
}

p {
  color: var(--text-gray);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 48px;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.btn-primary {
  background-color: #f26522;
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background-color: #ff7a3d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(242, 101, 34, 0.3);
}

.link-secondary {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}

.link-secondary:hover {
  opacity: 0.8;
}

.image-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Matches the styled frame in Screenshot 2026-04-30 at 9.44.33 AM.jpg */
.image-card {
  position: relative;
  background: linear-gradient(145deg, #161b2a, #0b0f1a);
  padding: 12px;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.image-card img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  filter: brightness(0.9);
}

@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  h1 { font-size: 3rem; }
  p { margin: 0 auto 40px; }
  .cta-group { justify-content: center; }
  .image-side { justify-content: center; margin-top: 50px; }
}


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

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

.header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: black;
}

.header p {
  color: #64748b;
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* GRID */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

/* CARD BASE */
.card {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  box-sizing: border-box;
}

/* COLORS */
.dark-card { background-color: #0b1d33; color: white; }

.white-card { 
  background-color: white; 
  border: 1px solid #f1f5f9;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.orange-card { background-color: #f25b1c; color: white; }

/* CONTENT */
.text-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.bottom-text {
  margin-top: auto;
}

/* IMAGE */
.graphic {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.graphic img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: -20px -20px 50px rgba(0,0,0,0.3);
}

/* TEXT */
h2 {
  font-size: 1.5rem;
  margin: 0 0 16px 0;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.white-card p {
  color: #64748b;
  opacity: 1;
}

/* ICONS */
.icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.orange-icon { color: #f25b1c; }
.blue-icon { color: #0b1d33; }

/* PILLS */
.pill-container {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .text-content {
    max-width: 60%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

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

  .card {
    padding: 24px;
    min-height: auto;
  }

  .text-content {
    max-width: 100%;
  }

  .graphic {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 20px;
    justify-content: center;
  }

  .graphic img {
    max-width: 100%;
    box-shadow: none;
  }
}

.lifecycle-section {
    background-color: #121728; /* Dark navy background */
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.header p {
    color: #8a8f98; /* Muted gray for subtitle */
    font-size: 16px;
    margin-bottom: 50px;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lifecycle-card {
    background-color: #ffffff;
    color: #0a0e14;
    padding: 35px 30px;
    border-radius: 12px;
    width: 220px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.step-number {
    color: #f6ad82; /* Muted peach/orange color */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.lifecycle-card h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.lifecycle-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    .lifecycle-card {
        width: 80%;
    }
}



.tech-stack-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  font-family: 'Inter', sans-serif;
  gap: 60px;
}

/* Left Content Styles */
.tech-intro {
  flex: 1;
  max-width: 450px;
}

.tech-intro h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.tech-intro p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Right Grid Styles */
.tech-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tech-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Matches the soft shadow in Screenshot 2026-04-30 at 11.37.50 AM.jpg */
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 
              0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: transform 0.2s ease;
}

.tech-card img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.tech-card .label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #374151;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .tech-stack-container {
    flex-direction: column;
    text-align: center;
  }
  .tech-intro {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .tech-grid {
  
    grid-template-columns: repeat(2, 1fr);
}

}

/* Container for the entire section */
.cta-wrapper {
  background-color: #050a12; /* Dark navy background */
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

/* The orange gradient card */
.cta-card {
  background: linear-gradient(135deg, #f25b1c 0%, #ff9e67 100%);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  color: #ffffff;
}

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

.cta-card p {
  font-size: 1.15rem;
  margin: 0 auto 40px auto;
  max-width: 500px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Button layout */
.button-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

/* White Button */
.btn-primary {
  background-color: #ffffff;
  color: #f25b1c;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Dark Button */
.btn-secondary {
  background-color: #0b1d33;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #112a4a;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .cta-card h2 { font-size: 2rem; }
  .button-group { flex-direction: column; }
}