/* ═══════════════════════════════════════════════════════════════
   AUDIENCE AURA — Stylesheet v3 (Clean Light Design)
   Brand: Magenta #FF00FF · Pink #FFABF3 · Dark #0A050F · Light #FFFFFF
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  /* Brand */
  --purple:       #FF00FF;
  --purple-mid:   #cc00cc;
  --purple-light: #FF00FF;
  --blue:         #cc00cc;
  --blue-dark:    #990099;
  --blue-light:   #FFABF3;
  --gold:         #FFABF3;
  --gold-dark:    #e090d8;

  /* Backgrounds — semi-transparent for liquid glass effect */
  --bg:           rgba(255,255,255,0.72);
  --bg-soft:      rgba(255,240,254,0.65);
  --bg-alt:       rgba(255,230,253,0.60);
  --bg-dark:      #0A050F;
  --border:       rgba(255,255,255,0.72);
  --border-mid:   rgba(255,171,243,0.40);

  /* Text */
  --text:         #0A050F;
  --text-2:       #3d0a3d;
  --text-muted:   #994d99;
  --text-white:   #ffffff;

  /* Gradients */
  --grad:         linear-gradient(135deg, #0A050F 0%, #FF00FF 100%);
  --grad-soft:    linear-gradient(135deg, #fff0fe 0%, #ffe6fd 100%);
  --grad-gold:    linear-gradient(135deg, #FFABF3 0%, #FF00FF 100%);
  --grad-text:    linear-gradient(135deg, #FF00FF 0%, #FFABF3 100%);

  /* Effects */
  --shadow-sm:    0 1px 4px rgba(255,0,255,0.08), 0 4px 16px rgba(255,0,255,0.06);
  --shadow:       0 4px 20px rgba(255,0,255,0.12), 0 1px 4px rgba(255,0,255,0.06);
  --shadow-lg:    0 16px 48px rgba(255,0,255,0.18), 0 4px 12px rgba(255,0,255,0.10);
  --shadow-blue:  0 8px 32px rgba(255,0,255,0.28);
  --shadow-gold:  0 8px 28px rgba(255,171,243,0.40);

  /* Layout */
  --radius:       10px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-pill:  9999px;
  --nav-h:        56px;
  --max-w:        1200px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.28s;

  /* Component surfaces — semi-transparent for liquid glass effect */
  --card:         rgba(255,255,255,0.78);
  --bg-card:      rgba(255,245,255,0.72);
  --surface:      rgba(255,230,253,0.62);
}

/* ── LIQUID GLASS BACKGROUND ───────────────────────────────────── */
.liquid-bg {
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none; overflow: hidden;
}
.liquid-orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.lq-1 {
  width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(255,0,255,0.18) 0%, transparent 68%);
  top: -20%; left: -15%; filter: blur(80px);
  animation: lqFloat1 20s ease-in-out infinite;
}
.lq-2 {
  width: 55vw; height: 55vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(255,171,243,0.22) 0%, transparent 68%);
  top: 35%; right: -18%; filter: blur(80px);
  animation: lqFloat2 25s ease-in-out infinite;
}
.lq-3 {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(204,0,204,0.14) 0%, transparent 68%);
  bottom: 5%; left: 15%; filter: blur(90px);
  animation: lqFloat3 18s ease-in-out infinite;
}
.lq-4 {
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(255,0,255,0.10) 0%, transparent 68%);
  top: 65%; left: -8%; filter: blur(70px);
  animation: lqFloat1 28s ease-in-out infinite reverse;
}
.lq-5 {
  width: 35vw; height: 35vw; max-width: 450px; max-height: 450px;
  background: radial-gradient(circle, rgba(255,171,243,0.16) 0%, transparent 68%);
  top: 8%; right: 15%; filter: blur(75px);
  animation: lqFloat2 22s ease-in-out infinite 6s;
}
@keyframes lqFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(80px,-70px) scale(1.08); }
  66%  { transform: translate(-50px,90px) scale(0.94); }
}
@keyframes lqFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%  { transform: translate(-100px,60px) scale(1.10); }
  75%  { transform: translate(70px,-80px) scale(0.96); }
}
@keyframes lqFloat3 {
  0%,100% { transform: translate(0,0) scale(1); }
  30%  { transform: translate(60px,-90px) scale(1.06); }
  70%  { transform: translate(-80px,50px) scale(0.97); }
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fff0fe 0%, #ffffff 45%, #ffe6fd 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--t) var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; background: rgba(255,255,255,0.95); }

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
h1, h2 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
h3 { font-size: clamp(1rem, 1.6vw, 1.15rem); }
h4 { font-size: 0.96rem; }

p { color: var(--text-2); line-height: 1.8; font-size: 0.94rem; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.white-text, .white-text p, .white-text h1, .white-text h2, .white-text h3 {
  color: #fff;
}

/* ── LAYOUT ────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; }
.section    { padding: 3.5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 0.94rem; color: var(--text-2); }

/* Tags / Badges */
.tag {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  background: rgba(255,0,255,0.08);
  border: 1.5px solid rgba(255,0,255,0.2);
  padding: 0.26rem 0.88rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.tag-gold {
  color: var(--gold-dark);
  background: rgba(255,171,243,0.08);
  border-color: rgba(255,171,243,0.25);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  background: rgba(255,171,243,0.10);
  border: 1px solid rgba(255,171,243,0.45);
  padding: 0.32rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(255,171,243,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.72rem 1.7rem;
  border-radius: var(--radius-pill);
  transition: var(--t) var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,0,255,0.38);
  color: #fff;
}
.btn-purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,0,255,0.3);
}
.btn-purple:hover {
  background: var(--purple-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,0,255,0.4);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: #0A050F;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,171,243,0.5);
  color: #0A050F;
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,0,255,0.06);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,0,255,0.10);
  border-color: var(--border-mid);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--purple);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  color: var(--purple);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}
.btn-lg    { padding: 0.88rem 2.1rem; font-size: 0.95rem; }
.btn-sm    { padding: 0.4rem 1.1rem; font-size: 0.78rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAVBAR ────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.60);
  box-shadow: 0 1px 12px rgba(255,0,255,0.10), inset 0 -1px 0 rgba(255,255,255,0.35);
  transition: box-shadow var(--t) var(--ease), background var(--t) var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 4px 24px rgba(255,0,255,0.16), inset 0 -1px 0 rgba(255,255,255,0.40);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo img { width: 40px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-2);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--t) var(--ease);
}
.nav-links a:hover  { color: var(--text); }
.nav-links a.active { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-book {
  font-family: 'Manrope', sans-serif !important;
  background: var(--gold) !important;
  color: #0A050F !important;
  font-weight: 800 !important;
  padding: 0.48rem 1.25rem !important;
  border-radius: var(--radius-pill) !important;
  font-size: 0.83rem !important;
  box-shadow: 0 4px 14px rgba(255,171,243,0.35) !important;
  transition: var(--t) var(--ease) !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover  { transform: translateY(-2px) !important; box-shadow: 0 8px 22px rgba(255,171,243,0.5) !important; color: #0A050F !important; }

/* ── LANGUAGE TOGGLE ─────────────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  transition: var(--t) var(--ease);
  line-height: 1;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.lang-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255,0,255,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,7,32,0.5);
  z-index: 900;
  backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: url('/img/Green-and-Cream-Minimalist-Home-Interior-Banner-3.png') center center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,5,30,0.82) 0%, rgba(15,10,40,0.70) 50%, rgba(10,5,30,0.82) 100%),
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(255,0,255,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 20%, rgba(255,0,255,0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated background dots */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.75rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content .badge { margin-bottom: 1.1rem; }
.hero-content h1 {
  color: #fff;
  margin-bottom: 1.3rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.hero-content > p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.8rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
}
.hero-proof .fa-circle-check { color: #4ade80; }

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-img-wrap {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 340px; object-fit: cover; display: block; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(30,6,56,0.35), transparent);
}

/* Brand image replacement */
.hero-brand-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-brand-img {
  width: 60%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

/* Floating stat cards */
.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 12px 40px rgba(255,0,255,0.24), inset 0 1px 0 rgba(255,255,255,0.96);
  animation: floatCard 5s ease-in-out infinite;
}
.hero-stat-card .hsc-icon {
  width: 38px; height: 38px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hsc-icon-blue { background: rgba(255,0,255,0.12); color: var(--blue); }
.hsc-icon-gold { background: rgba(255,171,243,0.12); color: var(--gold-dark); }
.hero-stat-card strong { display: block; font-size: 0.98rem; color: var(--text); line-height: 1.1; font-family: 'Manrope', sans-serif; font-weight: 800; }
.hero-stat-card span  { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.hsc-1 { bottom: -16px; left: -28px; animation-delay: 0s; }
.hsc-2 { top: -16px; right: -20px; animation-delay: 2.5s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Floating browser mockup */
.hero-web-preview {
  position: absolute;
  bottom: 30px; right: -10px;
  width: 170px;
  border-radius: 10px;
  overflow: hidden;
  background: #13082a;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,0,255,0.35);
  animation: floatCard 6s ease-in-out infinite;
  animation-delay: 1.2s;
  z-index: 4;
}
.hwp-bar {
  background: #1e1040;
  padding: 6px 10px;
  display: flex; gap: 5px; align-items: center;
}
.hwp-bar span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.hwp-bar span:first-child  { background: #FF00FF; }
.hwp-bar span:nth-child(2) { background: #FFABF3; }
.hwp-bar span:last-child   { background: #22c55e; }
.hero-web-preview img {
  width: 100%; height: 105px; object-fit: cover; display: block;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ── MARQUEE ───────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--purple);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}
.marquee-inner .sep { color: var(--gold); font-size: 0.65rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SERVICE CARDS ─────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }

.svc-card {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 4px 24px rgba(255,0,255,0.08), inset 0 1px 0 rgba(255,255,255,0.92);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.svc-img {
  height: 140px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.svc-img-web    { background: linear-gradient(135deg, #0c1445 0%, #1e40af 100%); }
.svc-img-social { background: linear-gradient(135deg, #2d0645 0%, #c026d3 100%); }
.svc-img-ads    { background: linear-gradient(135deg, #450c0c 0%, #dc2626 100%); }
.svc-img-seo    { background: linear-gradient(135deg, #05302a 0%, #0f766e 100%); }
.svc-img-gmb    { background: linear-gradient(135deg, #1a0a00 0%, #ea580c 100%); }
.svc-img-mkt    { background: linear-gradient(135deg, #0A050F 0%, #FF00FF 100%); }
.svc-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.svc-img .svc-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(6px);
}
.svc-body {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* Colored top accent bar */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover {
  border-color: rgba(255,0,255,0.40);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,0,255,0.20), 0 4px 16px rgba(255,0,255,0.12),
              inset 0 1px 0 rgba(255,255,255,0.92);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(255,0,255,0.07);
  border: 1.5px solid rgba(255,0,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--blue);
  margin-bottom: 1.15rem;
  flex-shrink: 0;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.svc-card:hover .svc-icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: scale(1.08);
}

.svc-body h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.svc-body p  { font-size: 0.85rem; flex: 1; margin-bottom: 1.2rem; line-height: 1.75; }

.svc-price {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold-dark);
  background: rgba(255,171,243,0.07);
  border: 1px solid rgba(255,171,243,0.18);
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  margin-top: auto;
  transition: gap var(--t) var(--ease), color var(--t) var(--ease);
}
.svc-link:hover { gap: 0.75rem; color: var(--blue-dark); }

/* ── STATS BAND ────────────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, #07031a 0%, #0d1f40 60%, #060318 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,0,255,0.12) 0%, transparent 55%),
                    radial-gradient(circle at 80% 50%, rgba(255,0,255,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.stat-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,171,243,0.3);
}

.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,0,255,0.25), rgba(255,0,255,0.25));
  border: 1px solid rgba(255,0,255,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.1rem; color: #a78bfa;
}
.stat-num  {
  display: inline-block;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  color: #fff;
  line-height: 1;
}
.stat-sfx {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--gold);
  vertical-align: top;
  margin-top: 0.2rem;
  display: inline-block;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.6rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── PORTFOLIO HOME PREVIEW ────────────────────────────────────── */
/* ── OLD port-grid-home (kept for safety) ── */
.port-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 210px 210px;
  gap: 0.85rem;
}
.port-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.port-item-tall { grid-row: span 2; }
.port-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.port-item:hover .port-img { transform: scale(1.07); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,4,24,0.92) 0%, rgba(10,4,24,0.35) 45%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem;
  transition: background var(--t) var(--ease);
}
.port-item:hover .port-overlay {
  background: linear-gradient(to top, rgba(255,0,255,0.88) 0%, rgba(255,0,255,0.5) 60%, transparent 100%);
}
.port-overlay .port-cat {
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.3rem;
}
.port-overlay h4 { color: #fff; font-size: 0.9rem; font-weight: 600; }

/* ── NEW HOME PORTFOLIO SECTION ── */
.home-port-section { background: var(--surface); }

.home-port-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.home-port-header h2 { margin-bottom: 0.5rem; }
.home-port-header p { color: var(--text-muted); max-width: 420px; margin: 0; }

.home-port-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.75rem;
  flex-shrink: 0;
}
.hp-stat { text-align: center; }
.hp-stat-num { display: block; font-size: 1.35rem; font-weight: 800; color: var(--text); font-family: 'Manrope', sans-serif; }
.hp-stat-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.hp-stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Main bento grid */
/* ── SHOWCASE GRID (fully visible images, 2-col) ── */
.hp-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
/* 5th card spans full width */
.hp-showcase-card:last-child {
  grid-column: 1 / -1;
}

.hp-showcase-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0A050F;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hp-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.hp-showcase-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  object-position: top;
}
.hp-showcase-card:last-child img {
  height: 240px;
}

.hp-showcase-label {
  padding: 1rem 1.25rem 1.1rem;
  background: var(--card);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.hp-showcase-label-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.hp-showcase-label h4 {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Manrope', sans-serif;
}
.hp-showcase-label p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.hp-showcase-label-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

/* keep old hp-port-grid / hp-card styles for safety */
.hp-port-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hp-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hp-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hp-card-featured { min-height: 460px; }
.hp-side-grid .hp-card { min-height: 210px; }
.hp-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.hp-card:hover .hp-card-img { transform: scale(1.06); }
.hp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,3,18,0.92) 0%, rgba(6,3,18,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.1rem;
  transition: background 0.3s var(--ease);
}
.hp-card:hover .hp-card-overlay {
  background: linear-gradient(to top, rgba(255,0,255,0.9) 0%, rgba(255,0,255,0.55) 55%, transparent 100%);
}
.hp-card-top { display: flex; justify-content: flex-start; }
.hp-card-bottom { display: flex; flex-direction: column; gap: 0.4rem; }
.hp-card-bottom h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin: 0; font-family: 'Manrope', sans-serif; }
.hp-card-featured .hp-card-bottom h4 { font-size: 1.2rem; }
.hp-card-bottom p { color: rgba(255,255,255,0.72); font-size: 0.78rem; margin: 0; }

.hp-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255,0,255,0.25);
  border: 1px solid rgba(255,0,255,0.45);
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  white-space: nowrap;
}

.hp-result-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  width: fit-content;
  white-space: nowrap;
}

/* CTA bar */
.hp-port-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255,0,255,0.12), rgba(255,0,255,0.12));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
}
.hp-port-cta span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── PORTFOLIO BENTO (homepage redesign) ───────────────────────── */
.port-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.port-hd h2 { margin-bottom: 0.5rem; }
.port-hd > div:first-child p { color: var(--text-muted); max-width: 440px; margin: 0; }
.port-hd-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1rem 1.75rem;
  flex-shrink: 0;
}
.phs-item { text-align: center; }
.phs-num  { display: block; font-size: 1.35rem; font-weight: 800; color: var(--text); font-family: 'Manrope', sans-serif; }
.phs-lbl  { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; }
.phs-div  { width: 1px; height: 36px; background: var(--border); }

/* Bento grid: featured spans 2 rows on left; 4 cards fill 2×2 on right */
.port-bento {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: 285px 255px;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pb-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #0A050F;
  cursor: pointer;
}
.pb-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.55s var(--ease);
}
.pb-card:hover img { transform: scale(1.05); }

.pb-featured { grid-row: 1 / 3; }

/* Gradient overlay */
.pb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(6,3,15,0.94) 0%,
    rgba(6,3,15,0.5)  52%,
    transparent       100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.5rem;
  transition: background 0.35s ease;
}
.pb-card:hover .pb-overlay {
  background: linear-gradient(to top,
    rgba(6,3,15,0.97) 0%,
    rgba(6,3,15,0.72) 60%,
    rgba(6,3,15,0.12) 100%);
}

/* Category badge — top-left */
.pb-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #fff;
  background: linear-gradient(135deg, #FF00FF, #cc00cc);
  padding: 0.26rem 0.72rem;
  border-radius: 999px;
}

/* Text info block */
.pb-info h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  font-family: 'Manrope', sans-serif;
  line-height: 1.3;
}
.pb-featured .pb-info h3 { font-size: 1.3rem; }

.pb-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}
.pb-featured .pb-info p,
.pb-card:hover .pb-info p {
  max-height: 90px;
  opacity: 1;
  margin-bottom: 0.7rem;
}

/* Result metric pill */
.pb-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,0,255,0.22);
  border: 1px solid rgba(255,0,255,0.45);
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}
.pb-metric i { color: #a78bfa; font-size: 0.7rem; }

/* Location label */
.pb-location {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* CTA bar */
.port-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(255,0,255,0.1) 0%, rgba(255,0,255,0.1) 100%);
  border: 1px solid rgba(255,0,255,0.18);
  border-radius: var(--radius-xl);
  padding: 1.3rem 2rem;
  flex-wrap: wrap;
}
.port-cta-bar span { color: var(--text-muted); font-size: 0.9rem; }
.port-cta-bar strong { color: var(--text); }

/* ── PORTFOLIO CAROUSEL ─────────────────────────────────────── */
.port-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.14), 0 0 0 1px var(--border);
  /* break out of .container to use wider width */
  width: 90vw;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-xl);
}
.pc-track {
  display: flex;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.pc-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  height: 520px;
}
.pc-img-wrap {
  position: relative;
  overflow: hidden;
  background: #07031a;
}
.pc-img-wrap img {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.7s ease;
}
.pc-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 92%, var(--card) 100%);
  pointer-events: none;
}
.pc-panel {
  background: var(--card);
  border-left: 1px solid var(--border);
  padding: 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.pc-tag {
  font-size: 0.61rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: #fff;
  background: linear-gradient(135deg, #FF00FF, #cc00cc);
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  width: fit-content;
}
.pc-title {
  font-size: 1.55rem; font-weight: 800;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.25; margin: 0;
}
.pc-desc {
  font-size: 0.87rem; color: var(--text-2);
  line-height: 1.75; margin: 0;
}
.pc-metric {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.75rem; font-weight: 600; color: #a78bfa;
  background: rgba(255,0,255,0.1);
  border: 1px solid rgba(255,0,255,0.28);
  padding: 0.35rem 0.9rem;
  border-radius: 999px; width: fit-content;
}
.pc-loc {
  font-size: 0.75rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.4rem;
}
.pc-loc i { color: var(--blue); font-size: 0.7rem; }
.pc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--text); font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.pc-arrow:hover {
  background: var(--blue); color: #fff; border-color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.pc-prev { left: 1.25rem; }
.pc-next { left: calc(59.2% - 54px); }
.pc-counter {
  position: absolute; bottom: 1.4rem; left: 1.5rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  font-family: 'Manrope', sans-serif;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(6px);
  padding: 0.28rem 0.8rem; border-radius: 999px;
  z-index: 10; pointer-events: none;
}
.pc-sep   { opacity: 0.5; }
.pc-total { opacity: 0.6; }
.pc-dots {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  display: flex; gap: 6px; align-items: center; z-index: 20;
}
.pc-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(255,0,255,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.pc-dot.active {
  width: 22px;
  background: linear-gradient(90deg, #FF00FF, #cc00cc);
}

/* ── "WHY US" SPLIT ────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

.split-text h2   { margin: 0.5rem 0 1rem; }
.split-text p    { margin-bottom: 1rem; }

.split-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.split-img-frame img {
  width: 100%; height: 400px; object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
/* Decorative background block */
.split-img-frame::before {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 55%; height: 55%;
  border-radius: var(--radius-xl);
  background: var(--grad);
  z-index: 0;
  opacity: 0.45;
}
/* Decorative border block top-left */
.split-img-frame::after {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 48%; height: 48%;
  border-radius: var(--radius-xl);
  border: 3px solid rgba(255,0,255,0.22);
  z-index: 0;
}

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin: 1.4rem 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.89rem; color: var(--text-2); line-height: 1.6;
}
.check-list .fa-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(22,163,74,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: #16a34a; font-size: 0.64rem; flex-shrink: 0; margin-top: 2px;
}
/* Also support plain <i> tags in check lists (about page etc.) */
.check-list i.fa-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(22,163,74,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: #16a34a; font-size: 0.64rem; flex-shrink: 0; margin-top: 2px;
}

/* ── PROCESS ───────────────────────────────────────────────────── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  position: relative;
  counter-reset: process-counter;
}
/* Dashed line connecting steps */
.process-row::before {
  content: '';
  position: absolute;
  top: 2.6rem; left: 14%; right: 14%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border-mid) 0px,
    var(--border-mid) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.process-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.3rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.process-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(255,0,255,0.10);
}
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 800; color: #fff;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(255,0,255,0.3);
  font-family: 'Manrope', sans-serif;
  position: relative;
}
/* Outer ring on the number */
.process-num::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(255,0,255,0.25);
}
.process-card:hover .process-num::before {
  border-color: rgba(255,0,255,0.5);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.process-card h3 { font-size: 0.96rem; margin-bottom: 0.45rem; }
.process-card p  { font-size: 0.83rem; line-height: 1.65; }

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.test-card {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: 0 4px 24px rgba(255,0,255,0.07), inset 0 1px 0 rgba(255,255,255,0.92);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
/* Decorative large quote mark */
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; right: 1.2rem;
  font-size: 6rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--blue);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}
/* Colored left accent on hover */
.test-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.test-card:hover {
  border-color: rgba(255,0,255,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(255,0,255,0.16), inset 0 1px 0 rgba(255,255,255,0.92);
}
.test-card:hover::after { transform: scaleY(1); }

.test-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.test-body  { font-size: 0.88rem; font-style: italic; color: var(--text-2); margin-bottom: 1.4rem; line-height: 1.8; }
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,0,255,0.4);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.test-avatar-init {
  width: 46px; height: 46px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px;
  color: #fff;
  border: 2px solid rgba(255,0,255,0.4);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.test-author strong { display: block; font-size: 0.85rem; color: var(--text); }
.test-author span   { font-size: 0.74rem; color: var(--text-muted); }

/* ── CTA BANNER ────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0A050F 0%, #3d0a3d 50%, #FF00FF 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,5,15,0.90) 0%, rgba(61,10,61,0.82) 50%, rgba(255,0,255,0.70) 100%);
}
/* Radial glow on right side */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 50%; right: 0;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,171,243,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-text h2 { color: #fff; margin-bottom: 0.5rem; font-size: clamp(1.4rem, 2.8vw, 2rem); }
.cta-text p  { color: rgba(255,255,255,0.8); max-width: 420px; }
.cta-btns    { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ───────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
  text-align: center;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin: 0.75rem auto 1rem; max-width: 700px; }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto; font-size: 1rem; }
.page-hero .badge { display: inline-block; margin-bottom: 0.75rem; }

.breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--blue); font-weight: 500; }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb .fa-chevron-right { font-size: 0.55rem; margin: 0 0.45rem; vertical-align: middle; color: var(--border-mid); }

/* ── ABOUT PAGE ────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.val-card {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  box-shadow: 0 4px 20px rgba(255,0,255,0.06), inset 0 1px 0 rgba(255,255,255,0.90);
  transition: var(--t) var(--ease);
}
.val-card:hover { border-color: rgba(255,0,255,0.35); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(255,0,255,0.14), inset 0 1px 0 rgba(255,255,255,0.90); }
.val-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,0,255,0.10), rgba(255,0,255,0.10));
  border: 1.5px solid rgba(255,0,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--blue);
  margin-bottom: 1rem;
  transition: var(--t) var(--ease);
}
.val-card:hover .val-icon { background: var(--blue); border-color: var(--blue); color: #fff; }
.val-card h3 { font-size: 0.97rem; margin-bottom: 0.4rem; }
.val-card p  { font-size: 0.83rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 660px; margin: 0 auto; }
.team-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--t) var(--ease);
}
.team-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.team-info { padding: 1.4rem; text-align: center; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 0.7rem; }
.team-info p { font-size: 0.83rem; margin-bottom: 1rem; }
.team-socials { display: flex; justify-content: center; gap: 0.5rem; }
.team-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--text-muted);
  transition: var(--t) var(--ease);
}
.team-socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── SERVICES PAGE ─────────────────────────────────────────────── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1.5px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }

.svc-detail-icon {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--grad-soft);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 5.5rem;
  color: var(--blue);
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.svc-detail-text h2 { margin-bottom: 1rem; }
.svc-detail-text p  { margin-bottom: 1.5rem; }

.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 2rem; }
.feat { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--text-2); }
.feat .fa-check { color: #16a34a; font-size: 0.72rem; flex-shrink: 0; }

.svc-detail-price {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: rgba(255,171,243,0.07);
  border: 1.5px solid rgba(255,171,243,0.22);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem; color: var(--gold-dark); font-weight: 600;
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.price-card {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(255,0,255,0.07), inset 0 1px 0 rgba(255,255,255,0.92);
  transition: var(--t) var(--ease);
  position: relative;
}
.price-card:hover {
  border-color: rgba(255,0,255,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(255,0,255,0.18), inset 0 1px 0 rgba(255,255,255,0.92);
}
.price-card.featured {
  background: var(--grad);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255,255,255,0.25);
  color: #fff;
}
.price-card.featured .price-label,
.price-card.featured .price-amount,
.price-card.featured .price-desc,
.price-card.featured .price-features li,
.price-card.featured h3 { color: rgba(255,255,255,0.85); }
.price-card.featured .price-amount { color: #fff; }
.price-card.featured .price-features .fa-check { color: #4ade80; }

.price-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 0.4rem; }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0A050F;
  font-size: 0.7rem; font-weight: 700; padding: 0.25rem 1.1rem;
  border-radius: var(--radius-pill); white-space: nowrap;
}
.price-amount { font-size: 2.1rem; font-weight: 800; color: var(--text); margin: 0.4rem 0 0.3rem; font-family: 'Manrope', sans-serif; }
.price-amount small { font-size: 0.88rem; font-weight: 400; color: var(--text-muted); }
.price-desc { font-size: 0.84rem; margin-bottom: 1.5rem; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; flex: 1; }
.price-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: var(--text-2); }
.price-features .fa-check { color: #16a34a; font-size: 0.72rem; flex-shrink: 0; }

/* ── PORTFOLIO PAGE ────────────────────────────────────────────── */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: flex-start; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.46rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1.5px solid var(--border);
  transition: var(--t) var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}


/* ── BOOKING PAGE ──────────────────────────────────────────────── */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.book-info h2 { margin-bottom: 1rem; }
.book-info > p { margin-bottom: 2rem; }

.book-services-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.book-svc-item {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem 1.1rem;
  transition: var(--t) var(--ease);
}
.book-svc-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.book-svc-item i { font-size: 1.1rem; color: var(--blue); width: 22px; text-align: center; flex-shrink: 0; }
.book-svc-item div strong { display: block; font-size: 0.87rem; color: var(--text); }
.book-svc-item div span  { font-size: 0.76rem; color: var(--gold-dark); font-weight: 600; }

.book-guarantee {
  background: rgba(22,163,74,0.06);
  border: 1.5px solid rgba(22,163,74,0.2);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.book-guarantee i { color: #16a34a; font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.book-guarantee p { font-size: 0.85rem; margin: 0; }

.book-form-wrap {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.book-form-wrap h3 { margin-bottom: 0.3rem; }
.book-form-wrap > p { font-size: 0.87rem; margin-bottom: 2rem; }

/* ── CONTACT PAGE ──────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.ci-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: rgba(255,0,255,0.08);
  border: 1.5px solid rgba(255,0,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--blue); flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.82rem; margin-bottom: 0.1rem; color: var(--text); }
.contact-item a, .contact-item span { font-size: 0.85rem; color: var(--text-2); }
.contact-item a:hover { color: var(--blue); }

.social-row { display: flex; gap: 0.5rem; margin: 1.5rem 0; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-soft); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: var(--text-muted);
  transition: var(--t) var(--ease);
}
.soc-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }

.trust-strip { display: flex; flex-direction: column; gap: 0.55rem; padding-top: 1.5rem; border-top: 1.5px solid var(--border); }
.trust-strip span { display: flex; align-items: center; gap: 0.55rem; font-size: 0.83rem; color: var(--text-2); }
.trust-strip i { color: var(--blue); }

/* ── FORMS (shared) ────────────────────────────────────────────── */
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-2); font-family: 'Manrope', sans-serif; }
.req { color: #dc2626; }

.field-wrap { position: relative; }
.field-wrap i {
  position: absolute; left: 0.95rem; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 0.82rem; pointer-events: none; z-index: 1;
}
.field-wrap.ta-wrap i { top: 1rem; transform: none; }

.field-wrap input,
.field-wrap select,
.field-wrap textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.78rem 1rem 0.78rem 2.55rem;
  color: var(--text);
  font-size: 0.88rem;
  transition: var(--t) var(--ease);
  -webkit-appearance: none;
}
.field-wrap select { cursor: pointer; }
.field-wrap textarea { resize: vertical; min-height: 120px; padding-top: 0.85rem; }

.field-wrap input::placeholder,
.field-wrap textarea::placeholder { color: #b0a0c8; }
.field-wrap input:focus,
.field-wrap select:focus,
.field-wrap textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #f0f6ff;
  box-shadow: 0 0 0 3px rgba(255,0,255,0.10);
}
.field-wrap input.err,
.field-wrap textarea.err {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}
.field-err { font-size: 0.74rem; color: #dc2626; min-height: 1em; }

/* Chips */
.svc-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.svc-chip {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.46rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-2); cursor: pointer;
  transition: var(--t) var(--ease);
}
.svc-chip input[type="radio"],
.svc-chip input[type="checkbox"] { display: none; }
.svc-chip:has(input:checked),
.svc-chip:hover {
  border-color: var(--blue);
  background: rgba(255,0,255,0.08);
  color: var(--blue);
}

.budget-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.budget-chip {
  padding: 0.46rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-2); cursor: pointer;
  transition: var(--t) var(--ease);
}
.budget-chip input { display: none; }
.budget-chip:has(input:checked), .budget-chip:hover {
  border-color: var(--gold);
  background: rgba(255,171,243,0.08);
  color: var(--gold-dark);
}

.alert {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.87rem; font-weight: 500;
  margin-bottom: 1.5rem;
}
.alert-ok  { background: rgba(22,163,74,0.08); border: 1.5px solid rgba(22,163,74,0.22); color: #15803d; }
.alert-err { background: rgba(220,38,38,0.07); border: 1.5px solid rgba(220,38,38,0.2); color: #dc2626; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.faq-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t) var(--ease);
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-size: 0.87rem; font-weight: 600; color: var(--text); text-align: left;
  font-family: 'Manrope', sans-serif;
}
.faq-icon { color: var(--blue); flex-shrink: 0; transition: transform var(--t) var(--ease); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 1.4rem 1.1rem; font-size: 0.84rem; }

/* ── 404 ───────────────────────────────────────────────────────── */
.not-found { min-height: 80vh; display: flex; align-items: center; text-align: center; padding-top: var(--nav-h); }
.not-found-num {
  font-size: clamp(6rem, 14vw, 11rem); font-weight: 900; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 1rem;
}
.not-found h1 { margin-bottom: 1rem; }
.not-found p  { max-width: 460px; margin: 0 auto 2.5rem; }
.not-found-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-body { padding: 4.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; }

.footer-brand img { width: 48px; margin-bottom: 1.1rem; }
.footer-brand p   { font-size: 0.84rem; max-width: 260px; margin-bottom: 1.2rem; color: rgba(255,255,255,0.55); }

.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.85); margin-bottom: 1.1rem;
  font-family: 'Manrope', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a  { font-size: 0.84rem; color: rgba(255,255,255,0.5); transition: var(--t) var(--ease); }
.footer-col a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: rgba(255,255,255,0.5); }
.footer-contact-list i { color: var(--blue-light); width: 14px; text-align: center; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.5); }
.footer-contact-list a:hover { color: rgba(255,255,255,0.9); }

.footer-social { display: flex; gap: 0.55rem; margin-top: 1.25rem; }
.footer-soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  transition: var(--t) var(--ease);
}
.footer-soc-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.footer-base {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 0;
}
.footer-base-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-base p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-base a { color: rgba(255,255,255,0.5); }
.footer-base a:hover { color: rgba(255,255,255,0.85); }

/* ── WHATSAPP STICKY WIDGET ────────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wa-fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  flex-shrink: 0;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
.wa-fab .wa-fab-close { display: none; font-size: 1.3rem; }
.wa-widget.open .wa-fab .wa-fab-icon  { display: none; }
.wa-widget.open .wa-fab .wa-fab-close { display: block; }

.wa-popup {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius);
  padding: 1.2rem;
  width: 275px;
  box-shadow: 0 12px 40px rgba(255,0,255,0.18), 0 4px 16px rgba(0,0,0,0.12),
              inset 0 1px 0 rgba(255,255,255,0.95);
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  transform-origin: bottom right;
}
@keyframes waPopIn {
  from { opacity:0; transform:scale(0.88) translateY(8px); }
  to   { opacity:1; transform:scale(1)    translateY(0);   }
}
.wa-widget.open .wa-popup {
  display: flex;
  animation: waPopIn 0.2s var(--ease);
}

.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wa-popup-header > i.fa-whatsapp {
  color: #25D366;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.wa-popup-header > span {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  flex: 1;
}
.wa-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.25rem 0.35rem;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
}
.wa-close:hover { color: var(--text); background: var(--bg-soft); }

.wa-popup-sub {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.wa-number-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem 0.85rem;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(37,211,102,0.07);
  border: 1.5px solid rgba(37,211,102,0.18);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}
.wa-number-btn:hover {
  background: rgba(37,211,102,0.13);
  border-color: rgba(37,211,102,0.38);
  transform: translateX(-2px);
}
.wa-number-btn > i.fa-whatsapp {
  color: #25D366;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.wa-number-btn > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.wa-label {
  font-size: 0.66rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wa-num {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}
.wa-arrow {
  color: var(--text-muted);
  font-size: 0.72rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .wa-widget { bottom: 5rem; right: 1rem; }
  .wa-popup  { width: 254px; }
}

/* ── FLOATING BOOK BTN ─────────────────────────────────────────── */
.float-book {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  background: var(--gold);
  color: #0A050F;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  display: flex; align-items: center; gap: 0.5rem;
  animation: pulseFab 3s ease-in-out infinite;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.float-book:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(255,171,243,0.6);
  color: #0A050F;
}
@keyframes pulseFab {
  0%,100% { box-shadow: 0 8px 24px rgba(255,171,243,0.4); }
  50%      { box-shadow: 0 8px 40px rgba(255,171,243,0.7); }
}

/* ── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0ecf8; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 4rem 1.75rem; }
  .hero-content > p { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-proof { justify-content: center; }
  .hero-visual { display: none; }

  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .process-row    { grid-template-columns: repeat(2,1fr); }
  .process-row::before { display: none; }
  .test-grid      { grid-template-columns: repeat(2,1fr); }
  .port-grid-home { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,200px); }
  .port-item-tall { grid-row: span 1; }
  .hp-port-grid     { grid-template-columns: 1fr; }
  .hp-card-featured { min-height: 300px; }
  .hp-showcase-grid { grid-template-columns: 1fr; }
  .hp-showcase-card:last-child { grid-column: auto; }
  .home-port-header { flex-direction: column; align-items: flex-start; }
  .home-port-stats  { width: 100%; justify-content: center; }

  /* portfolio carousel — tablet */
  .pc-slide { grid-template-columns: 2fr 1fr; height: 460px; }
  .pc-title { font-size: 1.25rem; }
  .pc-panel { padding: 2rem 1.75rem; }
  .pc-next  { left: calc(50% - 54px); }

  /* portfolio bento — tablet */
  .port-hd          { flex-direction: column; align-items: flex-start; }
  .port-hd-stats    { width: 100%; justify-content: center; }
  .port-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
  }
  .pb-featured {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .port-cta-bar { flex-direction: column; text-align: center; }
  .port-cta-bar .btn { width: 100%; justify-content: center; }

  .split          { grid-template-columns: 1fr; gap: 3rem; }
  .split.rev      { direction: ltr; }
  .split-img-frame img { height: 300px; }
  .split-img-frame::before { display: none; }

  .values-grid    { grid-template-columns: repeat(2,1fr); }
  .team-grid      { grid-template-columns: repeat(2,1fr); max-width: 100%; }

  .svc-detail     { grid-template-columns: 1fr; }
  .svc-detail .svc-detail-icon { max-width: 200px; font-size: 4rem; }

  .pricing-grid   { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .book-layout    { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-grid       { grid-template-columns: 1fr; }

  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }

  .cta-inner      { flex-direction: column; text-align: center; }
  .cta-btns       { justify-content: center; }

  /* portfolio page tablet */
  .port-why-grid  { grid-template-columns: repeat(2, 1fr); }
  .book-process   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: #fff;
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem;
    z-index: 950;
    transition: right var(--t) var(--ease);
    box-shadow: -8px 0 32px rgba(255,0,255,0.12);
  }
  .nav-links.open   { right: 0; }
  .nav-links a      { font-size: 1.05rem; }
  .hamburger        { display: flex; }

  .services-grid    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr 1fr; }
  .test-grid        { grid-template-columns: 1fr; }
  .port-grid-home   { grid-template-columns: 1fr; grid-template-rows: auto; }
  .port-item        { height: 200px; }
  .hp-side-grid     { grid-template-columns: 1fr; }
  .hp-port-cta      { flex-direction: column; text-align: center; }
  .hp-port-cta .btn { width: 100%; justify-content: center; }

  /* portfolio carousel — mobile */
  .pc-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
    height: auto;
  }
  .pc-img-wrap::after { display: none; }
  .pc-panel { padding: 1.5rem; gap: 0.85rem; }
  .pc-title { font-size: 1.15rem; }
  .pc-prev  { left: 0.75rem; }
  .pc-next  { left: auto; right: 0.75rem; top: 160px; transform: none; }
  .pc-prev  { top: 160px; transform: none; }
  .pc-counter { bottom: auto; top: 0.75rem; }
  .pc-dots  { bottom: 1rem; right: 1rem; }

  /* portfolio bento — mobile */
  .port-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .pb-card          { height: 270px; }
  .pb-featured      { grid-column: auto; grid-row: auto; height: 320px; }
  .port-why-grid    { grid-template-columns: repeat(2, 1fr); }
  .values-grid      { grid-template-columns: 1fr; }
  .svc-features     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
  .footer-brand     { grid-column: auto; }
  .float-book       { bottom: 1.5rem; right: 1.5rem; padding: 0.65rem 1.2rem; font-size: 0.82rem; }
  .book-process     { grid-template-columns: repeat(2, 1fr); }
  .port-impact-bar { display: none; }
  /* Filter row — horizontal scroll strip */
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.4rem;
    gap: 0.45rem;
    justify-content: flex-start;
    margin-left: -1.1rem;
    margin-right: -1.1rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; padding: 0.42rem 1rem; font-size: 0.78rem; }

  /* Port cards — stack image on top */
  .port-card::after { content: ''; display: table; clear: both; }
  .port-thumb {
    float: none;
    width: 100%;
    min-height: 200px;
    border-radius: 0;
  }
  .port-body {
    float: none;
    width: 100%;
    padding: 1rem;
    min-height: auto;
  }

  /* hero padding tighter on mobile */
  .hero-inner { padding: 3.5rem 1.25rem 3rem; }

  /* Why Choose Us image */
  .split-img-frame img { height: 260px; }

  /* page hero inner pages */
  .page-hero { padding: calc(var(--nav-h) + 1.75rem) 0 2rem; }
  .page-hero p { font-size: 0.9rem; }

  /* portfolio home showcase → single col */
  .hp-showcase-grid { grid-template-columns: 1fr; }
  .hp-showcase-card:last-child { grid-column: auto; }

  /* home portfolio stats row wrap */
  .home-port-stats { flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding: 0.85rem 1rem; }
  .hp-stat-divider { display: none; }
  .port-hd-stats   { flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding: 0.85rem 1rem; }
  .phs-div         { display: none; }

  /* CTA banner buttons stack */
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .container { padding: 0 1.1rem; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-proof { flex-direction: column; align-items: center; gap: 0.6rem; }
  .hero { background-image: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .stat-item  { padding: 0.85rem 0.6rem; }
  .stat-icon  { display: none; }
  .stat-num   { font-size: 1.55rem; }
  .stat-sfx   { font-size: 0.95rem; }
  .stat-label { font-size: 0.64rem; margin-top: 0.25rem; letter-spacing: 0.02em; }
  .stats-band { padding: 1.5rem 0; }
  .process-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .port-why-grid { grid-template-columns: 1fr; }
  .book-process  { grid-template-columns: 1fr; }
  .port-thumb    { min-height: 180px; }
  .port-body     { padding: 0.85rem; }
  .book-form-wrap { padding: 1.5rem; }
  .float-book span { display: none; }
  .float-book { padding: 0.85rem; border-radius: 50%; }

  /* hero tighter on small phones */
  .hero-inner    { padding: 2.5rem 1.1rem 2.5rem; }
  .hero-content h1 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  /* page hero padding */
  .page-hero { padding: calc(var(--nav-h) + 1.25rem) 0 1.5rem; }
  .page-hero h1 { font-size: clamp(1.45rem, 7vw, 2rem); padding: 0 0.5rem; }
  .page-hero p  { font-size: 0.85rem; padding: 0 0.5rem; }

  /* showcase images smaller */
  .hp-showcase-grid { grid-template-columns: 1fr; }
  .hp-showcase-card:last-child { grid-column: auto; }
  .hp-showcase-card img { height: 180px; }
  .hp-showcase-card:last-child img { height: 200px; }

  /* booking service grid → 1 col */
  .book-svc-grid { grid-template-columns: 1fr; }

  /* split image shorter */
  .split-img-frame img { height: 220px; }

  /* CTA banner */
  .cta-banner { padding: 2.5rem 0; }

  /* service card image smaller */
  .svc-img { height: 110px; }

  /* values card padding */
  .val-card { padding: 1.2rem; }

  /* section header tighter */
  .section-header { margin-bottom: 1.75rem; }

  /* pb-card on bento grid */
  .pb-card { height: 220px; }
  .pb-featured { height: 260px; }

  /* port impact bar hidden on mobile */
}

/* ══ PORTFOLIO PAGE — REDESIGN ══════════════════════════════════ */

/* Hero inline stats */
.pf-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.5rem;
  width: fit-content;
  flex-wrap: wrap;
  gap: 0.75rem 0;
}
.pf-hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
  gap: 0.2rem;
}
.pf-hstat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
}
.pf-hstat-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}
.pf-hstat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Filter strip */
.pf-filter-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 2rem;
  margin-left: -1.75rem;
  margin-right: -1.75rem;
  padding: 0 1.75rem 0.25rem;
}
.pf-filter-wrap::-webkit-scrollbar { display: none; }
.pf-filter {
  display: flex;
  gap: 0.5rem;
  width: max-content;
}
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  background: var(--bg-soft);
  color: var(--text-2);
  border: 1.5px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--t) var(--ease);
  flex-shrink: 0;
}
.pf-btn:hover  { border-color: var(--blue); color: var(--blue); background: rgba(255,0,255,0.06); }
.pf-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--shadow-blue); }

/* Project grid — 3 columns */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pf-card {
  background: rgba(255,245,255,0.70);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255,0,255,0.07), inset 0 1px 0 rgba(255,255,255,0.88);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  display: flex;
  flex-direction: column;
}
.pf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,255,0.40);
  box-shadow: 0 16px 44px rgba(255,0,255,0.18), inset 0 1px 0 rgba(255,255,255,0.88);
}
.pf-card.hidden { display: none; }

/* Image area */
.pf-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg-dark);
}
.pf-img img {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.pf-card:hover .pf-img img { transform: scale(1.05); }

.pf-overlay {
  position: absolute; inset: 0;
  background: rgba(15,5,40,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  backdrop-filter: blur(3px);
}
.pf-card:hover .pf-overlay { opacity: 1; }

.pf-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(10,5,30,0.78);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
}

/* Card content */
.pf-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.pf-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  margin: 0;
}
.pf-desc {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.pf-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.pf-result {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pf-del {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Why cards */
.pf-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.pf-why-card {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(255,0,255,0.06), inset 0 1px 0 rgba(255,255,255,0.90);
  transition: var(--t) var(--ease);
}
.pf-why-card:hover { border-color: rgba(255,0,255,0.35); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,0,255,0.14), inset 0 1px 0 rgba(255,255,255,0.90); }
.pf-why-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,0,255,0.15), rgba(255,0,255,0.15));
  border: 1px solid rgba(255,0,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #a78bfa;
  margin-bottom: 1rem;
}
.pf-why-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: 'Manrope', sans-serif;
}
.pf-why-card p { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .pf-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-hstat { padding: 0 1rem; }
}
@media (max-width: 768px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pf-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-hero-stats { padding: 0.85rem 1rem; }
  .pf-hstat { padding: 0 0.75rem; }
  .pf-hstat-num { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .pf-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pf-why-grid { grid-template-columns: 1fr; }
  .pf-hero-stats { width: 100%; justify-content: center; }
  .pf-hstat-div { display: none; }
  .pf-hstat { flex-direction: row; gap: 0.5rem; padding: 0.25rem 0; width: 45%; }
  .pf-filter-wrap { margin-left: -1.1rem; margin-right: -1.1rem; padding-left: 1.1rem; }
}

/* ── BOOK PAGE — SERVICE GRID ───────────────────────────────── */
.book-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}
.book-svc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: var(--t) var(--ease);
}
.book-svc-card:hover {
  border-color: var(--blue);
  background: rgba(255,0,255,0.04);
  box-shadow: var(--shadow-sm);
}
.book-svc-card i {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 0.2rem;
}
.book-svc-card strong {
  font-size: 0.82rem;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  display: block;
}
.book-svc-card span {
  font-size: 0.73rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Trust items (replaces old book-services-list) */
.book-trust-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.book-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.book-trust-item > i {
  font-size: 1rem;
  color: var(--blue);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.book-trust-item > div strong {
  display: block;
  font-size: 0.84rem;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
}
.book-trust-item > div span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Book Process Steps */
.book-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.book-step {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--t) var(--ease);
}
.book-step:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.book-step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}
.book-step-icon {
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.book-step h4 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.book-step p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── PORTFOLIO — ENHANCED ───────────────────────────────────── */
.port-impact-bar {
  background: var(--purple);
  padding: 1.5rem 0;
}
.port-impact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.port-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
.port-impact-item .stat-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.port-sfx {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.port-impact-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}
.port-impact-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

/* Enhanced portfolio cards */
/* ── PORTFOLIO GRID — single-column list, float layout ───────── */
.port-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.port-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t) var(--ease);
  display: block;
}
/* clearfix — contains the floated thumb */
.port-card::after { content: ''; display: table; clear: both; }

.port-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Desktop — image floats LEFT */
.port-thumb {
  position: relative;
  overflow: hidden;
  float: left;
  width: 34%;
  min-height: 210px;
  background: var(--bg-soft);
}
.port-thumb img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}
.port-card:hover .port-thumb img { transform: scale(1.04); }

.port-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(30,6,56,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--t) var(--ease);
  backdrop-filter: blur(3px);
}
.port-card:hover .port-thumb-overlay { opacity: 1; }

.port-cat-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(15,7,32,0.75);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

/* Text area — BFC so it flows beside the float */
.port-body {
  overflow: hidden;
  padding: 1.4rem 1.4rem 1.4rem 1.5rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.port-body h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.port-body p  { font-size: 0.83rem; margin-bottom: 0.85rem; color: var(--text-2); }

/* Result row */
.port-result-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.port-result {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}
.port-result i { font-size: 0.65rem; }
.port-result:nth-child(2) {
  color: var(--blue);
  background: rgba(255,0,255,0.08);
  border-color: rgba(255,0,255,0.2);
}

.port-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.port-tag-item {
  font-size: 0.7rem; font-weight: 600;
  color: var(--blue); background: rgba(255,0,255,0.08);
  border: 1px solid rgba(255,0,255,0.18);
  padding: 0.18rem 0.62rem; border-radius: var(--radius-pill);
  font-family: 'Manrope', sans-serif;
}

/* Portfolio filter */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
  justify-content: flex-start;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  transition: var(--t) var(--ease);
}
.filter-btn:hover  { border-color: var(--blue); color: var(--blue); background: rgba(255,0,255,0.05); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.port-card.hidden  { display: none; }

/* Why grid */
.port-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.port-why-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--t) var(--ease);
}
.port-why-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.port-why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(255,0,255,0.08);
  border: 1.5px solid rgba(255,0,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  margin: 0 auto 1rem;
}
.port-why-card h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.port-why-card p  { font-size: 0.83rem; color: var(--text-2); line-height: 1.65; }

/* ── SERVICE DETAIL PAGE ─────────────────────────────────────── */
.svc-page-hero {
  background: var(--grad);
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.svc-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 0% 50%, rgba(255,0,255,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.svc-page-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.svc-page-hero .badge { margin-bottom: 1rem; }
.svc-page-hero h1 { color: #fff; margin-bottom: 1rem; }
.svc-page-hero > .container > .svc-page-hero-inner > div > p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}
.svc-hero-price-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2rem;
  text-align: center;
  min-width: 200px;
}
.svc-hero-price-card .price-from {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.25rem;
}
.svc-hero-price-card .price-big {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.svc-hero-price-card .price-unit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

/* Includes grid */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.include-card {
  padding: 1.5rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--t) var(--ease);
}
.include-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.include-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(255,0,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.include-card h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.include-card p  { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }

/* Process timeline */
.svc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.svc-tl-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.svc-tl-item:last-child { padding-bottom: 0; }
.svc-tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-tl-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.svc-tl-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin-top: 6px;
}
.svc-tl-item:last-child .svc-tl-line { display: none; }
.svc-tl-body {
  padding-top: 0.6rem;
}
.svc-tl-body h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.svc-tl-body p  { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }

/* Results callout */
.svc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.svc-result-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--grad);
  border-radius: var(--radius-lg);
  color: #fff;
}
.svc-result-num {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.svc-result-label {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
}

/* Responsive additions */
@media (max-width: 1024px) {
  .book-process   { grid-template-columns: repeat(2, 1fr); }
  .port-why-grid  { grid-template-columns: repeat(2, 1fr); }
  .includes-grid  { grid-template-columns: repeat(2, 1fr); }
  .svc-results-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-page-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-price-card { max-width: 280px; }
}
@media (max-width: 768px) {
  .book-process   { grid-template-columns: 1fr; }
  .port-why-grid  { grid-template-columns: 1fr 1fr; }
  .book-svc-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .port-why-grid  { grid-template-columns: 1fr; }
  .includes-grid  { grid-template-columns: 1fr; }
  .svc-results-grid { grid-template-columns: 1fr; }
  .book-svc-grid  { grid-template-columns: 1fr; }
}

/* ── SERVICES PAGE (redesign) ──────────────────────────────────── */
.svc-pg-hero {
  background: linear-gradient(135deg, #0A050F 0%, #3d0a3d 50%, #FF00FF 100%);
  padding: 6rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.svc-pg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,5,15,0.92) 0%, rgba(61,10,61,0.78) 55%, rgba(255,0,255,0.42) 100%);
  pointer-events: none;
}
.svc-pg-hero-inner { position: relative; z-index: 1; }
.svc-pg-hero .badge { margin-bottom: 1.1rem; }
.svc-pg-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
}
.svc-pg-sub {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.svc-pg-sub strong { color: var(--gold); }

.svc-pg-stats {
  display: inline-flex;
  gap: 2.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 1rem 2.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.svc-pg-stat { text-align: center; }
.svc-pg-stat span { display: block; font-size: 1.35rem; font-weight: 800; color: #fff; font-family: 'Manrope', sans-serif; line-height: 1.1; }
.svc-pg-stat small { font-size: 0.68rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.09em; }

/* Offer strip */
.svc-offer-strip {
  background: rgba(255,171,243,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,171,243,0.22);
  border-bottom: 1px solid rgba(255,171,243,0.22);
  padding: 0.9rem 0;
}
.svc-offer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.svc-offer-left { display: flex; align-items: center; gap: 0.75rem; }
.svc-offer-left > i { color: var(--gold); font-size: 1.25rem; flex-shrink: 0; }
.svc-offer-left strong { display: block; color: var(--gold-dark); font-size: 0.92rem; font-weight: 700; }
.svc-offer-left span  { font-size: 0.80rem; color: var(--text-2); }

/* Services page 3-col grid */
.svc-pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Price badge inside card body */
.svc-price-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,171,243,0.07);
  border: 1px solid rgba(255,171,243,0.22);
  border-radius: var(--radius);
  padding: 0.4rem 0.85rem;
  margin-bottom: 0.8rem;
  font-size: 0.76rem; color: var(--text-2); font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-price-badge .fa-tag { color: var(--gold); font-size: 0.66rem; flex-shrink: 0; }

/* Card inner layout */
.svc-body-top { flex: 1; }
.svc-body-top .tag { margin-bottom: 0.6rem; }
.svc-body-top h3  { margin-bottom: 0.7rem; font-size: 1rem; }
.svc-body-top p   { font-size: 0.83rem; margin-bottom: 1rem; }

.svc-card-btns {
  display: flex; gap: 0.55rem; flex-wrap: wrap;
  margin-top: auto; padding-top: 1.1rem;
}

/* Responsive */
@media (max-width: 960px) {
  .svc-pg-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-pg-stats { gap: 1.5rem; padding: 0.85rem 1.75rem; }
}
@media (max-width: 580px) {
  .svc-pg-grid { grid-template-columns: 1fr; }
  .svc-offer-inner { flex-direction: column; align-items: flex-start; }
  .svc-pg-stats { gap: 1rem; padding: 0.75rem 1.2rem; flex-wrap: wrap; justify-content: center; display: flex; }
  .svc-pg-hero { padding: 5rem 0 2.5rem; }
  .svc-price-badge { white-space: normal; }
}
