
/* FILM DRAFTS - GEOMETRIC BALANCE THEME CSS */
:root {
  --bg: #F5F8FA;
  --bg2: rgba(255, 255, 255, 0.6);
  --bg3: rgba(234, 238, 244, 0.4);
  --card: rgba(255, 255, 255, 0.7);
  --gold: #0B5D7A;
  --gold2: #0B1F33;
  --white: #162146;
  --off: #2a2b2e;
  --dim: #4A6572;
  --dim2: #9c92a3;
  --border: rgba(0,0,0,0.08);
  --heading: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --px: clamp(16px, 4vw, 48px);
  --max: 1440px;
}

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

html {
  scroll-behavior: smooth;
  background-color: #F5F8FA;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(234, 244, 248, 0.95) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(225, 238, 244, 0.8) 0%, transparent 55%),
    radial-gradient(circle at 95% 95%, rgba(11, 93, 122, 0.05) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(11, 93, 122, 0.015) 0%, transparent 60%);
  background-attachment: fixed;
}

body {
  position: relative;
  isolation: isolate;
  background: transparent;
  color: #0B1F33;
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 4px 16px rgba(11, 93, 122, 0.03);
}
::-webkit-scrollbar-thumb {
  background: var(--gold2);
}

/* UTILS & CONTAINERS */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
  z-index: 1;
}

.label {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  
  color: var(--gold);
}

.h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--gold);
}

.h2 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--gold);
}

.h3 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
  color: var(--gold);
}

.body-lg {
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.6;
  color: var(--dim);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 40px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease;
  min-height: 48px;
  box-shadow: 0 4px 12px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255,255,255,0.4);
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05) contrast(1.02);
  box-shadow: 0 6px 18px rgba(11, 93, 122, 0.16);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 6px rgba(11, 93, 122, 0.04);
  transition: transform 100ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 100ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-gold {
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.btn-gold:hover {
  background: linear-gradient(180deg, #0F789E 0%, #0D6C8E 100%); box-shadow: 0 4px 12px rgba(11, 93, 122, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}
.btn-ghost {
  background: rgba(11, 93, 122, 0.05);
  border: 1px solid rgba(11, 93, 122, 0.15);
  color: var(--gold);
}
.btn-ghost:hover {
  background: rgba(11, 93, 122, 0.1);
  border-color: rgba(11, 93, 122, 0.3);
  color: var(--gold);
}

/* NAV */
.nav {
  position: fixed;
  top: 24px;
  left: 24px;
  right: 24px;
  max-width: var(--max);
  margin: 0 auto;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(11, 18, 32, 0.04);
  box-sizing: border-box;
  overflow: visible;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(11, 18, 32, 0.12);
  box-shadow: 0 8px 32px rgba(11, 18, 32, 0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-text {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 600;
  color: #0B1F33;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-brand-text span {
  color: var(--gold);
}
.nav-r {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  color: #0B1F33;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link.active {
  color: var(--gold);
  font-weight: 600;
}

@media (min-width: 769px) and (max-width: 1140px) {
  .nav {
    padding: 0 16px;
    left: 14px;
    right: 14px;
  }
  .nav-r {
    gap: 14px;
  }
  .nav-link {
    font-size: 13px;
  }
  .nav-cta {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  .nav {
    top: 12px;
    left: 12px;
    right: 12px;
    height: 60px;
    padding: 0 16px;
  }
  .nav-r {
    display: none;
  }
}

/* NAV DROPDOWN */
.nav-dd {
  position: relative;
}
.nav-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dd-caret {
  font-size: 9px;
  transition: transform 0.3s ease;
  display: inline-block;
  color: inherit;
  opacity: 0.6;
}
.nav-dd-trigger:hover .nav-dd-caret, .nav-dd-trigger.active .nav-dd-caret {
  opacity: 1;
}
.nav-dd-caret.up {
  transform: rotate(180deg);
}
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(11, 18, 32, 0.06);
  border-radius: 12px;
  padding: 8px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 48px -12px rgba(11, 18, 32, 0.12);
}
.nav-dd-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}
.nav-dd:hover .nav-dd-menu, .nav-dd-menu.open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dd-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dd-name {
  color: #0B1F33;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.nav-dd-price {
  color: #64748B;
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-dd-item:hover {
  background: rgba(11, 18, 32, 0.02);
}
.nav-dd-item:hover .nav-dd-name {
  color: var(--gold);
}
.nav-dd-item:hover .nav-dd-price {
  color: var(--gold);
}
.nav-dd-all {
  display: block;
  width: calc(100% - 16px);
  margin: 8px 8px 4px;
  background: #f8fafc;
  border: 1px solid rgba(11, 18, 32, 0.04);
  border-radius: 6px;
  cursor: pointer;
  padding: 10px 14px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0B1F33;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dd-all:hover {
  background: #f1f5f9;
  color: var(--gold);
}
.nav-cta {
  border-radius: 30px;
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 24px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.nav-cta:hover {
  background: linear-gradient(180deg, #0F789E 0%, #0D6C8E 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 16px rgba(11, 93, 122, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.nav-cta:active {
  transform: translateY(0.5px);
  box-shadow: 0 1px 4px rgba(11, 93, 122, 0.15);
  transition: all 0.1s ease;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #0B1F33;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  border-radius: 2px;
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.mob-menu {
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  position: fixed;
  inset: 12px;
  top: 84px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 48px 32px;
  overflow-y: auto;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.06);
  box-shadow: 0 24px 48px rgba(11, 18, 32, 0.08);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}
.mob-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mob-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 500;
  color: #0B1F33;
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}
.mob-link:hover {
  color: var(--gold);
}
.mob-link:active {
  transform: translateY(1px) scale(0.98);
  transition: transform 100ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  padding: 140px var(--px) 50px;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}


.hero-img-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
  transform: translateY(-8px);
  filter: drop-shadow(0 16px 36px rgba(11, 18, 32, 0.05));
}
.hero-img-col svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.hero-wordmark { display: inline-block; padding: 6px 16px; background: rgba(11, 93, 122, 0.08); border: 1px solid rgba(11, 93, 122, 0.15); border-radius: 30px; text-transform: uppercase;
  font-family: var(--heading);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  
  margin-bottom: 18px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 56px;
  padding-top: 36px;
  max-width: var(--max);
}
.stat {
  padding: 0 28px;
}
.stat:first-child {
  padding-left: 0;
  border-left: none !important;
}
.stat + .stat {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.stat-n {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 34px);
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 15px;
  color: var(--dim);
  margin-top: 6px;
}

/* SECTIONS */
.section {
  padding: 68px 0;
}
.section-alt {
  background: rgba(234, 238, 244, 0.5);
}
.section-head {
  margin-bottom: 36px;
}


/* Ensure text inside overridden sections remains readable against light background */
section[style*="#0B5D7A"] .section-head,
section[style*="#0B5D7A"] .label,
section[style*="#0B5D7A"] .h2,
section[style*="#0B5D7A"] .h2[style*="color: white"],
section#products .section-head,
section#products .section-head[style*="color: white"],
section#products .label,
section#products .h2,
section#products .h3,
section#products .h3[style*="color: white"] {
  color: #0B1F33 !important;
}

section[style*="#0B5D7A"] .body-lg,
section[style*="#0B5D7A"] p[style*="rgba(255,255,255"],
section#products .body-lg {
  color: var(--dim) !important;
}

section[style*="#0B5D7A"] .label[style*="color: white"] {
  color: #0B1F33 !important;
}

/* CHOOSE YOUR PATH */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.svc-card, .port-card, .blog-card, .tier-card, .prod-card, .path-card, .exp-card { background: rgba(255, 255, 255, 0.65); border-radius: 24px;
   
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  box-shadow: inset 0px 1px 4px rgba(255,255,255,1), 0 8px 32px rgba(11,18,32,0.03); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.svc-card:hover, .port-card:hover, .blog-card:hover, .tier-card:hover, .prod-card:hover, .path-card:hover, .exp-card:hover {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 4px 16px rgba(11, 93, 122, 0.03);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: inset 0px 1px 6px rgba(255,255,255,0.9), 0 12px 32px rgba(0,0,0,0.08);
}
.path-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.path-tag {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold);
  
  margin-bottom: 12px;
  display: block;
}
.path-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 12px;
}
.path-desc {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
}

/* SERVICE GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
}
.svc-badge {
  display: inline-block;
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  
  padding: 3px 10px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.svc-num {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.svc-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-price {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 6px;
}
.svc-sub {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.5;
  flex: 1;
}
.svc-cta {
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  box-shadow: 0 8px 24px rgba(11, 93, 122, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card:hover .svc-cta {
  box-shadow: 0 12px 32px rgba(11, 93, 122, 0.6);
  background: linear-gradient(180deg, #0F789E 0%, #0D6C8E 100%); box-shadow: 0 4px 12px rgba(11, 93, 122, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* PORTFOLIO / CASE STUDIES PREVIEW */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: transparent;
}
.port-tag {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  
  color: var(--gold);
  margin-bottom: 12px;
}
.port-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.3;
}
.port-challenge {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 18px;
}
.port-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.metric-pill {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: .12em;
  
  color: var(--dim);
}
.port-cta {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  
  color: var(--gold);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* PROCESS */
.process-list {
  display: flex;
  flex-direction: column;
}
.process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 36px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: start;
}
.process-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.p-num {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold);
  padding-top: 3px;
}
.p-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--gold);
  margin-bottom: 6px;
}
.p-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
}

/* SAMPLE REQUEST */
.sample-section {
  background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 52px;
  border-radius: 4px;
}
.terms-box {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 4px 16px rgba(11, 93, 122, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  max-height: 200px;
  overflow-y: auto;
  font-size: 15px;
  color: var(--dim);
  line-height: 1.7;
  margin: 16px 0;
}
.terms-box::-webkit-scrollbar {
  width: 3px;
}
.terms-box::-webkit-scrollbar-thumb {
  background: var(--gold2);
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 20px;
}
.checkbox-row input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.checkbox-row label {
  font-size: 14px;
  color: var(--gold);
  cursor: pointer;
  line-height: 1.5;
}

/* PRICING TABLE */
.price-tbl-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.price-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.price-tbl th {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  
  color: var(--dim);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}
.price-tbl th:last-child, .price-tbl td:last-child {
  text-align: right;
}
.price-tbl td {
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: var(--gold);
}
.price-tbl td:nth-child(2) {
  color: var(--gold);
  font-family: var(--heading);
  font-weight: 600;
}
.price-tbl td:nth-child(3) {
  color: var(--dim);
  font-size: 15px;
}
.price-tbl tr:hover td {
  color: var(--gold);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-photo {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
   
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
  transition: filter .4s ease, transform .5s ease;
}
.about-photo:hover img {
  
  transform: scale(1.03);
}
.about-photo-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 40%, transparent 40%, rgba(0,0,0,0.55) 100%), linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.7) 100%);
}
.cred-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cred-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cred-key {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .10em;
  
  color: var(--dim);
  flex-shrink: 0;
  width: 110px;
}
.cred-val {
  font-size: 13px;
  color: var(--gold);
  text-align: right;
  line-height: 1.5;
}
.sidebar-point {
  border-left: 2px solid var(--gold);
  padding: 12px 16px;
  margin-bottom: 10px;
  background: rgba(184, 117, 117, 0.04);
}
.sidebar-point p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65;
  font-style: italic;
}

/* PRODUCTS */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.prod-card:hover {
  border-color: var(--gold);
}
.prod-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.35;
}
.prod-snippet {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 14px;
}
.prod-readmore {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.prod-price {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 14px;
}
.prod-btn {
  display: block;
  text-align: center;
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 40px;
  cursor: pointer;
  transition: background .2s;
}
.prod-btn:hover {
  background: linear-gradient(180deg, #0F789E 0%, #0D6C8E 100%); box-shadow: 0 4px 12px rgba(11, 93, 122, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* BLOG INDEX */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card:hover .blog-title {
  color: var(--gold);
}
.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 4px 16px rgba(11, 93, 122, 0.03);
  position: relative;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
}
.see-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.see-more-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.see-more-btn:hover {
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.see-more-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}
.blog-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-cat {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  
  color: var(--gold);
  margin-bottom: 8px;
}
.blog-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color .2s;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
}
.blog-meta {
  font-size: 15px;
  color: var(--dim);
  font-family: var(--heading);
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--gold);
  
  margin-top: 10px;
  transition: gap .2s;
}
.blog-link:hover {
  gap: 9px;
}

/* LEAD MAGNET */
.lm-wrap {
  background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.lm-form {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.lm-form-row {
  display: flex;
}
.lm-input {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 4px 16px rgba(11, 93, 122, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-right: none;
  color: var(--gold);
  padding: 12px 18px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  width: 250px;
}
.lm-input:focus {
  border-color: var(--gold);
}
.lm-input.invalid {
  border-color: #c96060;
}
.lm-error {
  font-size: 15px;
  color: #c96060;
  margin-top: 8px;
  font-family: var(--heading);
  letter-spacing: .04em;
}
.lm-success {
  background: rgba(184, 117, 117, 0.04);
  border: 1px solid var(--gold);
  padding: 24px 28px;
  max-width: 420px;
}
.lm-success-icon {
  font-family: var(--heading);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}
.lm-success-heading {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -.01em;
  
  margin-bottom: 10px;
}
.lm-success-body {
  color: var(--gold);
  font-size: 14px;
  color: var(--dim);
  line-height: 1.65;
}
.lm-btn {
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.lm-btn:hover {
  background: linear-gradient(180deg, #0F789E 0%, #0D6C8E 100%); box-shadow: 0 4px 12px rgba(11, 93, 122, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}
.lm-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

/* CLIENT LOGOS MARQUEE */
.clients-section {
  padding: 56px var(--px);
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.clients-head {
  max-width: var(--max);
  margin: 0 auto 40px;
  text-align: center;
}
.clients-eyebrow {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.clients-heading {
  font-family: var(--heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1.35;
  max-width: 760px;
  margin: 0 auto 8px;
  letter-spacing: -.005em;
}
.clients-sub {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  user-select: none;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}
.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px !important;
  height: 130px !important;
  background: rgba(255, 255, 255, 0.4) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(11, 93, 122, 0.08) !important;
  border-radius: 16px !important;
  padding: 8px 16px !important;
  box-shadow: 0 4px 15px rgba(11, 93, 122, 0.03) !important;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(11, 93, 122, 0.35) !important;
  box-shadow: 0 8px 24px rgba(11, 93, 122, 0.1) !important;
}
.logo-card img {
  max-width: 280px !important;
  height: 110px !important;
  object-fit: contain !important;
  filter: brightness(0) opacity(0.8) !important;
  mix-blend-mode: normal !important;
  transition: all 0.3s ease;
}
.logo-card:hover img {
  filter: brightness(0) opacity(1.0) !important;
}

/* Individual visual balance scaling for logos targeting their actual artwork area */
.logo-card img[src*="Worldwide"] {
  transform: scale(1.45) !important;
}
.logo-card img[src*="Ransom"] {
  transform: scale(1.30) !important;
}
.logo-card img[src*="Filmio"] {
  transform: scale(1.35) !important;
}
.logo-card img[src*="Glass"] {
  transform: scale(1.22) !important;
}
.logo-card img[src*="Buff"] {
  transform: scale(1.25) !important;
}
.logo-card img[src*="Sweetest"] {
  transform: scale(1.45) !important;
}
.logo-card img[src*="apaj"] {
  transform: scale(1.38) !important;
}

@media (max-width: 1024px) {
  .logo-card {
    width: 250px !important;
    height: 110px !important;
    padding: 6px 10px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.4) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-color: rgba(11, 93, 122, 0.08) !important;
  }
  .logo-card img {
    height: 92px !important;
    max-width: 230px !important;
  }
}

@media (max-width: 768px) {
  .logo-card {
    width: 210px !important;
    height: 95px !important;
    padding: 4px 8px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.4) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-color: rgba(11, 93, 122, 0.08) !important;
  }
  .logo-card img {
    height: 80px !important;
    max-width: 190px !important;
  }
}

@media (max-width: 480px) {
  .logo-card {
    width: 170px !important;
    height: 80px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
  }
  .logo-card img {
    height: 48px !important;
    max-width: 130px !important;
  }
}
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media(prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 160s; }
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
}
.ci-label {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  
  color: var(--gold);
  margin-bottom: 5px;
}
.ci-val {
  font-size: 14px;
  color: var(--gold);
}
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.f-label {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  
  color: var(--dim);
  display: block;
  margin-bottom: 6px;
}
.f-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--gold);
  padding: 12px 15px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
  border-radius: 0;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.f-input:focus {
  border-color: var(--gold);
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.f-submit {
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 14px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.f-submit:hover {
  background: linear-gradient(180deg, #0F789E 0%, #0D6C8E 100%); box-shadow: 0 4px 12px rgba(11, 93, 122, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}
.optional-addons {
  background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  border-radius: 4px;
}
.addon-label {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  padding: 40px 0 24px;
  background: rgba(234, 238, 244, 0.5); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 36px;
}
.footer-brand {
  background: radial-gradient(circle at 18px 50%, #ffffff 0%, #ffffff 16px, transparent 28px);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-brand video {
  width: 36px;
  height: 36px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: hue-rotate(220deg) brightness(1.3);
}
.footer-brand-text {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}
.footer-tagline {
  font-size: 15px;
  color: var(--dim);
  margin-top: 8px;
  max-width: 240px;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex: 1;
}
.footer-col h5 {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 9px;
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-col p {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 9px;
  max-width: 260px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--dim);
  font-family: var(--font-sans);
  line-height: 1.6;
  width: 100%;
}
.footer-trust {
  color: var(--dim);
  font-style: normal;
  letter-spacing: .01em;
  max-width: 100%;
  width: 100%;
  line-height: 1.6;
  opacity: 0.85;
}

/* MODAL / POPUPS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-box {
  background: var(--bg2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}
.modal-box::-webkit-scrollbar {
  width: 3px;
}
.modal-box::-webkit-scrollbar-thumb {
  background: var(--gold2);
}
.modal-header {
  padding: 32px 44px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  position: sticky;
  top: 0;
  background: var(--bg2);
  z-index: 10;
}
.modal-close {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--dim);
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 40px;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal-body {
  color: var(--gold);
  padding: 28px 44px 44px;
}
.modal-tag {
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  
  color: var(--gold);
  margin-bottom: 10px;
}
.modal-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--gold);
  line-height: 1.2;
}
.modal-text {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.75;
}
.modal-text p {
  margin-bottom: 14px;
}
.modal-text p:last-child {
  margin-bottom: 0;
}

/* CUSTOM CURSOR */




/* RESPONSIVE BREAKPOINTS (FIXED SCROLL AND OVERFLOWS) */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-r {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding-top: 24px;
  }
  .stat {
    padding: 0 12px;
    text-align: center;
  }
  .stat:nth-child(even) {
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }
  .stat:nth-child(3) {
    border-left: none !important;
  }
  .stat + .stat {
    border-left: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .path-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lm-wrap {
    padding: 32px 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .lm-form-row {
    flex-direction: column;
    gap: 10px;
  }
  .lm-input {
    width: 100%;
    border-right: 1px solid var(--border);
  }
  .lm-btn {
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 28px;
  }
  .footer-cols {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    width: 100%;
  }
}

@media (max-width: 480px) {
 /*UTILS & PADDING ADJUSTMENTS FOR 360px-430px SCREEN SIZES */
  :root {
    --px: 16px;
  }
  .wrap {
    padding: 0 16px !important;
  }
  .section {
    padding: 48px 0 !important;
  }
  header.section, .hero {
    padding-top: 110px !important;
    padding-bottom: 42px !important;
  }
  .section-head {
    margin-bottom: 16px !important;
  }
  .footer {
    padding: 32px 0 16px !important;
  }
  .footer-cols {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .h1 {
    font-size: clamp(28px, 8vw, 36px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 12px !important;
  }
  .h2 {
    font-size: clamp(24px, 6vw, 28px) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }
  body, p, .body-sm {
    font-size: clamp(14px, 4vw, 15.5px) !important;
    line-height: 1.55 !important;
  }
  .body-lg {
    font-size: clamp(15px, 4.2vw, 16.5px) !important;
    line-height: 1.55 !important;
  }
  .addon-label, .modal-tag {
    font-size: clamp(10px, 3vw, 11px) !important;
  }

 /*COMPACT BUTTONS & CTAs */
  .btn, .f-submit, .prod-btn, .toast-cta {
    border-radius: 40px;
    padding: 10px 18px !important;
    font-size: 11px !important;
    min-height: 38px !important;
  }
  .nav-cta {
    border-radius: 30px !important;
    padding: 8px 18px !important;
    font-size: 12px !important;
    min-height: 38px !important;
  }

 /*NAV & MOBILE MENU */
  .nav {
    height: 60px !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
  }
  .mob-menu {
    top: 76px !important;
    inset: 12px !important;
    padding: 32px 24px !important;
    gap: 20px !important;
    border-radius: 12px !important;
  }
  .mob-link {
    font-size: 18px !important;
  }

 /*LOGO SIZES */
  

 /*CARD REDUCED PADDING & SPACING (360px-430px screens) */
  .svc-card, .port-card, .tier-card, .prod-card, .exp-card, .path-card, .blog-card {
    padding: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
  }

 /*CARD TITLE REDUCTIONS */
  .svc-title, .port-title, .tier-title, .prod-title, .exp-title, .path-title, .blog-title {
    font-size: clamp(18px, 5.5vw, 22px) !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }

 /*CARD DESCRIPTIONS, LINE-HEIGHTS, & LINE CLAMPING */
  .svc-sub, .prod-snippet, .path-desc, .blog-excerpt, .port-challenge {
    font-size: 13px !important;
    line-height: 1.45 !important;
    color: var(--dim) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

 /*CARD HOVER STYLES & TRANSITIONS (SAFE RESETS) */
  .svc-card:hover, .port-card:hover, .tier-card:hover, .prod-card:hover, .exp-card:hover, .path-card:hover, .blog-card:hover {
    transform: none !important;
  }

 /*REDUCED GRIDS GAPS */
  .svc-grid, .portfolio-grid, .prod-grid, .path-grid, .blog-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px 24px;

    gap: 16px !important;
    background: transparent !important;
  }

 /*PRICE DENSITIES */
  .svc-price, .prod-price {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

 /*TAWK.TO MOBILE RESIZE */
  iframe[src*="tawk.to"], div[id*="tawk"], iframe[title*="chat widget"] {
    transform: scale(0.75) !important;
    transform-origin: bottom right !important;
    bottom: 10px !important;
    right: 10px !important;
  }

 /*BLOG IMAGE SPACING */
  .blog-img {
    margin-bottom: 10px !important;
  }

 /*OTHER SECTIONS */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-top: 24px !important;
    padding-top: 16px !important;
  }
  .stat:nth-child(even) {
    border-left: none;
  }
  .price-tbl th, .price-tbl td {
    padding: 8px 4px;
    font-size: 13px;
  }

 /*RESPONSIVE INLINE GRIDS AND TEMPLATE STACKING OVERRIDES */
  div[style*="grid-template-columns: repeat(auto-fit, minmax(360px, 1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  div[style*="grid-template-columns: repeat(auto-fit, minmax(360px, 1fr))"] > div {
    padding: 18px 16px !important;
  }

  div[style*="grid-template-columns: 1.2fr .8fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  div[style*="grid-template-columns: 1.2fr .8fr"] > div > div[style*="position: sticky"],
  div[style*="grid-template-columns: 1.2fr .8fr"] > div > div[style*="padding: 32px"] {
    position: static !important;
    padding: 20px 16px !important;
    margin-top: 24px !important;
  }

 /*Case study grids stacking and padding reduction */
  div[style*="grid-template-columns: 1.2fr .8fr"][style*="padding: 40px"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px 16px !important;
  }
  div[style*="grid-template-columns: 1.2fr .8fr"][style*="padding: 40px"] > div[style*="border-left"] {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid var(--border) !important;
    padding-top: 20px !important;
  }

 /*Contact and NDA form responsive rows and card padding */
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 20px"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
  }
  div[style*="background: var(--bg2)"][style*="padding: 40px"] {
    padding: 20px 16px !important;
  }
}

/* AMBIENT GLOW SYSTEM */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 88% 18%, rgba(11, 93, 122, 0.18), transparent 32%),
    radial-gradient(circle at 92% 78%, rgba(6, 174, 213, 0.16), transparent 35%),
    radial-gradient(circle at 50% 115%, rgba(11, 200, 140, 0.08), transparent 40%),
    radial-gradient(circle at 5% 90%, rgba(184, 117, 117, 0.12), transparent 25%);
  filter: blur(32px);
  opacity: 0.9;
  animation: filmdraftsAmbientGlow 22s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

body::after {
  opacity: 0.5;
  filter: blur(48px);
  transform: scale(1.15);
  animation-duration: 32s;
  animation-direction: alternate-reverse;
}

@keyframes filmdraftsAmbientGlow {
  0% { transform: translate3d(-3%, -2%, 0) scale(1); }
  50% { transform: translate3d(4%, 4%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -4%, 0) scale(1.03); }
}

@media (max-width: 768px) {
  body::before,
  body::after {
    inset: -35%;
    opacity: 0.65;
    filter: blur(34px);
    background:
      radial-gradient(circle at 90% 20%, rgba(11, 93, 122, 0.18), transparent 35%),
      radial-gradient(circle at 85% 85%, rgba(6, 174, 213, 0.16), transparent 40%),
      radial-gradient(circle at 10% 90%, rgba(184, 117, 117, 0.12), transparent 30%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none !important;
  }
}

/* FRAMER-STYLE ENTRANCE ANIMATION */
@keyframes framerFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-inner {
  animation: framerFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.svc-card, .port-card, .blog-card, .prod-card, .path-card, .cs-card {
  animation: framerFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-fill-mode: both;
}

.svc-card:nth-child(1) { animation-delay: 0.1s; }
.svc-card:nth-child(2) { animation-delay: 0.2s; }
.svc-card:nth-child(3) { animation-delay: 0.3s; }
.svc-card:nth-child(4) { animation-delay: 0.4s; }
.svc-card:nth-child(5) { animation-delay: 0.5s; }
.svc-card:nth-child(6) { animation-delay: 0.6s; }

/* Subtle light fields */
.section-alt {
  background: rgba(234, 244, 248, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(11, 93, 122, 0.08);
  border-bottom: 1px solid rgba(11, 93, 122, 0.08);
}
@media (max-width: 480px) {
  .svc-card, .port-card, .tier-card, .prod-card, .path-card, .blog-card {
    flex: 0 0 85% !important;
    scroll-snap-align: center;
  }
}

/* TABS CSS */
.svc-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.svc-tab {
  background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--dim);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.svc-tab:hover {
  background: #e2e8f0;
}
.svc-tab.active {
  background: linear-gradient(180deg, #0D6C8E 0%, #0B5D7A 100%); box-shadow: 0 2px 8px rgba(11, 93, 122, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: var(--gold);
}

/* Sticky Scroll Carousel for Services */
.scroll-pinned-services {
  position: relative;
  padding: 60px 0 !important;/*Spacious native section padding */
  box-sizing: border-box;
}

.svc-panels {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 120px;/*Determines scroll distance */
  padding-bottom: 0;
}

.services-btn-wrapper {
  padding-top: 40px;
}

.svc-panel-wrapper {
  position: sticky;
  display: flex;
  justify-content: center;
  width: 100%;
}

.svc-panel-wrapper.wrapper-1 {
  top: 120px;
  z-index: 1;
}

.svc-panel-wrapper.wrapper-2 {
  top: 160px;
  z-index: 2;
}

.svc-panel-wrapper.wrapper-3 {
  top: 200px;
  z-index: 3;
}

.svc-panel {
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.45) !important; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border) !important;
  border-radius: 28px !important;
  box-shadow: inset 0 1px 96px -24px rgba(11, 93, 122, 0.3) !important;
  padding: 32px 48px !important; 
  display: grid !important;
  grid-template-columns: 1fr 1fr;/*50/50 split like the reference */
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

/* Responsive inner typography and spacings */
.svc-panel .svc-title {
  font-size: clamp(24px, 3vw, 40px) !important;
  margin-bottom: clamp(16px, 2vw, 24px) !important;
  font-family: var(--heading) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  line-height: 1.15 !important;
}

.svc-panel .svc-sub {
  font-size: clamp(15px, 1.5vw, 18px) !important;
  margin-bottom: clamp(16px, 2.5vw, 24px) !important;
  color: var(--dim) !important;
  line-height: 1.6 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}


.svc-panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.svc-panel-right img {
  max-height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 16px;
  transform: scale(1.1); 
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .svc-panels {
    gap: 100px !important;
    padding-bottom: 60px !important;
  }
  .svc-panel-wrapper {
    position: sticky !important;
  }
  .svc-panel-wrapper.wrapper-1 {
    top: 90px !important;
  }
  .svc-panel-wrapper.wrapper-2 {
    top: 130px !important;
  }
  .svc-panel-wrapper.wrapper-3 {
    top: 170px !important;
  }
  .svc-panel {
    height: auto !important;
    min-height: 350px !important;
    padding: 28px 32px !important;
    gap: 24px !important;
  }
  .svc-panel-right {
    height: 280px !important;
  }
}

@media (max-width: 767px) {
  .svc-panels {
    gap: 80px !important;/*Good vertical gap for scrolling stacking effect on mobile */
    padding-bottom: 60px !important;
  }
  .services-btn-wrapper {
    padding-top: 20px !important;
  }
  .svc-panel-wrapper {
    position: sticky !important;
  }
  .svc-panel-wrapper.wrapper-1 {
    top: 80px !important;
    z-index: 1;
  }
  .svc-panel-wrapper.wrapper-2 {
    top: 110px !important;
    z-index: 2;
  }
  .svc-panel-wrapper.wrapper-3 {
    top: 140px !important;
    z-index: 3;
  }
  .svc-panel {
    grid-template-columns: 1fr !important;
    height: auto !important;
    padding: 20px 16px !important;/*Compact interior card padding */
    gap: 20px !important;/*Reduced interior vertical spacing */
    border-radius: 20px !important;
  }
  .svc-panel-right {
    height: 180px !important;/*Compact image container to minimize empty space */
  }
  .svc-panel .svc-title {
    font-size: 20px !important;/*Proportional card heading */
    margin-bottom: 8px !important;
  }
  .svc-panel .svc-sub {
    font-size: 13.5px !important;/*Cleaner sub-text */
    margin-bottom: 14px !important;
  }
}

.svc-bullets {
  list-style: none;
  margin-bottom: 24px;
}
.svc-bullets li {
  font-family: var(--body);
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* HOMEPAGE PRODUCT SCROLL */
.prod-grid {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  gap: 24px !important;
  padding: 16px 0 32px !important;
  margin: 0 !important;
  width: 100% !important;
  scrollbar-width: thin;
}
.prod-card {
  flex: 0 0 310px !important;
  width: 310px !important;
  max-width: 310px !important;
  scroll-snap-align: start !important;
  background: rgba(255, 255, 255, 0.7) !important; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(11, 93, 122, 0.08) !important;
  border-radius: 24px !important;
  padding: 24px !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 15px rgba(11, 93, 122, 0.02) !important;
}
.prod-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(11, 93, 122, 0.2) !important;
  box-shadow: 0 12px 32px rgba(11, 93, 122, 0.08) !important;
}
.test-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  -webkit-overflow-scrolling: touch;
  margin: 0 -16px;
  padding: 0 16px 24px;
  gap: 16px;
}
.test-card { background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  flex: 0 0 85%;
  max-width: 340px;
  scroll-snap-align: start;
   
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  text-decoration: none;
}
@media (min-width: 768px) {
  .prod-grid, .test-grid {
    margin: 0;
    padding: 0 0 24px;
    scroll-padding-left: 0;
  }
  .prod-card, .test-card { background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* GLOBAL LIGHT FRAMER TRANSITION AND MODERN OVERRIDES */
div[style*="border-radius: 4px"],
div[style*="border-radius:4px"],
div[style*="border-radius: 4px;"],
div[style*="border-radius:4px;"],
div[style*="border-radius: 6px"],
div[style*="border-radius: 5px"] {
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

/* Remove dark background on image wrappers so they look fully light glassy */
div[style*="background: #070707"],
div[style*="background:#070707"] {
  background: rgba(11, 93, 122, 0.04) !important;
  border: 1px solid rgba(11, 93, 122, 0.08) !important;
  border-radius: 12px !important;
}

/* Upgrade standard inputs to modern elegant pill inputs */
input, textarea, select {
  border-radius: 12px !important;
  background: var(--bg2) !important;
  border: 1px solid rgba(11, 93, 122, 0.15) !important;
  color: var(--white) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(11, 93, 122, 0.15) !important;
}

/* Upgrade standard button style elements to modern glassy blue or pill buttons */
button, .btn, .btn-gold, .f-submit, .prod-btn {
  border-radius: 40px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 14px rgba(11, 93, 122, 0.12) !important;
}

button:hover, .btn:hover, .btn-gold:hover, .f-submit:hover, .prod-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 93, 122, 0.25) !important;
}

/* Animated SVG Logo */
.logo-svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo-svg:hover {
  transform: scale(1.05);
}
.logo-svg .bar-1 {
  animation: logoBarGrow1 2.5s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.logo-svg .bar-2 {
  animation: logoBarGrow2 2.5s ease-in-out infinite alternate;
  transform-origin: bottom;
  animation-delay: 0.3s;
}
.logo-svg .bar-3 {
  animation: logoBarGrow3 2.5s ease-in-out infinite alternate;
  transform-origin: bottom;
  animation-delay: 0.6s;
}
@keyframes logoBarGrow1 {
  0% { transform: scaleY(0.8); }
  100% { transform: scaleY(1.2); }
}
@keyframes logoBarGrow2 {
  0% { transform: scaleY(0.9); }
  100% { transform: scaleY(1.15); }
}
@keyframes logoBarGrow3 {
  0% { transform: scaleY(0.85); }
  100% { transform: scaleY(1.1); }
}

/* Reviews Testimonials Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Tablet View: 2 columns, compact cards and fonts, keeping desktop styling and readability */
@media (min-width: 768px) and (max-width: 1024px) {
  .reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .review-card {
    padding: 20px !important;
    border-radius: 16px !important;
  }
  .review-stars {
    font-size: 15px !important;
    margin-bottom: 12px !important;
    letter-spacing: 1.5px !important;
  }
  .review-text {
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
  }
  .review-author {
    font-size: 13.5px !important;
  }
}

/* Mobile View: Smooth horizontal swipe carousel with scroll-snap and compact, readable card styles */
@media (max-width: 767px) {
  #testimonials {
    overflow: hidden !important;
  }
  .reviews-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;/*Firefox */
    gap: 12px !important;
    margin-top: 24px !important;
    padding-bottom: 8px !important;
    margin-left: calc(-1 * var(--px)) !important;
    margin-right: calc(-1 * var(--px)) !important;
    padding-left: var(--px) !important;
    padding-right: var(--px) !important;
    width: auto !important;
  }
  .reviews-grid::-webkit-scrollbar {
    display: none !important;/*Chrome, Safari, Opera */
  }
  .review-card {
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
    padding: 16px !important;
    border-radius: 12px !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .review-stars {
    font-size: 12px !important;
    margin-bottom: 8px !important;
    letter-spacing: 1px !important;
  }
  .review-text {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }
  .review-author {
    font-size: 12px !important;
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.4) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(11, 93, 122, 0.12) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: 0 4px 15px rgba(11, 93, 122, 0.02) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 93, 122, 0.3) !important;
  box-shadow: 0 10px 28px rgba(11, 93, 122, 0.06) !important;
}
.review-stars {
  color: #1F9D78 !important;/*Elegant green-blue stars */
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim) !important;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white) !important;/*deep dark blue */
}

header:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) > svg:nth-of-type(1) {
  transform: scale(1.08) !important;
  transform-origin: center right !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

header:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) > svg:nth-of-type(1):hover {
 /*No reactive mouse scaling as requested to keep the animation purely autonomous */
  transform: scale(1.08) !important;
}

@media (max-width: 991px) {
  header:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) > svg:nth-of-type(1) {
    transform: scale(1.02) !important;
    transform-origin: center !important;
  }
  header:nth-of-type(1) > div:nth-of-type(1) > div:nth-of-type(2) > svg:nth-of-type(1):hover {
    transform: scale(1.02) !important;
  }
}

/* Premium Framer-style independent card floating animations */
@keyframes float-card-1 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(0.15deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-card-2 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-0.2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-card-3 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-3.5px) rotate(-0.1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-card-4 {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(0.15deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.floating-card-1 {
  animation: float-card-1 5.5s ease-in-out infinite;
  transform-origin: 110px 100px;
  pointer-events: none;
}

.floating-card-2 {
  animation: float-card-2 6.5s ease-in-out infinite;
  transform-origin: 497px 87px;
  pointer-events: none;
}

.floating-card-3 {
  animation: float-card-3 6s ease-in-out infinite;
  transform-origin: 102px 325px;
  pointer-events: none;
}

.floating-card-4 {
  animation: float-card-4 7s ease-in-out infinite;
  transform-origin: 507px 297px;
  pointer-events: none;
}



/* NEW FOOTER REDESIGN V3 */
.footer-blue,
footer:nth-of-type(1) {
  padding: 0;
  background: #0B5D7A;
  width: 100%;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  overflow: hidden;
}
.footer-blue-inner,
footer:nth-of-type(1) > div:nth-of-type(1) {
  position: relative;
  background: transparent;
  padding: 80px 0 60px;/*Reduced vertical space for a clean, horizontal visual band layout */
  overflow: hidden;
  width: 100%;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.footer-blue-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle at top right, rgba(6, 174, 213, 0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Helper display utilities */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

.footer-v2-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;/*Perfectly anchors giant branding to the bottom-left alongside content */
  gap: 48px;
  width: 100%;
}

.footer-v2-left {
  width: 62%;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 10;
}

.footer-v2-giant-wordmark {
  user-select: none;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  line-height: 0.76;/*Super tight stacked line-height for a high-end editorial feel */
  margin-left: -12px;/*Flush layout visual correction */
  margin-top: auto;
  width: 100%;
}

.footer-v2-giant-wordmark .wordmark-line {
  font-family: var(--heading);
  font-size: clamp(140px, 14vw, 215px);/*Confidently fills the left-side space, touching edges */
  font-weight: 800;
  color: #ffffff;
  opacity: 0.12;/*Elegant subtle decorative opacity */
  letter-spacing: -0.05em;
  line-height: 0.78;
}

.footer-v2-right {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;/*Incredibly tight, compact vertical gap for a cohesive connected composition */
  position: relative;
  z-index: 20;
}

.footer-v2-top-row {
  display: flex;
  flex-direction: column;
  gap: 20px;/*Tight compact spacing between email and columns */
}

.footer-v2-email-wrapper {
  margin-bottom: 0;
}

.footer-v2-email-link {
  font-size: 14.5px;/*Clean 13px-15px range */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  display: inline-block;
  opacity: 0.95;
}

.footer-v2-email-link:hover {
  opacity: 1;
  border-bottom-style: solid;
  border-color: transparent;
}

.footer-v2-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;/*Clean 2-column navigation column layout */
  gap: 24px;
}

.footer-v2-nav-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;/*Clean vertical spacing between links */
}

.footer-v2-nav-col a {
  font-size: 14.5px;/*Perfect 14px-16px range */
  color: #ffffff;
  text-decoration: none;
  line-height: 1.3;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0.85;
  font-family: var(--body);
  font-weight: 500;
  display: inline-block;
  width: fit-content;
}

.footer-v2-nav-col a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-v2-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);/*Sleek separator */
  padding-top: 16px;
  margin-top: 4px;/*Integrated directly below navigation as a compact block */
}

.footer-v2-disclaimer {
  font-size: 9.5px;/*Compact 9px-11px */
  line-height: 1.45;
  color: #ffffff;
  opacity: 0.6;
  margin: 0;
  max-width: 380px;/*Prevents text from being too wide and overlapping left logo */
}

.footer-v2-copyright {
  font-size: 9.5px;/*Compact 9px-11px */
  line-height: 1.45;
  color: #ffffff;
  opacity: 0.5;
  margin: 0;
  max-width: 380px;
}

/* Tablet view styling */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-blue-inner {
    padding: 60px 32px 50px;
  }
  .footer-v2-container {
    gap: 32px;
  }
  .footer-v2-left {
    width: 55%;
  }
  .footer-v2-right {
    width: 42%;
  }
  .footer-v2-giant-wordmark .wordmark-line {
    font-size: clamp(110px, 10vw, 140px);
  }
}

/* Mobile view styling */
@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .footer-blue-inner {
    padding: 48px 24px 48px;/*Slightly raised bottom padding to prevent chat overlap */
  }
  .footer-v2-container {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  
  .footer-v2-right {
    width: 100%;
    gap: 20px;
  }
  
 /*Mobile header: Row 1 */
  .footer-v2-mobile-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  
  .footer-v2-mobile-brand {
    font-size: 14px;/*Clickable email link matches requested 13-15px */
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    opacity: 0.95;
  }
  
  .footer-v2-mobile-copyright {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    font-weight: 500;
  }
  
 /*Navigation columns on Mobile (Row 2) */
  .footer-v2-nav-cols {
    grid-template-columns: 1fr 1fr;/*2 equal columns as requested */
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .footer-v2-nav-col a {
    font-size: 14px;/*Matches requested 14-15px */
    line-height: 1.6;
    opacity: 0.9;
  }
  
 /*Disclaimer (Row 3) */
  .footer-v2-bottom-row {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
    gap: 0;
  }
  
  .footer-v2-disclaimer {
    font-size: 9.5px;/*Matches requested 9-10px */
    line-height: 1.45;
    opacity: 0.65;
    max-width: 320px;/*Beautifully wraps into 4-5 short lines */
  }
  
 /*Mobile giant stacked branding at the very bottom */
  .footer-v2-mobile-wordmark {
    display: flex !important;
    flex-direction: column;
    line-height: 0.78;
    margin-top: 24px;
    margin-bottom: 0;
    margin-left: -4px;
    user-select: none;
    pointer-events: none;
    width: 100%;
  }
  
  .footer-v2-mobile-wordmark .wordmark-line {
    font-family: var(--heading);
    font-size: clamp(80px, 22vw, 110px);/*Massive but keeps safe from any horizontal scrollbar */
    font-weight: 800;
    color: #ffffff;
    opacity: 0.12;
    letter-spacing: -0.05em;
  }
}

/* IMAGE DIMENSIONS AND LAYOUT STABILITY */
img {
  max-width: 100%;
  height: auto;
}

/* Service / Product Cards */
.svc-card img, .prod-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Trust Logos */
.trust-logos img {
  width: auto;
  height: 40px;
  max-width: 150px;
  object-fit: contain;
}

/* Blog Covers */
.blog-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}


/* KEYBOARD NAVIGATION SUPPORT */
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dd:focus-within .nav-dd-caret {
  transform: rotate(180deg);
}
.nav-link:focus, .nav-dd-item:focus, .btn:focus, .nav-cta:focus, .burger:focus {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* User applied Focus Mode rule */
section#faq:nth-of-type(8) {
  background-color: #000000;
}

/* User applied Focus Mode rule updated */
section#faq:nth-of-type(8) {
  background: linear-gradient(135deg, rgba(245, 248, 250, 0.8) 0%, rgba(225, 238, 244, 0.6) 100%) !important; border: 1px solid rgba(11, 93, 122, 0.06);
}

/* Fallback for FAQ section background color */
#faq {
  background: linear-gradient(135deg, rgba(245, 248, 250, 0.8) 0%, rgba(225, 238, 244, 0.6) 100%) !important; border: 1px solid rgba(11, 93, 122, 0.06);
}
/*
  color: #ffffff;
}
#faq .faq-item {
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 4px 16px rgba(11, 93, 122, 0.03);
}


footer:nth-of-type(1) {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}

footer:nth-of-type(1) > div:nth-of-type(1) {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

/* User applied Focus Mode rule updated for FAQ border radius */
section#faq:nth-of-type(8) {
  border-radius: 40px;
}
#faq {
  border-radius: 40px;
}


/* COMPREHENSIVE RESPONSIVE AND MOBILE IMPROVEMENTS */
@media (max-width: 768px) {
 /*Typography Scale Overrides */
  body {
    font-size: 15px !important;
  }
  
  .h1, h1, .service-hero h1 {
    font-size: 34px !important;/*Range: 32px to 42px */
    line-height: 1.15 !important;
    letter-spacing: -.02em !important;
  }
  
  .h2, h2, .section-head h2 {
    font-size: 26px !important;/*Range: 26px to 34px */
    line-height: 1.2 !important;
    letter-spacing: -.02em !important;
  }
  
  .h3, h3 {
    font-size: 20px !important;/*Range: 20px to 26px */
    line-height: 1.25 !important;
  }
  
  p, .body-lg, .path-desc, .service-p, .service-hero-p, .clients-sub, .product-p, .blog-p {
    font-size: 15px !important;/*Range: 15px to 16px */
    line-height: 1.5 !important;
  }

 /*Spacing & Padding Reductions for Cleaner Layouts */
  .section, section, .clients-section, .contact-section {
    padding: 36px var(--px) !important;
  }
  
  .section-head, .clients-head, .product-head {
    margin-bottom: 24px !important;
  }
  
 /*Reduced Card Padding, Heights & Radii */
  .path-card, .service-card, .product-card, .pricing-card, .about-card, .blog-card, .faq-item, .svc-card, .port-card, .tier-card, .prod-card, .exp-card {
    padding: 16px !important;
    border-radius: 12px !important;
    min-height: auto !important;
  }

 /*Section Rounded Corners */
  section, .section, #faq {
    border-radius: 20px !important;
  }
  footer:nth-of-type(1), footer:nth-of-type(1) > div:nth-of-type(1), .footer-blue, .footer-blue-inner {
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

 /*Blog Cards Layout - Stacked exactly 1 card per row */
  .blog-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    overflow-x: visible !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .blog-card {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0 !important;
    scroll-snap-align: none !important;
  }

 /*Image height 170px to 190px */
  .blog-img {
    height: 180px !important;
    aspect-ratio: auto !important;
    border-radius: 8px !important;
    margin-bottom: 12px !important;
  }

  .blog-img img {
    height: 100% !important;
    object-fit: cover !important;
  }

 /*Post Title maximum of 2 lines */
  .blog-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }

 /*Post Excerpt maximum of 3 lines */
  .blog-excerpt {
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }
}

/* Mobile View: Smooth horizontal swipe carousel for blog cards swiping in the opposite direction (row-reverse) */
@media (max-width: 767px) {
  #blog {
    overflow: hidden !important;
  }
  .blog-grid {
    display: flex !important;
    flex-direction: row-reverse !important;/*Opposite direction, starts on the right, first card on the right */
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;/*Firefox */
    gap: 12px !important;
    margin-top: 24px !important;
    padding-bottom: 8px !important;
    margin-left: calc(-1 * var(--px)) !important;
    margin-right: calc(-1 * var(--px)) !important;
    padding-left: var(--px) !important;
    padding-right: var(--px) !important;
    width: auto !important;
  }
  .blog-grid::-webkit-scrollbar {
    display: none !important;/*Chrome, Safari, Opera */
  }
  .blog-card {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 85% !important;
    scroll-snap-align: end !important;/*Align to the end (right side) when swiping in row-reverse */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
}

/* FAQ Responsive Typography Scaling */
#faq .faq-item summary {
  font-size: 16px !important;
}
#faq .faq-item p.body-lg {
  font-size: 14.5px !important;
  line-height: 1.55 !important;
}
#faq .faq-item summary span {
  font-size: 18px !important;
}

/* FAQ Tablet View (min-width: 768px and max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  #faq .faq-item summary {
    font-size: 15px !important;
  }
  #faq .faq-item p.body-lg {
    font-size: 13.5px !important;
  }
  #faq .faq-item summary span {
    font-size: 16px !important;
  }
}

/* FAQ Mobile View (max-width: 767px) */
@media (max-width: 767px) {
  #faq .faq-item summary {
    font-size: 14px !important;
  }
  #faq .faq-item p.body-lg {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  #faq .faq-item summary span {
    font-size: 15px !important;
  }
}


/* GLOBAL INTERACTION ACCESSIBILITY & MOTION ADJUSTMENTS */
:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px !important;
}

/* FILM-THEMED BACKGROUND PARTICLES */
#fd-background-particles {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.fd-particle {
  position: absolute;
  color: #0B5D7A;/*Monochrome subtle FilmDrafts blue */
  fill: currentColor;
  stroke: currentColor;
  pointer-events: none;
  will-change: transform;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
 /*Disable decorative dynamic background motion */
  .fd-particle {
    transform: none !important;
  }
  
 /*Disable button/link hover lift and active/press scale */
  .btn, .nav-cta, .nav-link, .mob-link, .svc-card, .port-card, .blog-card, .cs-card, .tier-card, .prod-card, .path-card, .exp-card, .nav-dd-item, .nav-dd-all {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
  }
  
 /*Keep only simple instant text color / border feedback on hover */
  .nav-link:hover, .mob-link:hover, .nav-dd-item:hover, .nav-dd-all:hover {
    color: var(--gold) !important;
  }
  
 /*Disable mobile menu animation */
  .mob-menu {
    transition: none !important;
    transform: none !important;
  }
}



      


/* SERVICE CASE STUDY PROOF */
.service-case-study {border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.service-case-study-head {max-width:820px;margin-bottom:28px;}
.service-case-study-head .h2 {margin-top:10px;}
.service-case-study-card {position:relative;display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);overflow:hidden;background:var(--card);border:1px solid var(--border);border-radius:18px;color:inherit;text-decoration:none;box-shadow:0 14px 40px rgba(11,31,51,.06);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;}
.service-case-study-card:hover {transform:translateY(-3px);border-color:rgba(11,93,122,.24);box-shadow:0 20px 52px rgba(11,31,51,.1);}
.service-case-study-media {min-height:320px;background:var(--bg3);overflow:hidden;}
.service-case-study-media img {display:block;width:100%;height:100%;min-height:320px;object-fit:cover;transition:transform .45s cubic-bezier(.16,1,.3,1);}
.service-case-study-card:hover .service-case-study-media img {transform:scale(1.025);}
.service-case-study-content {display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,4vw,54px);}
.service-case-study-meta {margin-bottom:12px;font-family:var(--heading);color:var(--gold);font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;}
.service-case-study-content h3 {max-width:720px;margin-bottom:14px;font-family:var(--heading);color:#000;font-size:clamp(22px,2.4vw,32px);line-height:1.18;letter-spacing:-.02em;}
.service-case-study-content p {max-width:720px;margin-bottom:22px;color:var(--dim);font-size:14px;line-height:1.7;}
.service-case-study-link {display:inline-flex;align-items:center;gap:8px;color:var(--gold);font-family:var(--heading);font-size:14px;font-weight:700;}
@media (max-width:820px){.service-case-study-card{grid-template-columns:1fr;border-radius:14px}.service-case-study-media,.service-case-study-media img{min-height:0;aspect-ratio:16/9}.service-case-study-content{padding:24px}}
@media (prefers-reduced-motion:reduce){.service-case-study-card,.service-case-study-media img{transition:none!important;transform:none!important}}

/* NEW USECASE MODULE STYLES (REPLACING TESTIMONIALS) */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.usecase-card {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(11, 93, 122, 0.08) !important;
  border-radius: 20px !important;
  padding: 32px 24px !important;
  box-shadow: 0 4px 15px rgba(11, 93, 122, 0.02) !important;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.usecase-card:hover {
  border-color: rgba(11, 93, 122, 0.2) !important;
  box-shadow: 0 8px 24px rgba(11, 93, 122, 0.06) !important;
  background: rgba(255, 255, 255, 0.85) !important;
}
.usecase-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.usecase-icon {
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  background: rgba(11, 93, 122, 0.04);
  border: 1px solid rgba(11, 93, 122, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase-title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
  color: #0B1F33;
}
.usecase-text {
  font-family: var(--body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dim);
  font-style: normal; /* Removes the italic review style */
}

/* Tablet View */
@media (min-width: 768px) and (max-width: 1024px) {
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .usecase-card {
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }
  .usecase-title { font-size: 15px !important; }
  .usecase-text { font-size: 14px !important; line-height: 1.55 !important; }
}

/* Mobile View: Smooth horizontal swipe carousel with scroll-snap */
@media (max-width: 767px) {
  #testimonials {
    overflow: hidden !important;
  }
  .usecase-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 12px !important;
    margin-top: 24px !important;
    padding-bottom: 8px !important;
    margin-left: calc(-1 * var(--px)) !important;
    margin-right: calc(-1 * var(--px)) !important;
    padding-left: var(--px) !important;
    padding-right: var(--px) !important;
    width: auto !important;
  }
  .usecase-grid::-webkit-scrollbar {
    display: none !important;
  }
  .usecase-card {
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
    padding: 24px 20px !important;
    border-radius: 16px !important;
    min-height: auto !important;
  }
  .usecase-icon {
    width: 40px; height: 40px; margin-bottom: 12px;
  }
  .usecase-title { font-size: 15px !important; }
  .usecase-text { font-size: 14px !important; line-height: 1.5 !important; }
}

/* Custom override for Project Scopes cards */
.path-card {
  background: #F1F7F9 !important;
}
.path-card:hover {
  background: #F1F7F9 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Specific override to remove curves and background for products section */
#products,
#testimonials {
  border-radius: 0 !important;
  background: transparent !important;
}

/* ===== FILMDRAFTS FINAL RESPONSIVE UI/UX CONSISTENCY PASS =====
   Typography follows the supplied UI/UX guide at the compact end of its
   recommended ranges, while keeping primary reading copy at 16px for accessibility.
   Homepage hero is intentionally excluded from this pass.
*/
:root {
  --fd-accent-heading: #0D698B;
  --fd-accent-deep: #0B5D7A;
  --fd-ink: #0B1F33;
  --fd-section-space-desktop: 52px;
  --fd-section-space-tablet: 44px;
  --fd-section-space-mobile: 34px;
}
body { font-size: 16px; font-weight: 400; line-height: 1.5; }
.wrap { padding-left: clamp(20px, 3vw, 40px); padding-right: clamp(20px, 3vw, 40px); }

.section { padding-top: var(--fd-section-space-desktop) !important; padding-bottom: var(--fd-section-space-desktop) !important; }
.section-head { margin-bottom: 28px !important; }
.section .h1 { font-size: 34px !important; line-height: 1.12 !important; }
.section .h2 { font-size: 28px !important; line-height: 1.18 !important; }
.section .h3 { font-size: 20px !important; line-height: 1.25 !important; }
.section .body-lg { font-size: 16px !important; line-height: 1.55 !important; }
.label { font-size: 12px !important; line-height: 1.35 !important; letter-spacing: .14em !important; }
.btn, .svc-cta, .prod-btn, .nav-cta { font-size: 14px !important; }

#fd-page-content > header.section, header.section:has(.cs-back-link) { padding-top: 124px !important; padding-bottom: 44px !important; }
section.section:has(#contact-h1) { padding-top: 124px !important; }

#products .section-head .h2, #products .section-head .body-lg { color: #0D698B !important; }

.stats-bar {
  width: min(100%, 980px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}
.stat { padding: 0 20px !important; text-align: center !important; }
.stat:first-child { padding-left: 20px !important; }
.stat-n { font-size: 30px !important; line-height: 1.05 !important; }
.stat-l { font-size: 14px !important; line-height: 1.4 !important; }

.path-grid { gap: 18px !important; margin-top: 28px !important; }
.path-card { padding: 24px !important; }
.path-tag { font-size: 12px !important; line-height: 1.35 !important; margin-bottom: 10px !important; }
.path-title { font-size: 20px !important; line-height: 1.25 !important; margin-bottom: 10px !important; }
.path-desc { font-size: 14px !important; line-height: 1.55 !important; }
.path-card .btn { margin-top: 18px !important; }

.scroll-pinned-services { padding: 48px 0 !important; }
.scroll-pinned-services .section-head { margin-bottom: 28px !important; }
.scroll-pinned-services .section-head .h2 { font-size: 28px !important; letter-spacing: -.025em !important; }
.svc-panels { gap: 60px !important; padding-bottom: 0 !important; }
.svc-panel { height: 340px !important; padding: 28px 36px !important; gap: 28px !important; border-radius: 22px !important; }
.svc-panel .svc-title { font-size: 24px !important; line-height: 1.2 !important; margin-bottom: 12px !important; }
.svc-panel .svc-sub { font-size: 16px !important; line-height: 1.55 !important; margin-bottom: 14px !important; -webkit-line-clamp: 4 !important; }
.svc-bullets { margin-bottom: 16px !important; }
.svc-bullets li { font-size: 14px !important; margin-bottom: 6px !important; }
.services-btn-wrapper { padding-top: 24px !important; }
.svc-panel-right img { transform: scale(1.02) !important; }

#products { padding-top: 46px !important; padding-bottom: 46px !important; }
#products .section-head { margin-bottom: 24px !important; }
#products .prod-grid { gap: 18px !important; padding-top: 0 !important; padding-bottom: 18px !important; }
#products .prod-card { padding: 22px !important; border-radius: 18px !important; }
#products .prod-card .h3, #products .prod-title { font-size: 20px !important; line-height: 1.25 !important; }
#products .prod-card p, #products .prod-snippet { font-size: 14px !important; line-height: 1.5 !important; }
#products .prod-price { font-size: 24px !important; }
#products .btn { min-height: 44px !important; padding-top: 11px !important; padding-bottom: 11px !important; }

#testimonials { padding-top: 46px !important; padding-bottom: 46px !important; }
#testimonials .section-head { margin-bottom: 24px !important; }
.usecase-grid { gap: 18px !important; margin-top: 26px !important; }
.usecase-card { padding: 22px 20px !important; border-radius: 16px !important; }
.usecase-header { margin-bottom: 12px !important; }
.usecase-icon { width: 42px !important; height: 42px !important; margin-bottom: 10px !important; }
.usecase-title { font-size: 16px !important; line-height: 1.3 !important; }
.usecase-text { font-size: 14px !important; line-height: 1.55 !important; }

#blog { padding-top: 48px !important; padding-bottom: 48px !important; }
.blog-grid { gap: 20px !important; }
.blog-card { border-radius: 18px !important; }
.blog-title { font-size: 20px !important; line-height: 1.3 !important; }
.blog-desc, .blog-card p { font-size: 14px !important; line-height: 1.55 !important; }
.blog-cat { font-size: 12px !important; line-height: 1.3 !important; }

#faq { padding-top: 48px !important; padding-bottom: 48px !important; }
#faq .faq-list { margin-top: 28px !important; gap: 10px !important; }
#faq .faq-item { padding: 14px 18px !important; border-radius: 10px !important; }
#faq .faq-item summary { font-size: 16px !important; line-height: 1.4 !important; }
#faq .faq-item summary span { font-size: 16px !important; }
#faq .faq-item p.body-lg { font-size: 16px !important; line-height: 1.5 !important; margin-top: 10px !important; }

.svc-grid { gap: 18px !important; }
.svc-card, .port-card, .tier-card, .exp-card { padding: 24px !important; border-radius: 18px !important; }
.svc-card .svc-title, .svc-title { font-size: 20px !important; line-height: 1.25 !important; }
.svc-card .svc-sub, .svc-sub { font-size: 14px !important; line-height: 1.55 !important; }
.svc-price { font-size: 20px !important; }

.service-case-study-head { margin-bottom: 22px !important; }
.service-case-study-content { padding: 32px !important; }
.service-case-study-content h3 { font-size: 24px !important; }
.service-case-study-content p, .cs-body p { font-size: 16px !important; line-height: 1.55 !important; }
.cs-heading { font-size: 20px !important; line-height: 1.3 !important; }
.cs-meta-label, .snap-label, .service-case-study-meta { font-size: 12px !important; }
.cs-meta-value, .snap-value, .doc-caption, .cs-back-link, .related-links a { font-size: 14px !important; }

.footer-v2-disclaimer, .footer-v2-copyright { font-size: 12px !important; line-height: 1.45 !important; }
.footer-v2-email-link, .footer-v2-nav-col a { font-size: 14px !important; }

@media (min-width: 1100px) {
  #products .prod-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: visible !important;
    scrollbar-width: none !important;
  }
  #products .prod-card { width: auto !important; max-width: none !important; flex: none !important; }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .wrap { padding-left: 28px !important; padding-right: 28px !important; }
  .section { padding-top: var(--fd-section-space-tablet) !important; padding-bottom: var(--fd-section-space-tablet) !important; }
  #fd-page-content > header.section, header.section:has(.cs-back-link) { padding-top: 112px !important; padding-bottom: 40px !important; }
  section.section:has(#contact-h1) { padding-top: 112px !important; }
  .section .h1 { font-size: 28px !important; }
  .section .h2 { font-size: 22px !important; }
  .section .h3 { font-size: 20px !important; }
  .section .body-lg { font-size: 16px !important; }
  .section-head { margin-bottom: 24px !important; }

  .stats-bar { width: min(100%, 760px) !important; grid-template-columns: repeat(4, minmax(0,1fr)) !important; }
  .stat { padding: 0 12px !important; }
  .stat:first-child { padding-left: 12px !important; }
  .stat-n { font-size: 26px !important; }
  .stat-l { font-size: 13px !important; }

  .scroll-pinned-services { padding: 42px 0 !important; }
  .scroll-pinned-services .section-head .h2 { font-size: 22px !important; }
  .svc-panels { gap: 40px !important; padding-bottom: 20px !important; }
  .svc-panel-wrapper.wrapper-1 { top: 92px !important; }
  .svc-panel-wrapper.wrapper-2 { top: 116px !important; }
  .svc-panel-wrapper.wrapper-3 { top: 140px !important; }
  .svc-panel { min-height: 300px !important; height: auto !important; padding: 24px 26px !important; gap: 22px !important; }
  .svc-panel .svc-title { font-size: 20px !important; }
  .svc-panel .svc-sub { font-size: 16px !important; line-height: 1.5 !important; }
  .svc-panel-right { height: 230px !important; }

  #products .prod-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    overflow: visible !important;
    gap: 16px !important;
  }
  #products .prod-card { width: auto !important; max-width: none !important; flex: none !important; }
  .usecase-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 16px !important; }
}

@media (max-width: 767px) {
  .wrap { padding-left: 18px !important; padding-right: 18px !important; }
  .section { padding-top: var(--fd-section-space-mobile) !important; padding-bottom: var(--fd-section-space-mobile) !important; }
  #fd-page-content > header.section, header.section:has(.cs-back-link) { padding-top: 98px !important; padding-bottom: 30px !important; }
  section.section:has(#contact-h1) { padding-top: 98px !important; }
  .section .h1 { font-size: 24px !important; line-height: 1.18 !important; }
  .section .h2 { font-size: 20px !important; line-height: 1.22 !important; }
  .section .h3 { font-size: 18px !important; line-height: 1.25 !important; }
  .section .body-lg { font-size: 16px !important; line-height: 1.5 !important; }
  .label { font-size: 12px !important; letter-spacing: .12em !important; }
  .btn, .svc-cta, .prod-btn { font-size: 14px !important; min-height: 44px !important; padding: 10px 18px !important; }
  .section-head { margin-bottom: 18px !important; }

  .stats-bar {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    row-gap: 22px !important;
    padding-top: 24px !important;
    margin-top: 34px !important;
  }
  .stat { padding: 0 10px !important; border-left: none !important; }
  .stat:first-child { padding-left: 10px !important; }
  .stat:nth-child(even) { border-left: 1px solid rgba(11,31,51,.08) !important; }
  .stat-n { font-size: 24px !important; }
  .stat-l { font-size: 12px !important; margin-top: 5px !important; }

  .path-grid { grid-template-columns: 1fr !important; gap: 12px !important; margin-top: 20px !important; }
  .path-card { padding: 18px !important; border-radius: 16px !important; }
  .path-tag { font-size: 12px !important; }
  .path-title { font-size: 18px !important; }
  .path-desc { font-size: 14px !important; line-height: 1.5 !important; }

  .scroll-pinned-services { padding: 34px 0 !important; }
  .scroll-pinned-services .section-head { margin-bottom: 18px !important; }
  .scroll-pinned-services .section-head .h2 { font-size: 20px !important; }
  .svc-panels { gap: 14px !important; padding-bottom: 0 !important; }
  .svc-panel-wrapper, .svc-panel-wrapper.wrapper-1, .svc-panel-wrapper.wrapper-2, .svc-panel-wrapper.wrapper-3 {
    position: relative !important;
    top: auto !important;
  }
  .svc-panel {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 18px !important;
    gap: 14px !important;
    border-radius: 16px !important;
  }
  .svc-panel .svc-title { font-size: 18px !important; line-height: 1.25 !important; margin-bottom: 8px !important; }
  .svc-panel .svc-sub { font-size: 14px !important; line-height: 1.5 !important; margin-bottom: 10px !important; -webkit-line-clamp: 4 !important; }
  .svc-bullets { margin-bottom: 10px !important; }
  .svc-bullets li { font-size: 14px !important; margin-bottom: 5px !important; }
  .svc-panel-right { height: auto !important; max-height: 190px !important; aspect-ratio: 16 / 9; }
  .svc-panel-right img { max-height: 190px !important; transform: none !important; }
  .services-btn-wrapper { padding-top: 16px !important; }

  #products, #testimonials, #blog, #faq { padding-top: 34px !important; padding-bottom: 34px !important; }
  #products .section-head, #testimonials .section-head { margin-bottom: 18px !important; }

  #products .prod-grid { gap: 12px !important; padding: 0 0 12px !important; }
  #products .prod-card {
    flex: 0 0 82% !important;
    width: 82% !important;
    max-width: 300px !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }
  #products .prod-card .h3, #products .prod-title { font-size: 18px !important; }
  #products .prod-card p, #products .prod-snippet { font-size: 14px !important; line-height: 1.5 !important; }

  .usecase-grid { gap: 12px !important; margin-top: 18px !important; }
  .usecase-card { flex-basis: 82% !important; padding: 18px !important; border-radius: 14px !important; }
  .usecase-icon { width: 38px !important; height: 38px !important; margin-bottom: 8px !important; }
  .usecase-title { font-size: 14px !important; }
  .usecase-text { font-size: 14px !important; line-height: 1.5 !important; }

  .blog-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .blog-card { border-radius: 16px !important; }
  .blog-title { font-size: 18px !important; }
  .blog-card p, .blog-desc { font-size: 14px !important; line-height: 1.5 !important; }

  #faq .faq-list { margin-top: 18px !important; gap: 8px !important; }
  #faq .faq-item { padding: 12px 14px !important; }
  #faq .faq-item summary { font-size: 14px !important; line-height: 1.4 !important; }
  #faq .faq-item summary span { font-size: 14px !important; }
  #faq .faq-item p.body-lg { font-size: 16px !important; line-height: 1.5 !important; }

  .svc-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .svc-card, .port-card, .tier-card, .exp-card { padding: 18px !important; border-radius: 16px !important; }
  .svc-card .svc-title, .svc-title { font-size: 18px !important; }
  .svc-card .svc-sub, .svc-sub { font-size: 14px !important; line-height: 1.5 !important; }

  .service-case-study-head { margin-bottom: 18px !important; }
  .service-case-study-content { padding: 20px !important; }
  .service-case-study-content h3 { font-size: 18px !important; }
  .service-case-study-content p, .cs-body p { font-size: 16px !important; line-height: 1.5 !important; }
  .cs-heading { font-size: 18px !important; }
  .cs-meta-label, .snap-label, .service-case-study-meta { font-size: 12px !important; }
  .cs-meta-value, .snap-value, .doc-caption, .cs-back-link, .related-links a { font-size: 14px !important; }

  .footer-blue-inner { padding-top: 38px !important; padding-bottom: 38px !important; }
  .footer-v2-disclaimer, .footer-v2-copyright { font-size: 12px !important; }
  .footer-v2-email-link, .footer-v2-nav-col a { font-size: 14px !important; }
}


/* FINAL HANDOFF: PERSISTENT HEADER LOADER + MOBILE SERVICE FLOW */
#fd-page-loader {
  position: fixed;
  top: 104px; /* Strictly below floating header */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100; /* Deliberately below fixed header (z-index: 500) */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  background: #ffffff;
  transition: opacity 0.12s ease, visibility 0.12s ease;
}
#fd-page-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fd-loader-shell {
  width: min(100% - 48px, 1140px);
  margin: 0 auto;
  padding: 32px 0 60px;
}
.fd-skeleton {
  position: relative;
  display: block;
  overflow: hidden;
  background: #edf2f7;
  border-radius: 8px;
}
.fd-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: fdSkeletonShimmer 1.4s ease-in-out infinite;
}
@keyframes fdSkeletonShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Realistic Content-Shaped Skeleton Elements */
.fd-loader-kicker {
  width: 120px;
  height: 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.fd-loader-title {
  width: min(580px, 82vw);
  height: 40px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.fd-loader-copy {
  width: min(720px, 92vw);
  height: 14px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.fd-loader-copy-2 {
  width: min(600px, 78vw);
  height: 14px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.fd-loader-copy-short {
  width: min(400px, 52vw);
  height: 14px;
  border-radius: 6px;
  margin-bottom: 32px;
}
.fd-loader-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
}
.fd-loader-btn-1 {
  width: 160px;
  height: 44px;
  border-radius: 30px;
}
.fd-loader-btn-2 {
  width: 140px;
  height: 44px;
  border-radius: 30px;
}
.fd-loader-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.fd-loader-card {
  min-height: 280px;
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(11, 93, 122, 0.08);
  display: flex;
  flex-direction: column;
}
.fd-loader-card-img {
  height: 150px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
}
.fd-loader-card-tag {
  height: 14px;
  width: 70px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.fd-loader-card-line {
  height: 18px;
  width: 80%;
  border-radius: 6px;
  margin-bottom: 10px;
}
.fd-loader-card-line.short {
  width: 50%;
  height: 12px;
}

@media (max-width: 1024px) {
  .fd-loader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  #fd-page-loader {
    top: 80px; /* Mobile header offset */
  }
  .fd-loader-shell {
    width: calc(100% - 32px);
    padding: 20px 0 40px;
  }
  .fd-loader-title {
    height: 32px;
    width: 90%;
    margin-bottom: 14px;
  }
  .fd-loader-copy {
    width: 98%;
  }
  .fd-loader-copy-2 {
    width: 88%;
  }
  .fd-loader-copy-short {
    width: 65%;
    margin-bottom: 24px;
  }
  .fd-loader-btns {
    margin-bottom: 36px;
  }
  .fd-loader-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fd-loader-card:nth-child(3) {
    display: none;
  }
  .fd-loader-card {
    min-height: 220px;
    padding: 16px;
  }
  .fd-loader-card-img {
    height: 120px;
  }

  /* Keep the stacked/sticky service-card flow on mobile */
  .scroll-pinned-services .svc-panels {
    gap: 56px !important;
    padding-bottom: 44px !important;
  }
  .scroll-pinned-services .svc-panel-wrapper,
  .scroll-pinned-services .svc-panel-wrapper.wrapper-1,
  .scroll-pinned-services .svc-panel-wrapper.wrapper-2,
  .scroll-pinned-services .svc-panel-wrapper.wrapper-3 {
    position: sticky !important;
  }
  .scroll-pinned-services .svc-panel-wrapper.wrapper-1 { top: 84px !important; z-index: 1; }
  .scroll-pinned-services .svc-panel-wrapper.wrapper-2 { top: 102px !important; z-index: 2; }
  .scroll-pinned-services .svc-panel-wrapper.wrapper-3 { top: 120px !important; z-index: 3; }
  .scroll-pinned-services .svc-panel {
    box-shadow: 0 16px 38px rgba(11,31,51,.09), inset 0 1px 64px -28px rgba(13,105,139,.24) !important;
  }
}

/* ==========================================================================
   BLOG & CASE STUDIES COMPREHENSIVE STYLING (GLOBAL)
   ========================================================================== */

/* Blog Index Filter Tabs & Search */
.tab-list {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--dim);
  padding: 10px 20px;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.tab-btn.active, .tab-btn:hover {
  border-color: var(--gold);
  color: var(--white);
  background: var(--bg3);
}
.search-box {
  max-width: 480px;
  margin: 0 auto 40px auto;
  position: relative;
}
.search-input {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 14px 20px;
  font-family: var(--body);
  color: var(--white);
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-input:focus {
  border-color: var(--gold);
}

/* Blog Article Detail Pages */
.blog-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}
.blog-body {
  min-width: 0;
  color: var(--dim);
  font-size: 15px;
  line-height: 1.78;
}
.blog-body > *:first-child { margin-top: 0; }
.blog-body p { margin: 0 0 18px; }
.blog-body h2 {
  margin: 42px 0 14px;
  font-family: var(--heading);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #000;
}
.blog-body h3 {
  margin: 28px 0 10px;
  font-family: var(--heading);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
  color: #000;
}
.blog-body ul, .blog-body ol {
  margin: 10px 0 22px 22px;
  padding-left: 18px;
}
.blog-body li { margin-bottom: 9px; }
.blog-body a {
  color: var(--gold);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.blog-body a.btn,
.blog-body .btn-gold,
.blog-body a[class*="btn"],
article a.btn,
article .btn-gold,
.btn-gold {
  color: #ffffff !important;
  text-decoration: none !important;
}
.blog-body a.btn:hover,
.blog-body .btn-gold:hover,
.blog-body a[class*="btn"]:hover,
article a.btn:hover,
article .btn-gold:hover,
.btn-gold:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}
.blog-body blockquote {
  margin: 30px 0;
  padding: 22px 24px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  color: #000;
}
.blog-cover {
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg2);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.blog-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}
.blog-sidebar-card {
  position: sticky;
  top: 100px;
  padding: 30px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: inset 0 1px 6px rgba(255,255,255,.8), 0 4px 24px rgba(0,0,0,.02);
}
.blog-meta-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.blog-meta-item:last-of-type { border-bottom: none; }
.blog-meta-label {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dim);
}
.blog-meta-value {
  max-width: 165px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
  color: #000;
  overflow-wrap: anywhere;
}
.blog-topic-box {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  font-size: 13px;
  line-height: 1.7;
}
.blog-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.blog-header-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg2);
  color: var(--dim);
  font-size: 12px;
  font-weight: 500;
}

/* Case Studies Landing & Directory */
.cs-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 140px;
  padding-bottom: 40px;
}
.cs-filters-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--heading);
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: var(--bg2);
  border-radius: 30px;
  color: var(--dim);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-btn:hover {
  border-color: rgba(13, 105, 139, 0.3);
  color: var(--gold);
  background: rgba(13, 105, 139, 0.02);
}
.filter-btn.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(13, 105, 139, 0.15);
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
.cs-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.cs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
  border-color: rgba(13, 105, 139, 0.18);
}
.cs-card-img-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}
.cs-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cs-card:hover .cs-card-img {
  transform: scale(1.05);
}
.cs-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cs-card-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
.cs-card-title {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  color: #000;
  margin-bottom: 12px;
}
.cs-card-excerpt {
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.cs-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.cs-card-client {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-card-client-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg3);
  padding: 2px;
}
.cs-card-client-name {
  font-size: 12.5px;
  font-weight: 600;
  color: #000;
}
.cs-card-metrics {
  display: flex;
  gap: 6px;
}
.cs-metric-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(13, 105, 139, 0.04);
  border: 1px solid rgba(13, 105, 139, 0.08);
  color: var(--gold);
  letter-spacing: 0.01em;
}
.cs-skeleton {
  background: linear-gradient(90deg, var(--bg3) 25%, #ebf0f9 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  animation: csShimmer 1.5s infinite;
  height: 20px;
  border-radius: 4px;
}
@keyframes csShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Case Study Detail Pages */
.cs-detail-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  margin-top: 40px;
}
.cs-sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: inset 0px 1px 6px rgba(255,255,255,0.8), 0 4px 24px rgba(0,0,0,0.02);
}
.cs-meta-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cs-meta-item:last-child {
  border-bottom: none;
}
.cs-meta-label {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dim);
}
.cs-meta-value {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  text-align: right;
}
.cs-section {
  margin-bottom: 32px;
}
.cs-heading {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #000;
}
.cs-list {
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.cs-list li {
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--dim);
  line-height: 1.65;
}
.cs-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dim);
  margin-bottom: 16px;
}
.cs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 24px;
  transition: gap 0.2s;
}
.cs-back-link:hover {
  gap: 12px;
  color: var(--gold2);
}
.project-snapshot-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
  box-shadow: inset 0px 1px 6px rgba(255,255,255,0.8), 0 4px 24px rgba(0,0,0,0.01);
}

/* Responsive Rules for Blog & Case Studies */
@media (max-width: 960px) {
  .blog-article-grid, .cs-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-sidebar-card, .cs-sidebar-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .blog-body {
    font-size: 14.5px;
    line-height: 1.72;
  }
  .blog-body h2 {
    margin-top: 34px;
  }
  .blog-sidebar-card, .cs-sidebar-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fd-skeleton::after, .cs-skeleton {
    animation: none !important;
    display: none !important;
  }
  #fd-page-loader {
    transition: none !important;
  }
}

/* FOUNDER-LED ABOUT PAGE */
.about-page {
  color: var(--gold2);
}

.about-page section,
.about-page .about-section {
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 72px;
  border-bottom: 1px solid var(--border);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 16%, rgba(13, 105, 139, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 72%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(310px, 0.68fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: end;
}

.about-hero-title {
  max-width: 790px;
  margin: 14px 0 22px;
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.08;
}

.about-hero-copy {
  max-width: 790px;
  color: var(--dim);
  font-size: 17px;
  line-height: 1.72;
}

.about-record {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(11, 93, 122, 0.12);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 18px 44px rgba(11, 31, 51, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-record-label,
.founder-role,
.about-credit-label {
  display: block;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-record-label {
  margin-bottom: 12px;
}

.about-record-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 17px 0;
  border-top: 1px solid var(--border);
}

.about-record-item strong {
  color: var(--gold);
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.about-record-item span {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.5;
}

.about-section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.about-section-heading-wide {
  max-width: 900px;
}

.about-section-heading .h2,
.about-origin-intro .h2 {
  margin: 10px 0 14px;
}

.about-section-heading > p,
.about-origin-intro > p {
  color: var(--dim);
  font-size: 16px;
  line-height: 1.68;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 260px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(11, 93, 122, 0.1);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(11, 31, 51, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.founder-photo {
  display: block;
  width: 100%;
  max-width: 190px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(11, 93, 122, 0.09);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(11, 31, 51, 0.07);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.founder-role {
  display: block;
  margin: 0 0 10px;
  color: var(--ink2);
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.45;
}

.founder-content h3 {
  margin-bottom: 7px;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.founder-content h3 a {
  color: var(--gold2);
  text-decoration: underline;
  text-decoration-color: rgba(11, 93, 122, 0.25);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.founder-content h3 a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.founder-content p {
  color: var(--dim);
  font-size: 15px;
  line-height: 1.62;
}

.about-team {
  background: rgba(234, 244, 248, 0.45);
  border-top: 1px solid rgba(11, 93, 122, 0.08);
  border-bottom: 1px solid rgba(11, 93, 122, 0.08);
}

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(11, 93, 122, 0.1);
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(11, 31, 51, 0.035);
}

.about-capability {
  min-height: 250px;
  padding: 30px;
}

.about-capability + .about-capability {
  border-left: 1px solid rgba(11, 93, 122, 0.1);
}

.capability-count {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-capability h3,
.about-timeline-item h3,
.about-principle h3,
.about-credit-note h3 {
  color: var(--gold2);
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.about-capability h3 {
  margin-bottom: 11px;
}

.about-capability p,
.about-timeline-item p,
.about-principle p,
.about-credit-note p {
  color: var(--dim);
  font-size: 14px;
  line-height: 1.65;
}

.about-origin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.about-origin-intro {
  position: sticky;
  top: 122px;
}

.about-timeline {
  position: relative;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 14px;
  left: 18px;
  width: 1px;
  background: rgba(11, 93, 122, 0.18);
}

.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 32px;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #f5f8fa;
  border: 1px solid rgba(11, 93, 122, 0.22);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
}

.about-timeline-item h3 {
  margin: 5px 0 9px;
}

.about-relationship {
  border-top: 1px solid rgba(11, 93, 122, 0.08);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(11, 93, 122, 0.1);
  border-radius: 22px;
}

.about-principle {
  min-height: 194px;
  padding: 26px;
  border-right: 1px solid rgba(11, 93, 122, 0.1);
  border-bottom: 1px solid rgba(11, 93, 122, 0.1);
}

.about-principle:nth-child(3n) {
  border-right: none;
}

.about-principle:nth-child(n + 4) {
  border-bottom: none;
}

.about-principle > span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-principle h3 {
  margin-bottom: 9px;
}

.about-credit-note {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: center;
  margin-top: 22px;
  padding: 28px 30px;
  background: #f1f7f9;
  border: 1px solid rgba(11, 93, 122, 0.12);
  border-radius: 20px;
}

.about-credit-label {
  margin-bottom: 8px;
}

@media (max-width: 1099px) {
  .about-hero {
    padding: 122px 0 54px;
  }

  .about-hero-title {
    font-size: clamp(36px, 4.6vw, 48px);
  }

  .founder-card {
    grid-template-columns: minmax(140px, 170px) minmax(0, 1fr);
    gap: 22px;
  }

  .founder-photo {
    max-width: 170px;
  }
}

@media (max-width: 960px) {
  .about-hero-grid,
  .about-origin-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-record-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-record-item {
    display: block;
    padding: 18px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }

  .about-record-item:first-child {
    border-left: none;
  }

  .about-record-item strong {
    display: block;
    margin-bottom: 9px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .about-origin-intro {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 102px 0 40px;
  }

  .about-hero-title {
    margin-top: 11px;
    font-size: 34px;
    line-height: 1.12;
  }

  .about-hero-copy {
    font-size: 16px;
    line-height: 1.62;
  }

  .about-record {
    padding: 20px;
    border-radius: 18px;
  }

  .about-section-heading {
    margin-bottom: 24px;
  }

  .about-section-heading > p,
  .about-origin-intro > p {
    font-size: 15px;
    line-height: 1.62;
  }

  .founder-card {
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .founder-photo {
    max-width: 142px;
    border-radius: 14px;
  }

  .founder-content h3 {
    font-size: 21px;
  }

  .about-capabilities,
  .about-principles {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .about-capability {
    min-height: 0;
    padding: 22px;
  }

  .about-capability + .about-capability {
    border-top: 1px solid rgba(11, 93, 122, 0.1);
    border-left: none;
  }

  .capability-count {
    margin-bottom: 20px;
    font-size: 34px;
  }

  .about-timeline-item {
    gap: 18px;
    padding-bottom: 28px;
  }

  .about-principle,
  .about-principle:nth-child(3n),
  .about-principle:nth-child(n + 4) {
    min-height: 0;
    padding: 22px;
    border-right: none;
    border-bottom: 1px solid rgba(11, 93, 122, 0.1);
  }

  .about-principle:last-child {
    border-bottom: none;
  }

  .about-principle > span {
    margin-bottom: 18px;
  }

  .about-credit-note {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .about-record-list {
    grid-template-columns: 1fr;
  }

  .about-record-item {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    padding: 15px 0;
    border-left: none;
  }
}

@media (max-width: 520px) {
  .about-hero-title {
    font-size: 30px;
  }

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

  .founder-photo {
    width: 150px;
    max-width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-content h3 a {
    transition: none;
  }
}
