.solutions-tab-container{
    margin-top: 65px;
}

:root {
    --bg: #080808;
    --surface: #111111;
    --border: #1e1e1e;
    --accent: #cc5500;
    --accent-dim: rgba(204,85,0,0.08);
    --text-primary: #f0f0ee;
    --text-secondary: #7a7a72;
    --text-muted: #3a3a36;
  }

  @font-face {
    font-family: 'BankGothic';
    src: local('BankGothic Md BT'), local('BankGothic-Medium'), local('Bank Gothic Medium'), local('Bank Gothic');
    font-weight: normal;
  }

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

  body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'Open Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* Subtle noise texture overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
  }

  header {
    margin-bottom: 80px;
  }

  .eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  h2 {
    font-family: 'BankGothic', 'Bank Gothic', 'Century Gothic', 'Futura', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    max-width: 640px;
  }

  h2 span {
    color: var(--accent);
  }

  .intro {
    margin-top: 24px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
  }

  /* Services Grid */
  .services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    border: 1px solid var(--border);
  }

  /* .service-item {
    background: var(--bg);
    padding: 40px 44px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 32px;
    align-items: start;
    cursor: default;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative; 
  }

  .service-item:hover {
    border: 1px solid;
    border-image: linear-gradient(
        to right,
        #F16A21,
        #FFFFFF,
        #F16A21
    ) 1;
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0px 0px 20px rgba(241, 106, 33, 0.4));
    border-radius: 12px;
  } */

  .service-item {
  background: var(--bg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  align-items: start;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(to right, #F16A21, #FFFFFF, #F16A21);

  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transform: scale(0.95); /* start smaller */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-item:hover::before {
  opacity: 1;
  transform: scale(1); /* smooth grow */
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0px 0px 20px rgba(241, 106, 33, 0.4));
}


  .service-item:hover .service-number {
    color: var(--accent);
  }

  .service-number {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    padding-top: 5px;
    letter-spacing: 0.06em;
  }

  .service-content {}

  .service-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .service-desc {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
  }

  .service-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(200,240,74,0.15);
    padding: 4px 10px;
  }


  .footer-text {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }

  .footer-mark {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  @media (max-width: 600px) {
    .service-item { padding: 28px 20px; grid-template-columns: 36px 1fr; gap: 16px; }
  }