/*---------------------------------------
  Volatile Solutions — Design System
-----------------------------------------*/

/*---------------------------------------
  DESIGN TOKENS
-----------------------------------------*/
:root {
  /* ── Brand palette (unchanged hex values) ── */
  --white-color: #ffffff;
  --primary-color: #13547a;
  --secondary-color: #1a6fa0;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #13547a;
  --custom-btn-bg-hover-color: #0e2f48;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e3e9f2;
  --link-hover-color: #13547a;

  /* ── Semantic color aliases ── */
  --color-bg: #ffffff;
  --color-surface: #f0f8ff;
  --color-text: #000000;
  --color-muted: #717275;
  --color-accent: #13547a;
  --color-border: #e3e9f2;

  /* ── Typography ── */
  --font-sans: 'Open Sans', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;
  --body-font-family: var(--font-sans);
  --title-font-family: 'Montserrat', sans-serif;

  --h1-font-size: 58px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --menu-font-size: 14px;
  --btn-font-size: 18px;
  --copyright-font-size: 16px;

  /* ── Spacing scale ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 40px;
  --space-6: 64px;

  /* ── Border radius ── */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 100px;
  --border-radius-large: var(--radius-lg);
  --border-radius-medium: var(--radius-md);
  --border-radius-small: var(--radius-sm);

  /* ── Shadows ── */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 50px -12px rgba(15, 41, 73, 0.18);

  /* ── Layout ── */
  --container-max: 1140px;

  /* ── Font weight ── */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  animation: pageFadeIn 0.45s ease forwards;
}

/* Improve mobile UX: prevent inadvertent dragging/selection */
img,
a img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

html,
body {
  overscroll-behavior: contain;
}

body.is-page-transitioning {
  opacity: 0;
  transition: opacity 0.35s ease;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Layout: sticky footer */
html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer.site-footer {
  margin-top: auto;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

/* Utility Overrides for Brand Colors */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #1a6fa0 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay+.container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  GLOBAL BUTTON SYSTEM               
-----------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-semibold);
  font-size: var(--btn-font-size, 16px);
  padding: 10px 24px;
  border-radius: var(--radius-lg, 100px);
  min-height: 48px;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: normal;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm, 0 4px 12px rgba(0, 0, 0, 0.06));
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
  box-shadow: none;
}

.btn-primary,
.btn--primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn--primary:hover {
  background-color: var(--custom-btn-bg-hover-color);
  border-color: var(--custom-btn-bg-hover-color);
  color: var(--white-color) !important;
}

.btn-secondary,
.btn--secondary,
.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover,
.btn--secondary:hover,
.btn-outline-primary:hover {
  background-color: rgba(19, 84, 122, 0.05);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/*---------------------------------------
  GLOBAL INPUT SYSTEM               
-----------------------------------------*/
.form-control,
.form-select {
  border-radius: var(--radius-sm, 10px);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  font-size: 16px;
  min-height: 48px;
  background-color: var(--white-color);
  transition: all 0.2s ease;
  color: var(--color-text);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(19, 84, 122, 0.15) !important;
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #09101a 0%, #101c2b 50%, #16283b 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(30, 169, 160, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
  pointer-events: none;
}

.site-header .container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.site-header h1 {
  font-size: clamp(2.45rem, 4vw, 3.2rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.015em;
  color: #fdfdfd !important;
}

.site-header p {
  font-size: 1.05rem;
  color: rgba(235, 247, 255, 0.7) !important;
  line-height: 1.6;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: #ffffff;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: var(--font-weight-medium);
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #ffffff;
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  box-shadow: none;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: none;
  box-shadow: 0 4px 24px -10px rgba(0, 0, 0, 0.08);
  padding-block: 20px;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Dark hamburger icon for light navbar */
.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(9,16,26,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

.logo-text-img {
  height: 26px;
  width: auto;
  margin-left: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  .logo-text-img {
    height: 22px;
  }
}

.navbar-brand,
.navbar-brand:hover {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #09101a;
}

.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-link {
  position: relative;
  font-family: var(--title-font-family);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
  color: #3b4b5c;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  background: #101c2b;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  opacity: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #09101a;
  background: rgba(9, 16, 26, 0.04);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.navbar-nav .nav-link.active {
  color: #09101a;
  background: rgba(9, 16, 26, 0.06);
}

@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 18px;
    gap: 0;
  }

  .navbar-nav .nav-link {
    border-radius: 12px;
    padding: 10px 12px;
  }

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

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-bg-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 160px 0 180px;
  background: linear-gradient(135deg, #09101a 0%, #101c2b 50%, #16283b 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(30, 169, 160, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.32;
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.45rem, 4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #fdfdfd;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-enterprise-shell {
  row-gap: 3rem;
}

.hero-enterprise-copy {
  max-width: 560px;
}

.hero-kicker {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(235, 247, 255, 0.84);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.4em;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}

.hero-btn-primary {
  background: #ffffff;
  color: #09101a;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-weight: var(--font-weight-bold);
  box-shadow: 0 12px 24px -10px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-btn-primary:hover,
.hero-btn-primary:focus {
  background: #e2e8f0;
  color: #09101a;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(255, 255, 255, 0.3);
}

.hero-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-btn-link:hover,
.hero-btn-link:focus {
  color: #ffffff;
}

.hero-btn-link::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.hero-btn-link:hover::after {
  transform: translateX(4px);
}

.hero-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-kpi-item {
  padding: 1.25rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-kpi-value {
  display: block;
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
  color: #ffffff;
}

.hero-kpi-label {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.hero-panel {
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(22, 40, 59, 0.6) 0%, rgba(9, 16, 26, 0.85) 100%);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  gap: 1.5rem;
  max-width: 580px;
  margin-left: auto;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-panel-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(230, 245, 255, 0.9);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel-status .bi {
  font-size: 0.45rem;
  color: #7fe7bc;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-panel-card {
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-panel-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-panel-card span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(230, 244, 255, 0.72);
  margin-bottom: 0.4rem;
}

.hero-panel-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #f7fbff;
}

.hero-panel-standards {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel-standards h4 {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  color: #f7fbff;
}

.hero-panel-standards ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.hero-panel-standards li {
  position: relative;
  padding-left: 16px;
  margin: 0;
  font-size: 0.87rem;
  color: rgba(235, 247, 255, 0.8);
  line-height: 1.4;
}

.hero-panel-standards li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary-color);
}

.hero-panel-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel-industries span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(236, 248, 255, 0.9);
}

/*---------------------------------------
  HOME SECTION SEPARATORS
-----------------------------------------*/
.home-main>section {
  position: relative;
}

.home-main>section+section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2.5rem));
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 84, 122, 0) 0%, rgba(19, 84, 122, 0.32) 18%, rgba(19, 84, 122, 0.32) 82%, rgba(19, 84, 122, 0) 100%);
  pointer-events: none;
}

.home-main>section+section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #13547a 0%, #2d7a9e 55%, #1a6fa0 100%);
  pointer-events: none;
}

.faq-header {
  max-width: 520px;
  margin-bottom: 2rem;
}

.faq-subhead {
  color: #4c5a68;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.faq-cta-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-cta-link:hover i {
  transform: translateX(4px);
}

.social-proof {
  background: linear-gradient(120deg, rgba(19, 84, 122, 0.12) 0%, rgba(128, 208, 199, 0.18) 100%);
  border: 1px solid rgba(19, 84, 122, 0.16);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.social-proof-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1c3f55;
  display: inline-block;
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #1c3f55;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.social-proof-logos span {
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  border: 1px solid rgba(19, 84, 122, 0.25);
}

@media (max-width: 575.98px) {
  .social-proof {
    text-align: center;
  }

  .social-proof-label {
    margin-bottom: 12px;
  }

  .social-proof-logos {
    justify-content: center;
  }
}

/*---------------------------------------
  PROOF BAR SECTION
-----------------------------------------*/
.proof-bar-section {
  padding: 36px 0;
  background: var(--color-surface);
}

/*---------------------------------------
  LINK ARROW UTILITY
-----------------------------------------*/
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  text-decoration: none;
}

.link-arrow::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  color: var(--custom-btn-bg-hover-color);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/*---------------------------------------
  PORTFOLIO CARDS (CUSTOM)
-----------------------------------------*/
.project-card {
  border-radius: 20px !important;
  border: 1px solid rgba(19, 84, 122, 0.08) !important;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(19, 84, 122, 0.2) !important;
  box-shadow: 0 40px 60px -20px rgba(15, 41, 73, 0.15) !important;
}

.project-card img.card-img-top {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.project-card:hover img.card-img-top {
  transform: scale(1.03);
}

.project-card .card-body {
  padding: 2.2rem 1.8rem;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.project-card .card-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: #09101a;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.project-card .card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #586a7c;
  margin-bottom: 1.5rem;
}

.project-card .btn-primary {
  background: rgba(19, 84, 122, 0.06);
  color: #0d3049;
  border: none;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.55rem 1.4rem;
  transition: all 0.3s ease;
}

.project-card .btn-primary:hover {
  background: #09101a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -6px rgba(9, 16, 26, 0.3);
}

/*---------------------------------------
  PORTFOLIO FILTER
-----------------------------------------*/
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}

.portfolio-filter-btn {
  border-radius: 999px !important;
  padding: 0.4rem 1.2rem !important;
  font-size: 0.88rem !important;
  font-weight: var(--font-weight-medium);
  transition: all 0.2s ease;
  color: #3b4b5c !important;
  border-color: rgba(19, 84, 122, 0.2) !important;
}

.portfolio-filter-btn.active,
.portfolio-filter-btn:hover {
  background: #09101a !important;
  border-color: #09101a !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px -2px rgba(9, 16, 26, 0.2);
}

/*---------------------------------------
  PAGE TRANSITION
-----------------------------------------*/
body {
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.is-page-transitioning {
  opacity: 0;
}

/*---------------------------------------
  SECTION LEAD
-----------------------------------------*/
.section-bg {
  background-color: #f4f7fb;
}

.section-lead {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

/*---------------------------------------
  POLICY / LEGAL SECTION
-----------------------------------------*/
.policy-section {
  margin-bottom: 2rem;
}

.policy-section h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.policy-section ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

/* .hero-actions .btn overrides removed for global consistency */

.hero-actions .btn-outline-light {
  border-width: 2px;
}

.hero-actions .btn-outline-light:hover {
  color: #0b1f33;
  background-color: var(--white-color);
}

.hero-metrics {
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metric {
  display: flex;
  flex-direction: column;
}

.hero-metric-value {
  font-family: var(--title-font-family);
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
}

.hero-metric-label {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.62);
}

.hero-highlight-card {
  background: linear-gradient(150deg, rgba(19, 84, 122, 0.78) 0%, rgba(19, 84, 122, 0.54) 50%, rgba(128, 208, 199, 0.32) 100%);
  border: 1px solid rgba(128, 208, 199, 0.35);
  border-radius: 24px;
  padding: 2.25rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 35px 80px -50px rgba(7, 33, 50, 0.65);
}

.hero-highlight-label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
  margin-bottom: 1.75rem;
}

.hero-highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.hero-highlight-list li:last-child {
  margin-bottom: 0;
}

.hero-highlight-list i {
  color: var(--secondary-color);
  font-size: 1.15rem;
}

.capabilities-section {
  background: #f6f8fb;
  padding: 110px 0 120px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

.section-lead {
  font-size: 1.05rem;
  color: #3d4a56;
}

.policy-section {
  margin-top: 40px;
}

.policy-section:first-of-type {
  margin-top: 32px;
}

.policy-section h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.policy-section p,
.policy-section ul {
  font-size: 0.98rem;
  color: #3d4a56;
}

.policy-section ul {
  padding-left: 1.25rem;
}

.link-arrow {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.link-arrow::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.portfolio-filter::-webkit-scrollbar {
  display: none;
}

.portfolio-filter .portfolio-filter-btn {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
  color: #13547a;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 1.4rem;
  font-weight: var(--font-weight-semibold);
  transition: all 0.25s ease;
  margin: 4px 6px;
}

.portfolio-filter .portfolio-filter-btn.active,
.portfolio-filter .portfolio-filter-btn:hover,
.portfolio-filter .portfolio-filter-btn:focus {
  background: linear-gradient(120deg, #13547a 0%, #1ea9a0 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: none;
}

@media (min-width: 768px) {
  .portfolio-filter {
    justify-content: flex-start;
  }
}

.capability-card {
  background: var(--white-color);
  border-radius: 22px;
  border: 1px solid #e5ecf5;
  padding: 2.25rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 84, 122, 0.35);
  box-shadow: 0 28px 60px -40px rgba(15, 41, 73, 0.45);
}

.capability-card h5 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.capability-card p {
  font-size: 0.98rem;
  color: #4c5a68;
  margin-bottom: 1.5rem;
}

.capability-meta {
  font-size: 0.9rem;
  color: #6b7a89;
  font-weight: var(--font-weight-medium);
}

.capability-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(19, 84, 122, 0.14);
  color: var(--primary-color);
  font-size: 1.5rem;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 120px 0 120px;
  }

  .hero-enterprise-shell {
    row-gap: 2rem;
  }

  .hero-panel {
    margin-left: 0;
    padding: 1.7rem;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-kpi-strip {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 130px 15px 80px;
    background: linear-gradient(140deg, #09101a 0%, #101c2b 56%, #16283b 100%);
  }

  .hero-section .row {
    text-align: left;
    justify-content: flex-start;
  }

  .hero-enterprise-shell {
    row-gap: 1.4rem;
  }

  .hero-enterprise-copy {
    max-width: none;
  }

  .hero-kicker {
    margin-bottom: 0.85rem;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.25rem);
    line-height: 1.1;
    margin-bottom: 0.95rem;
    max-width: none;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.56;
    margin-bottom: 1.35rem;
    color: rgba(244, 250, 255, 0.82);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin-bottom: 1.35rem;
  }

  .hero-btn-primary {
    width: 100%;
    min-height: 46px;
    padding: 0.78rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-btn-link {
    margin: 0;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(4, 21, 34, 0.24);
    color: rgba(245, 250, 255, 0.95);
    letter-spacing: 0.08em;
    font-size: 0.76rem;
  }

  .hero-btn-link::after {
    font-size: 0.86rem;
  }

  .hero-kpi-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-kpi-item {
    padding: 0.74rem 0.62rem;
    border-radius: 12px;
    background: rgba(4, 23, 36, 0.52);
  }

  .hero-kpi-value {
    font-size: 1rem;
    line-height: 1.12;
  }

  .hero-kpi-label {
    margin-top: 3px;
    font-size: 0.57rem;
    letter-spacing: 0.06em;
    line-height: 1.24;
  }

  .hero-panel {
    margin-left: 0;
    max-width: none;
    padding: 1rem;
    border-radius: 18px;
    gap: 0.8rem;
  }

  .hero-panel-header {
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-panel-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero-panel-status {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0.28rem 0.56rem;
  }

  .hero-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-panel-card {
    padding: 0.7rem 0.62rem;
    border-radius: 12px;
  }

  .hero-panel-card span {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.28rem;
  }

  .hero-panel-card strong {
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .hero-panel-standards {
    padding: 0.75rem 0.82rem;
    border-radius: 12px;
  }

  .hero-panel-standards h4 {
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
  }

  .hero-panel-standards ul {
    gap: 0.42rem;
  }

  .hero-panel-standards li {
    padding-left: 12px;
    font-size: 0.73rem;
    line-height: 1.32;
  }

  .hero-panel-standards li::before {
    width: 5px;
    height: 5px;
    top: 0.42rem;
  }

  .hero-panel-industries {
    gap: 6px;
  }

  .hero-panel-industries span {
    padding: 0.3rem 0.48rem;
    font-size: 0.56rem;
    letter-spacing: 0.05em;
  }

  .home-main>section+section::before {
    width: calc(100% - 1.6rem);
  }

  .home-main>section+section::after {
    width: 64px;
    height: 7px;
  }

  .capabilities-section {
    text-align: center;
  }

  .capabilities-section .link-arrow {
    justify-content: center;
    margin: 0 auto;
  }

  .capabilities-section .d-flex.flex-wrap {
    justify-content: center;
    width: 100%;
    gap: 16px;
  }

  .capabilities-section .d-flex.flex-wrap .btn {
    width: min(260px, 100%);
  }

  .capability-card {
    padding: 2rem;
  }

  .capability-icon-wrapper {
    margin-bottom: 0.6rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 120px 15px 70px;
  }

  .hero-title {
    max-width: none;
  }

  .hero-lead {
    font-size: 0.92rem;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel-card:nth-child(n + 3) {
    display: none;
  }

  .hero-panel-standards li:nth-child(n + 3) {
    display: none;
  }

  .hero-panel-industries {
    display: none;
  }

  .home-main>section+section::after {
    width: 54px;
    height: 6px;
  }

  .capabilities-section {
    padding: 90px 0 100px;
  }

  .capabilities-section .link-arrow {
    width: 100%;
    margin-top: 6px;
  }

  .capabilities-section .d-flex.flex-wrap .btn {
    width: 100%;
  }
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block>a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

/* Hide small corner badges in service cards */
.custom-block .rounded-pill {
  display: none;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay>a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--primary-color);
}


/*---------------------------------------
  FAQs              
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER               
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section-enterprise {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  color: #16344b;
  border-top: 1px solid rgba(19, 84, 122, 0.12);
}

.contact-section-enterprise::before {
  content: "";
  position: absolute;
  top: -38%;
  right: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 84, 122, 0.1) 0%, rgba(19, 84, 122, 0) 70%);
  pointer-events: none;
}

.contact-section-enterprise::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -42%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 208, 199, 0.24) 0%, rgba(128, 208, 199, 0) 72%);
  pointer-events: none;
}

.contact-enterprise-shell {
  position: relative;
  z-index: 1;
  padding: 52px;
  border-radius: 30px;
  border: 1px solid #d8e4f1;
  background: #ffffff;
  box-shadow: 0 34px 64px -52px rgba(8, 31, 48, 0.45);
}

.contact-enterprise-head {
  max-width: 760px;
  margin: 0 auto 32px;
}

.contact-enterprise-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 0.38rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 84, 122, 0.18);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #27526e;
  background: rgba(19, 84, 122, 0.07);
}

.contact-enterprise-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
  color: #0d2f46;
}

.contact-enterprise-head p {
  font-size: 1rem;
  line-height: 1.65;
  color: #4f6477;
}

.contact-enterprise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.contact-enterprise-primary {
  border-radius: 22px;
  padding: 30px;
  border: 1px solid #d8e4f1;
  background: linear-gradient(160deg, #f5f9ff 0%, #edf5ff 100%);
}

.contact-enterprise-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #40637b;
}

.contact-enterprise-address {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--title-font-family);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.24;
  color: #0f3852;
  text-decoration: none;
  word-break: break-word;
}

.contact-enterprise-address:hover {
  color: #0a567b;
}

.contact-enterprise-note {
  margin-bottom: 22px;
  color: #4f6678;
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-enterprise-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(95deg, #0f4769 0%, #176087 100%);
  color: #f4fbff;
  border: none;
  border-radius: 999px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  padding: 0.82rem 1.35rem;
  min-width: 240px;
}

.contact-enterprise-btn:hover,
.contact-enterprise-btn:focus {
  background: linear-gradient(95deg, #17567d 0%, #21739e 100%);
  color: #ffffff;
}

.contact-enterprise-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact-enterprise-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #d8e4f1;
  background: #fbfdff;
}

.contact-enterprise-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d3e5a;
  background: linear-gradient(140deg, #dbeefd 0%, #c5e2fb 100%);
}

.contact-enterprise-points strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
  color: #173c56;
}

.contact-enterprise-points p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #536a7d;
}

@media (max-width: 991.98px) {
  .contact-enterprise-shell {
    padding: 34px;
  }

  .contact-enterprise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .contact-enterprise-shell {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .contact-enterprise-primary {
    padding: 22px 18px;
  }

  .contact-enterprise-btn {
    width: 100%;
    min-width: 0;
  }
}

.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: 12px;
  height: 150px;
}

/*---------------------------------------
  PROJECT CARDS (Portfolio)
-----------------------------------------*/
.project-card .card-title {
  font-size: 1.05rem;
  /* uniform title size */
  line-height: 1.3;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* keep single line for consistent height */
}

.project-card .card-text {
  font-size: 0.95rem;
  /* uniform body size */
  line-height: 1.5;
  color: var(--p-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* clamp to two lines for consistency */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.5em * 2);
  /* reserve space for two lines */
}

.project-card .card-body {
  /* ensure consistent vertical layout */
  display: flex;
  flex-direction: column;
}

.project-card .card-img-top {
  /* optional slight radius match */
  border-top-left-radius: var(--border-radius-small);
  border-top-right-radius: var(--border-radius-small);
}

/* Revamped contact styles */
.contact-card {
  background: #ffffff;
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  padding: 32px;
  height: 100%;
}

/* .contact-form global standard input utilized */

.contact-form .form-floating>label {
  color: #64748b;
}

.contact-card h4 {
  color: var(--primary-color);
}

.contact-subtle {
  color: var(--p-color);
  opacity: 0.9;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.icon-circle {
  flex: 0 0 40px;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--section-bg-color);
  color: var(--primary-color);
}

.info-list a {
  color: var(--primary-color);
  text-decoration: none;
}

.info-list a:hover {
  color: var(--link-hover-color);
}

/* contact cta sizes managed globally */

.contact-cta .btn+.btn {
  margin-left: 10px;
}

/* Packages page */
.packages-hero {
  background: linear-gradient(125deg, rgba(14, 47, 72, 0.95) 0%, rgba(19, 84, 122, 0.9) 45%, rgba(128, 208, 199, 0.4) 100%);
  color: var(--white-color);
  padding: 140px 0 120px;
}

.packages-breadcrumb .breadcrumb {
  background: transparent;
  margin-bottom: 18px;
}

.packages-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.packages-breadcrumb .breadcrumb-item.active,
.packages-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.packages-title {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.packages-intro {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 560px;
}

.packages-hero-meta {
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.packages-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.packages-hero-stat .stat-value {
  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;
}

.packages-hero-stat .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.packages-hero-card {
  background: linear-gradient(155deg, rgba(19, 84, 122, 0.92) 0%, rgba(128, 208, 199, 0.28) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px -40px rgba(7, 33, 50, 0.55);
}

.card-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 18px;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 14px;
}

.hero-card-list i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 14px;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-heading .section-title {
  margin-bottom: 18px;
}

.pricing-section {
  background: #f6f8fb;
}

.pricing-section .section-lead {
  color: #4c5a68;
  font-size: 1.02rem;
}

.pricing-card {
  background: var(--white-color);
  border: 1px solid #e3e9f2;
  border-radius: 28px;
  box-shadow: 0 24px 50px -40px rgba(15, 41, 73, 0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -45px rgba(15, 41, 73, 0.6);
}

.pricing-card-body {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  flex: 1 1 auto;
}

.pricing-card-featured {
  background: linear-gradient(150deg, rgba(19, 84, 122, 0.12) 0%, rgba(128, 208, 199, 0.28) 100%);
  border-color: rgba(19, 84, 122, 0.35);
  box-shadow: 0 35px 90px -50px rgba(11, 33, 55, 0.6);
}

.pricing-card-featured .pricing-card-body {
  background: transparent;
}

.pricing-top {
  margin-bottom: 26px;
}

.pricing-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a7a8b;
  margin-bottom: 10px;
}

.pricing-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 14px;
  box-shadow: 0 12px 30px -20px rgba(19, 84, 122, 0.9);
}

.pricing-title {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--title-font-family);
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  margin-bottom: 14px;
}

.pricing-price .currency {
  font-size: 1.6rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-description {
  color: #485665;
  font-size: 1rem;
  margin-bottom: 12px;
}

.pricing-meta {
  font-size: 0.95rem;
  color: #6b7a89;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #3d4a56;
}

.pricing-features i {
  color: var(--secondary-color);
  font-size: 1rem;
}

.pricing-footer {
  padding: 24px 32px 30px;
  border-top: 1px solid #edf0f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* pricing footer button managed globally */

.pricing-note {
  font-size: 0.85rem;
  color: #6b7a89;
  text-align: center;
}

.package-includes {
  background: var(--white-color);
  border-radius: 26px;
  padding: 36px;
  margin-top: 64px;
  box-shadow: 0 22px 60px -48px rgba(15, 41, 73, 0.55);
}

.package-includes h4 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: #3d4a56;
}

.include-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.add-ons-section {
  background: var(--white-color);
}

.addon-card {
  background: var(--white-color);
  border: 1px solid #e3e9f2;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 20px 75px -50px rgba(15, 41, 73, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.addon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 85px -50px rgba(15, 41, 73, 0.55);
}

.addon-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(19, 84, 122, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.addon-card h5 {
  margin-bottom: 10px;
}

.addon-card p {
  color: #4c5a68;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.addon-meta {
  font-size: 0.9rem;
  color: #6b7a89;
  font-weight: var(--font-weight-medium);
}

.packages-cta {
  background: linear-gradient(90deg, rgba(19, 84, 122, 0.1) 0%, rgba(128, 208, 199, 0.2) 100%);
}

.packages-cta h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.packages-cta p {
  color: #3d4a56;
  font-size: 1rem;
  margin: 0;
}

/* packages CTA button managed globally */

@media (max-width: 992px) {
  .packages-hero {
    padding: 120px 0 100px;
  }

  .packages-hero-card {
    padding: 28px;
  }

  .pricing-card-body {
    padding: 28px;
  }

  .pricing-footer {
    padding: 20px 28px 26px;
  }
}

@media (max-width: 767px) {
  .packages-hero-meta {
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .packages-hero-stat .stat-value {
    font-size: 1.25rem;
  }

  .pricing-card {
    padding: 4px;
  }

  .pricing-title {
    font-size: 1.7rem;
  }

  .pricing-price {
    font-size: 2.6rem;
  }

  .package-includes {
    margin-top: 48px;
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .packages-hero-card {
    padding: 24px;
  }

  .packages-hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-footer .btn {
    width: 100%;
  }

  .packages-cta .btn {
    width: 100%;
  }
}

/*---------------------------------------
  FOUNDER PROFILE LAYOUT (ABOUT)              
-----------------------------------------*/
.founder-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid rgba(19, 84, 122, 0.06);
}

.founder-avatar-wrapper {
  position: relative;
  display: inline-block;
}

.founder-avatar-wrapper::after {
  content: "";
  position: absolute;
  bottom: 6%;
  right: 6%;
  width: 22px;
  height: 22px;
  background-color: #46d39d;
  border: 3px solid var(--white-color);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(70, 211, 157, 0.4);
  z-index: 2;
}

.founder-narrative {
  position: relative;
}

.founder-narrative .prose {
  font-family: var(--body-font-family);
  color: #4f6477;
}

.founder-narrative .prose p strong {
  color: var(--primary-color);
}

.founder-process-visual {
  border-top: 1px solid rgba(19, 84, 122, 0.05);
  border-bottom: 1px solid rgba(19, 84, 122, 0.05);
}

.founder-process-visual .icon-box {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 6px 16px rgba(19, 84, 122, 0.08);
}

.founder-skills-grid .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(19, 84, 122, 0.06) !important;
}

.founder-skills-grid .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(19, 84, 122, 0.12) !important;
}

.founder-philosophy {
  position: relative;
}

.badge--outline {
  display: inline-block;
  padding: 0.45em 1.2em;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 999px;
  background: rgba(19, 84, 122, 0.04);
}

.badge--accent {
  display: inline-block;
  padding: 0.45em 1.2em;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-color);
  background: rgba(19, 84, 122, 0.08);
  border-radius: 8px;
}


/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
/* Custom form uses global inputs/buttons */

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
footer.site-footer.enterprise-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-shrink: 0;
  z-index: 5;
}

.enterprise-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #09101a 0%, #05080c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enterprise-footer::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -32%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.enterprise-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding-top: 36px;
  padding-bottom: 22px;
}

.enterprise-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(19, 84, 122, 0.14);
}

.enterprise-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.enterprise-footer__logo-mark {
  width: 46px;
  height: auto;
}

.enterprise-footer__logo-text {
  height: 21px;
  width: auto;
}

.enterprise-footer__tagline {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
  line-height: 1.55;
}

.enterprise-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #09101a;
  font-size: 0.8rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 16px -8px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.enterprise-footer__cta:hover {
  color: #09101a;
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(255, 255, 255, 0.25);
}

.enterprise-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.enterprise-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.enterprise-footer__col h6 {
  margin: 0 0 4px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.enterprise-footer__link,
.enterprise-footer__meta {
  font-size: 0.9rem;
  line-height: 1.45;
}

.enterprise-footer__link {
  color: rgba(255, 255, 255, 0.65);
  font-weight: var(--font-weight-medium);
  transition: color 0.2s ease;
}

.enterprise-footer__link:hover {
  color: #ffffff;
}

.enterprise-footer__meta {
  color: rgba(255, 255, 255, 0.45);
}

.enterprise-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(19, 84, 122, 0.12);
}

.enterprise-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.enterprise-footer__bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.enterprise-footer__bottom-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.enterprise-footer__bottom-link:hover {
  color: #ffffff;
}

.enterprise-footer__link:focus-visible,
.enterprise-footer__bottom-link:focus-visible,
.enterprise-footer__cta:focus-visible {
  outline: 2px solid #0d709f;
  outline-offset: 2px;
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .enterprise-footer__top {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .enterprise-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .enterprise-footer__inner {
    padding-top: 30px;
    padding-bottom: 18px;
    gap: 18px;
  }

  .enterprise-footer__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .enterprise-footer__cta {
    width: 100%;
  }

  .enterprise-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: #ffffff;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing>.d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  .custom-block {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-section {
    padding-top: 80px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  /* Filter Controls Mobile Wrapping Fix */
  .filter-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .filter-btn {
    margin: 0 !important;
    /* Override standard right margin to rely on flex gap */
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  /* Global Footer Mobile Fixes */
  .enterprise-footer__cta .btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    font-size: 0.85rem;
    padding: 12px;
  }

  .enterprise-footer__inner {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .enterprise-footer__grid h6 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .enterprise-footer__link {
    font-size: 0.85rem;
  }

  /* Hamburger Menu Softening */
  .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    /* Remove harsh uppercase */
  }

  /* Smaller card images on very small screens */
  .custom-block-image {
    height: 160px;
  }
}

/*---------------------------------------
  ENTERPRISE CONTACT LAYOUT
-----------------------------------------*/
.contact-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  background: linear-gradient(135deg, #09101a 0%, #16283b 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact-split-layout {
    grid-template-columns: 5fr 7fr;
  }
}

.contact-split-layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.contact-pane-dark {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

@media (min-width: 992px) {
  .contact-pane-dark {
    padding: 100px 50px;
    display: flex;
    justify-content: flex-end;
  }
}

.contact-pane-dark-inner {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 100%;
}

.contact-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
}

.contact-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-timeline li {
  position: relative;
  padding-left: 20px;
  color: rgba(235, 247, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.contact-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46d39d;
  box-shadow: 0 0 8px rgba(70, 211, 157, 0.6);
}

.contact-pane-light {
  padding: 40px 20px;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .contact-pane-light {
    padding: 80px 50px 80px 0;
    display: flex;
    align-items: center;
  }
}

.contact-form-glass {
  background: #ffffff;
  border: 1px solid rgba(19, 84, 122, 0.08);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 32px 64px -20px rgba(10, 34, 52, 0.15);
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .contact-form-glass {
    margin-left: -60px;
    /* Force overlap */
  }
}

.form-control-premium {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01) !important;
}

.form-control-premium:focus {
  background: #ffffff;
  border-color: rgba(19, 84, 122, 0.3);
  box-shadow: 0 0 0 4px rgba(19, 84, 122, 0.08) !important;
}

.contact-textarea {
  min-height: 140px;
}

/*---------------------------------------
  AGENCY PORTFOLIO REDESIGN (Volatile)
-----------------------------------------*/

.site-header--agency {
  background: linear-gradient(135deg, #09101a 0%, #16283b 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Featured Card System */
.agency-featured-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(19, 84, 122, 0.06);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.agency-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.08);
}

.featured-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* Metrics Grid inside Cards */
.agency-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(19, 84, 122, 0.08);
  border-bottom: 1px solid rgba(19, 84, 122, 0.08);
}

/* Portfolio Grid Container */
.agency-project-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(19, 84, 122, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.agency-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
  border-color: rgba(19, 84, 122, 0.15);
}

.agency-project-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.agency-project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.agency-project-card:hover .agency-project-thumb img {
  transform: scale(1.04);
}

.agency-project-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.agency-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: #475569;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.agency-project-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 8px;
  margin-bottom: 12px;
}

.agency-project-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Metric Rows inside Standard Cards */
.agency-project-metrics {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.agency-project-metrics .metric {
  font-size: 0.85rem;
  color: #334155;
  font-weight: 500;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.agency-project-metrics .metric:last-child {
  margin-bottom: 0;
}

.agency-project-actions {
  margin-top: auto;
}

/* Next-Gen Filter Chip Horizon */
.agency-filter-container {
  position: relative;
  width: 100%;
}

.agency-filter-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.agency-filter-scroll::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.agency-chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.agency-chip:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.agency-chip.active {
  background: #13547a;
  border-color: #13547a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(19, 84, 122, 0.2);
}

/* Desktop Only Alignment for Filters */
@media (min-width: 992px) {
  .agency-filter-scroll {
    justify-content: center;
  }
}

/* Mobile Fine-Tuning */
@media (max-width: 767.98px) {
  .agency-metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agency-project-content {
    padding: 24px 20px;
  }
}

/* =========================================================================
   ENTERPRISE PACKAGES / PRICING PAGE
   ========================================================================= */

/* Hero Section */
.enterprise-pricing-hero {
  background: linear-gradient(180deg, rgba(19, 84, 122, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}

.badge--outline {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(19, 84, 122, 0.2);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  background: rgba(19, 84, 122, 0.05);
}

/* Button Variants Handled Globally */

/* Tier Cards */
.pricing-tier-card {
  border-radius: var(--border-radius-large, 16px);
  border: 1px solid #e5ecf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06) !important;
}

.tier-featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(19, 84, 122, 0.1) !important;
  z-index: 2;
}

.tier-featured:hover {
  transform: translateY(-4px) scale(1.02);
}

.tier-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  color: #4c5a68;
}

.tier-list li i.bi-check-circle-fill {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.tier-enterprise {
  border: 2px solid var(--dark-color) !important;
}

.tier-enterprise:hover {
  box-shadow: 0 16px 40px rgba(9, 16, 26, 0.15) !important;
}

/* Estimator UI */
.enterprise-estimator {
  border-top: 1px solid #e5ecf5;
  background-color: #fcfdfd;
}

.estimator-form {
  border-radius: 16px;
  background: white;
}

.estimator-group label.form-label {
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.estimator-form select.form-select {
  border: 2px solid #e5ecf5;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  color: #4c5a68;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
  box-shadow: none;
}

.estimator-form select.form-select:hover,
.estimator-form select.form-select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.estimator-form input[type=range] {
  height: 8px;
  background: #e5ecf5;
  border-radius: 4px;
}

.estimator-form input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(19, 84, 122, 0.3);
  margin-top: -8px;
}

/* Custom Switches */
.custom-switch {
  padding-left: 60px;
  position: relative;
  min-height: 48px;
  /* Increased for better touch target and spacing */
  display: flex;
  align-items: center;
}

.custom-switch .form-check-input {
  width: 48px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  background-color: #cbd5e1;
  border-color: transparent;
  cursor: pointer;
  z-index: 1;
}


.custom-switch .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-switch .form-check-label {
  cursor: pointer;
  color: #4c5a68;
}

/* Sticky Output Drawer */
.estimator-output {
  border-radius: 16px;
  position: sticky;
  top: 100px;
  transition: all 0.3s ease;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* Table Comparison */
.enterprise-compare .table-light th {
  background-color: #f8f9fa;
  color: var(--dark-color);
  font-weight: 700;
  border-bottom: 2px solid #e5ecf5;
}

.enterprise-compare .table th.ps-4 {
  background-color: white;
}

/* Process Timeline */
.process-step {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .process-step::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e5ecf5;
    z-index: -1;
  }

  .col-md-3:last-child .process-step::after {
    display: none;
  }
}

/* Trust Cards */
.trust-card {
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
}

/* Custom Accordion FAQ */
.custom-accordion .accordion-item {
  border-color: #e5ecf5;
  margin-bottom: 1rem;
}

.custom-accordion .accordion-button {
  padding: 1.25rem 1.5rem;
  color: var(--dark-color);
  background-color: white;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(19, 84, 122, 0.03);
}

.custom-accordion .accordion-body {
  padding: 0 1.5rem 1.25rem;
  line-height: 1.6;
}

/* General Layout Fixes for Mobile */
@media (max-width: 991.98px) {
  .tier-featured {
    transform: none;
  }

  .tier-featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 767.98px) {
  .enterprise-tiers .row [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .tier-featured {
    transform: none;
    margin-top: 2rem;
  }

  .estimator-output {
    position: relative;
    top: 0;
    margin-top: 2.5rem;
  }

  .custom-switch {
    padding-left: 56px;
  }
}

/* ==========================================================================
   Print Styles for Invoice
   ========================================================================== */
@media print {

  /* Hide everything except the print container */
  body>*:not(#print-invoice-container):not(script) {
    display: none !important;
  }

  #print-invoice-container {
    display: block !important;
    visibility: visible !important;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: white;
  }

  body {
    background-color: white !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color: #212529 !important;
  }

  @page {
    margin: 0.75in;
  }
}