:root {
  --bg: #0b0c0d;
  --card: #0f1112;
  --muted: #9aa0a6;
  --accent: #ff6a00;
  --accent-soft: #ff8d3a;
  --accent-glow: rgba(255, 122, 26, 0.28);
  /* matches orange logo */
  --accent-dark: #e05500;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: #e6eef1;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #111315;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #111315;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border-radius: 10px;
  border: 2px solid #111315;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff7f22, var(--accent-dark));
}

a {
  color: var(--accent);
}
#bugLogos {
  width: min(1000px, 100%);
  max-width: 100%;
}

#bugLogos img {
  max-width: 100%;
  height: auto;
}

.navbar {
  background: transparent;
}

.site-top-strip {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1040;
  background:
    linear-gradient(90deg, rgba(13, 14, 16, 0.98), rgba(18, 12, 10, 0.98)),
    linear-gradient(90deg, rgba(255, 106, 0, 0.16), rgba(255, 106, 0, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #e9eff3;
  font-size: 0.78rem;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.site-top-strip::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 106, 0, 0.15) 0%,
    rgba(255, 139, 58, 0.95) 24%,
    rgba(255, 106, 0, 0.18) 55%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.site-top-strip-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0;
}

.site-top-strip-left,
.site-top-strip-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.site-top-strip-divider {
  width: 1px;
  height: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 106, 0, 0.55),
    rgba(255, 255, 255, 0.05)
  );
}

.site-top-strip-link {
  color: #e9eff3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-top-strip-link i {
  color: var(--accent-soft);
  font-size: 0.88rem;
}

.site-top-strip-link:hover,
.site-top-strip-link:focus {
  color: #fff;
  opacity: 0.92;
}

.site-top-strip + .custom-navbar {
  top: 36px;
}

.look{
  color: #e05500;
}

.custom-navbar {
  background: rgba(11, 12, 13, 0.88);
  backdrop-filter: blur(10px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-navbar .nav-link {
  color: #e6eef1;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 6px;
  background: var(--accent);
  transition:
    width 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
}
.custom-navbar .nav-link:hover {
  color: var(--accent);
}
.custom-navbar .nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

.custom-navbar .nav-consult-link {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-dark));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.15rem !important;
  border: 1px solid rgba(255, 151, 72, 0.42);
  box-shadow: 0 10px 22px rgba(93, 43, 8, 0.34);
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.custom-navbar .nav-consult-link::after {
  display: none;
}

.custom-navbar .nav-consult-link:hover,
.custom-navbar .nav-consult-link:focus {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(93, 43, 8, 0.45);
  filter: brightness(1.03);
}

@media (max-width: 991.98px) {
  .custom-navbar .navbar-consult-item {
    width: 100%;
    margin-left: 0 !important;
  }

  .custom-navbar .nav-consult-link {
    width: 100%;
    min-height: 44px;
    margin-top: 0.15rem;
  }
}

.custom-navbar .container {
  position: relative;
}

.mega-dropdown-parent {
  position: static;
}

.mega-dropdown {
  width: min(1160px, 94vw);
  max-width: 94vw;
  background: linear-gradient(
    180deg,
    rgba(14, 15, 16, 0.98),
    rgba(11, 12, 13, 0.99)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-top: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.48);
  overflow: hidden;
  display: none;
}

.mega-dropdown-content {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 270px;
  min-height: 420px;
}

.mega-category-list {
  padding: 0.45rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
}

.mega-category-btn {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(230, 238, 241, 0.9);
  padding: 0.6rem 0.7rem;
  border-radius: 9px;
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.35;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.mega-category-btn + .mega-category-btn {
  margin-top: 0.25rem;
}

.mega-category-btn:hover,
.mega-category-btn:focus,
.mega-category-btn.is-active {
  background: rgba(255, 106, 0, 0.14);
  border-color: rgba(255, 106, 0, 0.25);
  color: #fff;
  outline: none;
}

.mega-service-grid {
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
  align-content: start;
}

.mega-service-item {
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 0.72rem 0.78rem;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.mega-service-item h6 {
  margin: 0 0 0.32rem;
  color: #f3f6f8;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.mega-service-item p {
  margin: 0;
  color: rgba(210, 218, 223, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mega-service-item:hover,
.mega-service-item:focus {
  border-color: rgba(255, 106, 0, 0.35);
  background: rgba(255, 106, 0, 0.07);
  transform: translateY(-1px);
}

.mega-highlight-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  background: linear-gradient(
    180deg,
    rgba(255, 106, 0, 0.08),
    rgba(255, 106, 0, 0.02)
  );
}

.mega-highlight-media {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(255, 106, 0, 0.35),
      rgba(255, 106, 0, 0) 55%
    ),
    linear-gradient(145deg, rgba(22, 24, 27, 0.95), rgba(11, 12, 13, 0.92));
}

.mega-highlight-panel h5 {
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}

.mega-highlight-panel p {
  margin: 0;
  color: rgba(230, 238, 241, 0.86);
  font-size: 0.86rem;
  line-height: 1.5;
}

.mega-highlight-link {
  margin-top: auto;
  text-decoration: none;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.mega-highlight-link:hover,
.mega-highlight-link:focus {
  color: #fff;
}

.mega-dropdown-mobile {
  display: none;
}

.mega-mobile-group h6 {
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  letter-spacing: 0.25px;
}

.mega-mobile-link {
  display: block;
  text-decoration: none;
  color: rgba(230, 238, 241, 0.9);
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 0.34rem 0.2rem;
  border-radius: 6px;
}

.mega-mobile-link:hover,
.mega-mobile-link:focus {
  color: #fff;
  background: rgba(255, 106, 0, 0.08);
}

/* Show on hover (desktop) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .mega-dropdown {
    display: block;
  }
}

/* Show on click (Bootstrap toggle) */
.nav-item.dropdown .mega-dropdown.show {
  display: block !important;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .mega-dropdown-content {
    grid-template-columns: 200px minmax(0, 1fr) 240px;
  }

  .mega-service-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile & tablet adjustments */
@media (max-width: 991px) {
  .mega-dropdown {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 0.8rem;
    position: static !important;
    left: auto !important;
    transform: none !important;
    border-radius: 10px;
    margin-top: 8px;
    overflow: visible;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }

  .mega-dropdown-content {
    display: none;
  }

  .mega-dropdown-mobile {
    display: block;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 0.2rem;
  }

  .mega-mobile-group + .mega-mobile-group {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-dropdown-mobile::-webkit-scrollbar {
    width: 6px;
  }

  .mega-dropdown-mobile::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .mega-mobile-link {
    font-size: 0.86rem;
  }
}

.product-dropdown {
  background-color: var(--card);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Show on hover (desktop) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .product-dropdown {
    display: block;
  }
}

/* Show on click (Bootstrap toggle) */
.nav-item.dropdown .product-dropdown.show {
  display: block !important;
}

/* Tablet adjustments */
@media (max-width: 991px) {
  .product-dropdown {
    min-width: 100%;
    padding: 10px;
    position: static !important;
    transform: none !important;
  }
  .product-dropdown .row {
    flex-direction: column;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .product-dropdown {
    max-height: 60vh;
    overflow-y: auto;
    width: 100% !important;
    position: static !important;
    border-radius: 0;
  }
  .product-dropdown h6 {
    margin-top: 15px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
  }
  .product-dropdown .dropdown-item {
    padding: 8px 10px;
    font-size: 0.95rem;
  }
  .product-dropdown::-webkit-scrollbar {
    width: 6px;
  }
  .product-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }
}

/* Single column layout for smaller screens */
@media (max-width: 768px) {
  .product-dropdown .row {
    flex-direction: column !important;
  }
  .product-dropdown .col-12 {
    max-width: 100% !important;
    flex: 0 0 100%;
  }
}

.logo-img {
  height: 44px;
  width: auto;
}

.text-muted {
  color: rgb(178, 176, 174) !important;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
}

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

.form-control-dark {
  background-color: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.95rem;
}

.form-control-dark:focus {
  background-color: var(--card);
  border-color: var(--accent);
  outline: none;
  box-shadow: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Hero */
/* .hero {
  padding: 130px 0 84px;
  background: linear-gradient(
    180deg,
    rgba(255, 106, 0, 0.232),
    transparent 40%
  );
}

.hero-title {
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.02;
} */

/* Responsive heading utility */
/* .responsive-heading {
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.1;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-sub {
  color: var(--muted);
  margin-top: 14px;
  max-width: 640px;
}

.home-hero {
  padding-bottom: 72px;
}

.home-hero .hero-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  max-width: 12ch;
}
 
.home-hero .hero-sub {
  max-width: 1000px;
}

.home-hero .hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero .hero-media .shield-img {
  width: min(100%, 900px);
  max-width: 390px;
  margin: 0 auto;
} */


/* Hero */
.hero {
  padding: 130px 0 0;
  background: linear-gradient(
    180deg,
    rgba(255, 106, 0, 0.232),
    transparent 40%
  );
}

.hero-title {
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1.02;
}

.hero-title .accent {
  color: var(--accent);
}

.hero-sub {
  color: var(--muted);
  margin-top: 14px;
  max-width: 720px;
}

.home-hero .hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero .hero-media .shield-img {
  width: min(100%, 390px);
  max-width: 390px;
  margin: 0 auto;
}

/* Mobile adjustment: push hero down so it clears fixed navbar */
@media (max-width: 991px) {
  .hero {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    margin-top: 2rem;
  }

  .site-top-strip-inner {
    min-height: 30px;
    font-size: 0.64rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding: 0.22rem 0;
  }

  .site-top-strip-left,
  .site-top-strip-right {
    gap: 0.35rem;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .site-top-strip-link {
    gap: 0.28rem;
    font-size: 0.62rem;
  }

  .site-top-strip-link i {
    font-size: 0.76rem;
  }

  .site-top-strip + .custom-navbar {
    top: 30px;
  }
}


/* Mobile adjustment: push hero down so it clears fixed navbar */
@media (max-width: 991px) {
  .hero {
    margin-top: 2rem;
  }
  
}

@media (max-width: 576px) {
  .hero {
    margin-top: 2rem;
  }
  
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-btn {
  min-width: 10.25rem;
  min-height: 2.95rem;
  padding: 0.62rem 1rem;
  font-size: 0.95rem;
  line-height: 1;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
}

.hero-cta-group .hero-btn {
  box-shadow: 0 10px 20px rgba(93, 43, 8, 0.24);
}

.btn-accent,
.btn-outline-accent {
  border-radius: 10px;
  font-weight: 700;
  padding: 0.72rem 1.15rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    filter 0.25s ease;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-dark));
  border: 1px solid rgba(255, 151, 72, 0.45);
  color: #fff;
  box-shadow: 0 12px 26px rgba(93, 43, 8, 0.3);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: linear-gradient(135deg, #ff9a4d, #cc4f00);
  border-color: rgba(255, 175, 108, 0.55);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(93, 43, 8, 0.42);
  filter: brightness(1.02);
}

.btn-outline-accent {
  background: rgba(255, 106, 0, 0.04);
  border: 1px solid rgba(255, 151, 72, 0.34);
  color: #ffd2b1;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus-visible {
  background: rgba(255, 106, 0, 0.12);
  border-color: rgba(255, 175, 108, 0.6);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(93, 43, 8, 0.24);
}

.btn-accent:focus-visible,
.btn-outline-accent:focus-visible,
.nav-consult-link:focus-visible,
.service-btn:focus-visible {
  outline: 2px solid rgba(255, 181, 120, 0.55);
  outline-offset: 2px;
}

/* cards */
.service-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0)
  );
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 22px;
  border-radius: 12px;
}

.stat-box {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0)
  );
  padding: 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
}

.stats-ribbon {
  position: relative;
  isolation: isolate;
  margin-top: 0.75rem;
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    rgba(16, 12, 10, 0.98) 0%,
    rgba(11, 12, 13, 0.98) 52%,
    rgba(9, 10, 11, 0.99) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 32px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 106, 0, 0.07);
}

.stats-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      95% 180% at -8% -45%,
      rgba(255, 106, 0, 0.27) 0%,
      rgba(255, 106, 0, 0) 56%
    ),
    radial-gradient(
      85% 120% at 100% 130%,
      rgba(224, 85, 0, 0.12) 0%,
      rgba(224, 85, 0, 0) 62%
    );
  pointer-events: none;
  z-index: 0;
}

.stats-ribbon-row {
  margin: 0;
  position: relative;
  z-index: 1;
}

.stats-ribbon-col {
  position: relative;
}

.stats-ribbon-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 106, 0, 0.04),
    rgba(255, 149, 59, 0.3),
    rgba(255, 106, 0, 0.04)
  );
}

.stats-ribbon-col:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -24px;
  width: 48px;
  height: 84%;
  background: linear-gradient(
    180deg,
    rgba(255, 229, 206, 0.98) 0%,
    rgba(255, 179, 120, 0.98) 46%,
    rgba(255, 132, 36, 0.97) 100%
  );
  clip-path: polygon(0 0, 58% 0, 100% 50%, 58% 100%, 0 100%, 30% 50%);
  border-radius: 14px;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    0 12px 20px rgba(8, 6, 4, 0.55),
    inset 0 1px 0 rgba(255, 245, 236, 0.9),
    inset 0 -1px 0 rgba(181, 82, 8, 0.5);
}

.stats-ribbon-col:nth-child(2)::after {
  display: none;
}

.stats-ribbon-col:nth-child(3) .stats-ribbon-item {
  padding-left: 2.2rem;
}

.stats-ribbon-item {
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  height: 100%;
  padding: 1.25rem 1.2rem;
}

.stats-ribbon-value {
  color: #f8f9fa;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.stats-ribbon-label {
  margin-top: 0.5rem;
  color: rgba(233, 237, 242, 0.84) !important;
  font-size: 0.9rem !important;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .stats-ribbon-col:nth-child(2)::before {
    display: none;
  }

  .stats-ribbon-col:nth-child(2n)::after {
    display: none;
  }

  .stats-ribbon-col:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-ribbon-item {
    text-align: center;
    padding: 1.1rem 0.9rem;
  }

  .stats-ribbon-col:nth-child(3) .stats-ribbon-item {
    padding-left: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .stats-ribbon-value {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .stats-ribbon-label {
    font-size: 0.78rem !important;
  }
}

/* projects */
.project-card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.project-card .card-body {
  padding: 18px;
}

/* internship */
.internship {
  border: 1px solid rgba(255, 106, 0, 0.18);
  padding: 34px;
  border-radius: 12px;
}

/* about */
.about-img {
  /* border-radius: 10px; */
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Tablet adjustments */
@media (max-width: 992px) {
  .about-img {
    margin-left: 2rem;
    max-width: 25rem;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about-img {
    margin-left: 0;
    max-width: 100%;
    display: block;
    margin-right: auto;
    margin-left: auto;
    /* center image */
  }
}

/* contact */
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 10px; 
  margin-top: none;
}

.service-btn {
  padding: 0.55rem 1rem;
  font-weight: 600;
}

#pentesting .pentest-card {
  --bs-card-bg: transparent;
  --bs-card-border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(18, 20, 22, 0.96),
    rgba(11, 12, 13, 0.98)
  );
  background-color: #111315 !important;
  background-image: linear-gradient(
    180deg,
    rgba(18, 20, 22, 0.96),
    rgba(11, 12, 13, 0.98)
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  color: #e6eef1;
}
#pentesting .pentest-card:hover {
  /* transform: translateY(-6px); */
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 106, 0, 0.16);
}
#pentesting .pentest-card-media {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 10, 0.96),
    rgba(13, 14, 16, 0.96)
  );
  min-height: 184px;
  padding: 0.8rem 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pentesting .pentest-card-image {
  max-height: 158px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

#pentesting .pentest-feature-list {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

#pentesting .pentest-feature-list li::marker {
  content: "";
}

#pentesting .pentest-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: rgba(230, 238, 241, 0.84) !important;
  margin-bottom: 0.44rem;
}

#pentesting .pentest-feature-list li i {
  margin-top: 0.22rem;
  font-size: 0.84rem;
}

#pentesting .pentest-card .service-btn {
  min-width: 112px;
}

@media (max-width: 991.98px) {
  #pentesting .pentest-card {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }

  #pentesting .pentest-card-media {
    min-height: 170px;
  }
}

/* responsive tweaks */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .home-hero {
    padding-bottom: 34px;
  }

  .home-hero .hero-media .shield-img {
    width: min(82vw, 320px);
    max-width: 320px;
  }

  .shield-img {
    width: min(100%, 390px);
    max-width: 390px;
    margin: 0.75rem auto 0;
  }
}

.shield-img {
  width: min(100%, 500px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  /* Keeps whole image visible */
  display: block;
}

.logo-img {
  height: 44px;
  width: auto;
}

/* Contact Form Styling */
#businessEmailForm input[type="email"] {
  background-color: var(--card);
  border: 1px solid var(--muted);
  color: #fff;
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#businessEmailForm input[type="email"]::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

#businessEmailForm input[type="email"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  outline: none;
}

/* Button styling */
#businessEmailForm button {
  background-color: var(--accent);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

#businessEmailForm button:hover {
  background-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Section Styling */
.reported-bugs {
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.bug-logos-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.bug-logos {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.bug-logos img {
  height: var(--logos-item-height, 50px);
  width: auto;
  margin: 0 var(--logos-item-gap, 40px);
  object-fit: contain;
  pointer-events: none;
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.3s ease;
}

.bug-logos img:hover {
  filter: grayscale(0%) brightness(1);
}

svg text {
  fill: #fff; /* or any color matching your background */
}

/* Footer Base */
.footer {
  background: var(--bg);
  padding: 60px 0 20px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main-grid {
  row-gap: 1.75rem;
  column-gap: 0;
}

.footer-main-grid > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.footer-heading-grid > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Logo */
.footer-logo {
  height: 100px;
}

/* Headings */
.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 0.86rem;
  letter-spacing: 0.35px;
}

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e9ecef;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 500;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 0.2rem;
}
.f-info .fino{
  margin-left: 1rem;
}
.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.86rem;
  line-height: 1.35;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Contact */
.footer-contact li {
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
}

.footer-contact a,
.footer-contact span {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.35;
}

.footer-links-col {
  padding-top: 0.25rem;
}

.footer-links-col-company {
  padding-left: 1rem;
}

.footer-links-col-services {
  padding-left: 1rem;
}

.footer-platform-links li {
  margin-bottom: 0.3rem;
}

.footer-contact-col {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 1.25rem;
}

.footer-heading-grid .footer-contact-col {
  border-left: 0;
  padding-left: 0;
}

.footer-contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  padding: 0.85rem;
}

.footer-contact-row {
  margin-top: 0.15rem;
}

.footer-contact-row .footer-contact-panel {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 16rem);
  gap: 0.95rem;
  align-items: start;
}

.footer-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-advisor-title {
  margin-bottom: 0;
}

.footer-advisor-lines {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.footer-advisor-lines small {
  color: rgba(230, 238, 241, 0.76);
  font-size: 0.76rem;
  line-height: 1.35;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-social-row a {
  margin-right: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  text-decoration: none !important;
  border-bottom: none !important;
}

.footer-social-row a:hover,
.footer-social-row a:focus {
  text-decoration: none !important;
  border-bottom: none !important;
}

.footer-platform-list li {
  margin-bottom: 0.28rem;
}

.footer-platform-list a {
  display: inline-block;
}

.footer-email-form .form-control {
  min-height: 2.2rem;
}

.footer-email-form .btn {
  width: 100%;
}

.footer-contact-row .footer-email-form {
  margin-left: auto;
  width: 100%;
}

/* Social Icons */
.footer-social a {
  color: var(--muted);
  margin-right: 10px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-split {
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-copy {
  display: flex;
  align-items: center;
}

.footer-bottom-social {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer-contact-col {
    border-left: 0;
    padding-left: 0;
  }

  .footer-links-col-company,
  .footer-links-col-services {
    padding-left: 0;
  }

  .footer-bottom {
    margin-top: 32px;
  }

  .footer-contact-row .footer-contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .footer-main-grid {
    row-gap: 1.25rem;
  }

  .footer-heading {
    margin-bottom: 0.55rem;
  }

  .footer-contact-row .footer-contact-panel {
    grid-template-columns: 1fr;
  }
}

footer a:hover {
  color: #fff !important;
}

/* AboutPage */
/* Hero base */
.about-hero {
  position: relative;
  margin-top: 80px; /* below navbar */
  min-height: 360px;
  background: var(--bg);
  overflow: hidden;
}

/* Layer helper */
.about-hero .hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle circle glow */
.about-hero .hero-circle {
  background: radial-gradient(
    circle at center,
    rgba(255, 106, 0, 0.15) 0%,
    rgba(224, 85, 0, 0.08) 35%,
    rgba(11, 12, 13, 0.95) 70%
  );
}

/* Cyber lines effect */
.about-hero .hero-lines {
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 106, 0, 0.15) 0px,
      rgba(255, 106, 0, 0.15) 1px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 106, 0, 0.15) 0px,
      rgba(255, 106, 0, 0.15) 1px,
      transparent 2px,
      transparent 40px
    );
  animation: moveLines 30s linear infinite;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

/* Line animation */
@keyframes moveLines {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      600px 0,
      0 600px;
  }
}

/* Larger hero on desktops */
@media (min-width: 992px) {
  .about-hero {
    min-height: 420px;
  }
}

.badge-logo {
  max-height: 120px; /* keeps all logos balanced */
  object-fit: contain; /* respects original shape */
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}
.badge-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px var(--accent));
}

/* Our Solutions Section */
.solutions-section {
  background: var(--bg);
  color: #fff;
}

/* Section Title */
.solutions-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.solutions-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Product Image */
.product-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Content */
.product-content {
  padding: 1rem;
}
.product-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}
.product-desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Features List */
.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.product-features li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: #ddd;
  font-size: 0.95rem;
}
.product-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Buy Button */
.buy-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.buy-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

[id] {
  scroll-margin-top: 100px; /* adjust depending on your navbar height */
}

.service-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.text-accent {
  color: var(--accent) !important;
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .display-4 {
    font-size: 2rem;
  }
}

/* Team Page */
.team-hero-section {
  margin-top: 80px;
  padding: 4.4rem 0 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(
      120% 175% at 0% -25%,
      rgba(255, 106, 0, 0.22),
      rgba(255, 106, 0, 0) 58%
    ),
    radial-gradient(
      110% 130% at 100% 0%,
      rgba(255, 106, 0, 0.12),
      rgba(255, 106, 0, 0) 65%
    ),
    linear-gradient(180deg, rgba(15, 16, 18, 0.98), rgba(11, 12, 13, 0.98));
}

.team-hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  color: rgba(245, 249, 252, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  font-weight: 600;
  text-transform: uppercase;
}

.team-hero-title {
  margin: 0.82rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
  color: #f5f8fb;
}

.team-hero-subtitle {
  margin: 0;
  max-width: 860px;
  color: rgba(220, 227, 232, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}

.team-hero-metrics {
  margin-top: 1.2rem;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.team-metric-card {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  padding: 0.72rem 0.8rem;
}

.team-metric-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.23rem;
  line-height: 1.1;
  font-weight: 800;
}

.team-metric-card span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(226, 234, 239, 0.76);
  font-size: 0.76rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.28px;
}

.team-hero-note {
  margin: 0.78rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(228, 236, 242, 0.7);
  font-size: 0.81rem;
  line-height: 1.35;
}

.note-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8a3d, var(--accent));
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16);
}

.team-org-section {
  padding: 2.45rem 0 4.4rem;
  background: var(--bg);
}

.team-org-wrapper {
  position: relative;
  padding: 1.45rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.006)
    ),
    radial-gradient(
      130% 170% at 100% 0%,
      rgba(255, 106, 0, 0.1),
      rgba(255, 106, 0, 0) 62%
    );
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.team-org-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 44px
  );
  opacity: 0.2;
  pointer-events: none;
}

.team-org-wrapper > * {
  position: relative;
  z-index: 1;
}

.org-tier {
  position: relative;
}

.org-tier + .org-tier {
  margin-top: 1.3rem;
  padding-top: 1.42rem;
  border-top: 1px solid rgba(255, 106, 0, 0.28);
}

.org-tier + .org-tier::before {
  content: "";
  position: absolute;
  top: -0.12rem;
  left: 50%;
  width: 2px;
  height: 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 106, 0, 0.02),
    rgba(255, 106, 0, 0.85),
    rgba(255, 106, 0, 0.04)
  );
  transform: translateX(-50%);
}

.org-tier-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.76rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.24);
  background: rgba(255, 106, 0, 0.08);
  color: #f5f8fb;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.org-tier-label::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8b3f, #ff6a00);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16);
}

.org-tier-grid {
  position: relative;
  display: grid;
  gap: 0.92rem;
  align-items: stretch;
}

.org-tier-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -0.5rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 106, 0, 0),
    rgba(255, 106, 0, 0.55),
    rgba(255, 106, 0, 0)
  );
}

.org-tier-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9754, #ff6a00);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.org-tier-founder .org-tier-grid {
  grid-template-columns: minmax(280px, 460px);
  justify-content: center;
}

.org-tier-founder .org-tier-grid::before {
  display: none;
}

.org-tier-founder .org-tier-grid::after {
  display: none;
}

.org-tier-executive .org-tier-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.org-tier-heads .org-tier-grid,
.org-tier-associates .org-tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.org-member-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.022),
      rgba(255, 255, 255, 0.01)
    ),
    linear-gradient(145deg, rgba(255, 106, 0, 0.06), rgba(255, 106, 0, 0.012));
  padding: 1.02rem 1.02rem 0.95rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

.org-member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 106, 0, 0.15),
    rgba(255, 106, 0, 0.6),
    rgba(255, 106, 0, 0.15)
  );
  opacity: 0.35;
}

.org-member-card > * {
  position: relative;
  z-index: 1;
}

.org-member-card:hover {
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 106, 0, 0.13);
  transform: translateY(-3px);
}

.org-member-card.is-featured {
  border-color: rgba(255, 106, 0, 0.4);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    ),
    linear-gradient(145deg, rgba(255, 106, 0, 0.11), rgba(255, 106, 0, 0.03));
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 106, 0, 0.16);
}

.org-member-card.is-featured::before {
  opacity: 1;
}

.org-member-card.is-featured .org-member-name {
  color: #fff7f0;
  text-shadow: 0 0 10px rgba(255, 106, 0, 0.2);
}

.org-member-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.org-member-role {
  margin: 0;
  color: rgba(255, 155, 87, 0.95);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.org-member-role-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.45);
  background: rgba(255, 106, 0, 0.16);
  color: #fff4e9;
  font-size: 0.65rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
}

.org-member-name {
  margin: 0.45rem 0 0;
  color: #f4f7fa;
  font-size: 1.04rem;
  line-height: 1.3;
  font-weight: 700;
}

.org-member-alias {
  margin: 0.38rem 0 0;
  color: rgba(228, 236, 242, 0.72);
  font-size: 0.8rem;
  line-height: 1.35;
  font-weight: 600;
}

.org-member-tags {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.org-member-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(233, 239, 244, 0.88);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18px;
}

.org-member-focus {
  margin: 0.65rem 0 0;
  color: rgba(232, 238, 243, 0.82);
  font-size: 0.79rem;
  line-height: 1.42;
}

.org-member-focus span {
  color: rgba(255, 168, 103, 0.98);
  font-weight: 700;
}

.org-member-description {
  margin: 0.64rem 0 0;
  color: rgba(218, 226, 232, 0.78);
  font-size: 0.84rem;
  line-height: 1.52;
}

.org-member-social-block {
  margin-top: auto;
  padding-top: 0.7rem;
}

.org-member-social-title {
  display: inline-block;
  color: rgba(228, 236, 242, 0.64);
  font-size: 0.69rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.org-member-socials {
  margin-top: 0.44rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.org-member-socials a {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(232, 238, 243, 0.9);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.22s ease,
    color 0.22s ease,
    background-color 0.22s ease;
}

.org-member-socials a:hover,
.org-member-socials a:focus {
  border-color: rgba(255, 106, 0, 0.5);
  color: #fff;
  background: rgba(255, 106, 0, 0.12);
}

@media (max-width: 991.98px) {
  .team-hero-section {
    padding: 3.8rem 0 2rem;
  }

  .team-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-org-wrapper {
    padding: 1.08rem;
  }

  .org-tier-heads .org-tier-grid,
  .org-tier-associates .org-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .team-hero-title {
    font-size: clamp(1.7rem, 6.8vw, 2.2rem);
  }

  .team-hero-subtitle {
    font-size: 0.92rem;
  }

  .team-hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .team-metric-card {
    padding: 0.66rem 0.72rem;
  }

  .org-tier + .org-tier::before,
  .org-tier-grid::before,
  .org-tier-grid::after {
    display: none;
  }

  .org-tier-executive .org-tier-grid,
  .org-tier-heads .org-tier-grid,
  .org-tier-associates .org-tier-grid {
    grid-template-columns: 1fr;
  }

  .org-member-card {
    padding: 0.9rem 0.86rem;
  }

  .org-member-role {
    font-size: 0.75rem;
  }

  .org-member-name {
    font-size: 1rem;
  }
}

/* Service Hub */
.service-hub-hero,
.service-detail-hero {
  margin-top: 80px;
  padding: 3.8rem 0 3.2rem;
  background:
    radial-gradient(
      90% 140% at 0% 0%,
      rgba(255, 106, 0, 0.22),
      rgba(255, 106, 0, 0) 56%
    ),
    radial-gradient(
      70% 100% at 100% 10%,
      rgba(255, 106, 0, 0.12),
      rgba(255, 106, 0, 0) 62%
    ),
    linear-gradient(120deg, rgba(18, 20, 24, 0.98), rgba(9, 10, 11, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-hub-hero-split {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.service-hub-hero-shell {
  width: 100%;
}

.service-hub-hero-row {
  min-height: calc(100vh - 160px);
}

.service-hub-left {
  max-width: 700px;
}

.service-hub-intro {
  max-width: 620px;
}

.service-hub-trust-note {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-hub-trust-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(233, 239, 245, 0.9);
  font-size: 0.78rem;
  line-height: 1;
}

.service-hub-trust-note i {
  color: var(--accent-soft);
}

.service-hub-left h1,
.service-detail-hero h1 {
  color: #f6f9fb;
  font-size: clamp(2.05rem, 4vw, 3.05rem);
  line-height: 1.14;
  font-weight: 800;
  margin: 0;
}

.service-hub-left p,
.service-detail-hero p {
  color: rgba(226, 234, 240, 0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 0;
}

.service-hub-breadcrumb,
.service-detail-breadcrumb {
  margin: 0 0 0.82rem;
  color: rgba(230, 236, 241, 0.68);
  font-size: 0.79rem !important;
  line-height: 1.35 !important;
  letter-spacing: 0.22px;
  text-transform: uppercase;
}

.service-detail-eyebrow {
  margin: 0 0 0.4rem !important;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  background: rgba(255, 106, 0, 0.12);
  color: rgba(255, 192, 146, 0.95) !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.service-hub-badges {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.service-hub-stats {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.service-hub-stats > div {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.55rem 0.62rem;
}

.service-hub-stats strong {
  display: block;
  color: #f6f9fb;
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 800;
}

.service-hub-stats span {
  display: block;
  margin-top: 0.18rem;
  color: rgba(223, 231, 237, 0.75);
  font-size: 0.7rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.service-hub-highlights {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.service-detail-highlights {
  margin-top: 1.05rem;
}

.service-hub-highlight-item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  padding: 0.62rem 0.68rem;
}

.service-hub-highlight-item strong {
  display: block;
  color: #f7f9fb;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 700;
}

.service-hub-highlight-item span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(223, 231, 237, 0.72);
  font-size: 0.72rem;
  line-height: 1.45;
}

.service-hub-badges span,
.service-detail-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.25);
  background: rgba(255, 106, 0, 0.1);
  color: rgba(245, 249, 251, 0.9);
  font-size: 0.74rem;
  line-height: 1;
  letter-spacing: 0.2px;
}

.service-detail-tags {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.service-detail-metrics {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.service-detail-metrics > div {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );
  padding: 0.58rem 0.62rem;
}

.service-detail-metrics strong {
  display: block;
  color: #f7f9fb;
  font-size: 0.88rem;
  line-height: 1.25;
  font-weight: 700;
}

.service-detail-metrics span {
  display: block;
  margin-top: 0.18rem;
  color: rgba(222, 230, 236, 0.72);
  font-size: 0.7rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.service-hero-coverage-card {
  margin-top: 0.82rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(255, 106, 0, 0.13),
      rgba(255, 106, 0, 0) 52%
    ),
    linear-gradient(180deg, rgba(17, 19, 21, 0.98), rgba(10, 11, 13, 0.98));
  padding: 0.72rem 0.75rem;
}

.service-hero-coverage-card h3 {
  margin: 0;
  color: #f7f9fb;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 700;
}

.service-hero-coverage-card ul {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.7rem;
}

.service-hero-coverage-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  color: rgba(224, 231, 237, 0.8);
  font-size: 0.8rem;
  line-height: 1.45;
}

.service-hero-coverage-card li i {
  margin-top: 0.26rem;
  color: var(--accent);
  font-size: 0.62rem;
}

.service-hero-focus {
  margin-top: 0.78rem;
}

.service-hero-focus h3 {
  margin: 0;
  color: #f7f9fb;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 700;
}

.service-hero-focus-list {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-hero-focus-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(231, 238, 244, 0.85);
  font-size: 0.72rem;
  line-height: 1;
  padding: 0.33rem 0.58rem;
}

.service-inquiry-card {
  background:
    radial-gradient(
      130% 120% at 0% 0%,
      rgba(255, 106, 0, 0.16),
      rgba(255, 106, 0, 0) 52%
    ),
    linear-gradient(180deg, rgba(18, 20, 22, 0.98), rgba(12, 13, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 1.05rem;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 106, 0, 0.08);
}

.service-hub-form-wrap .service-inquiry-card {
  min-height: 100%;
}

.service-inquiry-title {
  margin: 0;
  color: #f8f9fb;
  font-size: 1.06rem;
  line-height: 1.35;
  font-weight: 700;
}

.service-inquiry-subtitle {
  margin: 0.45rem 0 0.9rem;
  color: rgba(223, 230, 236, 0.75);
  font-size: 0.83rem;
  line-height: 1.55;
}

.service-inquiry-field + .service-inquiry-field,
.service-inquiry-field-group,
.service-inquiry-consent,
.service-inquiry-submit {
  margin-top: 0.66rem;
}

.service-inquiry-group-label {
  margin-bottom: 0.4rem !important;
}

.service-inquiry-field label {
  display: block;
  color: rgba(233, 239, 245, 0.86);
  font-size: 0.74rem;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.service-inquiry-field .form-control {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 8, 9, 0.82);
  color: #f2f6f9;
  min-height: 2.35rem;
  font-size: 0.9rem;
}

.service-inquiry-field .form-control::placeholder {
  color: rgba(203, 210, 216, 0.55);
}

.service-inquiry-field .form-control:focus {
  border-color: rgba(255, 106, 0, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.15);
}

.service-inquiry-field .form-control.is-invalid {
  border-color: rgba(255, 105, 105, 0.8);
}

.service-inquiry-field small,
.service-inquiry-consent small {
  display: block;
  margin-top: 0.22rem;
  color: #ff9191;
  font-size: 0.72rem;
}

.service-inquiry-field-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.service-inquiry-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.service-inquiry-option {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(226, 233, 238, 0.82);
  font-size: 0.75rem;
  line-height: 1.3;
  min-height: 2.05rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.38rem 0.5rem;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
  cursor: pointer;
  position: relative;
}

.service-inquiry-option:hover {
  border-color: rgba(255, 106, 0, 0.42);
  background: rgba(255, 106, 0, 0.06);
}

.service-inquiry-option.is-selected {
  border-color: rgba(255, 106, 0, 0.66);
  background: rgba(255, 106, 0, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.16);
}

.service-inquiry-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.service-inquiry-option-box {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(6, 7, 9, 0.8);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-inquiry-option-box i {
  font-size: 0.58rem;
  opacity: 0;
  transform: scale(0.75);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.service-inquiry-option input:focus-visible + .service-inquiry-option-box {
  border-color: rgba(255, 106, 0, 0.72);
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.28);
}

.service-inquiry-option input:checked + .service-inquiry-option-box {
  border-color: rgba(255, 106, 0, 0.95);
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.service-inquiry-option input:checked + .service-inquiry-option-box i {
  opacity: 1;
  transform: scale(1);
}

.service-inquiry-option-text {
  display: inline-block;
  color: rgba(233, 239, 245, 0.9);
}

.service-inquiry-consent label {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: rgba(220, 228, 234, 0.75);
  font-size: 0.74rem;
  line-height: 1.5;
}

.service-inquiry-consent input {
  accent-color: var(--accent);
  margin-top: 0.14rem;
}

.service-inquiry-submit {
  width: 100%;
  min-height: 2.4rem;
  font-size: 0.92rem;
}

.service-inquiry-submit-wrap .service-inquiry-submit {
  width: 100%;
}

.service-inquiry-success {
  margin: 0.55rem 0 0;
  color: #9ae7a4;
  font-size: 0.76rem;
}

.service-list-section {
  padding: 3.1rem 0;
}

.service-section-heading h2 {
  color: #f5f8fb;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
}

.service-section-heading p {
  margin: 0.62rem auto 0;
  max-width: 720px;
  color: rgba(220, 227, 233, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-list-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(17, 19, 21, 0.98),
    rgba(12, 13, 15, 0.98)
  );
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, 0.36);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 106, 0, 0.15);
}

.service-list-media {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      80% 90% at 20% 0%,
      rgba(255, 106, 0, 0.3),
      rgba(255, 106, 0, 0) 58%
    ),
    linear-gradient(140deg, rgba(7, 8, 9, 0.96), rgba(14, 16, 18, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-list-media i {
  color: rgba(245, 249, 252, 0.96);
  font-size: 2.2rem;
}

.service-list-content {
  padding: 1rem 1rem 0.9rem;
}

.service-list-category {
  margin: 0;
  color: rgba(255, 156, 89, 0.95);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.service-list-content h3 {
  margin: 0.46rem 0 0;
  color: #f6f9fb;
  font-size: 1rem;
  line-height: 1.32;
  font-weight: 700;
}

.service-list-content p {
  margin: 0.52rem 0 0;
  color: rgba(218, 226, 232, 0.76);
  font-size: 0.84rem;
  line-height: 1.58;
}

.service-list-link {
  margin-top: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.service-list-link i {
  font-size: 0.7rem;
}

.service-pagination {
  margin-top: 1.45rem;
  display: flex;
  justify-content: center;
  gap: 0.42rem;
}

.service-pagination button {
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(230, 237, 242, 0.9);
  font-size: 0.8rem;
  line-height: 1;
}

.service-pagination button.is-active {
  border-color: rgba(255, 106, 0, 0.5);
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
}

.service-pagination button:hover {
  border-color: rgba(255, 106, 0, 0.45);
}

.service-urgent-section {
  padding: 0 0 3.1rem;
}

.service-urgent-card {
  border-radius: 15px;
  border: 1px solid rgba(255, 106, 0, 0.2);
  background:
    radial-gradient(
      120% 150% at 0% 0%,
      rgba(255, 106, 0, 0.22),
      rgba(255, 106, 0, 0) 55%
    ),
    linear-gradient(160deg, rgba(13, 15, 17, 0.98), rgba(9, 10, 11, 0.98));
  padding: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.service-urgent-card h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.service-urgent-card p {
  margin: 0.58rem 0 0;
  color: rgba(225, 232, 238, 0.78);
  font-size: 0.92rem;
  line-height: 1.62;
}

.service-urgent-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.service-faq-section {
  padding: 0 0 3.4rem;
}

.service-faq-accordion {
  margin-top: 0;
}

.service-faq-accordion .accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 13, 15, 0.85);
  border-radius: 10px;
  overflow: hidden;
}

.service-faq-accordion .accordion-item + .accordion-item {
  margin-top: 0.62rem;
}

.service-faq-grid {
  margin-top: 1.2rem;
}

.service-faq-accordion .accordion-button {
  color: #f5f8fb;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}

.service-faq-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: rgba(255, 106, 0, 0.12);
  box-shadow: none;
}

.service-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.service-faq-accordion .accordion-body {
  color: rgba(224, 231, 236, 0.76);
  font-size: 0.9rem;
  line-height: 1.62;
}

.service-deepdive-section,
.service-methodology-section,
.service-deliverables-section {
  padding: 3rem 0;
}

.service-methodology-timeline {
  position: relative;
  margin-top: 1.2rem;
}

.service-methodology-timeline::before {
  content: "";
  position: absolute;
  left: 1.62rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 106, 0, 0.1),
    rgba(255, 106, 0, 0.65),
    rgba(255, 106, 0, 0.15)
  );
}

.service-methodology-step {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
}

.service-methodology-step + .service-methodology-step {
  margin-top: 1rem;
}

.service-methodology-marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.service-methodology-marker span {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 106, 0, 0.72);
  background: rgba(10, 11, 13, 0.98);
  color: #ffd9bf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}

.service-methodology-content {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(
      130% 140% at 0% 0%,
      rgba(255, 106, 0, 0.13),
      rgba(255, 106, 0, 0) 55%
    ),
    linear-gradient(180deg, rgba(18, 20, 23, 0.98), rgba(11, 12, 14, 0.98));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  padding: 0.9rem;
}

.service-methodology-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.42rem;
}

.service-methodology-phase {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  background: rgba(255, 106, 0, 0.08);
  color: rgba(255, 170, 110, 0.95);
  font-size: 0.67rem !important;
  line-height: 1 !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.service-methodology-deliverable {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(225, 232, 237, 0.78);
  font-size: 0.68rem;
  line-height: 1.2;
}

.service-methodology-content h3 {
  margin: 0.58rem 0 0;
  color: #f7f9fb;
  font-size: 1.24rem;
  line-height: 1.28;
  font-weight: 700;
}

.service-methodology-content p {
  margin: 0.55rem 0 0;
  color: rgba(220, 227, 233, 0.78);
  font-size: 0.9rem;
  line-height: 1.62;
}

.service-methodology-points {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.service-methodology-points ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-methodology-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
  color: rgba(224, 231, 236, 0.82);
  font-size: 0.8rem;
  line-height: 1.5;
}

.service-methodology-points li + li {
  margin-top: 0.32rem;
}

.service-methodology-points li i {
  margin-top: 0.34rem;
  color: var(--accent);
  font-size: 0.56rem;
}

.service-methodology-outcome {
  margin: 0.72rem 0 0;
  padding-top: 0.58rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
  color: rgba(218, 226, 232, 0.78);
  font-size: 0.82rem;
  line-height: 1.56;
}

.service-methodology-outcome strong {
  color: rgba(255, 186, 143, 0.95);
  font-weight: 700;
}

.service-deepdive-section h2,
.service-deliverables-section h2 {
  margin: 0;
  color: #f7f9fb;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  line-height: 1.2;
  font-weight: 800;
}

.service-deepdive-section p {
  margin: 0.8rem 0 0;
  color: rgba(221, 228, 233, 0.78);
  font-size: 0.96rem;
  line-height: 1.66;
}

.service-flaw-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(16, 18, 20, 0.98),
    rgba(10, 11, 13, 0.98)
  );
  padding: 0.95rem;
}

.service-flaw-card h3 {
  margin: 0;
  color: #f7fafc;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.service-flaw-card ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.service-flaw-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-flaw-card li:last-child {
  border-bottom: 0;
}

.service-flaw-card strong {
  color: rgba(237, 243, 247, 0.96);
  font-size: 0.86rem;
  line-height: 1.3;
  font-weight: 600;
}

.service-severity {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.22rem 0.5rem;
  font-size: 0.67rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.service-severity.is-critical {
  color: #ffd2d2;
  border-color: rgba(255, 111, 111, 0.45);
  background: rgba(255, 94, 94, 0.18);
}

.service-severity.is-high {
  color: #ffe0cb;
  border-color: rgba(255, 144, 90, 0.5);
  background: rgba(255, 135, 65, 0.2);
}

.service-severity.is-medium {
  color: #fff0cf;
  border-color: rgba(255, 190, 87, 0.5);
  background: rgba(255, 190, 87, 0.2);
}

.service-severity.is-low {
  color: #dafadf;
  border-color: rgba(120, 216, 137, 0.45);
  background: rgba(85, 198, 112, 0.18);
}

.service-phase-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(17, 18, 21, 0.98),
    rgba(10, 11, 13, 0.98)
  );
  padding: 0.95rem;
}

.service-phase-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--accent);
  background: rgba(255, 106, 0, 0.08);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 700;
}

.service-phase-label {
  margin: 0.55rem 0 0;
  color: rgba(255, 156, 89, 0.88);
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.service-phase-card h3 {
  margin: 0.52rem 0 0;
  color: #f7f9fb;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.service-phase-card p {
  margin: 0.5rem 0 0;
  color: rgba(220, 227, 233, 0.76);
  font-size: 0.83rem;
  line-height: 1.56;
}

.service-check-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.service-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(225, 232, 237, 0.8);
  font-size: 0.92rem;
  line-height: 1.62;
}

.service-check-list li + li {
  margin-top: 0.45rem;
}

.service-check-list i {
  color: var(--accent);
  margin-top: 0.3rem;
  font-size: 0.75rem;
}

@media (max-width: 991.98px) {
  .service-hub-hero-split {
    min-height: auto;
  }

  .service-hub-hero-row {
    min-height: auto;
  }

  .service-hub-hero,
  .service-detail-hero {
    padding: 3.2rem 0 2.6rem;
  }

  .service-hub-stats,
  .service-hub-highlights,
  .service-detail-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-methodology-content h3 {
    font-size: 1.14rem;
  }

  .service-inquiry-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-urgent-card {
    grid-template-columns: 1fr;
  }

  .service-urgent-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .service-hub-hero-split {
    padding-top: 6.5rem;
    padding-bottom: 2.4rem;
  }

  .service-inquiry-field-group,
  .service-methodology-points {
    grid-template-columns: 1fr;
  }

  .service-hub-stats,
  .service-hub-highlights,
  .service-detail-metrics {
    grid-template-columns: 1fr;
  }

  .service-hero-coverage-card ul {
    grid-template-columns: 1fr;
  }

  .service-hub-left h1,
  .service-detail-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .service-hub-trust-note {
    gap: 0.42rem;
  }

  .service-methodology-timeline::before {
    display: none;
  }

  .service-methodology-step {
    grid-template-columns: 1fr;
    gap: 0.52rem;
  }

  .service-methodology-marker {
    justify-content: flex-start;
  }

  .service-list-media {
    min-height: 140px;
  }

  .service-deepdive-section,
  .service-methodology-section,
  .service-deliverables-section {
    padding: 2.4rem 0;
  }
}

@media (max-width: 575.98px) {
  .service-inquiry-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hub-hero,
  .service-detail-hero {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .service-inquiry-options {
    grid-template-columns: 1fr;
  }
}

/* Events page */
.event-hero {
  padding-top: 132px;
  padding-bottom: 84px;
}

.event-voxel-stage {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.06), transparent 42%),
    #0d0f11;
  border-radius: 14px;
  overflow: hidden;
}

.event-hero-panel {
  position: relative;
  z-index: 2;
  padding: 28px;
  max-width: 92%;
  margin: 34px auto;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(11, 12, 13, 0.92);
  border-radius: 12px;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.event-hero-panel h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.event-hero-panel p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.7;
}

.voxel-grid {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image:
    linear-gradient(rgba(255, 106, 0, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 0, 0.15) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.7;
}

.voxel-grid::before,
.voxel-grid::after {
  content: "";
  position: absolute;
  background: rgba(255, 106, 0, 0.12);
}

.voxel-grid-a {
  top: 28px;
  right: 32px;
}

.voxel-grid-a::before {
  inset: 16px 16px auto auto;
  width: 18px;
  height: 18px;
}

.voxel-grid-b {
  left: 30px;
  bottom: 34px;
}

.voxel-grid-b::before {
  inset: auto auto 16px 16px;
  width: 20px;
  height: 20px;
}

.voxel-grid-c {
  right: 34%;
  bottom: 18px;
}

.voxel-grid-c::before {
  inset: 22px auto auto 22px;
  width: 16px;
  height: 16px;
}

.event-card {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, rgba(18, 20, 22, 0.98), rgba(11, 12, 13, 0.98));
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

.event-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 8px;
  border: 0;
  display: block;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(255, 106, 0, 0.07) 46% 48%, transparent 48% 100%),
    linear-gradient(180deg, transparent 0 72%, rgba(255, 106, 0, 0.05) 72% 74%, transparent 74% 100%);
  opacity: 0.7;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 0, 0.25);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  margin-left: 0;
  margin-bottom: 6px;
}

.event-card h4 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 700;
}

.event-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.event-meta {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.event-meta li {
  color: #d6dde2;
  font-size: 0.92rem;
}

.event-meta i {
  width: 18px;
}

.event-card .service-btn {
  position: relative;
  z-index: 1;
  margin-top: 10px !important;
}

@media (max-width: 991.98px) {
  .event-hero {
    padding-top: 114px;
  }

  .event-voxel-stage {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .event-card {
    padding: 0;
  }

  .event-hero-panel {
    padding: 22px;
    margin: 24px 16px;
  }
}
