/* Bonus positioned logo – optional override */
.reason-logo.positioned-logo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: auto;
  opacity: 0.85;
  border-radius: 4px;
}

/* Ensure .reason-box is relatively positioned */
.reason-box {
  position: relative;
}


#why-blackbird {
  background-color: var(--bg);       /* Matches your site’s dark background */
  padding: 4rem 1rem;
  color: #ffffff;
  text-align: center;
}

#why-blackbird .section-title {
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: bold;
}

#why-blackbird .section-intro {
  font-size: 1.2rem;
  color: #ccc;                       /* soft white tone */
  max-width: 700px;
  margin: 0 auto 3rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.reason-box {
  background: linear-gradient(135deg, #3e2f07, #8b6c20, #5a4315); /* darker brass gradient */
  border: 1px solid #5a4315;         /* muted gold-brown tone */
  color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 0 10px rgba(90, 67, 21, 0.4); /* low-sheen bronze glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-box h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
}

.reason-box p {
  font-size: 0.95rem;
  color: #f0f0f0;
  line-height: 1.5;
}

.reason-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 14px rgba(139, 108, 32, 0.6); /* amplified metallic shimmer */
}


/* Responsive tweaks */
@media (max-width: 768px) {
  #why-blackbird .section-title {
    font-size: 2.2rem;
  }

  #why-blackbird .section-intro {
    font-size: 1rem;
  }

  .reason-box h3 {
    font-size: 1.1rem;
  }

  .reason-box p {
    font-size: 0.9rem;
  }
}




/* ─── Contact Intro Split Layout ───────────────────────────── */
.contact-intro-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem 0;

}

/* ─── Left Column: Text ───────────────────────────────────── */
.intro-text {
  flex: 1 1 55%;
  color: #ccc;
  text-align: left;
}

.intro-text h3 {
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;         /* Pure white for bold heading */
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-text p {
  font-size: 1.2rem;
  color: #ccc;            /* Light gray for supporting text */
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── Right Column: Image ─────────────────────────────────── */
.intro-image {
  flex: 1 1 40%;
  text-align: center;
}

.intro-image img {
  width: 105%;             /* 25% larger than its container */
  max-width: none;         /* allow it to exceed default limits */
  height: auto;
  border-radius: 12px
  /* No hover interaction */
}

/* ─── Responsive Styling ───────────────────────────────────── */
@media (max-width: 768px) {
  .contact-intro-split {
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
  }

  .intro-text, .intro-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .intro-text h3 {
    font-size: 2.2rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .intro-image img {
    margin-top: 1.5rem;
  }
}






.construction-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid #ffd700;
  border-radius: 12px;
  padding: 1.5rem;
  color: #fff;
  max-width: 320px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  z-index: 9999;
  animation: fadeSlideIn 0.8s ease-out;
}

.construction-popup h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #ffd700;
}

.construction-popup p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0.5rem 0 1rem;
}

.construction-popup button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.construction-popup button:hover {
  background: #e6c200;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.gold-o {
  color: #FFD700;
  font-weight: bold;
  animation: sparkle 2.5s infinite alternate;
}

@keyframes sparkle {
  0% { text-shadow: 0 0 5px #b8860b; transform: scale(1); }
  50% { text-shadow: 0 0 10px #ffd700; transform: scale(1.1); }
  100% { text-shadow: 0 0 5px #b8860b; transform: scale(1); }
}

/* Reveal container positioned right */
.hover-reveal {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: right;           /* aligns link to the right */
  margin-top: 1rem;
}

/* Animate in when hovered */
.feature:hover .hover-reveal {
  opacity: 1;
  transform: translateX(0);
}

.use-cases-link {
  font-size: 0.95rem;
  color: #ffffff !important; /* force white */
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.use-cases-link:hover {
  color: #fff !important;
  border-color: #ffffff !important;
}



  /* ─── Exact Left-Title / Bottom-Right Excerpt ───────────────── */
  #approach .approach-header-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    align-items: start;
    min-height: 200px;
    /* push circles below */
    margin: 0 auto 1rem;
    /* 3rem bottom-space under text */
    padding: 2rem 1rem 1rem;
    max-width: var(--max-width);
    position: relative;
    z-index: 2;
    /* keep on top of .process */
    /* widen the overall container */
    max-width: 1150px;
    /* up from var(--max-width) */
    /* or simply go full-width: */
    /* width: 100%; max-width: none; */
    /* stretch the left column a bit more */
    grid-template-columns: 3fr 1fr;
  }

  #approach .approach-title {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    /* span both rows */
    margin: 0;
    font-size: 3rem;
    line-height: 1.2;
    text-align: left;
    color: #fff;
  }

  #approach .gold-text {
    color: #FFD700;
    /* gold highlight */
  }

  #approach .approach-excerpt {
    font-size: 120%;
    grid-row: 2 / 3;
    /* stays in second row */
    grid-column: 2 / 3;
    /* move to left column */
    align-self: start;
    /* align to the top */
    justify-self: start;
    /* align to the left */
    margin-top: 0rem;
    color: #ccc;
    /* optional: tweak color for readability */
  }


  /* ─── SERVICES LAYOUT (with text overlay) ───────────────────────────────── */
  .services-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0.5rem 0;
    position: relative;
  }

  /* image stays flush left */
  .services-image {
    flex: 1 1 40%;
    z-index: 0;
  }

  .services-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* pull text left over the PNG */
  .services-text {
    flex: 1 1 60%;
    margin-left: -40px;
    /* was -80px, now -40px to shift right */
    z-index: 1;
    /* sits above the image */
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    /* a subtle background to keep contrast */
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 8px;
  }

  .services-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .services-text p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  /* STACK ON MOBILE */
  @media (max-width: 768px) {
    .services-layout {
      flex-direction: column;
      text-align: center;
    }

    .services-image,
    .services-text {
      flex: 1 1 auto;
      max-width: 90%;
      margin: 0 auto;
      margin-left: 0;
      /* reset overlay on mobile */
      background: transparent;
      /* optional: remove background on small screens */
      text-shadow: none;
      /* optional: remove for clarity */
      padding: 1rem 0;
      /* tighten up padding */
    }
  }

  /* make all main section titles white */
  #services h2,
  #approach h2,
  #global h2,
  #contact h2 {
    color: #ffffff !important;
  }

  /* Ensure container-fluid pads like your .container */
  .container-fluid {
    width: 100%;
    padding: 0 1rem;
    /* match other sections */
    max-width: none;
    margin: auto;
  }

  .circular-step:hover {
    box-shadow: 0 0 0 4px rgba(230, 198, 0, 0.6);
  }

  @media (max-width: 600px) {
    .circular-step {
      width: 160px;
      padding: 0.75rem;
    }
  }

  .circular-step {
    /* Force a 1:1 aspect ratio and circular shape */
    width: 275px;
    /* adjust as needed */
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    /* Center content vertically and horizontally */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Visual style */
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1rem;
    /* gives breathing room inside the circle */
    transition: transform var(--transition);
  }

  .circular-step:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .circular-step i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
  }

  .step.circular-step {
    flex: none;
    /* disables flexible scaling */
    width: 275px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .menu {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    margin-left: 0 !important;
  }

  .menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
  }

  .menu ul li {
    font-size: 3.2rem;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .menu ul li:hover {
    background: #fff;
    color: #000;
    padding: 0.1rem 0.4rem;
    /* reduced padding */
    border-radius: 6px;
    /* tighter curves */
  }

  /* Initially hide only the non-button menu items */
  /* Hide non-button menu links at start */
  nav ul li {
    display: flex;
    align-items: center;
  }

/* Hide only the items tagged as nav-item */
nav ul .nav-item {
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.9s ease;
}

/* Show them on scroll */
nav ul.scrolled .nav-item {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

/* Also show them when menu is opened */
nav ul.open .nav-item {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}

  #main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    clip-path: polygon(0% 0%, 5% 100%, 95% 100%, 100% 0%);
    transition: clip-path 0.6s ease, background 0.6s ease;
    height: 80px;
  }

  #main-header.scrolled {
    background: var(--bg-alt);
    /* your red tone */
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .logo-text {
    transition: opacity 0.5s ease;
  }

  #main-header.scrolled .logo-text {
  display: none;
  }

  .gold-rainbow-prism {
    font-weight: bold;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg,
      #ffd700,
      #e6c200,
      #feca57,
      #54a0ff,
      #5f27cd,
      #ff9ff3,
      #ffd700);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldPrismPulse 6s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(184, 134, 11, 0.4);
  }

  @keyframes goldPrismPulse {
    0% {
      background-position: 0% 50%;
      opacity: 0.7;
    }

    50% {
      background-position: 100% 50%;
      opacity: 1;
    }

    100% {
      background-position: 0% 50%;
      opacity: 0.7;
    }
  }

  /* Muted Metallic Gold for "Threats" */
  .gold-shiny {
    font-weight: bold;
    font-family: 'Courier New', monospace;
    background: linear-gradient(120deg,
      #fff8b0,
      #ffd700,
      #ffcc00,
      #f0c420,
      #b8860b,
      #fff8b0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 3s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  @keyframes goldShimmer {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  /* Diamond-like Rainbow Transparency for "Resilience" */
  .diamond-prism {
    font-weight: bold;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0.1),
      #e0f7ff,
      #d0c4ff,
      #ffe0f0,
      #c0fff4,
      rgba(255, 255, 255, 0.2));
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: diamondPrism 6s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.15);
  }

  @keyframes diamondPrism {
    0% {
      background-position: 0% 50%;
      opacity: 0.6;
    }

    50% {
      background-position: 100% 50%;
      opacity: 0.9;
    }

    100% {
      background-position: 0% 50%;
      opacity: 0.6;
    }
  }

  .logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: bold;
    gap: 0.5rem;
  }

  .logo-icon {
    height: 37px;
    width: auto;
    filter: none;
  }

  .btn-nav {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 20px;
    color: #ffffff;
    /* default white text */
    background: #b22222;
    /* softened red for visibility */
    font-weight: 600;
    border: 2px solid transparent;
    transition:
      color 0.3s ease,
      border-color 0.3s ease,
      transform 0.3s ease,
      background 0.3s ease;
  }

  .btn-nav:hover {
    border-color: #b8860b;
    /* golden border */
    color: #ffd700 !important;
    /* light golden yellow on hover */
    transform: translateY(-2px);
    background: #a52a2a;
    /* gentle hover red tone */
  }

  .btn-nav span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
  }

  .btn-golden {
    position: relative;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: var(--fg);
    border-radius: 30px;
    font-weight: 600;
    overflow: hidden;
    background: #e63946;
    /* dark red base */
    transition: color 0.4s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
  }

  .btn-golden::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #b8860b;
    /* dark golden yellow */
    transition: width 0.6s ease;
    z-index: 0;
  }

  .btn-golden:hover::before {
    width: 100%;
  }

  .btn-golden:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(184, 134, 11, 0.5);
  }

  .btn-golden span {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
  }

  .btn-golden:hover span {
    color: #fff;
  }

  :root {
    --bg: #1e0f0f;
    --bg-alt: #2b0000;
    --fg: #ececec;
    --accent: #e63946;
    --card-bg: #2b0e0e;
    --card-border: #450000;
    --transition: 0.3s ease;
    --max-width: 1100px;
  }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }

  body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 0 1rem;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 100%;
    justify-content: space-between;
    height: 100%;
  }

  .logo {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: bold;
  }

  nav ul {
    gap: 3rem;
    flex-wrap: nowrap;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }

  nav a {
    font-weight: 500;
    transition: color var(--transition);
  }

  nav a:hover {
    color: var(--accent);
  }

  .mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  @media(max-width:768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background: var(--bg-alt);
      position: absolute;
      top: 100%;
      right: 0;
      width: 200px;
    }

    nav ul.open {
      display: flex;
    }

    .mobile-toggle {
      display: block;
      color: var(--fg);
    }
  }

  .hero {
    margin-top: 0;
    min-height: 100vh;
    /* full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(145deg, #1e0f0f, #3a0000),
      url('../images/herotitlebackground.png') no-repeat center center;
    background-size: cover;
    background-blend-mode: overlay;
    position: relative;
    z-index: 1;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 15, 15, 0.3);
    /* dark overlay for contrast */
    z-index: -1;
  }

  .hero h1 {
    font-size: 3.33rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1.29rem;
    max-width: 700px;
    margin: auto;
    color: #ddd;
  }

  .hero .btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--fg);
    border-radius: 4px;
    font-weight: 600;
    transition: background var(--transition);
  }

  .hero .btn:hover {
    background: #c52834;
  }

  section {
    padding: 4rem 1rem;
  }

  section h2 {
    text-align: center;
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  #services .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .feature {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition),
      transform var(--transition);
  }

  .feature.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .feature i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition:
      transform var(--transition),
      color 0.4s ease,
      text-shadow 0.4s ease;
  }

  /* Softer metallic gold glow on hover */
  .feature:hover i {
    transform: scale(1.2);
    color: #e6c200;
    /* slightly muted gold */
    text-shadow:
      0 0 2px #b8860b,
      0 0 4px #e6c200;
  }

  .feature h3 {
    margin-bottom: 0.5rem;
  }

  .feature p {
    color: #ccc;
    font-size: 0.95rem;
  }

  .process {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }

  .step {
    flex: 1 1 200px;
    text-align: center;
    color: #ccc;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    transition: transform var(--transition);
  }

  .step:hover {
    transform: translateY(-5px);
  }

  .step i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .step h4 {
    color: var(--fg);
    margin-bottom: 0.5rem;
  }

  .step p {
    font-size: 0.95rem;
  }

  #global {
    text-align: center;
    color: #ddd;
    background: var(--bg);
    padding-bottom: 4rem;
  }

  #global i.fa-flask {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  #global p {
    max-width: 800px;
    margin: auto;
    line-height: 1.5rem;
  }

  #contact {
     background: #1e0f0f;
  }

  #contact form {
    display: grid;
    gap: 1rem;
    max-width: var(--max-width);
    margin: auto;
  }

  #contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  #contact input,
  #contact select,
  #contact textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background: var(--card-bg);
    color: var(--fg);
    font-size: 1rem;
    width: 100%;
  }

  #contact button {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background: var(--accent);
    color: var(--fg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
  }

  #contact button:hover {
    background: #c52834;
  }

  footer {
    background: var(--bg-alt);
    text-align: center;
    padding: 1.5rem 1rem;
    color: #777;
    border-top: 1px solid var(--card-border);
    font-size: 0.9rem;
  }

  .calendly-inline-widget {

}


.calendly-wrap {
  background: #2b0000; /* same as your global background */
  padding: 0;          /* remove extra red area */
  margin: 0;
  box-shadow: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Optional hover color */
.menu-toggle:hover {
  color: #ffd700;
}

/* Hide the toggle arrow when the menu is shown by scroll */
nav ul.scrolled + .menu-toggle {
  opacity: 0;
  pointer-events: none;
}

/* Smooth fade for the arrow */
.menu-toggle {
  transition: opacity 0.3s ease;
}

.case-page {
  padding-top: 6rem;
}

.case-header {
  margin: 2rem 0 1.5rem;
  text-align: left;
}

.case-header h1 {
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.case-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
  max-width: 900px;
}

.case-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.case-section h3 {
  color: #ffd700;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.case-section ul {
  padding-left: 1.2rem;
  margin: 0;
  color: #ccc;
}

.case-section li {
  margin-bottom: 0.4rem;
}

.case-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}