/* ========================================================
   DEZIGNLAYER — Premium Dark Agency Theme
   ======================================================== */

/* ---------- CSS Tokens ---------- */
:root {
  --bg: #0b1020;
  --surface: #0e1424;
  --border: rgba(255, 255, 255, .08);
  --text: #eaf2ff;
  --muted: #9fb1c8;
  --primary: #44d9ff;
  --secondary: #8a5cf6;
  --accent: #00ffd1;
  --success: #27e1a0;
  --radius: 14px;
  --blur: 12px;
  --font: 'Poppins', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input {
  font-family: inherit;
}

/* ---------- Background Treatment ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px 400px at 15% 20%, rgba(68, 217, 255, .08), transparent 60%),
    radial-gradient(500px 350px at 85% 30%, rgba(138, 92, 246, .08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Glow ---------- */
.section {
  position: relative;
  padding: 96px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(600px 400px at 15% 20%, rgba(68, 217, 255, .10), transparent 60%),
    radial-gradient(500px 350px at 85% 30%, rgba(138, 92, 246, .10), transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.section>* {
  position: relative;
  z-index: 1;
}

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-heading,
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  margin-bottom: 32px;
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

/* ---------- Glass Card ---------- */
.card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .03), 0 10px 30px rgba(0, 0, 0, .35);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .04em;
  transition: all .3s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(0, 174, 250, .25);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(196, 50, 128, .45);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ========================================================
   1) HEADER / NAVIGATION — Floating Glass Capsule
   ======================================================== */

/* Skip to content */
.skip-link {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 600;
  z-index: 1001;
  transition: top .3s;
}

.skip-link:focus {
  top: 24px;
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Floating Glass Nav */
.nav-capsule {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: 1100px;
  width: calc(100% - 48px);
  height: 72px;
  border-radius: 28px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 16, 32, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 174, 250, 0.05);
  transition: all 0.4s ease;
}

.nav-capsule.nav-scrolled {
  background: rgba(11, 16, 32, 0.85);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 174, 250, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: none;
}

.nav-brand img {
  height: 52px;
  width: auto;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-center a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-center a:hover,
.nav-center a.active {
  color: #44d9ff;
  text-shadow: 0 0 10px rgba(68, 217, 255, 0.4);
}

.nav-center a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: #44d9ff;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(68, 217, 255, 0.6);
}

.nav-center a:focus-visible,
.nav-cta:focus-visible,
.nav-hamburger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 174, 250, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 174, 250, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-cta .arrow {
  transition: transform 0.3s;
}

.nav-cta:hover .arrow {
  transform: translateX(3px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 13px;
  /* 48 px touch target (22 px bar + 2×13 px padding) */
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(11, 16, 32, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.4s ease;
  z-index: 200;
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer a {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.nav-drawer a:hover {
  color: #44d9ff;
}

.nav-drawer .nav-cta {
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

.nav-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1024px) {
  .nav-center {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-capsule {
    padding: 0 20px;
    height: 64px;
  }

  .nav-cta.desktop-only {
    display: none;
  }
}

/* ========================================================
   2) HERO
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap picture,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 32, .65) 0%, rgba(11, 16, 32, .45) 40%, rgba(11, 16, 32, .8) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(11, 16, 32, .6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero-sub .gradient-text {
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: var(--muted);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Side Dot Nav */
.side-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-nav a {
  width: 10px;
  height: 10px;
  padding: 19px;
  /* expands touch target to 48 px without moving visual dot */
  margin: -19px;
  /* offsets padding so dot stays in original position */
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .25);
  transition: all .3s;
  position: relative;
}

.side-nav a.active,
.side-nav a:hover {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 10px rgba(68, 217, 255, .5);
}

.side-nav a::before {
  content: attr(aria-label);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: .7rem;
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.side-nav a:hover::before {
  opacity: 1;
}

/* ========================================================
   3) MINI INTRO / STRAPLINE BAND
   ======================================================== */
.strapline {
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, #00AEFA, #C43280, transparent) 1;
}

.strapline-text {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

.strapline .btn {
  padding: 10px 24px;
  font-size: .8rem;
}

/* ========================================================
   4) SERVICES — Interactive Two-Column
   ======================================================== */

/* Standalone gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.services-interactive {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  min-height: 72px;
}

.service-row:last-child {
  border-bottom: 1px solid var(--border);
}

.service-row::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-row:hover,
.service-row.is-active {
  background: linear-gradient(to right, rgba(0, 255, 255, .10), transparent 60%);
  color: #EAF2FF;
}

.service-row:hover::before,
.service-row.is-active::before {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary), 0 0 24px rgba(68, 217, 255, .4);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.service-row:hover::after,
.service-row.is-active::after {
  opacity: 1;
}

.service-row:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: 2px;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 12px var(--primary), 0 0 24px rgba(68, 217, 255, .4);
  }

  50% {
    box-shadow: 0 0 20px var(--primary), 0 0 40px rgba(68, 217, 255, .6);
  }
}

/* Preview Card */
.service-preview {
  position: sticky;
  top: 120px;
}

.preview-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 0 30px rgba(68, 217, 255, .2), 0 0 60px rgba(68, 217, 255, .1);
  transition: all 0.4s ease;
}

.preview-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  border: 1px solid rgba(68, 217, 255, .3);
  pointer-events: none;
}

.preview-card::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 20px;
  border: 1px solid rgba(68, 217, 255, .1);
  pointer-events: none;
}

.preview-card.is-lifted {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(68, 217, 255, .3), 0 0 80px rgba(68, 217, 255, .15);
}

.preview-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.preview-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(11, 16, 32, .95), rgba(11, 16, 32, .6) 60%, transparent);
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.preview-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  flex-shrink: 0;
}

.preview-card__text {
  flex: 1;
}

.preview-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.preview-card__desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

/* ========================================================
   5) STATS
   ======================================================== */
/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-tile {
  position: relative;
  padding: 28px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.stat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0.08;
  pointer-events: none;
  transition: opacity 0.4s;
}

.stat-tile--teal::before {
  background: radial-gradient(circle at 30% 30%, #44d9ff, transparent 70%);
}

.stat-tile--violet::before {
  background: radial-gradient(circle at 30% 30%, #8a5cf6, transparent 70%);
}

.stat-tile--amber::before {
  background: radial-gradient(circle at 30% 30%, #f59e0b, transparent 70%);
}

.stat-tile--cyan::before {
  background: radial-gradient(circle at 30% 30%, #00ffd1, transparent 70%);
}

.stat-tile--magenta::before {
  background: radial-gradient(circle at 30% 30%, #c43280, transparent 70%);
}

.stat-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: 0 0 30px rgba(68, 217, 255, .12);
}

.stat-tile:hover::before {
  opacity: 0.15;
}

.stat-tile__icon-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(68, 217, 255, .4);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s;
}

.stat-tile--teal .stat-tile__icon-ring {
  border-color: rgba(68, 217, 255, .5);
  box-shadow: 0 0 12px rgba(68, 217, 255, .2);
}

.stat-tile--violet .stat-tile__icon-ring {
  border-color: rgba(138, 92, 246, .5);
  box-shadow: 0 0 12px rgba(138, 92, 246, .2);
}

.stat-tile--amber .stat-tile__icon-ring {
  border-color: rgba(245, 158, 11, .5);
  box-shadow: 0 0 12px rgba(245, 158, 11, .2);
}

.stat-tile--cyan .stat-tile__icon-ring {
  border-color: rgba(0, 255, 209, .5);
  box-shadow: 0 0 12px rgba(0, 255, 209, .2);
}

.stat-tile--magenta .stat-tile__icon-ring {
  border-color: rgba(196, 50, 128, .5);
  box-shadow: 0 0 12px rgba(196, 50, 128, .2);
}

.stat-tile:hover .stat-tile__icon-ring {
  animation: ringPulse 0.6s ease-out;
}

@keyframes ringPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.stat-tile__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.stat-tile__number {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-tile__suffix {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}

/* ========================================================
   6) INDUSTRY COVERAGE MATRIX
   ======================================================== */
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(68, 217, 255, .2);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.industry-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 20%, rgba(68, 217, 255, .06), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(138, 92, 246, .04), transparent 60%);
  pointer-events: none;
}

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(68, 217, 255, .25);
  box-shadow: 0 8px 32px rgba(68, 217, 255, .12), 0 2px 8px rgba(0, 0, 0, .3);
}

.industry-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.industry-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.industry-card__thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .3s, border-color .3s;
}

.industry-card:hover .industry-card__thumb {
  transform: scale(1.03);
  border-color: rgba(68, 217, 255, .3);
}

.industry-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text);
}

.industry-card__label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
  transition: opacity .3s, color .3s;
}

.industry-card:hover .industry-card__label {
  opacity: 1;
  color: var(--primary);
}

.industry-card__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin: 0 0 14px;
}

.industry-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.industry-card__explore {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  transition: color .3s, border-color .3s;
}

.industry-card:hover .industry-card__explore {
  color: var(--primary);
  border-color: rgba(68, 217, 255, .3);
}

.industry-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}

.industry-card:hover .industry-card__dot {
  animation: dot-pulse 1.2s infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

.industry-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 1.1rem;
  color: var(--muted);
  transition: transform .3s, color .3s, border-color .3s, box-shadow .3s;
}

.industry-card:hover .industry-card__arrow {
  color: var(--primary);
  border-color: rgba(68, 217, 255, .3);
  transform: translateX(3px) scale(1.05);
  box-shadow: 0 0 12px rgba(68, 217, 255, .2);
}

@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   8) PORTFOLIO SWIPER
   ======================================================== */
.portfolio-slider {
  padding: 0 24px;
  overflow: hidden;
}

.portfolio-swiper {
  overflow: visible;
}

.portfolio-swiper .swiper-slide {
  width: 340px;
  flex-shrink: 0;
}

.portfolio-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-swiper .portfolio-card__inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .03), 0 10px 30px rgba(0, 0, 0, .35);
  transition: all 0.4s ease;
  cursor: grab;
  height: 460px;
}

.portfolio-swiper .portfolio-card__inner:active {
  cursor: grabbing;
}

.portfolio-swiper .portfolio-card__inner:hover {
  transform: translateY(-6px);
  border-color: rgba(68, 217, 255, .3);
  box-shadow: 0 0 30px rgba(68, 217, 255, .15), 0 0 60px rgba(68, 217, 255, .08), 0 20px 40px rgba(0, 0, 0, .4);
}

.portfolio-swiper .portfolio-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Explore pill - top left */
.portfolio-swiper .portfolio-card__explore {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(11, 16, 32, .7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  z-index: 2;
}

.portfolio-swiper .portfolio-card__inner:hover .portfolio-card__explore {
  background: rgba(68, 217, 255, .15);
  border-color: rgba(68, 217, 255, .3);
  color: #44d9ff;
}

.portfolio-swiper .portfolio-card__explore span {
  transition: transform 0.3s;
}

.portfolio-swiper .portfolio-card__inner:hover .portfolio-card__explore span {
  transform: translateX(3px);
}

/* Bottom overlay */
.portfolio-swiper .portfolio-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(11, 16, 32, .95) 0%, rgba(11, 16, 32, .6) 60%, transparent 100%);
  z-index: 2;
}

.portfolio-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

.portfolio-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

/* Drag hint - centered circle on hover */
.portfolio-swiper .portfolio-card__drag-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.portfolio-swiper .portfolio-card__inner:hover .portfolio-card__drag-hint {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.drag-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(68, 217, 255, .6);
  box-shadow: 0 0 20px rgba(68, 217, 255, .3), inset 0 0 20px rgba(68, 217, 255, .1);
  animation: dragRingPulse 2s ease-in-out infinite;
}

.portfolio-swiper .portfolio-card__drag-hint span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #44d9ff;
  text-shadow: 0 0 10px rgba(68, 217, 255, .5);
}

@keyframes dragRingPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(68, 217, 255, .3), inset 0 0 20px rgba(68, 217, 255, .1);
  }

  50% {
    box-shadow: 0 0 35px rgba(68, 217, 255, .5), inset 0 0 30px rgba(68, 217, 255, .2);
  }
}

/* Chip style */
.chip {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Custom Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 16, 32, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.lightbox-img-wrap img.zoomed {
  cursor: zoom-out;
  transform: scale(2);
  cursor: grab;
}

.lightbox-img-wrap img.zoomed.panning {
  cursor: grabbing;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(11, 16, 32, .9), transparent);
  text-align: center;
  border-radius: 0 0 12px 12px;
}

.lightbox-caption strong {
  font-size: 1.1rem;
  color: #eaf2ff;
  display: block;
}

.lightbox-caption span {
  font-size: 0.85rem;
  color: #9fb1c8;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-zoom-controls {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.lightbox-zoom-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-zoom-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .portfolio-swiper .swiper-slide {
    width: 280px;
  }

  .portfolio-swiper .portfolio-card__inner {
    height: 380px;
  }
}

/* ========================================================
   9) TECH MARQUEE
   ======================================================== */
.marquee-label {
  text-align: center;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
  opacity: .6;
}

.marquee-wrap {
  overflow: hidden;
  padding: 32px 0;
}

.marquee-track {
  display: flex;
  gap: 77px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 80px;
  flex-shrink: 0;
}

.marquee-item img {
  height: 45px;
  width: auto;
  filter: grayscale(100%) brightness(2) opacity(.5);
  transition: all .3s ease;
}

.marquee-item:hover img {
  filter: grayscale(0) brightness(1) opacity(1);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========================================================
   10) CLIENTS
   ======================================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.client-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all .3s ease;
  cursor: pointer;
}

.client-tile img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all .3s;
}

.client-tile:hover {
  border-color: rgba(68, 217, 255, .25);
  box-shadow: 0 0 20px rgba(68, 217, 255, .1);
}

.client-tile:hover img {
  filter: none;
  opacity: 1;
}

.clients-cta {
  text-align: center;
  margin-top: 48px;
}

.clients-cta p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ========================================================
   11) TESTIMONIALS
   ======================================================== */
.testimonials-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.testimonials-metrics span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
}

.testimonials-metrics .metric-value {
  color: var(--accent);
}

.testimonial-swiper {
  padding-bottom: 50px !important;
}

.testimonial-card {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00AEFA, #C43280);
}

.testimonial-quote-icon {
  font-size: 2rem;
  color: var(--primary);
  opacity: .3;
  margin-bottom: 12px;
  line-height: 1;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-stars {
  color: #f5a623;
  font-size: .85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: .9rem;
  font-weight: 600;
}

.testimonial-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: .7;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: var(--primary);
}

/* ========================================================
   12) CTA BAND
   ======================================================== */
.cta-band {
  text-align: center;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(68, 217, 255, .12), rgba(138, 92, 246, .08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.cta-band .btn-primary {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ========================================================
   13) FOOTER
   ======================================================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--muted);
  transition: all .3s;
}

.footer-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  padding: 5px 0;
  transition: color .25s;
}

.footer-col a:hover {
  color: var(--primary);
}

/* Newsletter */
.footer-newsletter {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-newsletter p {
  font-size: .9rem;
  color: var(--muted);
}

.footer-newsletter form {
  display: flex;
  gap: 8px;
}

.footer-newsletter input {
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: .85rem;
  min-width: 240px;
  outline: none;
  transition: border-color .3s;
}

.footer-newsletter input:focus {
  border-color: var(--primary);
}

.footer-newsletter button {
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: box-shadow .3s;
}

.footer-newsletter button:hover {
  box-shadow: 0 0 20px rgba(196, 50, 128, .3);
}

/* Footer bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--muted);
}

/* ========================================================
   FIXED ELEMENTS
   ======================================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.1rem;
  z-index: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all .35s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.whatsapp-fab {
  position: fixed;
  bottom: 84px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  transition: transform .3s;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ========================================================
   SOCIAL SIDEBAR
   ======================================================== */
.social-sidebar {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-sidebar a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .3s ease;
}

.social-sidebar a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.social-sidebar a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .social-sidebar {
    display: none;
  }
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1280px) {
  .side-nav {
    right: 16px;
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .services-interactive {
    grid-template-columns: 1fr;
  }

  .service-preview {
    position: relative;
    top: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .side-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }

  .client-tile {
    padding: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-newsletter form {
    width: 100%;
  }

  .footer-newsletter input {
    flex: 1;
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .footer-policy-links a {
    font-size: 1rem;
  }

  .footer-location-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .client-tile {
    padding: 6px;
  }

  .clients-cta {
    margin-top: 64px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input {
    width: 100%;
  }
}

/* ========================================================
   CONTACT PAGE — Premium Rebuild Styles
   ======================================================== */

/* Contact page background with grid overlay */
body.contact-page::before {
  background:
    radial-gradient(600px 400px at 15% 25%, rgba(68, 217, 255, .10), transparent 60%),
    radial-gradient(640px 420px at 85% 35%, rgba(138, 92, 246, .10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 60px),
    #0b1020;
}

/* Glass panel base */
.glass-panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset, 0 12px 40px rgba(0, 0, 0, .45);
}

/* Eyebrow chips */
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(68, 217, 255, .2);
  border-radius: 20px;
  padding: 5px 14px;
  backdrop-filter: blur(6px);
  transition: border-color .3s, box-shadow .3s;
}

.contact-chip:hover {
  border-color: rgba(68, 217, 255, .5);
  box-shadow: 0 0 12px rgba(68, 217, 255, .15);
}

/* Contact hero */
.contact-hero {
  padding: 140px 0 80px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-hero-left {
  padding-top: 24px;
}

.contact-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.contact-hero-left h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}

.contact-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Form card */
.contact-form-card {
  position: relative;
  padding: 40px;
}

.form-card-chips {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.form-card-header {
  margin-bottom: 28px;
}

.form-card-header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-card-header p {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  backdrop-filter: blur(6px);
  transition: border-color .3s, box-shadow .3s;
}

.contact-input:focus {
  outline: none;
  border-color: rgba(68, 217, 255, .5);
  box-shadow: 0 0 0 2px rgba(68, 217, 255, .5), 0 0 16px rgba(68, 217, 255, .35);
}

.contact-input::placeholder {
  color: var(--muted);
  opacity: .6;
}

.contact-input option {
  background: var(--surface);
  color: var(--text);
}

.field-error {
  font-size: 0.75rem;
  color: #ff6b6b;
  min-height: 16px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.form-footer-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 8px;
  position: relative;
}

.btn-transmit {
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform .3s, box-shadow .3s;
  font-family: var(--font);
}

.btn-transmit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 174, 250, .3);
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 0 24px rgba(0, 174, 250, .3);
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Offices section */
.offices-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.offices-header {
  margin-bottom: 48px;
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.office-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}

.office-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(138, 92, 246, .08), rgba(68, 217, 255, .06));
  border-radius: inherit;
  pointer-events: none;
  opacity: .5;
  transition: opacity .3s;
}

.office-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(68, 217, 255, .12);
}

.office-card:hover::before {
  opacity: 1;
}

.office-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(68, 217, 255, .2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.office-address {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.office-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.office-cta {
  text-decoration: none;
  transition: background .3s, border-color .3s;
}

.office-cta:hover {
  background: rgba(68, 217, 255, .1);
}

/* Contact band (pre-footer) */
.contact-band {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.contact-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-band-logo {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
}

.contact-band-tagline {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-band-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-band-socials {
  display: flex;
  gap: 12px;
}

.contact-band-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .3s;
  backdrop-filter: blur(6px);
}

.contact-band-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 12px rgba(68, 217, 255, .15);
}

.contact-band-socials a svg {
  width: 18px;
  height: 18px;
}

.contact-console-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.call-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: border-color .3s;
}

.call-bar:hover {
  border-color: rgba(68, 217, 255, .2);
}

.call-bar-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.call-bar-number {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color .3s;
}

.call-bar-number:hover {
  color: var(--primary);
}

.call-bar-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 8px;
}

/* Footer adjustments for contact page */
.footer-policy-links {
  display: flex;
  gap: 20px;
}

.footer-policy-links a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color .25s;
}

.footer-policy-links a:hover {
  color: var(--primary);
}

.scroll-top-footer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s;
}

.scroll-top-footer:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-location-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Floating scroll-top glow */
.scroll-top.visible {
  box-shadow: 0 0 20px rgba(68, 217, 255, .2);
}

/* Contact page responsive */
@media (max-width: 1024px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-hero-left {
    text-align: center;
  }

  .contact-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-badges {
    justify-content: center;
  }

  .offices-grid {
    grid-template-columns: 1fr;
  }

  .contact-band-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .contact-band-socials {
    justify-content: center;
  }

  .contact-band-ctas {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 64px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card-chips {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .contact-hero-left h1 {
    font-size: 2rem;
  }

  .contact-form-card {
    padding: 24px 16px;
  }

  .btn-transmit {
    width: 100%;
    text-align: center;
  }
}

/* ========================================================
   SECONDARY PAGE STYLES
   ======================================================== */

/* Page Hero */
.page-hero {
  padding: 160px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero .section-label {
  margin-bottom: 8px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero .breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
}

.page-hero .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

/* Story grid */
.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-grid img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Values / Why grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Portfolio gallery */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 20px;
  text-align: center;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.portfolio-item .overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-item .overlay .cat-badge {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.portfolio-item .overlay .view-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
}

.team-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(68, 217, 255, .2);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card .info {
  padding: 24px;
  text-align: center;
}

.team-card .info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .info p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select option {
  background: var(--surface);
  color: var(--text);
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-card-value {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.info-card-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Hours card */
.hours-card {
  max-width: 480px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-row span:last-child {
  color: var(--muted);
}

/* Service card extras */
.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Value card extras */
.value-card {
  padding: 32px;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Process card extras */
.process-card {
  padding: 32px;
  text-align: center;
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Glass card hover glow */
.glass-card-hover {
  transition: all 0.4s ease;
}

.glass-card-hover:hover {
  border-color: rgba(68, 217, 255, .25);
  box-shadow: 0 0 24px rgba(68, 217, 255, .1);
}

/* Responsive for inner pages */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 48px;
  }

  .values-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   PORTFOLIO PAGE — Premium Rebuild
   ======================================================== */

/* ---------- Portfolio Hero ---------- */
.portfolio-hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.portfolio-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.portfolio-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  animation: portfolioBlobFloat 12s ease-in-out infinite;
}

.portfolio-hero__blob--1 {
  width: 600px;
  height: 500px;
  background: rgba(68, 217, 255, 0.18);
  top: -15%;
  left: 10%;
  animation-delay: 0s;
}

.portfolio-hero__blob--2 {
  width: 500px;
  height: 450px;
  background: rgba(138, 92, 246, 0.16);
  top: 20%;
  right: 5%;
  animation-delay: -4s;
}

.portfolio-hero__blob--3 {
  width: 450px;
  height: 420px;
  background: rgba(196, 50, 128, 0.13);
  bottom: -20%;
  left: 30%;
  animation-delay: -8s;
}

.portfolio-hero__grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 70px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 70px);
}

@keyframes portfolioBlobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -20px) scale(1.04);
  }

  50% {
    transform: translate(-20px, 25px) scale(0.97);
  }

  75% {
    transform: translate(-30px, -10px) scale(1.03);
  }
}

.portfolio-hero .container {
  position: relative;
  z-index: 1;
}

.portfolio-hero .section-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 12px;
}

.portfolio-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #eaf2ff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-hero__sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.portfolio-hero__sub .gradient-text {
  background: linear-gradient(135deg, #00AEFA 0%, #C43280 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.portfolio-hero__desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.8;
}

/* ---------- Portfolio Showcase Section ---------- */
.portfolio-showcase {
  position: relative;
  padding: 80px 0 100px;
}

/* ---------- Filter Bar ---------- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 52px;
}

.portfolio-filter {
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.portfolio-filter:hover {
  border-color: rgba(68, 217, 255, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.portfolio-filter.active {
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 174, 250, 0.3);
}

/* ---------- Portfolio Grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---------- Portfolio Card ---------- */
.portfolio-card {
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.portfolio-card--hidden,
.portfolio-card[style*="display: none"] {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.portfolio-card__inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  aspect-ratio: 4/3;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.portfolio-card:hover .portfolio-card__inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(68, 217, 255, 0.12);
  border-color: rgba(68, 217, 255, 0.3);
}

.portfolio-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-card:hover .portfolio-card__inner img {
  transform: scale(1.08);
}

/* Skeleton placeholder */
.portfolio-card__skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  z-index: 0;
  pointer-events: none;
}

.portfolio-card__inner img[src]+.portfolio-card__skeleton,
.portfolio-card__inner img.complete+.portfolio-card__skeleton {
  display: none;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Overlay */
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0) 0%, rgba(11, 16, 32, 0.55) 40%, rgba(11, 16, 32, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  background: rgba(68, 217, 255, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
  border: 1px solid rgba(68, 217, 255, 0.2);
}

.portfolio-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.portfolio-card__excerpt {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
  opacity: 0.85;
}

.portfolio-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #00AEFA 0%, #6A2C8A 50%, #C43280 100%);
  padding: 10px 20px;
  border-radius: 50px;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 174, 250, 0.25);
}

.portfolio-card__cta .arrow {
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card__cta {
  box-shadow: 0 6px 24px rgba(196, 50, 128, 0.4);
}

.portfolio-card:hover .portfolio-card__cta .arrow {
  transform: translateX(3px);
}

/* ---------- Empty State ---------- */
.portfolio-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.portfolio-empty.visible {
  display: flex;
}

.portfolio-empty__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.portfolio-empty__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.portfolio-empty__desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 360px;
}

/* ---------- Project Viewer (Fullscreen Lightbox) ---------- */
.project-viewer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-viewer.active {
  opacity: 1;
  pointer-events: auto;
}

.project-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Top Bar */
.project-viewer__topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  z-index: 10;
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.9) 0%, transparent 100%);
}

.project-viewer__info {
  flex: 1;
  min-width: 0;
}

.project-viewer__category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2px;
  background: rgba(68, 217, 255, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

.project-viewer__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-viewer__counter {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.project-viewer__top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Glass Pills */
.project-viewer__pill {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.project-viewer__pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.project-viewer__pill:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.project-viewer__close-btn:hover {
  background: rgba(255, 70, 70, 0.25);
  border-color: rgba(255, 70, 70, 0.4);
}

/* Stage (image area) */
.project-viewer__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Spinner */
.project-viewer__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: none;
}

.project-viewer__spinner.active {
  display: block;
}

.project-viewer__spinner-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: viewerSpin 0.8s linear infinite;
}

@keyframes viewerSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Image Wrap */
.project-viewer__img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}

.project-viewer__img {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  transform-origin: center center;
  will-change: transform;
  cursor: zoom-in;
}

.project-viewer__img.zoomable {
  cursor: zoom-in;
}

.project-viewer__img.zoomed {
  cursor: grab;
}

.project-viewer__img.panning {
  cursor: grabbing;
}

.project-viewer__img.loading {
  opacity: 0.3;
}

/* Nav Arrows */
.project-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.project-viewer__nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.project-viewer__nav:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.project-viewer__nav--prev {
  left: 20px;
}

.project-viewer__nav--next {
  right: 20px;
}

/* Bottom Zoom Bar */
.project-viewer__zoom-bar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
}

.project-viewer__zoom-level {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  min-width: 44px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* ---------- Portrait / Mobile adjustments for viewer ---------- */
@media (max-width: 768px) {
  .portfolio-hero {
    padding: 140px 0 56px;
  }

  .portfolio-hero h1 br {
    display: none;
  }

  .portfolio-filters {
    gap: 8px;
    margin-bottom: 36px;
  }

  .portfolio-filter {
    padding: 9px 16px;
    font-size: 0.72rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .portfolio-card__overlay {
    padding: 20px 16px;
  }

  .portfolio-card__title {
    font-size: 1rem;
  }

  .portfolio-card__cta {
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  .project-viewer__topbar {
    padding: 10px 16px;
  }

  .project-viewer__title {
    font-size: 0.9rem;
  }

  .project-viewer__counter {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .project-viewer__pill {
    width: 36px;
    height: 36px;
  }

  .project-viewer__nav {
    width: 42px;
    height: 42px;
  }

  .project-viewer__nav--prev {
    left: 10px;
  }

  .project-viewer__nav--next {
    right: 10px;
  }

  .project-viewer__zoom-bar {
    bottom: 16px;
  }

  .project-viewer__img {
    max-width: 95%;
    max-height: 80%;
  }
}

@media (max-width: 480px) {
  .portfolio-hero {
    padding: 120px 0 44px;
  }

  .portfolio-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .portfolio-hero__sub {
    font-size: 1rem;
  }

  .portfolio-hero__desc {
    font-size: 0.9rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-filter {
    padding: 8px 14px;
    font-size: 0.68rem;
  }

  .project-viewer__topbar {
    gap: 8px;
  }

  .project-viewer__info {
    flex: 1;
  }

  .project-viewer__category {
    font-size: 0.6rem;
  }

  .project-viewer__title {
    font-size: 0.82rem;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .portfolio-hero__blob {
    animation: none;
  }

  .portfolio-card__inner img,
  .portfolio-card__inner {
    transition: opacity 0.1s ease;
  }

  .portfolio-card:hover .portfolio-card__inner {
    transform: none;
  }

  .portfolio-card:hover .portfolio-card__inner img {
    transform: none;
  }

  .project-viewer__img {
    transition: opacity 0.1s ease;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================================
   SERVICES PAGE — Premium Dark Theme
   ======================================================== */

/* ---------- Hero ---------- */
.svc-hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.svc-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 15% 25%, rgba(68, 217, 255, .10), transparent 60%),
    radial-gradient(640px 420px at 85% 35%, rgba(138, 92, 246, .10), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 60px);
}

.svc-hero .container {
  position: relative;
  z-index: 1;
}

.svc-chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.svc-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.svc-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Section spacing ---------- */
.svc-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.svc-section:first-of-type {
  border-top: none;
}

/* ---------- Feature Block ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
}

.feature-block--reverse {
  grid-template-columns: 7fr 5fr;
}

.feature-block__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0;
}

.feature-block__content>p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ---------- Media Collage ---------- */
.media-collage {
  position: relative;
  min-height: 400px;
}

.media-collage__item {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
  transition: transform .4s, box-shadow .4s;
}

.media-collage__item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(68, 217, 255, .12);
}

.media-collage__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-collage__item:nth-child(1) {
  top: 0;
  left: 0;
  width: 65%;
  z-index: 3;
  transition-delay: 0ms;
}

.media-collage__item:nth-child(2) {
  top: 30%;
  right: 0;
  width: 55%;
  z-index: 2;
  transition-delay: 100ms;
}

.media-collage__item:nth-child(3) {
  bottom: 0;
  left: 15%;
  width: 50%;
  z-index: 1;
  transition-delay: 200ms;
}

/* Blue accent variant */
.media-collage--blue .media-collage__item:hover {
  box-shadow: 0 12px 40px rgba(68, 217, 255, .18);
}

/* Warm accent variant */
.media-collage--warm .media-collage__item:hover {
  box-shadow: 0 12px 40px rgba(196, 50, 128, .18);
}

/* Float animation for collage images */
@keyframes svc-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.media-collage__item:nth-child(1) {
  animation: svc-float 5s ease-in-out infinite;
}

.media-collage__item:nth-child(2) {
  animation: svc-float 5s ease-in-out 1.5s infinite;
}

.media-collage__item:nth-child(3) {
  animation: svc-float 5s ease-in-out 3s infinite;
}

.media-collage__item:hover {
  animation-play-state: paused;
}

/* ---------- Service Rows ---------- */
.svc-service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}

.service-row::before {
  content: '›';
  font-size: 1.2rem;
  color: var(--muted);
  transition: color .3s, text-shadow .3s;
}

.service-row:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(68, 217, 255, .25);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(68, 217, 255, .08);
}

.service-row:hover::before {
  color: var(--primary);
  text-shadow: 0 0 8px rgba(68, 217, 255, .5);
}

/* Stagger reveal delays */
.svc-service-list .service-row:nth-child(1) {
  transition-delay: 0ms;
}

.svc-service-list .service-row:nth-child(2) {
  transition-delay: 60ms;
}

.svc-service-list .service-row:nth-child(3) {
  transition-delay: 120ms;
}

.svc-service-list .service-row:nth-child(4) {
  transition-delay: 180ms;
}

.svc-service-list .service-row:nth-child(5) {
  transition-delay: 240ms;
}

/* ---------- Micro CTA ---------- */
.svc-micro-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap .3s;
}

.svc-micro-cta:hover {
  gap: 10px;
}

/* ---------- Conversion Block ---------- */
.svc-conversion {
  padding-bottom: 100px;
}

.svc-conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.svc-conversion-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset, 0 12px 40px rgba(0, 0, 0, .45);
  padding: 40px;
}

.svc-conversion-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 16px 0 8px;
}

.svc-conversion-subhead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
}

.svc-conversion-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.svc-conversion-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* Code console card */
.svc-console {
  background: rgba(14, 20, 36, .7);
  border-color: rgba(255, 255, 255, .08);
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.svc-console-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.svc-console-lines p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.svc-console-prompt {
  color: var(--accent);
  margin-right: 6px;
}

.svc-console-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.svc-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 0.78rem;
  color: var(--text);
  transition: box-shadow .4s, border-color .4s;
}

.svc-counter.in {
  animation: svc-counter-pulse 2.5s ease-in-out infinite;
}

@keyframes svc-counter-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(68, 217, 255, 0);
    border-color: rgba(255, 255, 255, .08);
  }

  50% {
    box-shadow: 0 0 16px rgba(68, 217, 255, .12);
    border-color: rgba(68, 217, 255, .25);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {

  .feature-block,
  .feature-block--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-conversion-grid {
    grid-template-columns: 1fr;
  }

  .svc-hero {
    padding: 140px 0 80px;
  }
}

@media (max-width: 768px) {
  .media-collage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .media-collage__item {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    animation: none !important;
  }

  .svc-conversion-card {
    padding: 28px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .media-collage__item {
    animation: none !important;
  }

  .svc-counter {
    animation: none !important;
  }

  .svc-service-list .service-row {
    transition-delay: 0ms !important;
  }

  .media-collage__item {
    transition-delay: 0ms !important;
  }
}

/* ========================================================
   SERVICE DETAIL PAGES (SDP)
   ======================================================== */

/* 1) Page background */
.sdp-page {
  background:
    radial-gradient(600px 400px at 15% 25%, rgba(68, 217, 255, .08), transparent 60%),
    radial-gradient(640px 420px at 85% 35%, rgba(138, 92, 246, .08), transparent 60%),
    var(--bg);
}

/* 2) Hero section */
.sdp-hero {
  padding: 140px 0 80px;
  position: relative;
}

.sdp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.sdp-hero__eyebrow {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sdp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

.sdp-hero__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.sdp-hero__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.sdp-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, .03);
}

.sdp-hero__chip strong {
  color: var(--text);
  font-weight: 600;
}

.sdp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 3) Category chips strip */
.sdp-category-strip {
  padding: 0 0 40px;
}

.sdp-category-strip__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.sdp-category-strip__link {
  display: inline-flex;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  transition: all .3s;
}

.sdp-category-strip__link:hover,
.sdp-category-strip__link.active {
  color: var(--primary);
  border-color: rgba(68, 217, 255, .3);
  background: rgba(68, 217, 255, .06);
  box-shadow: 0 0 12px rgba(68, 217, 255, .1);
}

/* 4) Value intro section */
.sdp-value {
  padding: 60px 0 80px;
}

.sdp-value h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.sdp-value__text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
  margin-bottom: 24px;
}

.sdp-value__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.sdp-value__stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 12px;
  background: rgba(68, 217, 255, .06);
  border: 1px solid rgba(68, 217, 255, .15);
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* 5) Feature grid (6 tiles, 3x2) */
.sdp-features {
  padding: 60px 0 80px;
}

.sdp-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sdp-feature-tile {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.sdp-feature-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(68, 217, 255, .2);
  box-shadow: 0 8px 24px rgba(68, 217, 255, .08);
}

.sdp-feature-tile__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(68, 217, 255, .08);
  border: 1px solid rgba(68, 217, 255, .15);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.sdp-feature-tile h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sdp-feature-tile p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* 6) Process timeline */
.sdp-process {
  padding: 60px 0 80px;
}

.sdp-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.sdp-process-step {
  counter-increment: step;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: border-color .3s, box-shadow .3s;
}

.sdp-process-step:hover {
  border-color: rgba(138, 92, 246, .25);
  box-shadow: 0 4px 16px rgba(138, 92, 246, .1);
}

.sdp-process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
  opacity: .6;
}

.sdp-process-step span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.3px;
}

/* 7) Case studies carousel */
.sdp-cases {
  padding: 60px 0 80px;
}

.sdp-cases-swiper {
  overflow: visible;
  padding: 10px 0 20px;
}

.sdp-case-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

.sdp-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(68, 217, 255, .12);
}

.sdp-case-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.sdp-case-card__body {
  padding: 18px 20px;
}

.sdp-case-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.sdp-case-card__desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.sdp-case-card__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(68, 217, 255, .85);
  color: #0b1020;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  pointer-events: none;
}

.sdp-case-card:hover .sdp-case-card__badge {
  transform: translate(-50%, -50%) scale(1);
}

/* 8) FAQ accordion */
.sdp-faq {
  padding: 60px 0 80px;
}

.sdp-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sdp-faq-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s;
}

.sdp-faq-item.open {
  border-color: rgba(68, 217, 255, .2);
}

.sdp-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
}

.sdp-faq-item__q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform .3s;
}

.sdp-faq-item.open .sdp-faq-item__q::after {
  content: '−';
  color: var(--primary);
}

.sdp-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.sdp-faq-item.open .sdp-faq-item__a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.sdp-faq-item__a p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* 9) CTA band */
.sdp-cta-band {
  padding: 80px 0;
  text-align: center;
}

.sdp-cta-band h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

/* 10) Responsive */
@media (max-width: 1024px) {
  .sdp-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sdp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sdp-feature-grid {
    grid-template-columns: 1fr;
  }

  .sdp-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sdp-hero {
    padding: 120px 0 60px;
  }
}

@media (max-width: 480px) {
  .sdp-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   ABOUT PAGE
   ======================================================== */

/* Page background */
body.about-page {
  background:
    radial-gradient(600px 400px at 15% 25%, rgba(68, 217, 255, .08), transparent 60%),
    radial-gradient(640px 420px at 85% 35%, rgba(138, 92, 246, .08), transparent 60%),
    var(--bg);
}

/* 1) Hero */
.about-hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.about-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: .3;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 14, .6), var(--bg));
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero__content {
  max-width: 720px;
}

.about-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.about-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -1px;
}

/* 2) Sections */
.about-section {
  padding: 80px 0;
}

.about-section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

/* 3) Delivering Digital Leadership */
.about-leadership__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-leadership__left {
  position: relative;
  padding-top: 8px;
}

.about-accent-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(68, 217, 255, .5);
  margin-bottom: 16px;
}

.about-leadership__left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}

.about-glass-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-glass-panel p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-glass-panel p:last-child {
  margin-bottom: 0;
}

/* 4) Core Expertise */
.about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-expertise-tile {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.about-expertise-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(68, 217, 255, .25);
  box-shadow: 0 8px 24px rgba(68, 217, 255, .1);
}

.about-expertise-tile__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.about-expertise-tile h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.about-expertise-tile p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* 5) Stats */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.about-stat {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.about-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(68, 217, 255, .2);
  box-shadow: 0 0 30px rgba(68, 217, 255, .1);
}

.about-stat__number {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}

.about-stat__label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* 6) Locations */
.about-locations__sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: -32px;
  margin-bottom: 32px;
}

.about-locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.about-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  cursor: default;
}

.about-location-pill::before {
  content: '\1F4CD';
  font-size: 0.9rem;
}

.about-location-pill:hover {
  border-color: rgba(68, 217, 255, .3);
  background: rgba(68, 217, 255, .06);
  color: var(--primary);
  box-shadow: 0 0 16px rgba(68, 217, 255, .1);
}

/* 7) CTA Band */
.about-cta-band {
  padding: 80px 0;
  text-align: center;
}

.about-cta-band h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.about-cta-band p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* 8) Responsive */
@media (max-width: 1024px) {
  .about-leadership__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-hero {
    padding: 120px 0 80px;
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .about-expertise-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-section {
    padding: 60px 0;
  }

  .about-hero {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-glass-panel {
    padding: 24px 20px;
  }
}

/* ========================================================
   BLOG SYSTEM — List Page & Post Page Styles
   ======================================================== */

/* ---------- Blog List Page ---------- */
.blog-page {
  /* inherits --bg, --surface, --border from root */
}

.blog-hero {
  padding: 140px 0 60px;
}

.blog-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.blog-featured-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform .3s, box-shadow .3s;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(68, 217, 255, .12);
}

.blog-featured-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-featured-card__body {
  padding: 20px 24px;
}

.blog-featured-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #22c55e;
  padding: 3px 10px;
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 12px;
  margin-bottom: 10px;
}

.blog-featured-card__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.blog-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0 40px;
}

.blog-filter-pill {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  cursor: pointer;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-filter-pill:hover,
.blog-filter-pill.active {
  color: var(--primary);
  border-color: rgba(68, 217, 255, .3);
  background: rgba(68, 217, 255, .06);
}

.blog-filter-count {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(68, 217, 255, .1);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  padding: 3px 10px;
  border: 1px solid rgba(68, 217, 255, .2);
  border-radius: 12px;
  margin-bottom: 10px;
  width: fit-content;
}

.blog-card__date {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-card__readtime {
  font-size: 0.72rem;
  color: var(--muted);
}

.blog-card__link {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 500;
}

.blog-newsletter {
  padding: 80px 0;
  text-align: center;
}

.blog-newsletter h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-newsletter__sub {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.blog-newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.blog-newsletter__input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
}

.blog-newsletter__input:focus {
  outline: none;
  border-color: rgba(68, 217, 255, .5);
  box-shadow: 0 0 0 2px rgba(68, 217, 255, .3);
}

/* ---------- Post Hero ---------- */
.post-hero {
  padding: 140px 0 40px;
}

.post-hero__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-meta__date,
.post-meta__readtime {
  font-size: 0.78rem;
  color: var(--muted);
}

.post-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  max-width: 800px;
}

.post-hero__img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ---------- Post Layout ---------- */
.post-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 48px 0 80px;
}

.post-toc {
  position: sticky;
  top: 100px;
  align-self: start;
}

.post-toc h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.post-toc nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-toc a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  padding-left: 12px;
  border-left: 2px solid var(--border);
  transition: all .3s;
}

.post-toc a:hover,
.post-toc a.active {
  color: var(--primary);
  border-left-color: var(--primary);
}

/* ---------- Post Content ---------- */
.post-content {
  max-width: 720px;
}

.post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text);
}

.post-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 12px;
  color: var(--text);
}

.post-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.post-content ul,
.post-content ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.post-content li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.post-content strong {
  color: var(--text);
}

/* ---------- Inline CTA ---------- */
.post-inline-cta {
  padding: 28px 32px;
  margin: 32px 0;
  text-align: center;
}

.post-inline-cta h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.post-inline-cta p {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ---------- Author card ---------- */
.post-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  margin-bottom: 40px;
}

.post-author img {
  border-radius: 12px;
}

.post-author strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.post-author p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Related posts ---------- */
.post-footer-section {
  padding: 0 0 80px;
}

.post-footer-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.post-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

/* ---------- Blog Responsive ---------- */
@media (max-width: 1024px) {
  .blog-hero__grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-toc {
    display: none;
  }

  .post-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-newsletter__form {
    flex-direction: column;
  }

  .post-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: 120px 0 40px;
  }

  .post-hero {
    padding: 120px 0 30px;
  }
}

/* ========================================================
   PACKAGES SECTION — dark theme, consistent with Portfolio
   ======================================================== */

.packages-slider {
  padding: 0 24px;
  overflow: hidden;
}

.packages-swiper {
  overflow: visible;
}

.packages-swiper .swiper-slide {
  width: 340px;
  flex-shrink: 0;
}

/* ---------- Card ---------- */
.pkg-card__inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .03), 0 10px 30px rgba(0, 0, 0, .35);
  transition: all 0.4s ease;
  cursor: grab;
  height: 460px;
}

.pkg-card__inner:active {
  cursor: grabbing;
}

.pkg-card__inner:hover {
  transform: translateY(-6px);
  border-color: rgba(68, 217, 255, .3);
  box-shadow: 0 0 30px rgba(68, 217, 255, .15), 0 0 60px rgba(68, 217, 255, .08), 0 20px 40px rgba(0, 0, 0, .4);
}

.pkg-card__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BOOK NOW pill — top left */
.pkg-card__book-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(11, 16, 32, .7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  z-index: 2;
  text-decoration: none;
}

.pkg-card__inner:hover .pkg-card__book-pill {
  background: rgba(68, 217, 255, .15);
  border-color: rgba(68, 217, 255, .3);
  color: #44d9ff;
}

.pkg-card__book-pill span {
  transition: transform 0.3s;
}

.pkg-card__inner:hover .pkg-card__book-pill span {
  transform: translateX(3px);
}

/* Bottom overlay — always visible with package info */
.pkg-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(11, 16, 32, .95) 0%, rgba(11, 16, 32, .6) 60%, transparent 100%);
  z-index: 2;
}

.pkg-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}

.pkg-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 5px;
}

.pkg-card__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 4px;
}

.pkg-card__price strong {
  color: var(--primary);
  font-weight: 700;
}

.pkg-card__tagline {
  font-size: 0.72rem;
  color: rgba(159, 177, 200, .65);
  margin: 0;
  line-height: 1.4;
}

/* MORE INFO ring — centered, appears on hover */
.pkg-card__info-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.pkg-card__inner:hover .pkg-card__info-ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.info-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(68, 217, 255, .6);
  box-shadow: 0 0 20px rgba(68, 217, 255, .3), inset 0 0 20px rgba(68, 217, 255, .1);
  animation: infoRingPulse 2s ease-in-out infinite;
}

.pkg-card__info-ring span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #44d9ff;
  text-shadow: 0 0 10px rgba(68, 217, 255, .5);
}

@keyframes infoRingPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(68, 217, 255, .3), inset 0 0 20px rgba(68, 217, 255, .1);
  }

  50% {
    box-shadow: 0 0 35px rgba(68, 217, 255, .5), inset 0 0 30px rgba(68, 217, 255, .2);
  }
}

/* ========================================================
   PACKAGES MODAL — dark theme
   ======================================================== */

.pkg-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.pkg-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pkg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 16, 32, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.pkg-modal__panel {
  position: relative;
  background: var(--surface, #0e1424);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  max-width: 600px;
  width: 92%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55);
  z-index: 1;
  animation: pkgModalIn 0.4s ease forwards;
}

@keyframes pkgModalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pkg-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .12);
}

.pkg-modal__close:hover {
  background: var(--secondary, #8a5cf6);
  border-color: var(--secondary, #8a5cf6);
  transform: rotate(90deg);
}

/* ---------- Modal Image Zone ---------- */
.pkg-modal__image-zone {
  position: relative;
  padding-top: 45%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: var(--bg, #0b1020);
}

.pkg-modal__image-zone img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-modal__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 16, 32, .15) 0%, rgba(11, 16, 32, .78) 100%);
  z-index: 1;
}

.pkg-modal__img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 30px 24px;
  color: #fff;
  z-index: 2;
}

.pkg-modal__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(68, 217, 255, .18);
  color: #44d9ff;
  border: 1px solid rgba(68, 217, 255, .25);
  margin-bottom: 10px;
}

.pkg-modal__title {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
}

.pkg-modal__price {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.9;
}

/* ---------- Modal Body ---------- */
.pkg-modal__body {
  padding: 28px 30px 34px;
}

.pkg-modal__features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.pkg-modal__features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--muted, #9fb1c8);
  line-height: 1.5;
}

.pkg-modal__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary, #44d9ff);
}

/* ---------- Modal CTA ---------- */
.pkg-modal__cta {
  text-align: center;
}

.pkg-modal__book-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary, #44d9ff) 0%, var(--secondary, #8a5cf6) 100%);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 6px 22px rgba(68, 217, 255, .25);
  text-decoration: none;
}

.pkg-modal__book-btn:hover {
  box-shadow: 0 10px 35px rgba(68, 217, 255, .4);
  transform: translateY(-2px);
}

.pkg-modal__book-btn span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.pkg-modal__book-btn:hover span {
  transform: translateX(4px);
}

.pkg-modal__note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted, #9fb1c8);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .packages-swiper .swiper-slide {
    width: 290px;
  }

  .pkg-card__inner {
    height: 400px;
  }

  .pkg-card__overlay {
    padding: 18px 16px;
  }

  .pkg-card__title {
    font-size: 1rem;
  }

  .pkg-modal__panel {
    max-width: 94%;
    max-height: 90vh;
  }

  .pkg-modal__image-zone {
    padding-top: 52%;
  }

  .pkg-modal__body {
    padding: 20px 20px 26px;
  }

  .pkg-modal__img-content {
    padding: 20px 20px 16px;
  }

  .pkg-modal__title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .packages-slider {
    padding: 0 16px;
  }

  .packages-swiper .swiper-slide {
    width: 260px;
  }

  .pkg-card__inner {
    height: 360px;
  }

  .pkg-card__book-pill {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 0.65rem;
  }

  .pkg-card__overlay {
    padding: 14px 12px;
  }

  .pkg-card__title {
    font-size: 0.9rem;
  }

  .pkg-card__tagline {
    font-size: 0.68rem;
  }

  .info-ring {
    width: 52px;
    height: 52px;
  }

  .pkg-card__info-ring span {
    font-size: 0.62rem;
  }
}

/* ═══════════════════════════════════════════
   FAQ SECTION — World-Class Interactive FAQ
   ═══════════════════════════════════════════ */

/* ---------- Keyframes ---------- */
@keyframes faqBlobFloat1 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, 30px) scale(1.08);
  }
}

@keyframes faqBlobFloat2 {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-30px, -40px) scale(1.06);
  }
}

@keyframes faqRingRotate1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes faqRingRotate2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes faqOrbPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 174, 250, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(196, 50, 128, 0.6);
  }
}

@keyframes faqToggleSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(45deg);
  }
}

@keyframes faqToggleSpinBack {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* ---------- Section Base ---------- */
.faq-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0a1a 0%, #1a1040 50%, #0d0d2b 100%);
}

.faq-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.faq-section__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.faq-section__blob--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 174, 250, 0.12) 0%, transparent 70%);
  animation: faqBlobFloat1 12s ease-in-out infinite alternate;
}

.faq-section__blob--2 {
  width: 700px;
  height: 700px;
  bottom: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(196, 50, 128, 0.10) 0%, transparent 70%);
  animation: faqBlobFloat2 15s ease-in-out infinite alternate;
}

.faq-section__grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 28px 28px;
}

.faq-section__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 64px;
  align-items: start;
}

/* ---------- Left Column ---------- */
.faq-col-left {
  padding-top: 20px;
}

.faq-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.faq-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 20px;
  max-width: 420px;
}

.faq-heading .gradient-text {
  background: linear-gradient(135deg, #00AEFA 0%, #C43280 55%, #2E2E69 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 360px;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #FFFFFF;
  background: linear-gradient(135deg, #00AEFA 0%, #C43280 55%, #2E2E69 100%);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0, 174, 250, 0.25);
  transition: all 0.35s ease;
  text-decoration: none;
}

.faq-cta-btn:hover {
  box-shadow: 0 8px 36px rgba(196, 50, 128, 0.4);
  transform: translateY(-2px);
}

/* Decorative Rings (desktop) */
.faq-ring-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  margin-top: 56px;
}

.faq-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border-style: solid;
}

.faq-ring--outer {
  width: 280px;
  height: 280px;
  margin-top: -140px;
  margin-left: -140px;
  border-width: 1px;
  border-color: rgba(0, 174, 250, 0.2);
  animation: faqRingRotate1 20s linear infinite;
  will-change: transform;
}

.faq-ring--middle {
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  border-width: 1px;
  border-color: rgba(196, 50, 128, 0.25);
  animation: faqRingRotate2 16s linear infinite;
  will-change: transform;
}

.faq-ring--inner {
  width: 120px;
  height: 120px;
  margin-top: -60px;
  margin-left: -60px;
  border-width: 2px;
  border-color: transparent;
  border-image: linear-gradient(135deg, #00AEFA 0%, #C43280 100%) 1;
  animation: faqRingRotate1 12s linear infinite;
  will-change: transform;
}

.faq-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 174, 250, 0.9), rgba(196, 50, 128, 0.7));
  animation: faqOrbPulse 3s ease-in-out infinite;
  will-change: box-shadow;
}

/* ---------- Stats Bar ---------- */
.faq-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.faq-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.faq-stat__icon {
  font-size: 1.1rem;
}

.faq-stat__value {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.faq-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

/* ---------- Category Pills ---------- */
.faq-categories {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.faq-cat-pill {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.faq-cat-pill:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.faq-cat-pill.is-active {
  background: linear-gradient(135deg, #00AEFA 0%, #C43280 55%, #2E2E69 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(0, 174, 250, 0.25);
}

/* ---------- Search ---------- */
.faq-search-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 2;
}

.faq-search-input {
  width: 100%;
  height: 54px;
  padding: 0 48px 0 56px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
}

.faq-search-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.faq-search-input:focus {
  border-color: rgba(0, 174, 250, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 174, 250, 0.12);
}

.faq-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  transition: all 0.2s ease;
}

.faq-search-clear:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.faq-counter {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

/* ---------- FAQ List ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- FAQ Item ---------- */
.faq-item {
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-item.is-hidden {
  opacity: 0;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.faq-item__header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s ease;
  font-family: inherit;
  color: inherit;
  position: relative;
}

.faq-item__header:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.faq-item.is-open .faq-item__header {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 174, 250, 0.35);
  box-shadow:
    0 0 0 1px rgba(196, 50, 128, 0.15),
    0 8px 40px rgba(0, 174, 250, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-item__left-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #00AEFA, #C43280, #2E2E69);
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.is-open .faq-item__left-bar {
  opacity: 1;
}

.faq-item__icon-box {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 1rem;
}

.faq-item__question {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.faq-item__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__toggle-line {
  position: absolute;
  background: linear-gradient(135deg, #00AEFA, #C43280);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s ease;
}

.faq-item__toggle-line--h {
  width: 16px;
  height: 2px;
}

.faq-item__toggle-line--v {
  width: 2px;
  height: 16px;
}

.faq-item.is-open .faq-item__toggle-line--v {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.is-open .faq-item__toggle-line--h {
  transform: rotate(180deg);
}

/* ---------- FAQ Answer ---------- */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.4s ease,
    padding 0.4s ease;
}

.faq-item.is-open .faq-item__answer {
  opacity: 1;
}

.faq-item__answer-inner {
  padding: 0 24px 24px 70px;
}

.faq-item.is-open .faq-item__answer-inner {
  padding: 16px 24px 24px 70px;
}

.faq-item__answer-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Highlighted search text */
mark.faq-highlight {
  background: rgba(196, 50, 128, 0.35);
  color: #FFFFFF;
  border-radius: 3px;
  padding: 1px 3px;
}

/* ---------- Empty State ---------- */
.faq-empty-state {
  margin-top: 20px;
}

.faq-empty-state__card {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.faq-empty-state__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.faq-empty-state__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.faq-empty-state__card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

/* ---------- Bottom CTA Inside Section ---------- */
.faq-bottom-cta {
  margin-top: 40px;
  text-align: center;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.faq-bottom-cta__top-line {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00AEFA, #C43280, transparent);
  border-radius: 2px;
}

.faq-bottom-cta__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.faq-bottom-cta__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.faq-bottom-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- CTA Buttons ---------- */
.faq-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #FFFFFF;
  background: linear-gradient(135deg, #00AEFA 0%, #C43280 55%, #2E2E69 100%);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 174, 250, 0.25);
  transition: all 0.35s ease;
}

.faq-btn-primary:hover {
  box-shadow: 0 8px 36px rgba(196, 50, 128, 0.45);
  transform: translateY(-2px);
}

.faq-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.faq-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */

/* Tablet: 768px - 1279px */
@media (max-width: 1279px) {
  .faq-section__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-col-left {
    text-align: center;
    padding-top: 0;
  }

  .faq-heading {
    max-width: none;
  }

  .faq-subtext {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-ring-wrapper {
    display: none;
  }

  .faq-heading {
    font-size: 2rem;
  }

  .faq-section {
    padding-bottom: 100px;
  }

  .faq-col-right {
    padding-bottom: 16px;
  }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
  .faq-section {
    padding: 80px 0 190px;
    padding-bottom: calc(190px + env(safe-area-inset-bottom, 20px));
    overflow-x: hidden;
  }

  .faq-section__container {
    overflow-x: hidden;
    max-width: 100%;
  }

  .faq-heading {
    font-size: 1.7rem;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .faq-subtext {
    font-size: 0.88rem;
    max-width: 100%;
  }

  .faq-col-right {
    padding-bottom: 150px;
    padding-right: 70px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .faq-stats-bar {
    padding: 12px 16px;
    gap: 6px;
    max-width: 100%;
  }

  .faq-stat {
    font-size: 0.75rem;
  }

  .faq-stat-divider {
    margin: 0 2px;
  }

  .faq-categories {
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    padding-right: 16px;
    max-width: 100%;
  }

  .faq-categories::after {
    content: '';
    flex: 0 0 8px;
  }

  .faq-categories::-webkit-scrollbar {
    display: none;
  }

  .faq-cat-pill {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .faq-list {
    gap: 16px;
    max-width: 100%;
  }

  .faq-item {
    max-width: 100%;
  }

  .faq-item__header {
    padding: 16px 18px;
    gap: 10px;
    max-width: 100%;
  }

  .faq-item__question {
    font-size: 0.85rem;
  }

  .faq-item__icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .faq-item__answer-inner {
    padding-left: 20px;
    padding-right: 16px;
  }

  .faq-item.is-open .faq-item__answer-inner {
    padding-left: 20px;
    padding-right: 16px;
    padding-top: 12px;
  }

  .faq-search-wrapper {
    max-width: 100%;
  }

  .faq-search-input {
    height: 48px;
    font-size: 0.82rem;
    padding-left: 48px;
    padding-right: 40px;
    max-width: 100%;
  }

  .faq-search-icon {
    left: 16px;
  }

  .faq-bottom-cta {
    max-width: 100%;
  }

  .faq-bottom-cta__buttons {
    flex-direction: column;
  }

  .faq-btn-primary,
  .faq-btn-whatsapp {
    width: 100%;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  .scroll-top {
    bottom: calc(24px + env(safe-area-inset-bottom, 20px));
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
    z-index: 999;
  }

  .whatsapp-fab {
    bottom: calc(78px + env(safe-area-inset-bottom, 20px));
    right: 16px;
    width: 48px;
    height: 48px;
    z-index: 999;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }

  .faq-bottom-cta {
    padding: 32px 20px;
  }

  .faq-bottom-cta__heading {
    font-size: 1.2rem;
  }
}

/* Small Mobile: 320px - 479px */
@media (max-width: 479px) {
  .faq-section {
    padding: 60px 0 180px;
    padding-bottom: calc(180px + env(safe-area-inset-bottom, 24px));
    overflow-x: hidden;
  }

  .faq-section__container {
    overflow-x: hidden;
    max-width: 100%;
  }

  .faq-heading {
    font-size: 1.45rem;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .faq-subtext {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .faq-badge {
    font-size: 0.68rem;
    padding: 6px 16px;
    max-width: 100%;
  }

  .faq-cta-btn {
    padding: 13px 28px;
    font-size: 0.82rem;
    max-width: 100%;
    white-space: normal;
  }

  .faq-col-right {
    padding-bottom: 130px;
    padding-right: 65px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .faq-stats-bar {
    border-radius: 16px;
    padding: 10px 12px;
    max-width: 100%;
  }

  .faq-stat {
    font-size: 0.7rem;
  }

  .faq-item {
    max-width: 100%;
  }

  .faq-item__header {
    padding: 14px 14px;
    border-radius: 16px;
    max-width: 100%;
  }

  .faq-item__question {
    font-size: 0.78rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .faq-item__icon-box {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .faq-list {
    gap: 14px;
    max-width: 100%;
  }

  .faq-item__answer-inner {
    padding-left: 16px;
    padding-right: 14px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .faq-item.is-open .faq-item__answer-inner {
    padding-left: 16px;
    padding-right: 14px;
    padding-top: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .faq-item__answer-inner p {
    font-size: 0.8rem;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .faq-cat-pill {
    font-size: 0.7rem;
    padding: 7px 14px;
    flex-shrink: 0;
  }

  .faq-categories {
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    padding-right: 16px;
    max-width: 100%;
  }

  .faq-categories::after {
    content: '';
    flex: 0 0 8px;
  }

  .faq-search-wrapper {
    max-width: 100%;
  }

  .faq-bottom-cta {
    padding: 28px 16px;
    border-radius: 20px;
    max-width: 100%;
  }

  .faq-bottom-cta__heading {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .faq-bottom-cta__sub {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .faq-search-input {
    height: 44px;
    font-size: 0.78rem;
    max-width: 100%;
  }

  .scroll-top {
    bottom: calc(20px + env(safe-area-inset-bottom, 24px));
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
    z-index: 999;
  }

  .whatsapp-fab {
    bottom: calc(70px + env(safe-area-inset-bottom, 24px));
    right: 12px;
    width: 44px;
    height: 44px;
    z-index: 999;
  }

  .whatsapp-fab svg {
    width: 22px;
    height: 22px;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {

  .faq-section__blob--1,
  .faq-section__blob--2,
  .faq-ring--outer,
  .faq-ring--middle,
  .faq-ring--inner,
  .faq-orb,
  .faq-item__header,
  .faq-item__answer,
  .faq-item__toggle-line {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Focus Ring ---------- */
.faq-item__header:focus-visible,
.faq-search-input:focus-visible,
.faq-cat-pill:focus-visible,
.faq-btn-primary:focus-visible,
.faq-btn-whatsapp:focus-visible,
.faq-cta-btn:focus-visible {
  outline: 2px solid rgba(0, 174, 250, 0.7);
  outline-offset: 3px;
}