/* ============================================
   BIXILY DIGITAL — token system
   ============================================ */
:root {
  --bg: radial-gradient(
    circle at 10% 20%,
    #101010 0%,
    #050505 50%,
    #0a0a0a 100%
  );
  --panel: #0d0d0e;
  --accent: #c7b3ff;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 100%;
  --mx: 50%;
  --my: 50%;
  --section-space: 100px;
}
@media (max-width: 640px) {
  :root {
    --section-space: 50px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px; /* Desktop base — body/p text renders at 16px (1rem) */
}
@media (max-width: 991px) {
  html {
    font-size: 14px; /* Tablet + mobile base — body/p text renders at 14px (1rem) */
  }
}
body {
  background: var(--bg);
  background-attachment: fixed;
  color: var(--white);
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}
p {
  font-size: 1rem;
  line-height: 1.6;
}
em {
  font-style: normal;
  color: var(--accent);
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}
input {
  font-family: inherit;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 30px;
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
}

#header .nav-logo img {
  width: 100%;
  height: 100%;
  max-width: 90px;
}

.footer-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   AMBIENT GLOWS — blending mesh orbs
   ============================================ */
.ambient-glows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.85;
}
.glow-orb--1 {
  top: 2%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.55) 0%,
    rgba(124, 58, 237, 0.16) 55%,
    transparent 80%
  );
  animation: float-1 28s infinite alternate ease-in-out;
}
.glow-orb--2 {
  top: 24%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.5) 0%,
    rgba(88, 28, 135, 0.14) 55%,
    transparent 80%
  );
  animation: float-2 36s infinite alternate ease-in-out;
}
.glow-orb--3 {
  top: 48%;
  left: -8%;
  width: 850px;
  height: 850px;
  background: radial-gradient(
    circle,
    rgba(192, 132, 252, 0.45) 0%,
    rgba(126, 34, 206, 0.12) 55%,
    transparent 80%
  );
  animation: float-3 32s infinite alternate ease-in-out;
}
.glow-orb--4 {
  top: 72%;
  right: -5%;
  width: 950px;
  height: 950px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.58) 0%,
    rgba(76, 29, 149, 0.16) 55%,
    transparent 80%
  );
  animation: float-1 30s infinite alternate ease-in-out;
}
.glow-orb--5 {
  bottom: 2%;
  left: 10%;
  width: 850px;
  height: 850px;
  background: radial-gradient(
    circle,
    rgba(216, 180, 254, 0.4) 0%,
    rgba(107, 33, 168, 0.1) 55%,
    transparent 80%
  );
  animation: float-2 34s infinite alternate ease-in-out;
}
@media (max-width: 640px) {
  .glow-orb {
    filter: blur(70px);
    animation: none;
  }
  .glow-orb--3,
  .glow-orb--5 {
    display: none;
  }
}
@keyframes float-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, 80px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes float-2 {
  0% {
    transform: translate(0, 0) scale(1.15);
  }
  50% {
    transform: translate(-80px, 40px) scale(0.95);
  }
  100% {
    transform: translate(0, 0) scale(1.15);
  }
}
@keyframes float-3 {
  0% {
    transform: translate(0, 0) scale(0.9);
  }
  50% {
    transform: translate(70px, -50px) scale(1.05);
  }
  100% {
    transform: translate(0, 0) scale(0.9);
  }
}

/* ============================================
   LIQUID GLASS — signature material
   ============================================ */
.liquid-glass,
.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  background-blend-mode: luminosity;
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
.liquid-glass {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.liquid-glass-strong {
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    4px 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
}
.liquid-glass::before,
.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.1) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.1) 80%,
    rgba(255, 255, 255, 0.35) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass::after,
.liquid-glass-strong::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    240px circle at var(--mx) var(--my),
    rgba(196, 169, 255, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.liquid-glass:hover::after,
.liquid-glass-strong:hover::after {
  opacity: 1;
}

/* ============================================
   TYPE UTILITIES
   ============================================ */
.eyebrow {
  display: inline-block;
  font-size: 11.52px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  font-weight: 600;
}
/* "Back to work" / "Back to blog" style eyebrow links (single-work.php,
   single.php, template-service-single.php) — every other icon usage on
   the site sets its own explicit font-size instead of relying on the
   iconify-icon web component's bare default sizing; this was the one
   spot that didn't, which left it inconsistent/prone to rendering at
   an unreadable size. */
.eyebrow iconify-icon {
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
      color: #6F5BA0;
  flex-shrink: 0;
}
.eyebrow--back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}
.section-head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30.4px, 3.4vw, 41.6px);
  line-height: 1.15;
  margin-bottom: 14.4px;
}
.section-head-sub {
  font-size: 15.68px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.insights-title-area .section-head-sub {
  margin-top: 8px;
  max-width: 480px;
}
@media (max-width: 480px) {
  .section-head h2 {
    font-size: 26.4px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8.8px;
  font-size: 14.08px;
  font-weight: 600;
  border-radius: 10.4px;
  padding: 12.8px 25.6px;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn--sm {
  padding: 9.6px 19.2px;
  font-size: 13.12px;
}
.btn.is-loading {
  opacity: 0.7;
}
.btn--solid {
  background: var(--white);
  color: #0a0a0a;
  border: 1px solid var(--white);
}
.btn--solid:hover {
  background: #eeeeee;
  border-color: #eeeeee;
  transform: translateY(-2px);
}
.btn--solid iconify-icon {
  color: #0a0a0a;
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  border-color: rgba(196, 169, 255, 0.45);
  color: var(--white);
  background: rgba(147, 51, 234, 0.08);
  transform: translateY(-2px);
}
.btn--full-width {
  width: 100%;
  justify-content: center;
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition:
    opacity 0.9s var(--ease),
    filter 0.9s var(--ease),
    transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.word {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    filter 0.7s var(--ease),
    transform 0.7s var(--ease);
  margin-right: 0.26em;
}
.word.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 6, 7, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8.8px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16.8px;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo svg {
  color: var(--accent);
}
.nav-links {
  display: none;
  gap: 36px;
}
.nav-links a {
  font-size: 14.08px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--white);
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 19.2px;
  flex-shrink: 0;
  position: relative;
}
.nav-burger-icon {
  position: absolute;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.nav-burger-icon--close {
  opacity: 0;
  transform: rotate(-90deg);
}
.nav-burger[aria-expanded="true"] .nav-burger-icon--open {
  opacity: 0;
  transform: rotate(90deg);
}
.nav-burger[aria-expanded="true"] .nav-burger-icon--close {
  opacity: 1;
  transform: rotate(0);
}
@media (min-width: 900px) {
  .nav-burger {
    display: none;
  }
}

.nav-mobile-panel {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  background: rgba(6, 6, 7, 0.98);
  transition:
    max-height 0.4s var(--ease),
    border-color 0.3s;
}
.nav-mobile-panel.is-open {
  max-height: 400px;
  border-top-color: var(--line);
}
.nav-mobile-panel a {
  font-size: 15.2px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition:
    color 0.2s,
    background-color 0.2s;
}
.nav-mobile-panel a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}
.nav-mobile-cta {
  margin: 16px clamp(16px, 4vw, 32px);
  padding: 13.6px 24px !important;
  text-align: center;
  border: none !important;
  border-radius: 10.4px;
  background: var(--white);
  color: #0a0a0a !important;
  font-weight: 600 !important;
}
@media (min-width: 900px) {
  .nav-mobile-panel {
    display: none;
  }
}
@media (max-width: 420px) {
  .nav-right .btn--sm {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 900px;
  height: 600px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 65%
  );
  filter: blur(20px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero-content {
  width: 100%;
  max-width: 900px;
}

.hero-numeral {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 34%;
  max-width: 480px;
  height: 60%;
  max-height: 460px;
  z-index: 1;
  pointer-events: none;
  display: none;
}
@media (min-width: 1300px) {
  .hero-numeral {
    display: block;
  }
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 13.6px;
  margin-bottom: 24px;
}
.hero-top--center {
  justify-content: center;
}
.hero-rule {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}
.hero-eyebrow {
  margin: 0;
}

.hero-title {
  font-size: clamp(41.6px, 7vw, 86.4px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 1200px;
  margin-bottom: 32px;
}

.hero-sub-text {
  font-size: clamp(16px, 1.8vw, 19.2px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions--center-spaced {
  justify-content: center;
  margin-top: 40px;
}
.hero-actions iconify-icon {
  font-size: 17.6px;
}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 520px;
}
.hero-trust-avatars {
  display: flex;
  flex-shrink: 0;
}
.hero-trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #08080a;
  margin-left: -10px;
  object-fit: cover;
}
.hero-trust-avatars img:first-child {
  margin-left: 0;
}
.hero-trust p {
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.hero-trust strong {
  color: var(--white);
  font-weight: 600;
}

/* dashboard mockup */
.dash {
  width: 100%;
  max-width: 100%;
  border-radius: 24px;
  padding: 32px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .dash-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.dash-stat {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 24px;
  text-align: left;
}
.dash-label {
  font-size: 11.84px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6.4px;
}
.dash-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dash-value--sm {
  font-size: 25.6px;
}
.dash-delta {
  font-size: 10.88px;
  font-weight: 600;
  padding: 2.4px 6.4px;
  border-radius: 6.4px;
}
.dash-delta--up {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}
.dash-delta--down {
  color: #f0b3a3;
  background: rgba(240, 179, 163, 0.1);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .dash-grid {
    grid-template-columns: 1.8fr 1fr;
  }
}
.dash-panel {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}
.dash-panel--chart {
  display: flex;
  flex-direction: column;
}
.dash-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dash-panel-head p {
  font-size: 13.6px;
  font-weight: 600;
}
.dash-pill {
  font-size: 10.88px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 9.6px;
  border-radius: 999px;
}
.dash-svg {
  width: 100%;
  height: 150px;
}
@media (min-width: 1200px) {
  .dash-svg {
    height: 210px;
  }
}
.dash-area {
  opacity: 0.9;
}

.dash-panel-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-panel--donut {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.donut {
  --pct: 82;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: conic-gradient(
    var(--accent) calc(var(--pct) * 1%),
    rgba(255, 255, 255, 0.1) 0
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.donut::before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel);
}
.dash-panel--bars {
  flex: 1;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 6.4px;
  height: 60px;
  margin-top: 12px;
}
.bars span {
  flex: 1;
  background: linear-gradient(to top, var(--accent), rgba(255, 255, 255, 0.3));
  border-radius: 3px;
}

/* ============================================
   SECTION TINTS — blended background variety instead of flat black
   ============================================ */
.stats--tint,
.process--tint,
.insights--tint {
  position: relative;
  background: transparent;
  z-index: 1;
}
.stats--tint::before,
.process--tint::before,
.insights--tint::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}
.stats--tint::before {
  background: radial-gradient(
    ellipse 50% 80% at 15% 50%,
    rgba(147, 51, 234, 0.14) 0%,
    transparent 70%
  );
}
.process--tint::before {
  background: radial-gradient(
    ellipse 50% 80% at 85% 50%,
    rgba(139, 92, 246, 0.12) 0%,
    transparent 70%
  );
}
.insights--tint::before {
  background: radial-gradient(
    ellipse 50% 80% at 50% 50%,
    rgba(168, 85, 247, 0.1) 0%,
    transparent 70%
  );
}
.stats--tint > .container,
.process--tint > .container,
.insights--tint > .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  position: relative;
  z-index: 1;
  padding:  0;
  border: none;
}
.stats-inner-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  width: 100%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-block {
  position: relative;
  padding: 0 16px;
}
.stat-block:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--line);
}
@media (max-width: 767px) {
  .stat-block:nth-child(2)::after {
    display: none;
  }
}
.stat-block-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(35.2px, 4.5vw, 54.4px);
  font-weight: 700;
  color: var(--accent);
}
.stat-block-num span {
  font-size: 0.55em;
  opacity: 0.7;
}
.stat-block-label {
  font-size: 13.12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6.4px;
}

/* ============================================
   CLIENT LOGOS GRID
   ============================================ */
.clients-section {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.clients-head-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .clients-head-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
.clients-heading {
  font-size: clamp(28.8px, 3.5vw, 40px);
  line-height: 1.25;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 580px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 960px) {
  .logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.logo-grid-item {
  background: rgba(13, 13, 14, 0.45);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  transition: background-color 0.3s;
}
@media (max-width: 579px) {
  .logo-grid-item:last-child {
    grid-column: 1 / -1;
  }
}
.logo-grid-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.logo-grid-item:hover .brand-logo {
  color: var(--white);
}
.brand-logo small {
  font-family: "Inter", sans-serif;
  font-size: 9.92px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 4px;
  transition: color 0.3s;
}
.logo-grid-item:hover .brand-logo small {
  color: var(--accent);
}

.brand-logo--tijus {
  letter-spacing: 0.15em;
  font-family: "Inter", sans-serif;
  font-weight: 800;
}
.brand-logo--reporter {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.08em;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 4.8px 12.8px;
  border-radius: 4px;
}
.logo-grid-item:hover .brand-logo--reporter {
  border-color: var(--white);
}
.brand-logo--santamonica {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.brand-logo--impex {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-style: italic;
  background: rgba(255, 255, 255, 0.04);
  padding: 5.6px 17.6px;
  border-radius: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.logo-grid-item:hover .brand-logo--impex {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: var(--accent);
}
.brand-logo--somans {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.8px;
}
.logo-grid-item:hover .brand-logo--somans {
  border-color: var(--white);
}
.brand-logo--englishmithra {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-logo--ppc {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand-logo--muthoot {
  font-family: "Inter", sans-serif;
  font-weight: 800;
}
.brand-logo--lulu {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
}
.brand-logo--rak {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.brand-logo--kottakkal {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}
.brand-logo--hotpack {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  position: relative;
}
.brand-logo--hotpack::after {
  content: "●";
  color: #f0b3a3;
  font-size: 7.2px;
  margin-left: 2.4px;
  display: inline-block;
  vertical-align: middle;
}
.brand-logo--haeal {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.brand-logo--luxon {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.brand-logo--dubai {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2.4px;
}

/* ============================================
   INSIGHTS / BLOG — REDESIGNED
   ============================================ */
.insights {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.insights-head-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .insights-head-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
.insights-title-area h2 {
  font-size: clamp(28.8px, 3.5vw, 40px);
  margin: 0;
}
.btn--view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.12px;
  font-weight: 600;
  padding: 9.6px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition:
    color 0.3s,
    border-color 0.3s,
    background 0.3s;
  white-space: nowrap;
}
.btn--view-all:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.btn--view-all iconify-icon {
  font-size: 15.2px;
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 780px) {
  .insights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.insight-card {
  border-radius: 20px;
  overflow: hidden;
  display: block;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.insight-card-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: #111;
}
.insight-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.7);
  transition:
    transform 0.6s var(--ease),
    filter 0.4s;
}
.insight-card:hover .insight-card-thumb img {
  transform: scale(1.06);
  filter: saturate(0.85) brightness(0.8);
}
.insight-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55));
}
.insight-card-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  font-size: 10.88px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4.8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.insight-card-body {
  padding: 20px 22.4px 24px;
}
.insight-card-date {
  font-size: 11.52px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 9.6px;
  letter-spacing: 0.03em;
}
.insight-card-body h3 {
  font-size: 16.8px;
  line-height: 1.35;
  font-weight: 600;
}

/* ============================================
   FAQ — FULL-WIDTH ROW LIST
   ============================================ */
.faq {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.faq-head-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .faq-head-row {
    flex-direction: row;
    align-items: flex-end;
  }
}
.faq-title-area h2 {
  font-size: clamp(28.8px, 3.5vw, 40px);
  margin: 0;
}
.faq-list-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-row {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-row-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8px;
  font-size: 19.2px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
	gap:20px;
  background: transparent;
  border: none;
  text-align: left;
  transition: color 0.2s;
}
.faq-row-q:hover {
  color: var(--accent);
}
.faq-row-q span {
  flex: 1;
}
.faq-row-icon {
  flex-shrink: 0;
  font-size: 20.8px;
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform 0.35s var(--ease),
    color 0.3s;
}
.faq-row.is-open .faq-row-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-row-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.35s;
}
.faq-row-a p {
  padding: 0 8px 24px;
  font-size: 16.32px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  max-width: 720px;
}
.faq-row.is-open .faq-row-a {
  max-height: 320px;
}

/* ============================================
   SERVICES SHOWCASE — 8-CARD GRID
   ============================================ */
.services-showcase {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-card {
  position: relative;
  padding: 32px 28px 36px;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
  background: rgba(13, 13, 14, 0.55) !important;
}
.service-card:hover {
  z-index: 2;
}
.service-card--wide {
  grid-column: span 1;
}
@media (min-width: 1080px) {
  .service-card--wide {
    grid-column: span 2;
  }
}
.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18.4px;
  margin-bottom: 24px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.service-card:hover .service-card-icon {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
}
.service-card h3 {
  font-size: 18.4px;
  font-weight: 600;
  margin-bottom: 9.6px;
  color: var(--white);
}
.service-card p {
  font-size: 13.92px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 420px;
}
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.service-card-tags .tag-pill {
  font-size: 11.52px;
  padding: 4.8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}
.service-card-watermark {
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(255, 255, 255, 1);
  opacity: 0.025; 
  pointer-events: none;
  line-height: 1;
  font-size:120px;	 height: 120px;
}

.service-card-watermark  > iconify-icon {  display:inline-block }


/* ============================================
   PROCESS — MODERN TIMELINE CARDS
   ============================================ */
.process {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.process-list {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.process-line {
  position: absolute;
  left: 27px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--line),
    rgba(255, 255, 255, 0.25),
    var(--line)
  );
}
@media (min-width: 720px) {
  .process-line {
    left: 27px;
  }
}
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
.process-node-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 17.6px;
  color: var(--accent);
  position: relative;
  z-index: 2;
}
.process-card {
  flex: 1;
  border-radius: 20px;
  padding: 28px 32px;
}
.process-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.process-card-header h3 {
  font-size: 19.2px;
  font-weight: 600;
}
.process-card-header iconify-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.25);
}
.process-card p {
  font-size: 14.4px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 520px;
}

/* ============================================
   LOGO CLOUD
   ============================================ */
.logos {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.logos-label {
  text-align: center;
  font-size: 13.12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}
.logos-track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    black 12%,
    black 88%,
    transparent
  );
}
.logos-row {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scrollLogos 28s linear infinite;
}
.logos-row span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20.8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.quote-card,
.stat-card {
  border-radius: 20px;
  padding: 32px;
}
.stars {
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-size: 14.4px;
}
.quote-card-text {
  font-size: 16.8px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.quote-card-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3a, #0a0a0a);
  flex-shrink: 0;
  object-fit: cover;
}
.quote-card-name {
  font-size: 14.08px;
  font-weight: 600;
}
.quote-card-role {
  font-size: 12.48px;
  color: rgba(255, 255, 255, 0.45);
}
.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.stat-card-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 41.6px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-card-label {
  font-size: 14.08px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================
   WORK / PORTFOLIO
   ============================================ */
.work {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, #000000 0%, #030303 55%, #000000 100%);
}
.work .section-head {
  margin-bottom: 40px;
}

.work-swiper {
  width: 100%;
  padding: 8px clamp(24px, 4vw, 64px) 24px;
  cursor: grab;
}
.work-swiper:active {
  cursor: grabbing;
}
.slide {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 10px; /* Reduced border radius */
}
.slide-link {
  display: block;
  height: 100%;
}
.slide-media {
  position: absolute;
  inset: 0;
  background: #000;
}
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 36px 32px;
  background: linear-gradient(
    to top,
    rgba(6, 4, 11, 0.98) 0%,
    rgba(6, 4, 11, 0.75) 45%,
    rgba(6, 4, 11, 0.25) 75%,
    transparent 100%
  );
  z-index: 2;
}
.slide-overlay h3 {
  font-size: 24.8px;
  font-weight: 700;
  margin-bottom: 6.4px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.slide-overlay p {
  font-size: 14.72px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42ch;
  line-height: 1.45;
}

/* On mobile, Swiper shows ~1.3 slides at once (see initSlider in
   script.js), so each card is fairly narrow — the 16/10 desktop aspect
   ratio left them too short for the title + summary text to breathe.
   A taller ratio gives the overlay room without changing anything
   about the slider mechanics itself. */
@media (max-width: 680px) {
  .slide {
    aspect-ratio: 3 / 4;
  }
  .slide-overlay {
    padding: 28px 22px;
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
.slider-controls--center {
  justify-content: center;
}
.slider-progress-line {
  flex: 1;
  max-width: none;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  position: relative;
}
.slider-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 25%;
  background: var(--white);
  border-radius: 999px;
  transition: width 0.1s linear;
}

/* ============================================
   PRICING CALCULATOR
   ============================================ */
.pricing {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.calc {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 24px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .calc {
    grid-template-columns: 1.1fr 1fr;
  }
}
.calc-group {
  margin-bottom: 28px;
}
.calc-group:last-child {
  margin-bottom: 0;
}
.calc-q {
  font-size: 14.4px;
  font-weight: 600;
  margin-bottom: 13.6px;
}
#contactFormWrap {
  max-width: 100%;
}
#contactFormWrap .calc-q {
  font-size: 20px;
  margin-bottom: 24px;
}
.radio,
.checkbox {
  display: flex;
  align-items: center;
  gap: 9.6px;
  font-size: 14.08px;
  color: rgba(255, 255, 255, 0.75);
  padding: 6.4px 0;
  cursor: pointer;
}
.radio em,
.checkbox em {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12.48px;
  margin-left: 4.8px;
}
.radio input,
.checkbox input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
.range {
  width: 100%;
  accent-color: var(--accent);
  margin-top: 8px;
}

.calc-result {
  border-radius: 17.6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.calc-result-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6.4px;
  color: var(--white);
}
.calc-result-note {
  font-size: 13.12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  margin-bottom: 28px;
}
.calc-lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  text-align: left;
}
.calc-form-group {
  display: flex;
  flex-direction: column;
  gap: 7.2px;
}
.calc-form-label {
  font-size: 12.8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}
.calc-input-field {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13.6px 17.6px;
  color: var(--white);
  font-family: inherit;
  font-size: 14.08px;
  transition:
    border-color 0.3s,
    background-color 0.3s;
}
.calc-input-field:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}
.calc-error-msg {
  font-size: 11.52px;
  color: #f0b3a3;
  display: none;
  margin-top: 1.6px;
}
.calc-form-group.has-error .calc-input-field {
  border-color: rgba(240, 179, 163, 0.5);
  background: rgba(240, 179, 163, 0.02);
}
.calc-form-group.has-error .calc-error-msg {
  display: block;
}

/* Top-level form error banner (Contact form + project estimator) —
   hidden by default, shown by adding .is-visible (server-side, when a
   submission bounced back with an error; or via JS after a failed
   AJAX submit — see assets/js/script.js). */
.bixily-form-error {
  display: none;
  color: #f0b3a3;
  font-size: 13.12px;
  margin: 0;
}
.bixily-form-error.is-visible {
  display: block;
}

/* Honeypot field — visually hidden but still in the tab order/DOM so
   real screen readers and form-fillers behave normally; only bots
   filling every input blindly trip it. Shared by the Contact form and
   the project estimator. */
.visually-hidden {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.btn--full-width {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* Success panel styling */
.calc-success {
  text-align: center;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.calc-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.calc-success-icon--lg {
  width: 88px;
  height: 88px;
  font-size: 40px;
  margin: 0 auto 32px;
}
.calc-success-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21.6px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.calc-success-desc {
  font-size: 14.08px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 8px;
}
.calc-summary-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--line);
  border-radius: 14.4px;
  padding: 20px;
  width: 100%;
  text-align: left;
}
.calc-summary-title {
  font-size: 12.16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 13.6px;
  font-weight: 600;
}
.calc-summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.12px;
  color: rgba(255, 255, 255, 0.7);
}
.calc-summary-item {
  display: flex;
  justify-content: space-between;
}
.calc-summary-item span:first-child {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.cta-panel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
      border-radius: 8px;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .cta-panel {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    padding: 72px;
  }
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 30% 30%,
    black 0%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 30% 30%,
    black 0%,
    transparent 75%
  );
}
.cta-left,
.cta-right {
  position: relative;
  z-index: 1;
}
.cta-panel h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.1;
  margin-bottom: 17.6px;
}
.cta-sub {
  font-size: 15.68px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
  }
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease);
}
a.cta-contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}
.cta-contact-item--static {
  cursor: default;
}
.cta-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10.4px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17.6px;
  color: var(--white);
}
.cta-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2.4px;
  flex: 1;
  min-width: 0;
}
.cta-contact-text strong {
  font-size: 13.6px;
  font-weight: 600;
  color: var(--white);
}
.cta-contact-text span {
  font-size: 13.12px;
  color: rgba(255, 255, 255, 0.45);
}
.cta-contact-arrow {
  flex-shrink: 0;
  font-size: 17.6px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s var(--ease);
}
a.cta-contact-item:hover .cta-contact-arrow {
  transform: translate(2px, -2px);
  color: var(--white);
}

/* ============================================
   FOOTER — MODERN REDESIGN
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-globe {
  display: none;
}
.footer-top-row {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 960px) {
  .footer-top-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}
.footer-brand-area {
  max-width: 320px;
  flex-shrink: 0;
}
.footer-brand-tagline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17.6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 24px;
}
.footer-socials-modern {
  display: flex;
  gap: 12px;
}
.footer-socials-modern a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 17.6px;
  transition: all 0.3s;
}
.footer-socials-modern a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  flex: 1;
}
@media (min-width: 560px) {
  .footer-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-nav-col h4 {
  font-size: 12.48px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-nav-col a {
  display: block;
  font-size: 14.08px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5.6px 0;
  transition: color 0.2s;
}
.footer-nav-col a:hover {
  color: var(--white);
}
.footer-newsletter-col {
  max-width: 280px;
  flex-shrink: 0;
}
.footer-newsletter-col h4 {
  font-size: 12.48px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 13.6px;
  font-weight: 600;
}
.footer-newsletter-col p {
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  margin-bottom: 17.6px;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 9.6px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 13.6px;
  outline: none;
  transition:
    border-color 0.3s,
    background-color 0.3s;
}
.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-newsletter-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}
.footer-newsletter-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 9.6px;
  background: var(--white);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17.6px;
  transition:
    transform 0.3s var(--ease),
    background-color 0.3s;
}
.footer-newsletter-btn:hover {
  background: #eeeeee;
  transform: translateY(-1px);
}

/* Footer top CTA row */
.footer-cta-row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 860px) {
  .footer-cta-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.footer-cta-text h2 {
  font-size: clamp(35.2px, 5vw, 57.6px);
  line-height: 1.08;
}
.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(17.6px, 2vw, 24px);
  font-weight: 600;
  color: var(--white);
  padding-bottom: 6.4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    border-color 0.3s,
    gap 0.3s var(--ease);
  white-space: nowrap;
}
.footer-cta-link:hover {
  border-color: var(--accent);
  gap: 21.6px;
}
.footer-cta-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px;
  font-size: 12.48px;
  color: rgba(255, 255, 255, 0.3);
}
@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--white);
}
.footer-to-top {
  width: 40px;
  height: 40px;
  border-radius: 9.6px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16.8px;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.footer-to-top:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* === MERGED ENHANCEMENTS.CSS === */

/* ============================================
   BIXILY DIGITAL — Enhanced Purple-Black Theme
   Deepened chromatic dark mode + Redesigned Footer
   ============================================ */

/* ---------- 1. DEEPENED COLOR SYSTEM ---------- */
:root {
  --bg: #030108;
  --panel: #0c0a14;
  --accent-vivid: #a78bfa;
  --accent-deep: #7c3aed;
  --line: rgba(255, 255, 255, 0.07);
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(
      ellipse 80% 50% at 0% 0%,
      rgba(88, 28, 135, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 100% 100%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 50% at 50% 50%,
      rgba(76, 29, 149, 0.06) 0%,
      transparent 60%
    );
}

::selection {
  background: rgba(167, 139, 250, 0.3);
  color: #fff;
}

/* ---------- 2. RICHER AMBIENT GLOWS ---------- */
.glow-orb--1 {
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.5) 0%,
    rgba(88, 28, 135, 0.22) 45%,
    transparent 75%
  );
}
.glow-orb--2 {
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.45) 0%,
    rgba(76, 29, 149, 0.18) 50%,
    transparent 78%
  );
}
.glow-orb--3 {
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.4) 0%,
    rgba(109, 40, 217, 0.15) 50%,
    transparent 78%
  );
}
.glow-orb--4 {
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.5) 0%,
    rgba(88, 28, 135, 0.2) 48%,
    transparent 76%
  );
}
.glow-orb--5 {
  background: radial-gradient(
    circle,
    rgba(192, 132, 252, 0.35) 0%,
    rgba(126, 34, 206, 0.13) 50%,
    transparent 78%
  );
}

/* ---------- 3. NAV WITH PURPLE TINT ---------- */
.nav {
  background: rgba(6, 4, 14, 0.82);
}
.nav-mobile-panel {
  background: rgba(6, 4, 14, 0.98);
}

/* ---------- 4. ENHANCED LIQUID GLASS ---------- */
.liquid-glass,
.liquid-glass-strong {
  background: rgba(130, 80, 220, 0.025);
}
.liquid-glass::after,
.liquid-glass-strong::after {
  background: radial-gradient(
    260px circle at var(--mx) var(--my),
    rgba(167, 139, 250, 0.2),
    transparent 55%
  );
}

/* ---------- 5. STRONGER SECTION TINTS ---------- */
.stats--tint::before {
  background: radial-gradient(
    ellipse 65% 80% at 15% 50%,
    rgba(124, 58, 237, 0.2) 0%,
    transparent 60%
  );
}
.process--tint::before {
  background: radial-gradient(
    ellipse 65% 80% at 85% 50%,
    rgba(139, 92, 246, 0.18) 0%,
    transparent 60%
  );
}
.insights--tint::before {
  background: radial-gradient(
    ellipse 65% 80% at 50% 50%,
    rgba(147, 51, 234, 0.16) 0%,
    transparent 60%
  );
}

/* ---------- 6. DEEPER COMPONENT BACKGROUNDS ---------- */
.service-card {
  background: rgba(10, 8, 20, 0.7) !important;
	  position: relative;
  overflow: hidden; /* clips the oversized icon to the card edges */
}
.work {
  background: linear-gradient(
    180deg,
    rgba(3, 1, 8, 1) 0%,
    rgba(8, 4, 22, 1) 50%,
    rgba(3, 1, 8, 1) 100%
  );
}
.logo-grid-item {
  background: rgba(10, 8, 18, 0.5);
}
.hero-glow {
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.12) 0%,
    rgba(124, 58, 237, 0.06) 40%,
    transparent 65%
  );
}

/* ---------- 7. SUBTLE BORDER ENHANCEMENTS ---------- */
.quote-card,
.stat-card {
  border: 1px solid rgba(167, 139, 250, 0.06);
}
.insight-card {
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.insight-card:hover {
  border-color: rgba(167, 139, 250, 0.15);
}
.cta-panel {
  border: 1px solid rgba(167, 139, 250, 0.06);
}
.calc {
  border: 1px solid rgba(167, 139, 250, 0.05);
}

/* ---------- 8. FOCUS & INTERACTION POLISH ---------- */
*:focus-visible {
  outline: 2px solid rgba(167, 139, 250, 0.5);
  outline-offset: 2px;
}
.btn--solid:active {
  transform: translateY(0) scale(0.98);
}
.btn--ghost:active {
  transform: translateY(0) scale(0.98);
}

/* ---------- 9. SCROLLBAR STYLING ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #030108;
}
::-webkit-scrollbar-thumb {
  background: rgba(167, 139, 250, 0.2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(167, 139, 250, 0.4);
}

/* ============================================
   10. FOOTER — REDESIGNED (World Map Style)
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg) 0%, #020010 100%);
  overflow: hidden;
  padding: 0;
  border-top: none;
}

/* World map dot-grid background */
.footer-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle 0.7px at center,
    rgba(255, 255, 255, 0.08) 0.7px,
    transparent 0.7px
  );
  background-size: 16px 16px;
  -webkit-mask-image:
    radial-gradient(
      ellipse 16% 38% at 22% 46%,
      rgba(0, 0, 0, 0.6),
      transparent
    ),
    radial-gradient(ellipse 5% 20% at 27% 28%, rgba(0, 0, 0, 0.4), transparent),
    radial-gradient(ellipse 9% 28% at 50% 36%, rgba(0, 0, 0, 0.5), transparent),
    radial-gradient(
      ellipse 7% 26% at 52% 60%,
      rgba(0, 0, 0, 0.45),
      transparent
    ),
    radial-gradient(
      ellipse 18% 26% at 70% 33%,
      rgba(0, 0, 0, 0.5),
      transparent
    ),
    radial-gradient(
      ellipse 12% 16% at 76% 53%,
      rgba(0, 0, 0, 0.4),
      transparent
    ),
    radial-gradient(ellipse 7% 10% at 82% 66%, rgba(0, 0, 0, 0.35), transparent);
  mask-image:
    radial-gradient(
      ellipse 16% 38% at 22% 46%,
      rgba(0, 0, 0, 0.6),
      transparent
    ),
    radial-gradient(ellipse 5% 20% at 27% 28%, rgba(0, 0, 0, 0.4), transparent),
    radial-gradient(ellipse 9% 28% at 50% 36%, rgba(0, 0, 0, 0.5), transparent),
    radial-gradient(
      ellipse 7% 26% at 52% 60%,
      rgba(0, 0, 0, 0.45),
      transparent
    ),
    radial-gradient(
      ellipse 18% 26% at 70% 33%,
      rgba(0, 0, 0, 0.5),
      transparent
    ),
    radial-gradient(
      ellipse 12% 16% at 76% 53%,
      rgba(0, 0, 0, 0.4),
      transparent
    ),
    radial-gradient(ellipse 7% 10% at 82% 66%, rgba(0, 0, 0, 0.35), transparent);
  -webkit-mask-composite: source-over;
  mask-composite: add;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

/* Main 3-column layout */
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 960px) {
  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 40px;
    align-items: start;
  }
}

/* Brand column */
.footer-brand {
  max-width: 360px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10.4px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 26.4px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-decoration: none;
}
.footer-logo-icon {
  font-size: 24px;
  color: var(--accent);
}
.footer-desc {
  font-size: 13.12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}

/* Nav columns */
.footer-nav-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-nav-area .footer-nav-col a {
  display: block;
  font-size: 14.08px;
  color: rgba(255, 255, 255, 0.5);
  padding: 6.4px 0;
  transition:
    color 0.25s,
    padding-left 0.3s var(--ease);
}
.footer-nav-area .footer-nav-col a:hover {
  color: var(--white);
  padding-left: 6.4px;
}

/* Location cards */
.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.footer-locations--narrow {
  max-width: 720px;
  margin: 0 auto;
}
.footer-loc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 13.6px;
  padding: 0;
  overflow: hidden;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s var(--ease);
}
.footer-loc-card:hover {
  border-color: rgba(167, 139, 250, 0.25);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-2px);
}
.footer-loc-thumb {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18.4px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-loc-thumb--india {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.2) 0%,
    rgba(217, 119, 6, 0.1) 100%
  );
  border-bottom: 2px solid rgba(251, 146, 60, 0.4);
}
.footer-loc-thumb--uae {
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  border-bottom: 2px solid rgba(167, 139, 250, 0.4);
}
.footer-loc-thumb--ksa {
  background: linear-gradient(
    135deg,
    rgba(74, 222, 128, 0.15) 0%,
    rgba(22, 163, 74, 0.08) 100%
  );
  border-bottom: 2px solid rgba(74, 222, 128, 0.35);
}
.footer-loc-thumb--usa {
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.2) 0%,
    rgba(37, 99, 235, 0.1) 100%
  );
  border-bottom: 2px solid rgba(96, 165, 250, 0.4);
}
.footer-loc-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11.52px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  margin: 12px 13.6px 4.8px;
}
.footer-loc-card p {
  font-size: 10.88px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.45;
  margin: 0;
  padding: 0 13.6px;
}
.footer-loc-card p:last-child {
  padding-bottom: 13.6px;
}

/* Service tags */
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8.8px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.footer-tag {
  font-size: 11.52px;
  padding: 7.2px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  white-space: nowrap;
  cursor: default;
}
.footer-tag:hover {
  border-color: rgba(167, 139, 250, 0.3);
  color: var(--white);
  background: rgba(167, 139, 250, 0.05);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 0 48px;
  font-size: 12.16px;
  color: rgba(255, 255, 255, 0.25);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 6.4px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15.2px;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: rgba(167, 139, 250, 0.12);
  color: var(--white);
}

/* ---------- Footer Responsive ---------- */
@media (max-width: 959px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0 40px;
  }
  .footer-locations {
    grid-template-columns: 1fr 1fr;
    gap: 9.6px;
  }
  .footer-tags {
    padding: 32px 0;
    gap: 7.2px;
  }
  .footer-tag {
    font-size: 10.88px;
    padding: 5.6px 12.8px;
  }
}
@media (max-width: 380px) {
  .footer-locations {
    grid-template-columns: 1fr;
  }
}

/* ---------- 11. ADDITIONAL RESPONSIVE POLISH ---------- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 35.2px;
  }
  .hero-sub-text {
    font-size: 14.72px;
  }
  .section-head h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .calc {
    padding: 24px;
  }
  .cta-panel {
    padding: 40px 24px;
  }
  .process-card {
    padding: 20px 20px;
  }
}

/* === MERGED MODERN.CSS === */

/* ============================================
   BIXILY DIGITAL — Modern Interactions Layer
   Custom cursor, gradient text, glow effects,
   scroll-lock portfolio, bento blog, progress bar
   ============================================ */

/* ---------- PAGE LOAD ANIMATION ---------- */
body {
  opacity: 0;
}
body.loaded {
  opacity: 1;
  transition: opacity 0.7s ease;
}

/* ---------- BRAND LOGO STYLES (PURPLE VECTOR LOGO) ---------- */
body .nav-logo,
body .footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
body .nav-logo-svg {
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.35));
  transition: filter 0.3s ease;
  margin-right: 6px;
}
body .nav-logo-img {
  max-width:75px;
  width: auto;
}
body .nav-logo:hover .nav-logo-svg,
body .footer-logo:hover .nav-logo-svg {
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.65));
}
body .nav-logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.025em;
  text-transform: lowercase;
}

/* ---------- NAV SCROLL EFFECTS ---------- */
body .nav {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s,
    box-shadow 0.3s;
}
body .nav.nav--scrolled {
  background: rgba(6, 4, 14, 0.95);
  box-shadow:
    0 4px 30px rgba(124, 58, 237, 0.1),
    0 1px 0 rgba(167, 139, 250, 0.06);
}
body .nav--hidden {
  transform: translateY(-100%);
}
body .nav-links a {
  position: relative;
}
body .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #c7b3ff, #7c3aed);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 1px;
}
body .nav-links a:hover::after {
  width: 100%;
}

/* ---------- GRADIENT TEXT ---------- */
.hero-title em {
  background: linear-gradient(
    135deg,
    #e9deff 0%,
    #c7b3ff 20%,
    #a78bfa 40%,
    #8b5cf6 60%,
    #c7b3ff 80%,
    #e9deff 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientText 5s ease infinite;
}
@keyframes gradientText {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.eyebrow {
  background: linear-gradient(
    90deg,
    rgba(199, 179, 255, 0.55),
    rgba(167, 139, 250, 0.9),
    rgba(199, 179, 255, 0.55)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientText 6s ease infinite;
}

/* ---------- GLOWING STATS ---------- */
.stat-block-num {
  text-shadow:
    0 0 40px rgba(199, 179, 255, 0.25),
    0 0 80px rgba(124, 58, 237, 0.12);
  transition: text-shadow 0.4s;
}
.stat-block:hover .stat-block-num {
  text-shadow:
    0 0 50px rgba(199, 179, 255, 0.4),
    0 0 100px rgba(124, 58, 237, 0.2);
}

/* ---------- ENHANCED BUTTONS ---------- */
body .btn--solid {
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(199, 179, 255, 0.12),
    0 0 40px rgba(124, 58, 237, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body .btn--solid:hover {
  box-shadow:
    0 0 30px rgba(199, 179, 255, 0.25),
    0 0 60px rgba(124, 58, 237, 0.12);
  transform: translateY(-3px);
}
body .btn--solid::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  transition: transform 0.6s;
  transform: translateX(-100%) rotate(45deg);
  pointer-events: none;
}
body .btn--solid:hover::after {
  transform: translateX(60%) rotate(45deg);
}
body .btn--ghost {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body .liquid-glass::before,
body .liquid-glass-strong::before {
  background: linear-gradient(
    135deg,
    rgba(199, 179, 255, 0.3) 0%,
    rgba(124, 58, 237, 0.12) 25%,
    transparent 50%,
    rgba(124, 58, 237, 0.12) 75%,
    rgba(199, 179, 255, 0.3) 100%
  );
  background-size: 300% 300%;
  animation: borderShimmer 6s ease infinite;
}
@keyframes borderShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
body .service-card {
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s;
}
body .service-card:hover {
  box-shadow:
    0 8px 40px rgba(124, 58, 237, 0.12),
    inset 0 1px 1px rgba(199, 179, 255, 0.12);
}
.service-card-icon {
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s,
    border-color 0.3s;
}
.service-card:hover .service-card-icon {
  transform: rotate(8deg) scale(1.1);
}

/* ---------- PROCESS GLOW ---------- */
.process-num {
  box-shadow:
    0 0 20px rgba(199, 179, 255, 0.12),
    0 0 40px rgba(124, 58, 237, 0.06);
  transition:
    box-shadow 0.4s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-item:hover .process-num {
  box-shadow:
    0 0 30px rgba(199, 179, 255, 0.25),
    0 0 60px rgba(124, 58, 237, 0.12);
  transform: scale(1.08);
}
.process-card {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s;
}
.process-item:hover .process-card {
  transform: translateX(8px);
  box-shadow: -4px 0 30px rgba(124, 58, 237, 0.08);
}

/* ---------- FAQ ---------- */
.faq-row {
  transition:
    background 0.35s,
    padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-row:hover {
  background: rgba(167, 139, 250, 0.015);
  padding-left: 8px;
}
.faq-row.is-open {
  background: rgba(167, 139, 250, 0.025);
}

/* ---------- STARS SHIMMER ---------- */
.stars {
  background: linear-gradient(
    90deg,
    #c7b3ff,
    #ffd700,
    #e9deff,
    #ffd700,
    #c7b3ff
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease infinite;
}
.quote-card-text {
  position: relative;
  padding-left: 24px;
}
.quote-card-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    #c7b3ff,
    rgba(124, 58, 237, 0.3),
    transparent
  );
}

/* ---------- MODERN RANGE SLIDER ---------- */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    rgba(167, 139, 250, 0.15),
    rgba(255, 255, 255, 0.06)
  );
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7b3ff, #8b5cf6);
  box-shadow:
    0 0 16px rgba(199, 179, 255, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 28px rgba(199, 179, 255, 0.7);
  transform: scale(1.2);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #c7b3ff, #8b5cf6);
  box-shadow: 0 0 16px rgba(199, 179, 255, 0.5);
}

/* ---------- MISC HOVER POLISH ---------- */
.logo-grid-item {
  transition:
    background-color 0.3s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body .hero-trust-avatars img {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
body .hero-trust-avatars img:hover {
  transform: translateY(-5px) scale(1.15);
  z-index: 3;
}
.tag-pill {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.tag-pill:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: rgba(167, 139, 250, 0.3);
  color: #fff;
  transform: translateY(-2px);
}
.hero-rule {
  animation: rulePulse 3s ease-in-out infinite;
}
@keyframes rulePulse {
  0%,
  100% {
    opacity: 0.8;
    width: 34px;
  }
  50% {
    opacity: 1;
    width: 50px;
  }
}
.calc-input-field:focus {
  box-shadow:
    0 0 0 3px rgba(167, 139, 250, 0.12),
    0 0 20px rgba(124, 58, 237, 0.06);
}
a.cta-contact-item:hover {
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}
.cta-panel {
  box-shadow:
    0 0 80px rgba(124, 58, 237, 0.08),
    0 0 160px rgba(167, 139, 250, 0.04);
}
img[loading="lazy"] {
  opacity: 0;
  filter: blur(15px);
  transition:
    opacity 0.8s ease,
    filter 0.8s ease;
}
img[loading="lazy"].img-loaded {
  opacity: 1;
  filter: blur(0);
}

/* ---------- FLOATING SHAPES ---------- */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.08;
}
.floating-shape--1 {
  width: 400px;
  height: 400px;
  top: 25%;
  right: 0;
  background: radial-gradient(
    circle,
    rgba(167, 139, 250, 0.6),
    transparent 70%
  );
  animation: floatShape1 24s ease-in-out infinite alternate;
}
.floating-shape--2 {
  width: 350px;
  height: 350px;
  top: 55%;
  left: -5%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent 70%);
  animation: floatShape2 28s ease-in-out infinite alternate;
}
.floating-shape--3 {
  width: 300px;
  height: 300px;
  top: 78%;
  right: 10%;
  background: radial-gradient(
    circle,
    rgba(192, 132, 252, 0.4),
    transparent 70%
  );
  animation: floatShape3 22s ease-in-out infinite alternate;
}
@keyframes floatShape1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 60px) scale(1.15);
  }
  100% {
    transform: translate(-20px, 30px) scale(1.05);
  }
}
@keyframes floatShape2 {
  0% {
    transform: translate(0, 0) scale(1.1);
  }
  50% {
    transform: translate(60px, -50px) scale(0.85);
  }
  100% {
    transform: translate(-30px, 40px) scale(1.1);
  }
}
@keyframes floatShape3 {
  0% {
    transform: translate(0, 0) scale(0.9);
  }
  50% {
    transform: translate(-50px, -30px) scale(1.1);
  }
  100% {
    transform: translate(40px, 20px) scale(0.95);
  }
}
@media (max-width: 768px) {
  .floating-shapes {
    display: none;
  }
}

/* ---------- SECTION GRADIENT DIVIDERS ---------- */
section {
  position: relative;
}
section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(167, 139, 250, 0.12),
    rgba(124, 58, 237, 0.08),
    rgba(167, 139, 250, 0.12),
    transparent
  );
}
.hero::after,
.work::after,
.cta::after,
.footer::after,
.stats::after,
.clients-section::after {
  display: none;
}

/* ============================================
   PORTFOLIO — FLOATING FULL-WIDTH SLIDER
   ============================================ */
body .container .work-swiper {
  width: 100%;
  margin: 0;
  padding: 8px 0 24px;
  overflow: visible;
}
body .work-swiper .slide {
  border-radius: 10px;
  overflow: hidden;
  transition:
    box-shadow 0.5s,
    transform 0.4s;
  margin: 0 10px;
}
body .work-swiper .slide:hover {
  box-shadow: 0 12px 50px rgba(124, 58, 237, 0.15);
}
body .slide-media img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
body .work-swiper .slide:hover .slide-media img {
  transform: scale(1.06);
}
body .work-swiper .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(124, 58, 237, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}
body .work-swiper .slide:hover::after {
  opacity: 1;
}

/* Progress line — 50% width, centered */
body .slider-controls {
  display: flex;
  justify-content: center;
}
body .slider-controls .slider-progress-line {
  width: 50%;
  max-width: 50%;
  flex: none;
}
@media (max-width: 768px) {
  body .slider-controls .slider-progress-line {
    width: 70%;
    max-width: 70%;
  }
}

/* ============================================
   BLOG — MODERN GRID LAYOUT (REFERENCE-BASED)
   ============================================ */
.blog-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .blog-grid-layout {
    grid-template-columns: 1.15fr 1.85fr;
    gap: 48px;
  }
}

/* Left Featured Card */
.blog-featured-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(167, 139, 250, 0.06);
  border-radius: 24px;
  padding: 24px;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s,
    border-color 0.3s;
}
.blog-featured-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(124, 58, 237, 0.12),
    inset 0 1px 1px rgba(199, 179, 255, 0.1);
  border-color: rgba(167, 139, 250, 0.25);
}
.blog-featured-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-featured-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s;
}
.blog-featured-card:hover .blog-featured-img-wrapper img {
  transform: scale(1.05);
}
.blog-featured-info {
  padding: 24px 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.blog-featured-info h3 {
  font-size: clamp(20.8px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}
.blog-featured-info p {
  font-size: 14.4px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}
.blog-featured-date {
  display: flex;
  align-items: center;
  gap: 7.2px;
  font-size: 12.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: auto;
  padding-top: 16px;
}
.blog-featured-date iconify-icon {
  font-size: 14.4px;
  color: rgba(167, 139, 250, 0.7);
}

/* Right 2x2 Grid of cards */
.blog-subgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .blog-subgrid {
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 40px;
  }
}
.blog-subcard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-subcard:hover {
  transform: translateY(-4px);
}
.blog-subcard-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-subcard-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s;
}
.blog-subcard:hover .blog-subcard-img-wrapper img {
  transform: scale(1.05);
}
.blog-subcard-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-subcard-info h4 {
  font-size: 17.6px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  transition: color 0.3s;
}
.blog-subcard:hover h4 {
  color: var(--accent);
}
.blog-subcard-date {
  display: flex;
  align-items: center;
  gap: 7.2px;
  font-size: 12.48px;
  color: rgba(255, 255, 255, 0.4);
}
.blog-subcard-date iconify-icon {
  font-size: 13.6px;
  color: rgba(167, 139, 250, 0.6);
}

/* Tag style on top-left of image wrappers */
.blog-tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  font-size: 10.88px;
  font-weight: 600;
  color: var(--white);
  background: rgba(13, 11, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4.8px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Header style for blog */
.insights-head-row h2 {
  font-size: clamp(28.8px, 3.5vw, 40px);
  font-weight: 700;
  margin: 0;
}
.insights-head-row h2 span {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* ============================================
   FOOTER LOCATIONS DECORATION
   ============================================ */
.footer-loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .footer-loc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.footer-loc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s;
}
.footer-loc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.15);
}
.footer-loc-thumb {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.9);
}
.footer-loc-thumb--india {
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.18) 0%,
    rgba(217, 119, 6, 0.06) 50%,
    rgba(74, 222, 128, 0.06) 100%
  );
  border-bottom: 2px solid rgba(251, 146, 60, 0.35);
}
.footer-loc-thumb--canada {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.18) 0%,
    rgba(220, 38, 38, 0.06) 100%
  );
  border-bottom: 2px solid rgba(239, 68, 68, 0.35);
}
.footer-loc-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 16px 16px 6.4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-loc-card h4 iconify-icon {
  font-size: 16.8px;
}
.footer-loc-card p {
  font-size: 11.52px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
  padding: 0 16px;
}
.footer-loc-card p:last-child {
  padding-bottom: 16px;
}
.footer-loc-address {
  opacity: 0.6;
  padding-top: 4px;
}

/* ============================================
   STICKY FULL-WIDTH GLASS HEADER (NO IMPORTANT)
   ============================================ */
body .nav {
  position: fixed;
  top: 20px;
  left: 30px;
  right: 30px;
  width: auto;
  max-width: none;
  border-radius: 8px;
  background: rgba(13, 11, 22, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 0;
  display: flex;
  align-items: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}
body .nav.nav--scrolled {
  background: rgba(6, 4, 14, 0.95);
  border-color: rgba(167, 139, 250, 0.2);
}
body .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 20px;
  position: relative;
}
body .nav-logo span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
body .nav-logo iconify-icon {
  color: var(--accent);
  font-size: 21.6px;
}
body .nav-links {
  display: none;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  body .nav-links {
    display: flex;
  }
}
body .nav-links a {
  font-size: 14.08px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s;
  text-decoration: none;
}
body .nav-links a.active,
body .nav-links a:hover {
  color: #c7b3ff;
}
body .nav-links a::after {
  display: none;
}

/* Mega dropdown container alignment */
body .nav-item-dropdown {
  position: static;
  display: inline-block;
}
body .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
body .nav-dropdown-trigger iconify-icon {
  font-size: 13px;
}
body .mega-menu {
  position: absolute;
  top: 85px;
  left: 30px;
  right: 30px;
  width: auto;
  transform: translateY(15px);
  background: rgba(8, 6, 15, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 24px;
  padding: 32px 36px 28px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
  z-index: 1001;
}
body .mega-menu::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  height: 45px;
  background: transparent;
}
body .nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Mega menu internal layout */
.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  .mega-menu-grid {
    grid-template-columns: 0.28fr 0.72fr;
    gap: 40px;
  }
}
body .mega-menu-featured {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.1) 0%,
    rgba(13, 11, 22, 0.65) 100%
  );
  border: 1px solid rgba(167, 139, 250, 0.12);
  border-radius: 20px;
  padding: 28px;
  box-sizing: border-box;
}
.mm-feat-label {
  font-size: 11.52px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.mega-menu-featured h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 21.6px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}
.mega-menu-featured p {
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}
body .mega-menu-featured .mm-feat-btn {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 6.4px;
  padding: 8.8px 20px;
  width: fit-content;
  font-size: 13.12px;
  height: 38px;
}
body .mega-menu-featured .mm-feat-btn span,
body .mega-menu-featured .mm-feat-btn iconify-icon {
  color: #0a0a0a;
}
body .mega-menu-featured .mm-feat-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}
.mm-feat-stat {
  margin-top: auto;
  padding-top: 16px;
}
.mm-feat-stat h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 2.4px;
}
.mm-feat-stat span {
  font-size: 11.52px;
  color: rgba(255, 255, 255, 0.38);
}

.mega-menu-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) {
  .mega-menu-services {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}
.mm-services-col {
  display: flex;
  flex-direction: column;
  gap: 17.6px;
}
.mm-col-header {
  display: flex;
  align-items: center;
  gap: 9.6px;
}
.mm-col-header iconify-icon {
  font-size: 20px;
  color: var(--accent);
  background: rgba(167, 139, 250, 0.08);
  padding: 7.2px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mm-col-header h4 {
  font-size: 14.08px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.6px;
  text-align: left;
}
.mm-col-header span {
  font-size: 10.88px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  text-align: left;
}
.mm-col-links {
  display: flex;
  flex-direction: column;
  gap: 8.8px;
}
body .mm-col-links a {
  font-size: 13.12px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
  text-decoration: none;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
body .mm-col-links a::after {
  content: "↗";
  font-size: 12.48px;
  opacity: 0;
  transition: all 0.22s;
  transform: translate(-3px, 3px);
  color: var(--accent);
}
body .mm-col-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}
body .mm-col-links a:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Mega Menu Footer */
body .mega-menu-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.mm-footer-title {
  font-size: 12.8px;
  color: rgba(255, 255, 255, 0.4);
}
.mm-footer-links {
  display: flex;
  gap: 28px;
}
body .mm-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5.6px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
  text-decoration: none;
}
body .mm-footer-links a iconify-icon {
  font-size: 15.2px;
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform 0.25s,
    color 0.25s;
}
body .mm-footer-links a:hover {
  color: var(--accent);
}
body .mm-footer-links a:hover iconify-icon {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* Body nav open override to hide sticky navbar */
body.nav-mobile-open .nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Nav mobile menu integration - Full Screen minimal Overlay */
body .nav-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  background: rgba(6, 4, 11, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: none;
  border-radius: 0;
  padding: 20px;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.4s;
  transform: translateY(-15px);
  box-shadow: none;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  box-sizing: border-box;
}
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding-bottom:25px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.nav-mobile-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.25s,
    border-color 0.25s;
}
.nav-mobile-close:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
body .nav-mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
body .nav-mobile-panel .mobile-link-item {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22.4px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: none;
  transition:
    color 0.25s,
    transform 0.25s;
}
body .nav-mobile-panel .mobile-link-item:hover,
body .nav-mobile-panel .mobile-link-item:active {
  color: var(--white);
  transform: translateX(6px);
  background: transparent;
}
.link-num {
  font-family: monospace;
  font-size: 12.48px;
  font-weight: 400;
  color: var(--accent);
  margin-right: 13.6px;
  opacity: 0.85;
}

/* Mobile dropdown accordion styles */
.nav-mobile-dropdown {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.nav-mobile-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22.4px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}
.nav-mobile-dropdown-btn iconify-icon {
  font-size: 22.4px;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s;
}
.nav-mobile-dropdown-btn.is-open {
  color: var(--white);
}
.nav-mobile-dropdown-btn.is-open iconify-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.nav-mobile-dropdown-content {
  display: grid;
  overflow: hidden;
  height: 0;
  padding: 0;
  interpolate-size: allow-keywords;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body .nav-mobile-dropdown-content.is-open {
  height: auto;
  padding: 8px 0 8px;
}

/* Nested sub-accordions styles */
.nav-mobile-dropdown-sub {
  width: 100%;
  margin-bottom: 5.6px;
}
.nav-mobile-dropdown-sub-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10.4px 0 10.4px 20px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18.4px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s;
}
.nav-mobile-dropdown-sub-btn iconify-icon {
  font-size: 18.4px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s;
}
.nav-mobile-dropdown-sub-btn.is-open {
  color: var(--white);
}
.nav-mobile-dropdown-sub-btn.is-open iconify-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.nav-mobile-dropdown-sub-content {
  display: grid;
  overflow: hidden;
  height: 0;
  padding-left: 36px;
  interpolate-size: allow-keywords;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-dropdown-sub-content.is-open {
  height: auto;
  padding: 6.4px 0 10.4px 20px;
}

.nav-mobile-dropdown-sub-content a {
  font-size: 15.2px;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: none;
  padding: 6.4px 0;
  text-align: left;
  text-decoration: none;
  transition: color 0.25s;
}
.nav-mobile-dropdown-sub-content a:hover {
  color: var(--white);
  background: transparent;
}

/* Nav Mobile Footer */
.nav-mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 5.6px;
  text-align: left;
}
.nav-mobile-contact span {
  font-size: 12.16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}
.nav-mobile-contact a {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18.4px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.25s;
}
.nav-mobile-contact a:hover {
  color: var(--accent);
}
body .nav-mobile-panel .nav-mobile-cta {
  width: 100%;
  height: 46px;
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
  border-radius: 4px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6.4px;
  text-decoration: none;
  font-size: 14.08px;
  box-sizing: border-box;
  margin: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}
body .nav-mobile-panel .nav-mobile-cta span,
body .nav-mobile-panel .nav-mobile-cta iconify-icon {
  color: #0a0a0a;
}
body .nav-mobile-panel .nav-mobile-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

/* Hero padding spacing adjustment */
body .hero {
  padding-top: 170px;
  padding-bottom: 95px;
}
@media (max-width: 768px) {
  body .hero {
    padding-top: 150px;
    padding-bottom: 50px;
  }
  body .nav-mobile-dropdown-content.is-open {
    max-height: 400px;
  }
}

/* Collaborators static 5x3 border grid overrides */
body .logo-grid-container {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  overflow: visible;
  margin-top: 56px;
}
body .logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  animation: none;
}
body .logo-grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 32px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  transition: background 0.3s ease;
  box-sizing: border-box;
}
body .logo-grid-item:hover {
  background: rgba(255, 255, 255, 0.015);
}
.partner-logo-svg {
  width: 100%;
  max-width: 140px;
  height: auto;
  max-height: 48px;
  color: rgba(255, 255, 255, 0.35);
  fill: currentColor;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: block;
}
body .logo-grid-item:hover .partner-logo-svg {
  color: var(--white);
  transform: scale(1.05);
}
.partner-logo-img {
  width: 100%;
  max-width: 140px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.35;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  display: block;
  margin: 0 auto;
}
body .logo-grid-item:hover .partner-logo-img {
  opacity: 0.9;
  transform: scale(1.05);
}
.partner-logo-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 17.6px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  display: block;
}
body .logo-grid-item:hover .partner-logo-label {
  color: var(--white);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  body .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body .nav {
    left: 20px;
    right: 20px;
  }
  body .nav-inner {
    padding: 10px;
  }
	#header .nav-logo img { max-width:70px;}
}
@media (max-width: 576px) {
  body .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body .logo-grid-container.swiper {
    border: none;
    overflow: hidden;
  }
  body .logo-grid.swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    flex-direction: row;
    width: 100%;
    height: auto;
    animation: none;
  }
  body .logo-grid-item.swiper-slide {
    flex-shrink: 0;
    width: 50% !important;
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================
   UNIFORM SQUARE BUTTON OVERRIDES
   ============================================ */
body .btn,
body .btn--sm,
body .btn--solid,
body .btn--ghost,
body .nav-mobile-cta,
body .calc-lead-form button,
body .header-start-btn {
  border-radius: 4px;
  font-size: 14.08px;
  padding: 12px 24px;
  height: 46px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body .btn::after,
body .btn--solid::after,
body .btn--ghost::after {
  border-radius: 4px;
}

/* White CTA Button styles for header button overrides */
body .header-start-btn,
body .nav-mobile-cta {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
  font-weight: 700;
}
body .header-start-btn span,
body .nav-mobile-cta span {
  color: #0a0a0a;
}
body .header-start-btn .start-btn-arrow {
  color: #0a0a0a;
}
body .header-start-btn:hover,
body .nav-mobile-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}

/* Global button hover transform override (color changes only) */
body .btn:hover,
body .btn--solid:hover,
body .btn--ghost:hover,
body .header-start-btn:hover,
body .nav-mobile-cta:hover {
  transform: none;
}

/* ============================================
   REVIEWS / TESTIMONIALS SLIDER SECTION
   ============================================ */
body .testimonials {
  padding: 96px 0 80px;
}
/* ============================================
   CLIENT SOCIAL PROOF WIDGET GRID
   ============================================ */
/* ============================================
   CLIENT SOCIAL PROOF WIDGET GRID (TEXT-ONLY)
   ============================================ */
/* A real Swiper slider at every screen size — uniform-height cards,
   several visible at once with the next peeking at the edge, matching
   the reference layout the client asked for. Card width is fixed via
   CSS (not a slidesPerView count) so however many fit at a given
   viewport width is whatever naturally fits, same technique as
   .work-swiper. Colors/glass treatment stay the theme's own — only the
   card proportions and slider behavior come from the reference. */
.reviews-swiper {
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
  padding-bottom: 8px;
  cursor: grab;
}
.reviews-swiper:active {
  cursor: grabbing;
}
/* Swiper's default transition-timing-function makes an autoplay
   marquee visibly speed up/slow down at each loop cycle boundary —
   forcing linear here keeps the scroll at one constant speed instead. */
.reviews-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
/* Breaks the card row out of .container's own side padding so slides
   reach the true viewport edges on both sides, not just the trailing
   one — .container spans 100% width with its own padding rather than
   being a narrower auto-centered box, so a plain overflow:visible
   isn't enough here (that only lets trailing content spill past the
   padding, it doesn't move the first slide's starting edge). This
   formula breaks out to full viewport width regardless of container
   padding. .testimonials has its own overflow-x:hidden so this can't
   cause a page-level horizontal scrollbar. */
body .container .reviews-swiper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: visible;
}
.reviews-swiper .swiper-slide {
  height: auto;
  width: clamp(260px, 80vw, 340px);
}
.proof-card-text {
  height: 100%;
  background: rgba(10, 8, 20, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, background 0.3s ease;
  min-height: 260px;
  box-sizing: border-box;
}
.proof-card-text:hover {
  border-color: rgba(167, 139, 250, 0.22);
  background: rgba(13, 11, 22, 0.75);
}
.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star-rating .star-icon {
  width: 18.4px;
  height: 18.4px;
  color: var(--accent); /* Glow brand purple/lavender color */
  filter: drop-shadow(0 0 5px rgba(199, 179, 255, 0.45));
  flex-shrink: 0;
}
.proof-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19.2px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proof-quote {
  font-size: 14.72px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proof-card-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  margin-top: 18px;
}
.author-hero-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: block;
}
.proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(167, 139, 250, 0.2);
  flex-shrink: 0;
}
.proof-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}
.proof-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15.2px;
  color: var(--white);
}
.proof-meta span {
  font-size: 12.16px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1.6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Prevent horizontal scrollbars on parent sections hosting breakout sliders */
body .work,
body .testimonials {
  overflow-x: hidden;
}

/* Override base style.css mobile panel height caps */
body .nav-mobile-panel.is-open {
  max-height: 100vh;
  overflow-y: auto;
}

/* Background hero glow parallax transition */
body .hero-glow {
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Numeral responsive sizing overrides */
@media (min-width: 992px) {
  body .hero-numeral {
    display: block;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 44%;
    max-width: 620px;
    height: 75%;
    max-height: 580px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  }
}
@media (max-width: 991px) {
  body .hero-numeral {
    display: none;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  body {
    opacity: 1;
  }
}

/* ============================================
   ABOUT US PAGE STYLES (PURE PX MEASUREMENTS)
   ============================================ */
.about-section {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
}
.page-hero,
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 100px;
  overflow: hidden;
}
.page-hero-inner,
.about-hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}
.page-hero h1,
.about-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 15px 0 25px;
}
.page-hero--left {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.page-hero--left .page-hero-inner {
  max-width: 900px;
}
.page-hero-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(220px, 24vw, 440px);
  color: var(--white);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1199px) {
  .page-hero-watermark {
    display: none;
  }
}

.page-hero-sub,
.about-hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.about-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-vision-left h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--white);
  margin-top: 15px;
}
.about-vision-right p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(124, 58, 237, 0.25);
}
.about-vision-left .value-card-icon {
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  color: var(--white);
}
.value-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.05);
}
.team-info {
  padding: 24px;
}
.team-info h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}
.team-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.about-cta-card {
  padding: 80px 40px;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 24px;
}
.about-cta-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
}
.about-cta-card p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-card {
    padding: 48px 24px;
  }
}

/* ============================================
   WORK / BLOG / CONTACT PAGE ADD-ONS
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (min-width: 992px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
}
.portfolio-grid .slide {
  display: block;
  aspect-ratio: 4/3;
}

.blog-subgrid--wide {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .blog-subgrid--wide {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .blog-subgrid--wide {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

textarea.calc-input-field {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-panel .cta-contact-item {
  padding: 16px 4px;
}

/* "Nothing published yet" empty states — Works archive, category/author
   archives, and the blog listing (index.php/home.php). */
.empty-state-msg {
  color: rgba(255, 255, 255, 0.5);
}
.empty-state-msg--center {
  text-align: center;
}

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 100px;
}
.error-page-code {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 8px;
}

/* ============================================
   SINGLE PAGE LAYOUT — sidebar + content
   ============================================ */
.single-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 992px) {
  .single-layout {
    grid-template-columns: 1fr 340px;
    gap: 64px;
  }
  .single-layout--sidebar-left {
    grid-template-columns: 340px 1fr;
  }
  .single-layout--sidebar-left .single-sidebar {
    order: -1;
  }
}

.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 110px;
}

.sidebar-widget {
  border-radius: 18px;
  padding: 28px;
}
.sidebar-widget-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14.4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 18px;
}
.sidebar-widget-text {
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sidebar-widget .cta-contact-item {
  padding: 10px 0;
}
.sidebar-widget .btn--full-width {
  margin-top: 8px;
}
.link-accent {
  color: var(--accent);
}

.author-card {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-card .proof-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.author-card-bio {
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  margin-top: 14px;
}

.related-post-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.related-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.related-post-item:first-child {
  padding-top: 0;
}
.related-post-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-post-info h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13.6px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  transition: color 0.3s;
}
a.related-post-item:hover .related-post-info h4 {
  color: var(--accent);
}
.related-post-info span {
  font-size: 11.52px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
  display: block;
}

.quick-facts-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quick-facts-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.quick-facts-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.quick-facts-item span:first-child {
  color: rgba(255, 255, 255, 0.5);
}
.quick-facts-item span:last-child {
  color: var(--white);
  font-weight: 600;
  text-align: right;
}
.included-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  list-style: none;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.included-list iconify-icon {
  color: var(--accent);
  font-size: 17.6px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Legal pages (Terms & Conditions, Privacy Policy) — shared by both
   template-terms.php and template-privacy-policy.php. */
.legal-hero {
  padding: 160px 0 0;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}
.legal-title {
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 16px;
}
.legal-sub {
  text-align: left;
  margin: 0;
}

/* Article body typography */
.article-content {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.article-content > * + * {
  margin-top: 24px;
}
.article-content h2 {
  font-size: clamp(22.4px, 2.6vw, 28.8px);
  margin-top: 48px;
}
.article-content h3 {
  font-size: clamp(19.2px, 2.2vw, 22.4px);
  margin-top: 36px;
}
.article-content p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}
.article-content ul,
.article-content ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-content li {
  line-height: 1.7;
}
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19.2px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}
.article-content figure {
  border-radius: 16px;
  overflow: hidden;
}
.article-content figure img {
  width: 100%;
  display: block;
}
.article-content figcaption {
  font-size: 12.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  text-align: center;
}

.article-header-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.article-header-meta .author-card {
  gap: 10px;
}
.article-header-meta .proof-avatar {
  width: 36px;
  height: 36px;
}
.article-meta-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.6px;
  color: rgba(255, 255, 255, 0.5);
}
.article-meta-item iconify-icon {
  font-size: 15.2px;
  color: var(--accent);
}

.article-featured-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin: 32px 0 0;
}
.article-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .single-sidebar {
    position: static;
  }
}
