/* ════════════════════════════════════════════════════════
   NAGRIVA — Premium Digital Agency
   style.css
════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #040404;
  --bg2:         #0b0f0f;
  --accent:      #00f5c4;
  --accent2:     #00c2a8;
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);
  --white:       #ffffff;
  --gray:        #a1a1aa;
  --gray2:       #71717a;
  --r:           22px;
  --r-sm:        14px;
  --r-xs:        8px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,245,196,0.25); border-radius: 99px; }

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-4px); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1) var(--delay, 0s),
              transform 0.5s cubic-bezier(0.4,0,0.2,1) var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE MENU OVERLAY (base hidden) ─── */
.mobile-menu-overlay { display: none; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(6,8,10,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02);
  transition: background 0.35s cubic-bezier(0.4,0,0.2,1), border-color 0.35s cubic-bezier(0.4,0,0.2,1), backdrop-filter 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: backdrop-filter;
}
.navbar.scrolled {
  background: rgba(4,6,8,0.88);
  border-bottom-color: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03);
}

.nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,196,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav-logo:hover .logo-icon::after {
  opacity: 1;
}
.logo-icon svg,
.logo-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  position: relative;
}
.logo-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav-logo:hover .logo-text::after {
  opacity: 0.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 450;
  color: var(--gray);
  padding: 7px 16px;
  border-radius: 8px;
  position: relative;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.04);
}

.nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 99px;
  box-shadow: 0 0 8px rgba(0,245,196,0.3);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-book {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 8px 20px;
  border-radius: 99px;
  transition: opacity var(--transition), box-shadow var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 1px rgba(0,245,196,0.1);
}
.btn-book:hover {
  opacity: 1;
  box-shadow: 0 0 12px rgba(0,245,196,0.2), 0 0 0 1px rgba(0,245,196,0.15);
  transform: translateY(0);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition), border-color var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.08); }
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 99px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open { border-color: rgba(255,255,255,0.06); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════════════════════════
   AVATAR IMAGES (global — navbar + dropdown)
════════════════════════════════════════════ */
.nav-user-img img,
.user-dropdown-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  display: block;
}

/* ════════════════════════════════════════════
   BUTTONS GLOBAL
════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 99px;
  transition: box-shadow var(--transition), transform var(--transition), opacity var(--transition);
}
.btn-primary:hover {
  box-shadow: 0 0 20px rgba(0,245,196,0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  padding: 12px 24px;
  border-radius: 99px;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-order-now:hover {
  box-shadow: 0 0 20px rgba(0,245,196,0.25), 0 4px 16px rgba(0,245,196,0.1) !important;
  transform: translateY(-1px) !important;
}

/* ════════════════════════════════════════════
   SECTION HEADER
════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.2);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,196,0.12) 0%, transparent 70%);
  filter: blur(60px);
  animation: glowPulse 12s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,196,0.06) 0%, transparent 70%);
  filter: blur(80px);
  animation: glowPulse2 16s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1) translate(0, 0); }
  33%      { opacity: 0.55; transform: scale(1.03) translate(10px, -8px); }
  66%      { opacity: 0.3; transform: scale(0.98) translate(-5px, 4px); }
}

@keyframes glowPulse2 {
  0%, 100% { opacity: 0.2; transform: scale(1) translate(0, 0); }
  50%      { opacity: 0.35; transform: scale(1.05) translate(-10px, 8px); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, rgba(0,0,0,0.6) 0%, transparent 70%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* — Hero Left — */
.hero-left { display: flex; flex-direction: column; gap: 32px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.07);
  border: 1px solid rgba(0,245,196,0.2);
  padding: 6px 14px;
  border-radius: 99px;
  width: fit-content;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: break-word;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #007aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-desc {
  font-size: clamp(0.85rem, 2.5vw, 1.08rem);
  color: var(--gray);
  line-height: 1.8;
  max-width: 520px;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 400;
}
.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(0,245,196,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Hero Visual Wrapper ─── */
.hero-right {
  animation: float 8s ease-in-out infinite;
  animation-play-state: paused;
}
.hero-right.visible {
  animation-play-state: running;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Ambient Blobs ─── */
.hero-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.4;
}
.ambient-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,245,196,0.2) 0%, transparent 70%);
  top: -60px;
  right: -40px;
  animation: ambientDrift 12s ease-in-out infinite;
}
.ambient-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,194,168,0.15) 0%, transparent 70%);
  bottom: 40px;
  left: -30px;
  animation: ambientDrift 14s ease-in-out infinite reverse;
}

@keyframes ambientDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(6px, -8px) scale(1.03); }
  50%      { transform: translate(-4px, 4px) scale(0.98); }
  75%      { transform: translate(8px, 6px) scale(1.02); }
}

/* ─── Glass Card ─── */
.glass-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: rgba(11,15,15,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(0,245,196,0.04),
    0 24px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(0,245,196,0.05);
  z-index: 2;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0,245,196,0.06) 0%, transparent 40%, transparent 60%, rgba(0,245,196,0.03) 100%);
  pointer-events: none;
}

.glass-inner {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.glass-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.glass-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,245,196,0.5);
  opacity: 0.6;
}

.glass-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.glass-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0,245,196,0.1);
  border: 1px solid rgba(0,245,196,0.2);
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}

/* ─── Glass Chart ─── */
.glass-chart-wrap {
  position: relative;
  height: 100px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
}

.glass-chart-svg {
  width: 100%;
  height: 100%;
}

/* ─── Glass Metrics ─── */
.glass-metrics-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.gm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.gm-value {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.gm-label {
  font-size: 0.65rem;
  color: var(--gray2);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gm-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.06);
}

/* ─── Float Card ─── */
.float-card {
  position: absolute;
  bottom: -10px;
  right: -20px;
  z-index: 3;
  animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.float-card-glow {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,245,196,0.15), transparent, rgba(0,194,168,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.float-card:hover .float-card-glow { opacity: 1; }

.float-card-body {
  position: relative;
  background: rgba(11,15,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: border-color 0.3s ease;
}

.float-card-body:hover {
  border-color: rgba(0,245,196,0.25);
}

.float-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.float-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.float-card-txt {
  font-size: 0.68rem;
  color: var(--gray2);
}

.float-card-arrow {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0,245,196,0.1);
  border: 1px solid rgba(0,245,196,0.18);
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}

/* ─── Float Pill ─── */
.float-pill {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,15,15,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,245,196,0.2);
  border-radius: 99px;
  padding: 8px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 20px rgba(0,245,196,0.05);
  animation: floatPill 9s ease-in-out infinite;
}

@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

.float-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 4px rgba(0,245,196,0.3);
  opacity: 0.6;
}

.float-pill-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════
   BRANDS MARQUEE
════════════════════════════════════════════ */
.brands {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray2);
  margin-bottom: 28px;
}
.marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
.brand-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0 40px;
  white-space: nowrap;
  transition: color var(--transition);
}
.brand-item:hover { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════════
   SERVICES — Premium Redesign
════════════════════════════════════════════ */
.services {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,245,196,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services .container,
.services-page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
}

.text-gradient {
  background: linear-gradient(135deg, #00f5c4 0%, #00c2a8 50%, #00f5c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0,245,196,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4),
              0 0 20px rgba(0,245,196,0.04);
}

.service-card:hover::before { opacity: 1; }

/* ─── Image Area ─── */
.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0,0,0,0.35);
}

.service-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .service-visual {
  transform: scale(1.03);
}

img.service-visual {
  display: block;
  background: rgba(255,255,255,0.015);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4,4,4,0.08) 0%, rgba(4,4,4,0.22) 50%, rgba(4,4,4,0.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.22), transparent 46%, rgba(0,0,0,0.18));
  pointer-events: none;
}

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 30px rgba(0,245,196,0.03);
  pointer-events: none;
}

/* ─── Body ─── */
.service-body {
  padding: 22px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,245,196,0.05);
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Footer ─── */
.service-footer {
  padding: 0 24px 22px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.service-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray2);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .service-arrow {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  box-shadow: 0 0 20px rgba(0,245,196,0.1);
  transform: rotate(-45deg);
}

/* ─── Services Skeleton Loading ─── */
.services-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-skeleton-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}
.service-skeleton-img {
  height: 200px;
}
.service-skeleton-body {
  padding: 22px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-skeleton-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.service-skeleton-line {
  height: 14px;
  border-radius: 6px;
}
.service-skeleton-line.w70 { width: 70%; }
.service-skeleton-line.w100 { width: 100%; }
.service-skeleton-line.w50 { width: 50%; }

/* ─── Services Error / Empty ─── */
.services-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}
.services-error .services-error-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.3;
}
.services-error h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}
.services-error p {
  font-size: 0.85rem;
  color: var(--gray);
  max-width: 400px;
  margin: 0 auto;
}
.services-retry-btn {
  margin-top: 20px;
  padding: 10px 24px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--gray2);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.services-retry-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,245,196,0.06);
}

/* ─── Services CTA ─── */
.services-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}
.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 99px;
  border: 1px solid rgba(0,245,196,0.2);
  background: rgba(0,245,196,0.04);
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  position: relative;
}
.services-cta-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(0,245,196,0.15), transparent, rgba(0,245,196,0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-cta-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  background: radial-gradient(circle at center, rgba(0,245,196,0.2) 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.services-cta-btn:hover {
  border-color: rgba(0,245,196,0.35);
  background: rgba(0,245,196,0.06);
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(0,245,196,0.05);
}
.services-cta-btn:hover::after {
  opacity: 1;
  animation: ctaGlowPulse 2.4s ease-in-out infinite;
}
.services-cta-btn svg {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.services-cta-btn:hover svg {
  transform: translateX(4px);
}
@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.03); }
}

@media (max-width: 768px) {
  .services-cta-wrapper { margin-top: 32px; }
  .services-cta-btn { padding: 14px 28px; font-size: 0.88rem; }
  .services-cta-btn::after { display: none; }
}

/* ════════════════════════════════════════════
   SERVICES PAGE (Listing)
════════════════════════════════════════════ */

.services-page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
}

.services-page-controls {
  max-width: 480px;
  margin: 0 auto 28px;
}

.services-search-wrap {
  position: relative;
}

.services-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray2);
  pointer-events: none;
}

.services-search-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border-radius: 99px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.035);
  color: var(--white);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.services-search-input::placeholder {
  color: var(--gray2);
}

.services-search-input:focus {
  border-color: rgba(0,245,196,0.3);
  box-shadow: 0 0 24px rgba(0,245,196,0.06);
}

/* ─── Category Filter Pills ─── */

.services-categories-wrap {
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-categories-wrap::-webkit-scrollbar {
  display: none;
}

.services-categories {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 4px 0;
}

.services-cat-btn {
  flex-shrink: 0;
  padding: 10px 22px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}

.services-cat-btn:hover {
  border-color: rgba(0,245,196,0.2);
  color: var(--accent);
  background: rgba(0,245,196,0.04);
}

.services-cat-btn.active {
  border-color: rgba(0,245,196,0.35);
  color: var(--accent);
  background: rgba(0,245,196,0.1);
  box-shadow: 0 0 24px rgba(0,245,196,0.08);
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
  .services-page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .services-categories {
    justify-content: flex-start;
    padding: 4px 4px 8px;
  }

  .services-categories-wrap {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-cat-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .services-page-controls {
    max-width: 100%;
  }
}

/* ════════════════════════════════════════════
   RESULTS / STATS
════════════════════════════════════════════ */
.results {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.results-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,245,196,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,245,196,0.05);
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,245,196,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline;
}
.stat-unit {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
  margin-left: 2px;
}
.stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 400;
}

/* ════════════════════════════════════════════
   WHY BRANDS CHOOSE NAGRIVA
════════════════════════════════════════════ */
.why-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,245,196,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px 36px;
  text-align: left;
  transition: border-color 0.4s cubic-bezier(0.4,0,0.2,1),
              transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.15);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s cubic-bezier(0.4,0,0.2,1);
}

.why-card:hover .why-icon {
  background: rgba(0,245,196,0.08);
  border-color: rgba(0,245,196,0.2);
}

.why-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

/* ─── Trust Badges ─── */
.why-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 9px 18px;
  border-radius: 99px;
  transition: border-color 0.4s cubic-bezier(0.4,0,0.2,1),
              color 0.4s cubic-bezier(0.4,0,0.2,1);
}

.why-badge svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.8;
}

.why-badge:hover {
  border-color: rgba(0,245,196,0.15);
  color: var(--white);
}

/* ─── Footer Text ─── */
.why-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--gray2);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-card {
    padding: 32px 24px 28px;
  }
  .why-icon {
    margin-bottom: 16px;
  }
  .why-badges {
    margin-top: 36px;
  }
}

@media (max-width: 640px) {
  .why-badges {
    flex-direction: column;
    align-items: center;
  }
  .why-footer {
    margin-top: 24px;
  }
}

/* ════════════════════════════════════════════
   PROJECTS — Premium Redesign
════════════════════════════════════════════ */
.projects {
  position: relative;
  overflow: hidden;
}
.projects-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,245,196,0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.projects .container { position: relative; z-index: 1; }

/* ─── Per-Card Accent Colors ─── */
.pj-nagriva  { --card-accent: #00f5c4; --card-accent-r: 0; --card-accent-g: 245; --card-accent-b: 196; }
.pj-growthos{ --card-accent: #4facfe; --card-accent-r: 79; --card-accent-g: 172; --card-accent-b: 254; }
.pj-portal  { --card-accent: #a855f7; --card-accent-r: 168; --card-accent-g: 85; --card-accent-b: 247; }
.pj-ecommerce{ --card-accent: #f97316; --card-accent-r: 249; --card-accent-g: 115; --card-accent-b: 22; }
.pj-fintech { --card-accent: #00d4ff; --card-accent-r: 0; --card-accent-g: 212; --card-accent-b: 255; }

/* ─── Badge ─── */
.pj-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.07);
  border: 1px solid rgba(0,245,196,0.18);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0,245,196,0.06);
}
.pj-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── Grid Top ─── */
.pj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ─── Grid Bottom ─── */
.pj-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

/* ─── Card ─── */
.pj-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(4px);
}
.pj-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.pj-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5),
              0 0 50px rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.08);
}
.pj-card:hover::before { opacity: 1; }

/* ─── Visual / Mockup Area ─── */
.pj-visual {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.pj-card-large .pj-visual { height: 240px; }
.pj-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.pj-card:hover .pj-svg {
  transform: scale(1.04);
}
.pj-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1.5px dashed rgba(255,255,255,0.12);
  border-radius: 4px;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.pj-card:hover .pj-placeholder {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.pj-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.1) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.pj-card:hover .pj-visual-glow {
  opacity: 1;
}
.pj-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.04);
  pointer-events: none;
}

/* ─── Body ─── */
.pj-body {
  padding: 18px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.pj-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent));
  background: rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.08);
  border: 1px solid rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.2);
  padding: 3px 10px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 4px;
  box-shadow: 0 0 12px rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.04);
}
.pj-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.pj-card-large .pj-title { font-size: 1.2rem; }
.pj-services {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── Floating Action ─── */
.pj-action {
  position: absolute;
  top: 40px;
  right: 10px;
  transform: translate(-12px, -12px);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.1);
  border: 1px solid rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.25);
  color: var(--card-accent, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.pj-card:hover .pj-action {
  opacity: 1;
  transform: translate(-16px, -16px);
  background: var(--card-accent, var(--accent));
  color: var(--bg);
  box-shadow: 0 0 24px rgba(var(--card-accent-r, 0), var(--card-accent-g, 245), var(--card-accent-b, 196), 0.35);
}

/* ─── Project Modal ─── */
.pj-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4,4,4,0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}
.pj-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.pj-modal {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.pj-modal-overlay.active .pj-modal {
  transform: translateY(0) scale(1);
}
.pj-modal::-webkit-scrollbar { width: 4px; }
.pj-modal::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 99px; }
.pj-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.pj-modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.pj-modal-visual {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.pj-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pj-modal-info {
  padding: 28px 32px 32px;
}
.pj-modal-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.pj-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pj-modal-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.pj-modal-services {
  margin-bottom: 24px;
}
.pj-modal-services h4,
.pj-modal-results h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.pj-modal-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.pj-modal-services li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.18);
  padding: 5px 14px;
  border-radius: 99px;
}
.pj-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pj-modal-stat {
  text-align: center;
  padding: 16px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.pj-modal-stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1.2;
}
.pj-modal-stat-label {
  font-size: 0.65rem;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Bottom CTA ─── */
.pj-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.pj-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 32px;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.01em;
}
.pj-cta-btn:hover {
  color: var(--accent);
  border-color: rgba(0,245,196,0.35);
  background: rgba(0,245,196,0.05);
  box-shadow: 0 0 30px rgba(0,245,196,0.1);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.process-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(0,245,196,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.process::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.process-gradient-text {
  background: linear-gradient(135deg, #00f5c4 0%, #00c2a8 50%, #00f5c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════
   TIMELINE
════════════════════════════════════════════ */
.process-timeline {
  position: relative;
  margin-bottom: 56px;
  padding-top: 8px;
  z-index: 1;
}

.timeline-line {
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0,245,196,0.3) 15%, rgba(0,245,196,0.5) 50%, rgba(0,245,196,0.3) 85%, transparent);
  box-shadow: 0 0 12px rgba(0,245,196,0.15);
  animation: timelinePulse 4s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 4px rgba(0,245,196,0.06); }
  50%      { opacity: 0.6; box-shadow: 0 0 10px rgba(0,245,196,0.12); }
}

.timeline-nodes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}

.node-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0,245,196,0.45);
  transition: color var(--transition);
}

.timeline-node:hover .node-num {
  color: var(--accent);
}

.node-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0,245,196,0.35);
  background: var(--bg);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 8px rgba(0,245,196,0.08);
}

.node-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(0,245,196,0.25);
  transition: background var(--transition), transform var(--transition);
}

.timeline-node:hover .node-dot {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,245,196,0.3);
}

.timeline-node:hover .node-dot::after {
  background: var(--accent);
  transform: scale(1.15);
}

/* ════════════════════════════════════════════
   CARDS
════════════════════════════════════════════ */
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  z-index: 1;
  position: relative;
}

.process-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,245,196,0.12);
  border-radius: 18px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  backdrop-filter: blur(4px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.process-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(0,245,196,0.08) 0%, transparent 40%, transparent 60%, rgba(0,245,196,0.04) 100%);
  pointer-events: none;
}

.process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 8px 24px rgba(0,245,196,0.05), 0 0 15px rgba(0,245,196,0.03);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.process-card:hover .card-icon {
  background: rgba(0,245,196,0.08);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0,245,196,0.12);
}

.card-icon svg {
  transition: transform var(--transition);
}

.process-card:hover .card-icon svg {
  transform: scale(1.1);
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
}

.card-divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}

.card-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,245,196,0.2);
  background: rgba(0,245,196,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-top: 8px;
}

.card-btn:hover {
  background: rgba(0,245,196,0.12);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,245,196,0.2);
  transform: translateX(2px);
}

/* ════════════════════════════════════════════
   FEATURES BAR
════════════════════════════════════════════ */
.process-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border: 1px solid rgba(0,245,196,0.08);
  border-radius: 14px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.feature-item {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.015);
  transition: background var(--transition);
  border-right: 1px solid rgba(0,245,196,0.06);
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: rgba(0,245,196,0.025);
}

.feature-item .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.feature-item:hover .feature-icon {
  background: rgba(0,245,196,0.1);
  border-color: rgba(0,245,196,0.25);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.feature-sub {
  font-size: 0.75rem;
  color: var(--gray2);
}



/* ════════════════════════════════════════════
   FAQ — Premium Redesign
════════════════════════════════════════════ */
.faq-premium {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* ─── Background ─── */
.faq-premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.faq-glow-primary {
  position: absolute;
  top: -100px;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,196,0.08) 0%, transparent 70%);
  filter: blur(80px);
  animation: faqGlowA 14s ease-in-out infinite;
}
.faq-glow-secondary {
  position: absolute;
  bottom: -50px;
  left: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,168,0.05) 0%, transparent 70%);
  filter: blur(70px);
  animation: faqGlowB 16s ease-in-out infinite reverse;
}
@keyframes faqGlowA {
  0%, 100% { opacity: 0.3; transform: scale(1) translate(0, 0); }
  50%      { opacity: 0.5; transform: scale(1.02) translate(8px, -8px); }
}
@keyframes faqGlowB {
  0%, 100% { opacity: 0.2; transform: scale(1) translate(0, 0); }
  50%      { opacity: 0.4; transform: scale(1.04) translate(-10px, 6px); }
}
.faq-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.4) 0%, transparent 70%);
}
#faqParticles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.faq-premium .container { position: relative; z-index: 2; }

/* ─── Split Layout ─── */
.faq-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ═══ LEFT SIDE ═══ */
.faq-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.2);
  padding: 5px 14px;
  border-radius: 99px;
  width: fit-content;
  box-shadow: 0 0 20px rgba(0,245,196,0.04);
}

.faq-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.faq-title-gradient {
  background: linear-gradient(135deg, #00f5c4 0%, #00c2a8 50%, #00f5c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-sub {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 400px;
}

/* ─── Support Card ─── */
.faq-support-card {
  position: relative;
  background: rgba(11,15,15,0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,245,196,0.12);
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.faq-support-card:hover {
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,245,196,0.05);
}
.faq-support-glow {
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(0,245,196,0.08) 0%, transparent 40%, transparent 60%, rgba(0,245,196,0.04) 100%);
  pointer-events: none;
}
.faq-support-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-support-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-support-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-support-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-support-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.faq-support-desc {
  font-size: 0.8rem;
  color: var(--gray2);
  line-height: 1.4;
}
.faq-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--bg);
  background: var(--accent);
  padding: 12px 22px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-chat-btn:hover {
  box-shadow: 0 0 30px rgba(0,245,196,0.4);
  transform: translateY(-1px);
}
.faq-chat-btn svg {
  transition: transform 0.3s ease;
}
.faq-chat-btn:hover svg {
  transform: translateX(3px);
}
.faq-chat-btn.pulse-glow {
  animation: chatBtnPulse 0.6s ease;
}
@keyframes chatBtnPulse {
  0% { box-shadow: 0 0 0 0 rgba(0,245,196,0.5); transform: scale(1); }
  50% { box-shadow: 0 0 40px 8px rgba(0,245,196,0.35); transform: scale(1.04); }
  100% { box-shadow: 0 0 0 0 rgba(0,245,196,0); transform: scale(1); }
}

/* ─── Trust Strip ─── */
.faq-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.faq-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 400;
}
.faq-trust-item svg {
  flex-shrink: 0;
}

/* ─── Brands Row ─── */
.faq-brands {
  padding-top: 8px;
}
.faq-brands-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray2);
  display: block;
  margin-bottom: 12px;
}
.faq-brands-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.faq-brand-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.faq-brand-logo:hover {
  color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* ═══ RIGHT SIDE ═══ */
.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ─── Premium Accordion Item ─── */
.faq-p-item {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1),
              transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-p-item:hover {
  border-color: rgba(0,245,196,0.15);
}
.faq-p-item.open {
  border-color: rgba(0,245,196,0.25);
  background: rgba(0,245,196,0.025);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.05),
              0 16px 40px rgba(0,0,0,0.3),
              0 0 40px rgba(0,245,196,0.04);
}
.faq-p-item.open::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,245,196,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.faq-p-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  position: relative;
  z-index: 1;
}

.faq-p-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(0,245,196,0.35);
  min-width: 28px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.faq-p-item.open .faq-p-num {
  color: var(--accent);
}

.faq-p-text {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faq-p-item.open .faq-p-text {
  color: var(--white);
}

.faq-p-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray2);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.3s ease,
              color 0.3s ease,
              background 0.3s ease;
}
.faq-p-item.open .faq-p-icon {
  transform: rotate(180deg);
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  box-shadow: 0 0 16px rgba(0,245,196,0.08);
}

/* ─── Answer ─── */
.faq-p-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.faq-p-answer-inner {
  padding: 0 24px 22px 66px;
}
.faq-p-answer-inner p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ═══ BOTTOM CTA ═══ */
.faq-bottom-cta {
  position: relative;
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
}
.faq-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,245,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.faq-cta-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  background: rgba(11,15,15,0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,245,196,0.12);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-cta-body:hover {
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,245,196,0.05);
}
.faq-cta-body::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(0,245,196,0.06) 0%, transparent 40%, transparent 60%, rgba(0,245,196,0.03) 100%);
  pointer-events: none;
}
.faq-cta-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.faq-cta-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 480px;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 28px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-cta-btn:hover {
  box-shadow: 0 0 40px rgba(0,245,196,0.4);
  transform: translateY(-2px);
}
.faq-cta-btn svg {
  transition: transform 0.3s ease;
}
.faq-cta-btn:hover svg {
  transform: translateX(3px);
}

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-6px);
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,245,196,0.06);
}

.pricing-card.featured {
  background: rgba(0,245,196,0.04);
  border-color: rgba(0,245,196,0.3);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.08), 0 20px 60px rgba(0,245,196,0.06);
  position: relative;
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.15), 0 28px 70px rgba(0,245,196,0.1), 0 0 50px rgba(0,245,196,0.06);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}



.pricing-card.featured .pricing-service-icon {
  background: rgba(0,245,196,0.12);
  border-color: rgba(0,245,196,0.3);
  box-shadow: 0 0 20px rgba(0,245,196,0.1);
}

.pricing-service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.price-currency {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: -2px;
}

.pricing-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
}

.pricing-features li svg { flex-shrink: 0; }

.btn-pricing {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border2);
  color: var(--gray);
  transition: all var(--transition);
  margin-top: 4px;
}

.btn-pricing:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.featured-btn {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 600;
}

.featured-btn:hover {
  background: #00ddb0;
  border-color: #00ddb0;
  color: var(--bg);
  box-shadow: 0 0 30px rgba(0,245,196,0.4);
}

/* ════════════════════════════════════════════
   CONTACT — Premium Redesign
════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,245,196,0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: cGlowA 12s ease-in-out infinite;
}
.cta-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,194,168,0.06) 0%, transparent 70%);
  filter: blur(60px);
  animation: cGlowB 10s ease-in-out infinite reverse;
}
@keyframes cGlowA {
  0%,100% { opacity: 0.3; transform: translate(0,0) scale(1); }
  50%     { opacity: 0.5; transform: translate(15px,-10px) scale(1.03); }
}
@keyframes cGlowB {
  0%,100% { opacity: 0.2; transform: translate(0,0) scale(1); }
  50%     { opacity: 0.4; transform: translate(-10px,8px) scale(1.05); }
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
}
#contactParticles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ─── Grid ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ════════════════════════════════════════════
   LEFT SIDE — Visual Area
════════════════════════════════════════════ */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-visual-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ─── Badge ─── */
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.2);
  padding: 5px 14px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 8px;
  box-shadow: 0 0 20px rgba(0,245,196,0.04);
}

/* ─── Text Block ─── */
.contact-text-block {
  position: relative;
  z-index: 2;
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.contact-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #007aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 460px;
}

/* ─── Stats Cards Grid ─── */
.contact-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 2;
  margin: 8px 0 4px;
}

.c-stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11,15,15,0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px 18px;
  animation: cFloat 7s ease-in-out infinite;
  animation-delay: var(--float-d, 0s);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.c-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,245,196,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.c-stat-card:hover {
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(0,245,196,0.06);
  transform: translateY(-2px);
}

@keyframes cFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-3px); }
}

.c-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.c-stat-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.c-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.c-stat-lbl {
  font-size: 0.68rem;
  color: var(--gray2);
  letter-spacing: 0.02em;
}
.c-stat-chg {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  white-space: nowrap;
}
.c-stat-chg.positive {
  color: var(--accent);
  background: rgba(0,245,196,0.1);
  border: 1px solid rgba(0,245,196,0.15);
}

/* Offset cards slightly for organic feel */
.c-stat-1 { transform: translateX(0); --float-d:0s; }
.c-stat-2 { transform: translateX(8px); --float-d:0.4s; }
.c-stat-3 { transform: translateX(4px); --float-d:0.8s; }
.c-stat-4 { transform: translateX(-4px); --float-d:1.2s; }

/* ─── Testimonial Card ─── */
.c-testimonial {
  position: relative;
  z-index: 2;
  animation: cFloat 8s ease-in-out infinite;
  animation-delay: var(--float-d, 0.3s);
  max-width: 380px;
}
.c-testi-glow {
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,245,196,0.1), transparent 50%, rgba(0,194,168,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.c-testimonial:hover .c-testi-glow { opacity: 1; }

.c-testi-body {
  position: relative;
  background: rgba(11,15,15,0.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 30px rgba(0,245,196,0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.c-testimonial:hover .c-testi-body {
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35), 0 0 40px rgba(0,245,196,0.06);
}
.c-testi-stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.c-testi-text {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
}
.c-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.c-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.c-testi-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}
.c-testi-role {
  font-size: 0.72rem;
  color: var(--gray2);
  margin-top: 1px;
}

/* ─── Trusted Brands ─── */
.c-trusted {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}
.c-trusted-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 14px;
  display: block;
}
.c-trusted-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.c-t-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.c-t-logo:hover {
  color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

/* ─── Ambient Glows ─── */
.c-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}
.c-ambient-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,245,196,0.12) 0%, transparent 70%);
  top: 10%;
  left: 30%;
  animation: cAmbientDrift 14s ease-in-out infinite;
}
.c-ambient-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0,194,168,0.08) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation: cAmbientDrift 16s ease-in-out infinite reverse;
}
.c-ambient-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,245,196,0.06) 0%, transparent 70%);
  top: 50%;
  left: 5%;
  animation: cAmbientDrift 12s ease-in-out infinite;
}
@keyframes cAmbientDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  25%     { transform: translate(6px,-5px) scale(1.03); }
  50%     { transform: translate(-3px,4px) scale(0.98); }
  75%     { transform: translate(5px,5px) scale(1.02); }
}

/* ─── Contact Info ─── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-item:hover .contact-info-icon {
  border-color: rgba(0,245,196,0.3);
  box-shadow: 0 0 20px rgba(0,245,196,0.06);
}
.contact-info-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--white);
}

/* ════════════════════════════════════════════
   RIGHT SIDE — Premium Form Card
════════════════════════════════════════════ */
.contact-right {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
}

.contact-card {
  width: 100%;
  max-width: 500px;
  background: rgba(11,15,15,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,245,196,0.1);
  box-shadow:
    0 0 0 1px rgba(0,245,196,0.03),
    0 24px 80px rgba(0,0,0,0.4),
    0 0 60px rgba(0,245,196,0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.contact-card:hover {
  border-color: rgba(0,245,196,0.2);
  box-shadow:
    0 0 0 1px rgba(0,245,196,0.06),
    0 28px 90px rgba(0,0,0,0.5),
    0 0 80px rgba(0,245,196,0.06);
}

/* ─── Glowing Border Effect ─── */
.contact-card-glow-border {
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0,245,196,0.08),
    transparent 30%,
    transparent 60%,
    rgba(0,245,196,0.06),
    transparent 90%,
    transparent
  );
  animation: cBorderRotate 8s linear infinite;
}
.contact-card:hover .contact-card-glow-border {
  opacity: 1;
}
@keyframes cBorderRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.contact-card-glow-border::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: rgba(11,15,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* ─── Form ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 4px;
}
.contact-form-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.18);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.contact-form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ─── Input Wrappers ─── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.form-input-icon {
  position: absolute;
  left: 14px;
  color: var(--gray2);
  pointer-events: none;
  z-index: 2;
  transition: color 0.3s ease;
}
.form-input-wrap:focus-within .form-input-icon {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 14px 16px 14px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition:
    border-color 0.3s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
    background 0.3s cubic-bezier(0.4,0,0.2,1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray2);
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(0,245,196,0.35);
  background: rgba(0,245,196,0.03);
  box-shadow:
    0 0 0 1px rgba(0,245,196,0.08),
    0 0 24px rgba(0,245,196,0.05),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}
.textarea-wrap {
  align-items: flex-start;
}
.textarea-wrap .form-input-icon {
  top: 16px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2371717a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option {
  background: var(--bg2);
  color: var(--white);
}

/* ─── Premium Button ─── */
.form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 15px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition:
    box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
    transform 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-top: 2px;
}
.form-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.form-btn:hover::before {
  opacity: 1;
  transform: scale(1);
}
.form-btn:hover {
  box-shadow:
    0 0 50px rgba(0,245,196,0.4),
    0 8px 32px rgba(0,245,196,0.2),
    0 0 0 1px rgba(0,245,196,0.15);
  transform: translateY(-2px);
}
.form-btn:active {
  transform: translateY(0);
}
.form-btn svg {
  transition: transform 0.3s ease;
}
.form-btn:hover svg {
  transform: translateX(3px);
}

/* ─── Trust Badges ─── */
.contact-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.c-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--gray2);
  letter-spacing: 0.01em;
}
.c-trust-badge svg {
  color: var(--accent);
  opacity: 0.7;
}

/* ─── Loading Spinner ─── */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(11,15,15,0.15);
  border-top-color: #0b0f0f;
  border-radius: 50%;
  animation: form-spin 0.6s linear infinite;
  flex-shrink: 0;
}
.form-btn.loading {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.85;
}
.form-btn.loading .btn-text,
.form-btn.loading .btn-icon {
  display: none;
}
.form-btn.loading .btn-spinner {
  display: inline-block;
}
@keyframes form-spin {
  to { transform: rotate(360deg); }
}

/* ─── Error State ─── */
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.15);
  border-radius: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  animation: form-error-in 0.35s ease;
}
.form-error.show {
  display: flex;
}
.form-error svg {
  color: #ff5050;
  flex-shrink: 0;
}
@keyframes form-error-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Success State ─── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 20px 0 10px;
  position: relative;
  z-index: 1;
}
.form-success.show {
  display: flex;
  animation: success-fade-in 0.5s ease;
}
@keyframes success-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Success Glow ─── */
.success-glow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0,245,196,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Animated Checkmark ─── */
.success-icon-wrap {
  position: relative;
  margin-bottom: 20px;
}
.success-checkmark {
  width: 56px;
  height: 56px;
  color: var(--accent);
  display: block;
}
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  animation: circle-draw 0.6s ease forwards 0.1s;
}
.checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: check-draw 0.4s ease forwards 0.5s;
}
@keyframes circle-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes check-draw {
  to { stroke-dashoffset: 0; }
}

/* ─── Headline ─── */
.success-headline {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.success-sub {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0 0 22px;
  line-height: 1.55;
  max-width: 320px;
}

/* ─── Summary Card ─── */
.success-summary {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,245,196,0.08);
  border-radius: 14px;
  padding: 4px 18px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0 20px rgba(0,245,196,0.02),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
.summary-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.summary-row:last-child {
  border-bottom: none;
}
.summary-label {
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  min-width: 62px;
  text-align: left;
  flex-shrink: 0;
}
.summary-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  text-align: left;
  word-break: break-word;
  flex: 1;
  line-height: 1.45;
}
.summary-row-message .summary-value {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Send Another Button ─── */
.success-resend-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  padding: 11px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.success-resend-btn:hover {
  background: rgba(0,245,196,0.1);
  border-color: rgba(0,245,196,0.3);
  box-shadow:
    0 0 30px rgba(0,245,196,0.08);
  transform: translateY(-1px);
}
.success-resend-btn:active {
  transform: translateY(0);
}
.success-resend-btn svg {
  transition: transform 0.35s ease;
}
.success-resend-btn:hover svg {
  transform: rotate(-25deg);
}

/* ════════════════════════════════════════════
   TESTIMONIALS & SOCIAL PROOF — Premium Redesign
════════════════════════════════════════════ */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  padding: 72px 0;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,245,196,0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: tGlowA 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,194,168,0.06) 0%, transparent 70%);
  filter: blur(60px);
  animation: tGlowB 10s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}
@keyframes tGlowA {
  0%,100% { opacity: 0.3; transform: translate(0,0) scale(1); }
  50%     { opacity: 0.5; transform: translate(15px,-10px) scale(1.03); }
}
@keyframes tGlowB {
  0%,100% { opacity: 0.2; transform: translate(0,0) scale(1); }
  50%     { opacity: 0.4; transform: translate(-10px,8px) scale(1.05); }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ─── LEFT SIDE ─── */
.testimonials-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonials-visual-area {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.2);
  padding: 5px 14px;
  border-radius: 99px;
  width: fit-content;
  margin-bottom: 8px;
  box-shadow: 0 0 20px rgba(0,245,196,0.04);
}
.testimonials-text-block {
  position: relative;
  z-index: 2;
}
.testimonials-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.testimonials-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 60%, #007aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.testimonials-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 460px;
}
.testimonials-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

/* ─── Ambient Glows ─── */
.t-ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}
.t-ambient-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,245,196,0.12) 0%, transparent 70%);
  top: 10%;
  left: 30%;
  animation: tAmbientDrift 14s ease-in-out infinite;
}
.t-ambient-2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0,194,168,0.08) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation: tAmbientDrift 16s ease-in-out infinite reverse;
}
.t-ambient-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,245,196,0.06) 0%, transparent 70%);
  top: 50%;
  left: 5%;
  animation: tAmbientDrift 12s ease-in-out infinite;
}
@keyframes tAmbientDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  25%     { transform: translate(6px,-5px) scale(1.03); }
  50%     { transform: translate(-3px,4px) scale(0.98); }
  75%     { transform: translate(5px,5px) scale(1.02); }
}

/* ─── RIGHT SIDE ─── */
.testimonials-right {
  display: flex;
  justify-content: flex-end;
}
.testimonials-card-wrap {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonials-header {
  margin-bottom: 0;
}
.testimonials-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.testimonials-section-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── Testimonial Carousel ─── */
.testimonials-carousel {
  position: relative;
}

.t-carousel-track {
  position: relative;
  min-height: 180px;
}

.t-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(6px);
  z-index: 0;
}
.t-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}

.t-card-glow {
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,245,196,0.1), transparent 50%, rgba(0,194,168,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.t-card.active:hover .t-card-glow {
  opacity: 1;
}

.t-card-body {
  position: relative;
  background: rgba(11,15,15,0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 20px rgba(0,245,196,0.02);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.t-card.active:hover .t-card-body {
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 14px 45px rgba(0,0,0,0.3), 0 0 35px rgba(0,245,196,0.05);
  transform: translateY(-3px);
}

.t-stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.t-text {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.t-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0,245,196,0.1), 0 4px 12px rgba(0,0,0,0.2);
  transition: box-shadow 0.35s ease;
}
.t-card.active:hover .t-avatar {
  box-shadow: 0 0 0 3px rgba(0,245,196,0.2), 0 6px 18px rgba(0,0,0,0.3);
}
.t-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white);
}

/* ─── Carousel Dots ─── */
.t-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.t-dot {
  all: unset;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  padding: 18px;
  background-clip: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-dot:hover {
  background: rgba(0,245,196,0.4);
  transform: scale(1.15);
}
.t-dot.active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,245,196,0.3);
  transform: scale(1.2);
}

/* ─── Carousel Navigation Controls ─── */
.t-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0 2px;
}
.t-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(11,15,15,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gray);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.t-nav-btn:hover {
  background: rgba(0,245,196,0.08);
  border-color: rgba(0,245,196,0.2);
  color: var(--accent);
  transform: scale(1.05);
}
.t-nav-btn:active {
  transform: scale(0.95);
}
.t-nav-btn svg {
  display: block;
}

/* ─── Arrow positioning: desktop/tablet overlay on card edges ─── */
@media (min-width: 481px) {
  .t-controls {
    position: relative;
    padding: 10px 0 2px;
  }
  .t-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    background: rgba(4,4,4,0.7);
    border-color: rgba(255,255,255,0.06);
  }
  .t-nav-btn:hover {
    transform: translateY(-50%) scale(1.05);
  }
  .t-prev { left: 8px; }
  .t-next { right: 8px; }
}

/* ─── Arrow positioning: mobile below content ─── */
@media (max-width: 480px) {
  .t-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0 4px;
  }
  .t-nav-btn {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
  }
}

/* ─── Stats Row ─── */
.t-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(11,15,15,0.5);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.t-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
}
.t-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.t-stat-label {
  font-size: 0.6rem;
  color: var(--gray2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.t-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* ─── CTA Button ─── */
.t-cta-wrap {
  display: flex;
  justify-content: center;
  animation: tFadeIn 0.6s ease 0.6s both;
}
.t-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 99px;
  border: 1px solid rgba(0,245,196,0.2);
  background: rgba(0,245,196,0.04);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-decoration: none;
  position: relative;
}
.t-cta-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(0,245,196,0.15), transparent, rgba(0,245,196,0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.t-cta-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  background: radial-gradient(circle at center, rgba(0,245,196,0.2) 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.t-cta-btn:hover {
  border-color: rgba(0,245,196,0.35);
  background: rgba(0,245,196,0.06);
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(0,245,196,0.08);
}
.t-cta-btn:hover::after {
  opacity: 1;
  animation: tCtaPulse 2.4s ease-in-out infinite;
}
.t-cta-btn svg {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.t-cta-btn:hover svg {
  transform: translateX(4px);
}
@keyframes tCtaPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.03); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .testimonials-grid { gap: 40px; }
  .testimonials-right { position: static; }
  .testimonials-card-wrap { max-width: 100%; }
  .testimonials-section { padding: 56px 0; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-left { text-align: center; align-items: center; }
  .testimonials-desc { text-align: center; max-width: 100%; }
  .testimonials-badge { margin: 0 auto 8px; }
  .testimonials-text-block { display: flex; flex-direction: column; align-items: center; }
  .testimonials-actions { justify-content: center; }
  .testimonials-right { justify-content: center; }
  .testimonials-card-wrap { max-width: 100%; }
  .testimonials-header { text-align: center; }
  .testimonials-section { padding: 44px 0; }
  .t-carousel-track { min-height: 200px; }
  .t-stats-row { padding: 10px 14px; gap: 6px; }
  .t-stat-value { font-size: 0.9rem; }
  .t-stat-label { font-size: 0.55rem; }
  .t-card-body { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .t-card-glow { display: none !important; }
  .t-card.active:hover .t-card-body { transform: none !important; }
  .t-cta-btn::after { display: none !important; }
  .testimonials-section::before,
  .testimonials-section::after { opacity: 0.3 !important; }
}

/* ════════════════════════════════════════════
   FOOTER — Minimal Premium SaaS
════════════════════════════════════════════ */
#footer-container {
  display: block;
  margin: 0;
  padding: 0;
}
#footer-container:empty {
  display: none;
}
.footer {
  background: #070708;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 44px 0 0;
  margin: 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,196,0.12), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 0.9fr 1.4fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* Brand */
.footer-brand { max-width: 280px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-logo-img { height: 22px; width: auto; display: block; }

.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Social */
.footer-social {
  display: flex;
  gap: 6px;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--accent);
  border-color: rgba(0,245,196,0.2);
  background: rgba(0,245,196,0.04);
  box-shadow: 0 0 20px rgba(0,245,196,0.06);
  transform: translateY(-1px);
}

/* Columns */
.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  padding-bottom: 8px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background: rgba(0,245,196,0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  width: fit-content;
  text-decoration: none;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.5);
}

/* Newsletter */
.footer-newsletter-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  background: rgba(255,255,255,0.01);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: rgba(0,245,196,0.15);
  box-shadow: 0 0 0 3px rgba(0,245,196,0.03);
}

.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 8px 10px;
  font-size: 0.78rem;
  color: var(--white);
  font-family: inherit;
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.12); }

.newsletter-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,245,196,0.4);
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  background: none;
  border: none;
  margin-right: 2px;
}

.newsletter-btn:hover {
  color: var(--accent);
  transform: translateX(2px);
}

/* Bottom */
.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
}

.footer-bottom-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-bottom-logos img {
  height: 14px;
  width: auto;
  opacity: 0.3;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: grayscale(1) brightness(1.3) contrast(1.1);
}

.footer-bottom-logos img:hover {
  opacity: 0.55;
  filter: grayscale(0.4) brightness(1.4) contrast(1.15);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* — Tablet — */
@media (max-width: 1024px) {
  .services-grid { gap: 20px; }
  .services-skeleton-grid { gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-col-newsletter { grid-column: 1 / -1; }
  .process-cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-features { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { margin-bottom: 48px; }
  .timeline-line { left: 10%; right: 10%; }
  /* Projects tablet */
  .pj-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pj-grid-bottom { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pj-grid-bottom .pj-card:last-child { grid-column: 1 / -1; }
  .pj-visual { height: 190px; }
  .pj-card-large .pj-visual { height: 220px; }

  /* FAQ tablet */
  .faq-split { gap: 40px; }
  .faq-left { position: static; }

  /* Contact tablet */
  .contact-grid { gap: 48px; }
  .contact-card { padding: 32px 28px; }
  .contact-right { position: static; }
  .contact-stats-grid { gap: 12px; }
  .c-stat-card { padding: 14px 14px; }
  .c-stat-2 { transform: translateX(4px); }
  .c-stat-4 { transform: translateX(-2px); }
}

/* — Mobile — */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  /* Navbar — mobile overlay replaces dropdown */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-book { display: none; }
  .navbar {
    background: rgba(4,6,8,0.92);
    backdrop-filter: blur(26px) saturate(200%);
    -webkit-backdrop-filter: blur(26px) saturate(200%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 0 20px;
  }

  /* ════════════════════════════════════════════
     MOBILE MENU OVERLAY — Premium Glassmorphism
  ════════════════════════════════════════════ */
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(32px) saturate(1.4);
    -webkit-backdrop-filter: blur(32px) saturate(1.4);
  }

  .mobile-menu-panel {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: linear-gradient(180deg, rgba(12,14,18,0.94), rgba(8,10,14,0.96));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 28px 24px 32px;
    transform: scale(0.93) translateY(18px);
    transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
    box-shadow:
      0 0 0 1px rgba(0,245,196,0.04),
      0 32px 80px rgba(0,0,0,0.6),
      0 0 48px rgba(0,245,196,0.03);
    max-height: 90vh;
    overflow-y: auto;
  }
  .mobile-menu-overlay.open .mobile-menu-panel {
    transform: scale(1) translateY(0);
  }

  /* Panel Header */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .mobile-menu-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobile-menu-logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
  }
  .mobile-menu-logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--white);
  }
  .mobile-menu-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--gray);
    background: rgba(255,255,255,0.04);
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu-close-btn:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
  }
  .mobile-menu-close-btn:active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transform: scale(0.92);
  }

  /* Nav Items */
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--gray);
    transition: all 0.22s ease;
    position: relative;
  }
  .mobile-menu-link:hover {
    background: rgba(255,255,255,0.03);
    color: var(--white);
  }
  .mobile-menu-link:active {
    background: rgba(0,245,196,0.08);
    color: var(--white);
    transform: scale(0.98);
  }
  .mobile-menu-link.active {
    color: var(--white);
    background: rgba(0,245,196,0.06);
  }
  .mobile-menu-link.active .mobile-menu-icon {
    color: var(--accent);
  }
  .mobile-menu-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: color 0.22s ease;
  }

  /* Footer */
  .mobile-menu-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
  }
  .mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    background: linear-gradient(135deg, #00f5c4, #00c2a8);
    color: var(--bg);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 99px;
    transition: all 0.25s ease;
    box-shadow: 0 0 24px rgba(0,245,196,0.12);
  }
  .mobile-menu-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(0,245,196,0.2);
  }
  .mobile-menu-cta:active {
    transform: scale(0.97);
    box-shadow: 0 0 32px rgba(0,245,196,0.25);
  }
  .mobile-menu-trust {
    margin-top: 12px;
    font-size: 0.72rem;
    color: var(--gray2);
    letter-spacing: 0.02em;
  }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 0 24px;
  }
  .hero-left { align-items: center; }
  .hero-desc { text-align: center; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { flex: 0 1 auto; min-width: 0; white-space: normal; }

  /* Hero Visual */
  .hero-right { display: block; }
  .hero-visual-wrapper { min-height: 400px; }
  .glass-card { max-width: 380px; }
  .glass-inner { padding: 20px; gap: 16px; }
  .glass-chart-wrap { height: 80px; }
  .glass-metrics-row { padding: 14px 0 0; }
  .gm-value { font-size: 0.88rem; }
  .gm-label { font-size: 0.6rem; }
  .float-card { bottom: 0; right: 0; }
  .float-card-body { padding: 12px 14px; gap: 10px; }
  .float-card-icon { width: 32px; height: 32px; }
  .float-card-num { font-size: 0.85rem; }
  .float-pill { top: 0; left: 0; }
  .float-pill-text { font-size: 0.65rem; }
  .ambient-1 { width: 200px; height: 200px; }
  .ambient-2 { width: 140px; height: 140px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .services-skeleton-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-img { height: 180px; }

  /* Projects */
  .pj-grid { grid-template-columns: 1fr; }
  .pj-grid-bottom { grid-template-columns: 1fr; margin-top: 16px; }
  .pj-visual { height: 180px; }
  .pj-card-large .pj-visual { height: 200px; }
  .pj-card-large .pj-title { font-size: 1.05rem; }

  /* Process */
  .process-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .process-features { grid-template-columns: 1fr; }
  .process-timeline { margin-bottom: 40px; }
  .timeline-line { left: 6%; right: 6%; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* FAQ mobile */
  .faq-split { grid-template-columns: 1fr; gap: 36px; }
  .faq-left { position: static; text-align: center; align-items: center; }
  .faq-badge { margin: 0 auto; }
  .faq-sub { max-width: 100%; }
  .faq-trust-strip { justify-content: center; }
  .faq-brands { text-align: center; }
  .faq-brands-row { justify-content: center; }
  .faq-support-card { text-align: left; }
  .faq-p-q { padding: 18px 20px; gap: 10px; }
  .faq-p-text { font-size: 0.88rem; }
  .faq-p-num { font-size: 0.72rem; min-width: 24px; }
  .faq-p-answer-inner { padding: 0 20px 18px 54px; }
  .faq-p-answer-inner p { font-size: 0.84rem; }
  .faq-cta-body { padding: 28px 24px; flex-direction: column; text-align: center; }
  .faq-cta-left { align-items: center; }
  .faq-cta-title { font-size: 1.15rem; }
  .faq-cta-desc { max-width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-col-newsletter { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-logos { justify-content: center; }
  .footer-selectors { justify-content: center; }
  .footer { padding: 36px 0 0; }

  /* Contact mobile */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-left { text-align: center; align-items: center; }
  .contact-desc { text-align: center; max-width: 100%; }
  .contact-info { align-items: center; }
  .contact-right { justify-content: center; position: static; }
  .contact-card { max-width: 100%; padding: 28px 22px; }
  .contact-badge { margin: 0 auto 8px; }
  .contact-text-block { display: flex; flex-direction: column; align-items: center; }
  .contact-form-header { text-align: center; }
  .contact-stats-grid { max-width: 400px; margin: 4px auto; }
  .c-stat-card { padding: 12px 14px; }
  .c-stat-val { font-size: 0.85rem; }
  .c-stat-lbl { font-size: 0.62rem; }
  .c-stat-2 { transform: translateX(0); }
  .c-stat-3 { transform: translateX(0); }
  .c-stat-4 { transform: translateX(0); }
  .c-testimonial { max-width: 100%; }
  .c-testi-body { padding: 18px 20px; }
  .c-trusted { text-align: center; }
  .c-trusted-logos { justify-content: center; gap: 18px; }
  .c-t-logo { font-size: 0.75rem; }
  .contact-trust-badges { gap: 14px; }
  .c-trust-badge { font-size: 0.62rem; }

  /* Section */
  .section-title { font-size: 1.9rem; }

  /* ─── Mobile Performance: Reduce Blur & Glow ─── */
  .hero-glow {
    filter: blur(40px);
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,245,196,0.1) 0%, transparent 70%);
    animation: none;
  }
  .hero-glow-2 {
    filter: blur(30px);
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -60px;
    animation: none;
  }
  .projects-bg-glow { filter: blur(30px); width: 500px; height: 300px; }
  .process-bg-glow { filter: blur(30px); width: 400px; height: 250px; }
  .cta-glow { filter: blur(30px); width: 400px; height: 300px; }
  .svc-hero-glow { filter: blur(30px); width: 350px; height: 350px; }
  .svc-cta-glow { filter: blur(30px); width: 350px; height: 250px; }
  .services::before { width: 400px; height: 400px; }
  .results-bg { opacity: 0.4; }
  .hero-noise { opacity: 0.015; }
  .pj-visual-glow { opacity: 0.1; }
  .service-img::after { box-shadow: none; }
  .pj-visual::after { box-shadow: none; }
  .pj-badge { box-shadow: none; }
  .service-icon { box-shadow: none; }
  .timeline-line { box-shadow: none; animation: none; }

  /* Remove heavy backdrop-filter on mobile */
  .pj-card { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .process-card { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* Disable hover lift effects on mobile */
  .btn-primary:hover { box-shadow: none; transform: none; }
  .btn-secondary:hover { color: var(--gray); background: rgba(255,255,255,0.04); border-color: var(--border2); transform: none; }
  .btn-book:hover { box-shadow: none; transform: none; }
  .btn-primary::after, .btn-book::after { display: none; }
  .featured-btn:hover { box-shadow: none; }
  .form-btn:hover { animation: none; box-shadow: none; transform: none; }
  .form-btn::before { display: none; }
  .contact-card-glow-border { display: none; }
  .btn-pricing:hover { border-color: var(--border2); color: var(--gray); background: none; }

  /* Card hover simplifications */
  .pj-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
  .pj-card:hover::before { opacity: 0; }
  .service-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
  .service-card:hover::before { opacity: 0; }
  .stat-card:hover { transform: none; box-shadow: none; }
  .pricing-card:hover:not(.featured) { transform: none; border-color: var(--border); box-shadow: none; }
  .pricing-card.featured:hover { transform: none; box-shadow: 0 0 0 1px rgba(0,245,196,0.08), 0 20px 60px rgba(0,245,196,0.06); }
  .pricing-card:hover .pricing-service-icon { transform: none; box-shadow: none; border-color: rgba(0,245,196,0.18); }
  .process-card:hover { transform: none; box-shadow: none; }
  .svc-benefit-card:hover { transform: none; box-shadow: none; }
  .svc-stat-card:hover { transform: none; }
  .svc-result-card:hover { transform: none; box-shadow: none; }
  .svc-review-card:hover { transform: none; }
  .svc-step:hover { transform: none; box-shadow: none; }
  .svc-stat-item:hover { transform: none; }
  .pj-card:hover .pj-svg { transform: none; }
  .service-card:hover .service-visual { transform: none; }
  .pj-card:hover .pj-action { opacity: 0; }
  .service-card:hover .service-arrow { border-color: var(--gray2); color: var(--gray2); background: none; box-shadow: none; transform: none; }
  .process-card:hover .card-icon { background: rgba(0,245,196,0.06); border-color: rgba(0,245,196,0.15); box-shadow: none; }
  .process-card:hover .card-icon svg { transform: none; }
  .card-btn:hover { transform: none; box-shadow: none; }
  .social-icon:hover { transform: none; }
  .footer-links a:hover { color: rgba(255,255,255,0.3); }
  .footer-bottom-logos img:hover { opacity: 0.45; filter: grayscale(1) brightness(1.15) contrast(1.1); transform: none; }

  /* Footer mobile */
  .footer { padding: 36px 0 0; }
  .footer-grid { gap: 24px; }
  .footer-desc { font-size: 0.8rem; max-width: 100%; }

  /* Brands */
  .brands { padding: 28px 0; }
  .brand-item { font-size: 0.72rem; padding: 0 20px; }
  .marquee-inner { animation-duration: 18s; }
  .brands-label { font-size: 0.68rem; margin-bottom: 20px; }

  /* Section tag */
  .section-tag { font-size: 0.65rem; padding: 4px 12px; }

  /* Service page responsive enhancements */
  .svc-hero-title { font-size: 2rem; }
  .svc-hero-sub { font-size: 0.95rem; }
  .svc-title { font-size: 1.5rem; }
  .svc-intro { font-size: 0.9rem; margin-bottom: 32px; }
  .svc-step { padding: 28px 20px; }
  .svc-step-num { font-size: 1.6rem; }
  .svc-step-title { font-size: 0.95rem; }
  .svc-result-card { padding: 28px 24px; }
  .svc-result-metric { padding: 10px; }
  .svc-result-metric-val { font-size: 1rem; }
  .svc-cta-title { font-size: 1.6rem; }
}

/* ─── Very Small Phones (400px) ─── */
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 1.4rem; }
  .section-header { margin-bottom: 32px; }
  .hero-title { font-size: 1.4rem; }
  .hero-desc { font-size: 0.82rem; }
  .hero-container { gap: 24px; padding: 0 16px; }
  .stat-num { font-size: 1.6rem; }
  .stat-unit { font-size: 1rem; }
  .stat-card { padding: 18px 12px; }
  .pricing-card { padding: 24px 16px; }
  .pricing-service-icon { width: 40px; height: 40px; }
  .pricing-service-icon svg { width: 22px; height: 22px; }
  .pricing-service-title { font-size: 1rem; }
  .price-amount { font-size: 1.2rem; }
  .price-label { font-size: 0.6rem; }
  .contact-card { padding: 20px 14px; }
  .contact-stats-grid { grid-template-columns: 1fr; }
  .form-input, .form-select, .form-textarea { padding: 11px 12px 11px 32px; font-size: 0.8rem; }
  .form-input-icon { left: 10px; width: 12px; height: 12px; }
  .service-name { font-size: 0.9rem; }
  .testimonial-card { width: 240px; }
  .svc-hero-title { font-size: 1.7rem; }
}

/* ─── Landscape Phone Fixes ─── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero-container { gap: 24px; }
  .nav-links { max-height: 80vh; overflow-y: auto; }
}

/* ─── Touch Device Overrides ─── */
@media (hover: none) and (pointer: coarse) {
  .nav-link::before { display: none; }
  .nav-link:hover { color: var(--gray); background: none; }
  .nav-link.active::after { display: none; }
  .service-card:hover .service-visual { transform: none; }
  .pj-card:hover .pj-svg { transform: none; }
  .pj-card:hover .pj-action { opacity: 0; }
  .contact-card:hover { border-color: var(--border); box-shadow: none; }
  .legal-card:hover { border-color: var(--border); box-shadow: none; }
  .pj-visual-glow { opacity: 0; }
  .pj-card:hover .pj-visual-glow { opacity: 0; }

  .pricing-card.featured:hover { box-shadow: 0 0 0 1px rgba(0,245,196,0.08), 0 20px 60px rgba(0,245,196,0.06); }
  .pricing-card:hover .pricing-service-icon { transform: none; box-shadow: none; }
  .service-card:hover::before { opacity: 0; }
  .pj-card:hover::before { opacity: 0; }
  .timeline-node:hover .node-dot { border-color: rgba(0,245,196,0.35); box-shadow: none; }
  .timeline-node:hover .node-dot::after { background: rgba(0,245,196,0.25); transform: none; }
  .process-card:hover .card-icon { background: rgba(0,245,196,0.06); border-color: rgba(0,245,196,0.15); box-shadow: none; }
  .process-card:hover .card-icon svg { transform: none; }
  .feature-item:hover { background: rgba(255,255,255,0.015); }
  .brand-item:hover { transform: none; color: rgba(255,255,255,0.25); }
  .social-icon:hover { transform: none; }
  .footer-bottom-logos img:hover { opacity: 0.45; filter: grayscale(1) brightness(1.15) contrast(1.1); transform: none; }
  .svc-benefit-card:hover { transform: none; border-color: var(--border); box-shadow: none; }
  .svc-feature-item:hover { border-color: var(--border); }
  .svc-step:hover { transform: none; border-color: rgba(0,245,196,0.1); box-shadow: none; }
  .svc-result-card:hover { transform: none; border-color: var(--border); box-shadow: none; }
  .svc-review-card:hover { transform: none; border-color: var(--border); }
  .pj-cta-btn:hover { transform: none; box-shadow: none; color: var(--gray); border-color: rgba(255,255,255,0.12); }
  .btn-primary:hover { box-shadow: none; transform: none; }
  .btn-secondary:hover { color: var(--gray); background: rgba(255,255,255,0.04); border-color: var(--border2); transform: none; }
  .btn-book:hover { box-shadow: none; transform: none; }
  .btn-pricing:hover { border-color: var(--border2); color: var(--gray); background: none; }
  .featured-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); box-shadow: none; }
  .form-btn:hover { animation: none; box-shadow: none; transform: none; }
  .form-btn::before { display: none; }
  .contact-card-glow-border { display: none; }
  .faq-p-item.open { box-shadow: none; }
  .faq-p-item:hover { border-color: rgba(255,255,255,0.06); }
  .newsletter-btn:hover { color: rgba(0,245,196,0.5); }
  .marquee-track:hover .marquee-inner { animation-play-state: running; }
}

/* ════════════════════════════════════════════
   LEGAL PAGES (Privacy & Terms)
════════════════════════════════════════════ */

/* ─── Legal Hero ─── */
.legal-hero {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(0,245,196,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 0;
}

.legal-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0 12px;
}

.legal-hero-desc {
  font-size: 0.95rem;
  color: var(--gray2);
}

/* ─── Legal Content ─── */
.legal-content {
  padding-top: 40px;
  padding-bottom: 100px;
}

.legal-content .container {
  max-width: 800px;
}

.legal-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.legal-card:hover {
  border-color: rgba(0,245,196,0.15);
  box-shadow: 0 0 30px rgba(0,245,196,0.03);
}

.legal-intro {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

.legal-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-text:last-child {
  margin-bottom: 0;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.legal-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
}

.legal-contact-label {
  font-weight: 600;
  color: var(--white);
  min-width: 70px;
  flex-shrink: 0;
}

.legal-contact-link {
  color: var(--accent);
  transition: opacity var(--transition);
}

.legal-contact-link:hover {
  opacity: 0.8;
}

/* ════════════════════════════════════════════
   LEGAL PAGE RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .legal-hero { min-height: 260px; padding: 120px 0 0; }
  .legal-card { padding: 28px 24px; }
  .legal-contact-item { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* ════════════════════════════════════════════
   SERVICE DETAIL PAGES
════════════════════════════════════════════ */

/* ─── Service Hero ─── */
.svc-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,245,196,0.12) 0%, transparent 70%);
  filter: blur(60px);
}
.svc-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.07);
  border: 1px solid rgba(0,245,196,0.2);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.svc-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.svc-hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.svc-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Service Section ─── */
.svc-section { padding: 100px 0; }
.svc-alt { background: var(--bg2); }

.svc-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.07);
  border: 1px solid rgba(0,245,196,0.18);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.svc-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.svc-intro {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 48px;
}

/* ─── Overview Grid ─── */
.svc-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.svc-overview-text p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.svc-overview-text p:last-child { margin-bottom: 0; }

/* ─── Benefits ─── */
.svc-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-benefit-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,245,196,0.05);
}
.svc-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,245,196,0.07);
  border: 1px solid rgba(0,245,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.svc-benefit-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.svc-benefit-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── Features ─── */
.svc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color var(--transition), background var(--transition);
}
.svc-feature-item:hover {
  border-color: rgba(0,245,196,0.2);
  background: rgba(0,245,196,0.03);
}
.svc-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,245,196,0.07);
  border: 1px solid rgba(0,245,196,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.svc-feature-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.svc-feature-text {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Process Steps ─── */
.svc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-step {
  text-align: center;
  padding: 36px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,245,196,0.1);
  border-radius: 18px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 12px 40px rgba(0,245,196,0.06);
}
.svc-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(0,245,196,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.svc-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.svc-step-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── Service Stats ─── */
.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.svc-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.2);
}
.svc-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline;
}
.svc-stat-unit {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}
.svc-stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--gray);
}

/* ─── Service Results / Case Study ─── */
.svc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.svc-result-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.svc-result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,245,196,0.05);
}
.svc-result-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.08);
  border: 1px solid rgba(0,245,196,0.18);
  padding: 3px 10px;
  border-radius: 99px;
  width: fit-content;
}
.svc-result-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.svc-result-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}
.svc-result-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.svc-result-metric {
  text-align: center;
  padding: 12px;
  background: rgba(0,245,196,0.04);
  border-radius: 10px;
  border: 1px solid rgba(0,245,196,0.08);
}
.svc-result-metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.svc-result-metric-label {
  font-size: 0.7rem;
  color: var(--gray2);
  margin-top: 2px;
}

/* ─── Service Stats Bar ─── */
.svc-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-stat-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.svc-stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0,245,196,0.2);
}
.svc-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,245,196,0.07);
  border: 1px solid rgba(0,245,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 14px;
}
.svc-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.svc-stat-lbl {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ─── Service Customer Reviews ─── */
.svc-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
}
.svc-review-card {
  position: relative;
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
}
.svc-review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 20% 20%, rgba(0,245,196,0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.svc-review-card:hover::before {
  opacity: 1;
}
.svc-review-card:hover {
  border-color: rgba(0,245,196,0.18);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,245,196,0.06), 0 0 0 1px rgba(0,245,196,0.03);
}
.svc-review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 3px;
}
.svc-review-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.svc-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.svc-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0,245,196,0.1), 0 4px 16px rgba(0,0,0,0.25);
  transition: box-shadow 0.4s ease;
}
.svc-review-card:hover .svc-review-avatar {
  box-shadow: 0 0 0 3px rgba(0,245,196,0.18), 0 6px 20px rgba(0,0,0,0.3);
}
.svc-review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.svc-review-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
  margin-top: 2px;
}

/* ─── Service CTA ─── */
.svc-cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.svc-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,245,196,0.08) 0%, transparent 70%);
  filter: blur(60px);
}
.svc-cta-content {
  position: relative;
  z-index: 1;
}
.svc-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.svc-cta-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.svc-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Service Page Responsive ─── */
@media (max-width: 1024px) {
  .svc-overview-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-features { grid-template-columns: repeat(2, 1fr); }
  .svc-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .svc-hero { padding: 120px 0 60px; min-height: auto; }
  .svc-section { padding: 60px 0; }
  .svc-benefits { grid-template-columns: 1fr; }
  .svc-features { grid-template-columns: 1fr; }
  .svc-steps { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-result-metrics { grid-template-columns: repeat(2, 1fr); }
  .svc-hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .svc-hero-actions .btn-primary,
  .svc-hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .svc-cta-actions { flex-direction: column; align-items: center; width: 100%; }
  .svc-cta-actions .btn-primary,
  .svc-cta-actions .btn-secondary { width: 100%; justify-content: center; }
  .svc-results-grid { grid-template-columns: 1fr; }
  .svc-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .svc-reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .svc-hero-title { font-size: 2.2rem; }
  .svc-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   PREMIUM MICRO-INTERACTIONS
════════════════════════════════════════════ */

/* ─── Group Hover: blur + dim siblings when card is focused ─── */
.services-grid:has(.service-card:hover) .service-card:not(:hover),
.pj-grid:has(.pj-card:hover) .pj-card:not(:hover),
.pj-grid-bottom:has(.pj-card:hover) .pj-card:not(:hover),
.process-cards:has(.process-card:hover) .process-card:not(:hover) {
  filter: blur(1px) brightness(0.7);
  transition: filter 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s cubic-bezier(0.4,0,0.2,1);
}
.services-grid .service-card,
.pj-grid .pj-card,
.pj-grid-bottom .pj-card,
.process-cards .process-card {
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),
              border-color 0.45s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.45s cubic-bezier(0.4,0,0.2,1),
              filter 0.45s cubic-bezier(0.4,0,0.2,1),
              opacity 0.45s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Button Glow Pulse ─── */
.btn-primary {
  position: relative;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 99px;
  background: radial-gradient(circle at center, rgba(0,245,196,0.3) 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(12px);
  pointer-events: none;
}
.btn-primary:hover::after {
  opacity: 1;
  animation: btnGlowPulse 2.4s ease-in-out infinite;
}
@keyframes btnGlowPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.04); }
}

.btn-book {
  position: relative;
}
.btn-book::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 99px;
  background: radial-gradient(circle at center, rgba(0,245,196,0.25) 0%, transparent 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
  filter: blur(10px);
  pointer-events: none;
}
.btn-book:hover::after {
  opacity: 1;
  animation: btnGlowPulse 2.4s ease-in-out infinite;
}

/* ─── Counter Pop Animation ─── */
.stat-num.counted,
.svc-stat-num.counted {
  animation: countPop 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes countPop {
  0%   { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── Soft Icon Scale on Hover ─── */
.service-icon,
.card-icon,
.stat-icon,
.svc-benefit-icon,
.svc-feature-icon,
.feature-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}
.stat-card:hover .stat-icon,
.process-card:hover .card-icon,
.svc-benefit-card:hover .svc-benefit-icon,
.svc-feature-item:hover .svc-feature-icon,
.feature-item:hover .feature-icon {
  transform: scale(1.08);
}

/* ─── Refined Nav Link Underline ─── */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1),
              left 0.3s cubic-bezier(0.4,0,0.2,1);
  border-radius: 99px;
  pointer-events: none;
}
.nav-link:hover::before {
  width: 16px;
  left: calc(50% - 8px);
}
.nav-link.active::before {
  display: none;
}

/* ─── Project Card Visual Glow Enhancement ─── */
.pj-visual,
.service-img {
  transition: box-shadow 0.4s ease;
}
.pj-card:hover .pj-visual,
.service-card:hover .service-img {
  box-shadow: inset 0 0 40px rgba(0,245,196,0.06);
}

/* ─── Social Icon Hover ─── */
.social-icon {
  transition: all 0.3s ease;
}
.social-icon:hover {
  transform: translateY(-1px);
}

/* ─── Footer Link Subtle Hover ─── */
.footer-links a {
  position: relative;
  width: fit-content;
}

/* ─── Pricing Card Hover Refinement ─── */
.pricing-card {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s cubic-bezier(0.4,0,0.2,1);
}
.pricing-card:hover:not(.featured) {
  transform: translateY(-6px);
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,245,196,0.06);
}
.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.15),
              0 28px 70px rgba(0,245,196,0.1),
              0 0 50px rgba(0,245,196,0.06);
}

/* ─── Form Input Hover Refinements ─── */
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}



/* ─── Service Page Stat Card ─── */
.svc-stat-card,
.svc-stat-item,
.svc-step {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              border-color 0.4s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Marquee Brand Item Scale ─── */
.brand-item {
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.brand-item:hover {
  transform: scale(1.04);
  color: rgba(255,255,255,0.6);
  /* ... */
}

/* ════════════════════════════════════════════
   ANDROID / MOBILE RENDERING STABILITY
   ════════════════════════════════════════════ */
/* Fix text duplication, layer glitches, overflow on Android browsers */

@media (max-width: 768px) {
  /* Remove all GPU-composited backdrop-filter from fixed elements */
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* Prevent duplicate text rendering on animated elements */
  .fade-up,
  .fade-up.visible {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Prevent horizontal overflow from inset pseudo-elements */
  .process-card::before,
  .contact-card::before,
  .sp-testi-featured::before {
    inset: 0;
    border-radius: inherit;
  }

  /* Flatten SVG decorative glows that cause banding on mobile */
  .hero-glow,
  .projects-bg-glow,
  .process-bg-glow,
  .cta-glow,
  .svc-hero-glow,
  .svc-cta-glow {
    opacity: 0.3;
  }

  /* Prevent card layer bleed on Android */
  .pj-card,
  .service-card,
  .stat-card,
  .process-card,
  .pricing-card,
  .testimonial-card,
  .sp-testi-card,
  .contact-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* Ensure no horizontal scroll from fixed/absolute elements */
  .navbar,
  .hero-bg,
  .hero-glow,
  .projects-bg-glow,
  .process-bg-glow,
  .cta-bg,
  .cta-glow,
  .results-bg,
  .sp-bg {
    max-width: 100vw;
  }

  /* Prevent SVG overflow */
  .glass-chart-svg {
    max-width: 100%;
    overflow: hidden;
  }

  /* Fix service page hero glow overlap on text */
  .svc-hero-glow {
    opacity: 0.15;
  }
}

@media (max-width: 480px) {
  /* Simpler marquee timing reduces jank on weak GPUs */
  .marquee-inner { animation-duration: 25s; }

  /* Ensure zero GPU cost for non-visible elements */
  .float-card { display: none; }

  /* Prevent text reflow from 3D transforms */
  .pj-action { display: none; }
}

@media (max-width: 400px) {
  .sp-testi-featured { transform: none; }
  .sp-testi-featured::before { display: none; }
}

/* ─── Android-specific overrides (class set via JS) ─── */
.is-android .navbar {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.is-android .marquee-inner {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
}
.is-android .hero-glow,
.is-android .projects-bg-glow,
.is-android .process-bg-glow,
.is-android .cta-glow,
.is-android .svc-hero-glow,
.is-android .svc-cta-glow {
  filter: blur(20px);
  opacity: 0.25;
}
.is-android * {
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   NOTE: This file contains TWO competing design systems:
     - "sv-*" prefix (SERVICES PAGE 3.0 below)
     - "sp-*" prefix (sp-section, sp-hero, etc. above)
   Both appear to serve the same purpose (services/pricing).
   One is likely dead code. Consider auditing and removing one.
   ════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════════
   SERVICES PAGE 3.0 — Premium SaaS Landing
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --sv-radius: 16px;
  --sv-radius-lg: 20px;
  --sv-glow: rgba(0,245,196,0.08);
  --sv-glow-strong: rgba(0,245,196,0.15);
  --sv-border: rgba(255,255,255,0.06);
  --sv-border-light: rgba(255,255,255,0.08);
}

/* ─── Shared ─── */
.sv-text-glow {
  background: linear-gradient(135deg, #00f5c4 0%, #00c2a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sv-section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sv-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  padding: 5px 14px;
  border-radius: 99px;
}
.sv-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.sv-section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════════════════════════════ */
.sv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.sv-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sv-hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: svOrbFloat 12s ease-in-out infinite;
}
.sv-hero-glow-orb--1 {
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,245,196,0.12) 0%, transparent 70%);
  animation-delay: 0s;
}
.sv-hero-glow-orb--2 {
  bottom: -150px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,245,196,0.05) 0%, transparent 70%);
  animation-delay: -4s;
}
.sv-hero-glow-orb--3 {
  top: 20%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,245,196,0.04) 0%, transparent 70%);
  animation-delay: -8s;
}
@keyframes svOrbFloat {
  0%, 100% { opacity: 0.2; transform: scale(1) translate(0,0); }
  50% { opacity: 0.35; transform: scale(1.02) translate(8px,-8px); }
}
.sv-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 60% 40%, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.sv-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* Left */
.sv-hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  padding: 5px 14px;
  border-radius: 99px;
  width: fit-content;
}
.sv-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
}
.sv-hero-desc {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 480px;
}
.sv-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.sv-btn--primary {
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
}
.sv-btn--primary:hover {
  box-shadow: 0 0 30px rgba(0,245,196,0.4);
  transform: translateY(-2px);
}
.sv-btn--ghost {
  color: var(--gray);
  background: transparent;
  border: 1px solid var(--sv-border-light);
}
.sv-btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.sv-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}
.sv-hero-avatars {
  display: flex;
  align-items: center;
}
.sv-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--bg);
  border: 2px solid var(--bg);
  flex-shrink: 0;
}
.sv-hero-trust-text {
  font-size: 0.82rem;
  color: var(--gray2);
}
.sv-hero-trust-text strong {
  color: var(--white);
}

/* Right — Mockup */
.sv-hero-right {
  position: relative;
}
.sv-hero-mockup {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--sv-border-light);
  border-radius: var(--sv-radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.04), 0 24px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,245,196,0.02);
  position: relative;
  z-index: 1;
}
.sv-mockup-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}
.sv-mockup-dots {
  display: flex;
  gap: 6px;
}
.sv-mockup-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.sv-mockup-dots span:nth-child(1) { background: #ff5f57; }
.sv-mockup-dots span:nth-child(2) { background: #febc2e; }
.sv-mockup-dots span:nth-child(3) { background: #28c840; }
.sv-mockup-url {
  font-size: 0.7rem;
  color: var(--gray2);
  background: rgba(255,255,255,0.03);
  padding: 3px 10px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}
.sv-mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sv-mockup-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-metric {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sv-metric-label {
  font-size: 0.72rem;
  color: var(--gray2);
  min-width: 110px;
}
.sv-metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
  text-align: right;
}
.sv-metric-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.04);
  border-radius: 99px;
  overflow: hidden;
}
.sv-metric-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(0,245,196,0.3), var(--accent));
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

.sv-mockup-chart {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 8px;
}

/* Floating cards */
.sv-float {
  position: absolute;
  background: rgba(10,14,14,0.92);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 2;
  animation: svFloat 7s ease-in-out infinite;
}
.sv-float--1 {
  top: -16px;
  right: -20px;
  animation-delay: 0s;
}
.sv-float--2 {
  bottom: 50px;
  left: -28px;
  animation-delay: 2.5s;
}
@keyframes svFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}
.sv-float-label {
  font-size: 0.62rem;
  color: var(--gray2);
  white-space: nowrap;
}
.sv-float-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
}

/* ══════════════════════════════════════════════════════════════════════
   2. FEATURED WORK
   ══════════════════════════════════════════════════════════════════════ */
.sv-featured {
  position: relative;
  padding: 120px 0 80px;
  background: rgba(255,255,255,0.008);
}
.sv-featured-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sv-featured-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,245,196,0.03) 0%, transparent 70%);
  filter: blur(60px);
}

.sv-projects {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}
.sv-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.012);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.sv-project:hover {
  border-color: rgba(0,245,196,0.12);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.02), 0 20px 60px rgba(0,0,0,0.3);
}

.sv-project-visual {
  position: relative;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 28px;
}
.sv-project-glow {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.sv-project:hover .sv-project-glow {
  opacity: 1;
}
.sv-project-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,196,0.3), transparent);
}

.sv-project-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.sv-project-preview-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
}
.sv-project-preview-dots {
  display: flex;
  gap: 5px;
}
.sv-project-preview-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.sv-project-preview-dots span:nth-child(1) { background: #ff5f57; }
.sv-project-preview-dots span:nth-child(2) { background: #febc2e; }
.sv-project-preview-dots span:nth-child(3) { background: #28c840; }
.sv-project-preview-url {
  font-size: 0.65rem;
  color: var(--gray2);
  flex: 1;
  text-align: center;
}
.sv-project-preview-body {
  padding: 16px;
}
.sv-project-preview-card {
  transition: background 0.3s ease;
}

.sv-project-info {
  padding: 36px 36px 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-project-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.sv-project-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.sv-project-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}
.sv-project-metrics {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}
.sv-project-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sv-project-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}
.sv-project-stat-lbl {
  font-size: 0.7rem;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── Cinematic Banner ─── */
.sv-cinematic {
  position: relative;
  border-radius: var(--sv-radius-lg);
  overflow: hidden;
  padding: 100px 60px;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--sv-border);
}
.sv-cinematic-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sv-cinematic-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: svCinematicOrb 14s ease-in-out infinite;
}
.sv-cinematic-orb--1 {
  top: -100px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,245,196,0.1) 0%, transparent 70%);
}
.sv-cinematic-orb--2 {
  bottom: -100px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,245,196,0.06) 0%, transparent 70%);
  animation-delay: -5s;
}
.sv-cinematic-orb--3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,245,196,0.04) 0%, transparent 70%);
  animation-delay: -2.5s;
}
@keyframes svCinematicOrb {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.04); }
}
.sv-cinematic-particles {
  position: absolute;
  inset: 0;
}
.sv-cinematic-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.2;
  animation: svParticle 10s ease-in-out infinite;
}
.sv-cinematic-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.sv-cinematic-particles span:nth-child(2) { top: 25%; left: 80%; animation-delay: -1s; }
.sv-cinematic-particles span:nth-child(3) { top: 60%; left: 5%; animation-delay: -2s; }
.sv-cinematic-particles span:nth-child(4) { top: 75%; left: 70%; animation-delay: -3s; }
.sv-cinematic-particles span:nth-child(5) { top: 45%; left: 90%; animation-delay: -4s; }
.sv-cinematic-particles span:nth-child(6) { top: 10%; left: 50%; animation-delay: -5s; }
.sv-cinematic-particles span:nth-child(7) { top: 80%; left: 30%; animation-delay: -1.5s; }
.sv-cinematic-particles span:nth-child(8) { top: 35%; left: 20%; animation-delay: -3.5s; }
.sv-cinematic-particles span:nth-child(9) { top: 65%; left: 60%; animation-delay: -2.5s; }
.sv-cinematic-particles span:nth-child(10) { top: 50%; left: 40%; animation-delay: -4.5s; }
@keyframes svParticle {
  0%, 100% { opacity: 0.08; transform: scale(0.5); }
  50% { opacity: 0.2; transform: scale(1.2); }
}

.sv-cinematic-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.sv-cinematic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  padding: 5px 14px;
  border-radius: 99px;
}
.sv-cinematic-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.sv-cinematic-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 440px;
  line-height: 1.6;
}
.sv-cinematic-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 8px;
}
.sv-cinematic-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.sv-cinematic-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}
.sv-cinematic-stat-lbl {
  font-size: 0.72rem;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sv-cinematic-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════════════════════════════════════
   3. PRICING
   ══════════════════════════════════════════════════════════════════════ */
.sv-pricing {
  position: relative;
  padding: 120px 0;
}

.sv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.sv-pricing-card {
  background: rgba(255,255,255,0.012);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.sv-pricing-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.sv-pricing-card--featured {
  background: rgba(0,245,196,0.02);
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.04), 0 8px 32px rgba(0,245,196,0.02);
}
.sv-pricing-card--featured:hover {
  border-color: rgba(0,245,196,0.3);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.06), 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,245,196,0.03);
}
.sv-pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--sv-radius-lg);
  background: linear-gradient(135deg, rgba(0,245,196,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.sv-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,245,196,0.3);
}

.sv-pricing-card-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-pricing-plan {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.sv-pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.sv-pricing-currency {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray2);
  margin-top: 3px;
}
.sv-pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sv-pricing-desc {
  font-size: 0.82rem;
  color: var(--gray2);
  line-height: 1.5;
}
.sv-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sv-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray);
}

.sv-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--sv-border-light);
  padding: 11px 24px;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-align: center;
  width: 100%;
  margin-top: auto;
}
.sv-pricing-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
}
.sv-pricing-btn--primary {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.sv-pricing-btn--primary:hover {
  box-shadow: 0 0 30px rgba(0,245,196,0.4);
  color: var(--bg);
  background: var(--accent);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════════════
   4. TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════ */
.sv-testimonials {
  position: relative;
  padding: 120px 0;
  background: rgba(255,255,255,0.008);
}

.sv-testimonials-track {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: start;
}

.sv-testimonial-card {
  background: rgba(255,255,255,0.012);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.sv-testimonial-card:hover {
  border-color: rgba(0,245,196,0.12);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.02), 0 20px 60px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

.sv-testimonial-card--featured {
  background: rgba(0,245,196,0.01);
  border-color: rgba(0,245,196,0.08);
  transform: translateY(-8px) scale(1.01);
}
.sv-testimonial-card--featured:hover {
  transform: translateY(-12px) scale(1.01);
}

.sv-testimonial-stars {
  display: flex;
  gap: 3px;
}
.sv-testimonial-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-style: italic;
}
.sv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.sv-testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}
.sv-testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.sv-testimonial-role {
  font-size: 0.72rem;
  color: var(--gray2);
}

/* ══════════════════════════════════════════════════════════════════════
   5. FINAL CTA
   ══════════════════════════════════════════════════════════════════════ */
.sv-cta {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.sv-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sv-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: svCtaOrb 14s ease-in-out infinite;
}
.sv-cta-orb--1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,245,196,0.07) 0%, transparent 60%);
}
.sv-cta-orb--2 {
  top: 20%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,245,196,0.04) 0%, transparent 70%);
  animation-delay: -5s;
}
.sv-cta-orb--3 {
  bottom: 10%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,245,196,0.03) 0%, transparent 70%);
  animation-delay: -2.5s;
}
@keyframes svCtaOrb {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.04); }
}
.sv-cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
}

.sv-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.sv-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  padding: 5px 14px;
  border-radius: 99px;
}
.sv-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 700px;
}
.sv-cta-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 440px;
  line-height: 1.6;
}
.sv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 16px 38px;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
}
.sv-cta-btn:hover {
  box-shadow: 0 0 40px rgba(0,245,196,0.4);
  transform: translateY(-2px);
}
.sv-cta-trust {
  font-size: 0.75rem;
  color: var(--gray2);
}
.sv-cta-trust span {
  display: inline-block;
  padding: 0 12px;
  position: relative;
}
.sv-cta-trust span::before,
.sv-cta-trust span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.05);
}
.sv-cta-trust span::before { right: 100%; }
.sv-cta-trust span::after { left: 100%; }

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sv-hero-inner { gap: 48px; }
  .sv-hero-title { font-size: clamp(2rem, 4vw, 3rem); }
  .sv-project { grid-template-columns: 1fr; }
  .sv-project-info { padding: 0 28px 28px; }
  .sv-project-visual { min-height: 240px; }
  .sv-pricing-grid { gap: 16px; }
  .sv-testimonials-track { grid-template-columns: 1fr 1fr; }
  .sv-testimonial-card--featured { transform: none; }
  .sv-testimonial-card--featured:hover { transform: translateY(-3px); }
  .sv-cinematic { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .sv-hero { min-height: auto; padding: 100px 0 60px; }
  .sv-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv-hero-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .sv-hero-desc { font-size: 0.92rem; }
  .sv-hero-actions { flex-direction: column; width: 100%; }
  .sv-hero-actions .sv-btn { width: 100%; justify-content: center; }
  .sv-float { display: none; }
  .sv-mockup-body { padding: 14px; }
  .sv-section-head { margin-bottom: 40px; }
  .sv-featured { padding: 80px 0 40px; }
  .sv-project { gap: 0; }
  .sv-project-visual { min-height: 200px; padding: 20px; }
  .sv-project-metrics { gap: 16px; }
  .sv-project-stat-val { font-size: 1rem; }
  .sv-pricing { padding: 80px 0; }
  .sv-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .sv-pricing-card { padding: 28px 24px; }
  .sv-testimonials { padding: 80px 0; }
  .sv-testimonials-track { grid-template-columns: 1fr; gap: 16px; }
  .sv-testimonial-card { padding: 22px 20px; }
  .sv-cinematic { padding: 60px 24px; }
  .sv-cinematic-stats { flex-direction: column; gap: 16px; }
  .sv-cinematic-divider { display: none; }
  .sv-cta { padding: 80px 0; }
  .sv-cta-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .sv-cta-content { gap: 18px; }
  .sv-section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

@media (max-width: 480px) {
  .sv-hero { padding: 90px 0 40px; }
  .sv-hero-title { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .sv-hero-desc { font-size: 0.85rem; }
  .sv-hero-inner { gap: 28px; padding: 0 20px; }
  .sv-hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sv-metric { gap: 8px; }
  .sv-metric-label { min-width: 80px; font-size: 0.65rem; }
  .sv-metric-value { min-width: 48px; font-size: 0.78rem; }
  .sv-featured { padding: 60px 0 30px; }
  .sv-project-visual { min-height: 160px; padding: 14px; }
  .sv-project-info { padding: 0 20px 20px; gap: 10px; }
  .sv-project-name { font-size: 1.1rem; }
  .sv-project-desc { font-size: 0.82rem; }
  .sv-project-metrics { gap: 12px; }
  .sv-cinematic { padding: 40px 20px; border-radius: var(--sv-radius); }
  .sv-cinematic-title { font-size: 1.3rem; }
  .sv-cinematic-stat-val { font-size: 1.3rem; }
  .sv-pricing { padding: 60px 0; }
  .sv-pricing-card { padding: 24px 20px; }
  .sv-pricing-amount { font-size: 1.8rem; }
  .sv-testimonials { padding: 60px 0; }
  .sv-testimonial-card { padding: 20px 16px; }
  .sv-testimonial-text { font-size: 0.82rem; }
  .sv-cta { padding: 60px 0; }
  .sv-cta-title { font-size: clamp(1.3rem, 6vw, 1.6rem); }
  .sv-cta-desc { font-size: 0.85rem; }
  .sv-cta-btn { padding: 14px 28px; font-size: 0.88rem; }
  .sv-section-head { margin-bottom: 32px; gap: 10px; }
  .sv-section-title { font-size: 1.4rem; }
  .sv-section-desc { font-size: 0.85rem; }
  .sv-btn { font-size: 0.82rem; padding: 10px 22px; }
  .sv-hero-actions .sv-btn { width: 100%; justify-content: center; }
}

/* ─── Touch device overrides ─── */
@media (hover: none) and (pointer: coarse) {
  .sv-project:hover { border-color: var(--sv-border); box-shadow: none; }
  .sv-project:hover .sv-project-glow { opacity: 0.6; }
  .sv-pricing-card:hover { transform: none; box-shadow: none; border-color: var(--sv-border); }
  .sv-pricing-card--featured:hover { box-shadow: 0 0 0 1px rgba(0,245,196,0.04); border-color: rgba(0,245,196,0.2); }
  .sv-testimonial-card:hover { transform: none; box-shadow: none; border-color: var(--sv-border); }
  .sv-testimonial-card--featured:hover { transform: translateY(-8px) scale(1.01); }
  .sv-cinematic:hover .sv-cinematic-orb { animation: none; }
}

/* ══════════════════════════════════════════════════════════════════════
   NAV DROPDOWN
   ══════════════════════════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  background: rgba(12,12,14,0.96);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,245,196,0.03);
  backdrop-filter: blur(24px) saturate(180%);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* ══════════════════════════════════════════════════════════════════════
   SERVICE PAGES 3.0 — Premium Standalone Sales Pages
   ══════════════════════════════════════════════════════════════════════ */

/* ─── Shared ─── */
.sp-text-glow {
  background: linear-gradient(135deg, #00f5c4 0%, #00c2a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-section-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.sp-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  padding: 5px 14px;
  border-radius: 99px;
}
.sp-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}
.sp-section-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.6;
}

/* ─── 1. HERO ─── */
.sp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.sp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: spOrb 12s ease-in-out infinite;
}
.sp-hero-orb--1 {
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,245,196,0.1) 0%, transparent 70%);
}
.sp-hero-orb--2 {
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,245,196,0.04) 0%, transparent 70%);
  animation-delay: -5s;
}
.sp-hero-orb--3 {
  top: 30%;
  right: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,245,196,0.03) 0%, transparent 70%);
  animation-delay: -8s;
}
@keyframes spOrb {
  0%, 100% { opacity: 0.2; transform: scale(1) translate(0,0); }
  50% { opacity: 0.3; transform: scale(1.02) translate(6px,-6px); }
}
.sp-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 60% 40%, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.sp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.sp-hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.15);
  padding: 5px 14px;
  border-radius: 99px;
  width: fit-content;
}
.sp-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
}
.sp-hero-desc {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 460px;
}
.sp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.sp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 99px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.sp-btn--primary {
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
}
.sp-btn--primary:hover {
  box-shadow: 0 0 30px rgba(0,245,196,0.35);
  transform: translateY(-2px);
}
.sp-btn--ghost {
  color: var(--gray);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
}
.sp-btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}
.sp-hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.sp-hero-avatars {
  display: flex;
  align-items: center;
}
.sp-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--bg);
  border: 2px solid var(--bg);
  flex-shrink: 0;
}
.sp-hero-trust-text {
  font-size: 0.8rem;
  color: var(--gray2);
}
.sp-hero-trust-text strong {
  color: var(--white);
}

/* Hero Right */
.sp-hero-right {
  position: relative;
}
.sp-hero-mockup {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.04), 0 24px 80px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.sp-mockup-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
}
.sp-mockup-dots {
  display: flex;
  gap: 5px;
}
.sp-mockup-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.sp-mockup-dots span:nth-child(1) { background: #ff5f57; }
.sp-mockup-dots span:nth-child(2) { background: #febc2e; }
.sp-mockup-dots span:nth-child(3) { background: #28c840; }
.sp-mockup-url {
  font-size: 0.68rem;
  color: var(--gray2);
  background: rgba(255,255,255,0.03);
  padding: 3px 10px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}
.sp-mockup-body {
  padding: 20px;
}
.sp-mockup-body svg {
  display: block;
  width: 100%;
}

/* ─── 2. SHOWCASE ─── */
.sp-showcase {
  position: relative;
  padding: 80px 0;
  background: rgba(255,255,255,0.008);
}
.sp-showcase .sp-section-head {
  margin-bottom: 48px;
}
.sp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.sp-showcase-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.sp-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,245,196,0.2);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.05), 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,245,196,0.06);
}
.sp-showcase-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.sp-showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}
.sp-showcase-card:hover .sp-showcase-image img {
  transform: scale(1.06);
}
.sp-showcase-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
}
.sp-showcase-result {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0,245,196,0.12);
  border: 1px solid rgba(0,245,196,0.15);
  color: #00f5c4;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sp-showcase-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sp-showcase-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00f5c4;
  opacity: 0.7;
}
.sp-showcase-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.sp-showcase-meta {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 10px;
}
.sp-showcase-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
}
.sp-showcase-stat svg {
  flex-shrink: 0;
}
.sp-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00f5c4;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.sp-showcase-btn:hover {
  gap: 10px;
  color: #fff;
}

/* ─── 3. BENEFITS ─── */
.sp-benefits {
  position: relative;
  padding: 100px 0;
}
.sp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-benefit-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.sp-benefit-card:hover {
  border-color: rgba(0,245,196,0.12);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.02), 0 16px 40px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}
.sp-benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,245,196,0.06);
  border: 1px solid rgba(0,245,196,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.sp-benefit-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.sp-benefit-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── 4. PRICING ─── */
.sp-pricing {
  position: relative;
  padding: 100px 0;
  background: rgba(255,255,255,0.008);
}
.sp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.sp-pricing-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.sp-pricing-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.sp-pricing-card--featured {
  background: rgba(0,245,196,0.018);
  border-color: rgba(0,245,196,0.18);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.04);
}
.sp-pricing-card--featured:hover {
  border-color: rgba(0,245,196,0.25);
  box-shadow: 0 0 0 1px rgba(0,245,196,0.06), 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,245,196,0.03);
}
.sp-pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 14px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0,245,196,0.25);
}
.sp-pricing-plan {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.sp-pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin: 4px 0;
}
.sp-pricing-currency {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray2);
  margin-top: 2px;
}
.sp-pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.sp-pricing-desc {
  font-size: 0.8rem;
  color: var(--gray2);
  line-height: 1.5;
}
.sp-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sp-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gray);
}
.sp-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 11px 24px;
  border-radius: 99px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
}
.sp-pricing-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}
.sp-pricing-btn--primary {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.sp-pricing-btn--primary:hover {
  box-shadow: 0 0 30px rgba(0,245,196,0.35);
  transform: translateY(-2px);
  color: var(--bg);
}

/* ─── 5. STATS ─── */
.sp-stats {
  position: relative;
  padding: 80px 0;
}
.sp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.sp-stat-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}
.sp-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.sp-stat-label {
  font-size: 0.72rem;
  color: var(--gray2);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── 6. TESTIMONIALS — COMPLETE REBUILD ─── */
.sp-testimonials {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.003) 0%, rgba(0,245,196,0.012) 50%, rgba(255,255,255,0.003) 100%);
  overflow: hidden;
}
.sp-testimonials::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,245,196,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.sp-testimonials::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,245,196,0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.sp-testimonials .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.sp-testimonials .sp-section-head {
  margin-bottom: 64px;
}
.sp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  justify-content: center;
  align-items: stretch;
}
.sp-testimonial-card {
  position: relative;
  background: rgba(255,255,255,0.015);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 48px 40px 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
}
.sp-testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse at 20% 20%, rgba(0,245,196,0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sp-testimonial-card:hover::before {
  opacity: 1;
}
.sp-testimonial-card:hover {
  border-color: rgba(0,245,196,0.18);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,245,196,0.06), 0 0 0 1px rgba(0,245,196,0.03);
}
.sp-testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  opacity: 0.08;
  pointer-events: none;
}
.sp-testimonial-quote svg {
  width: 100%;
  height: 100%;
}
.sp-testimonial-stars {
  display: flex;
  gap: 5px;
}
.sp-testimonial-stars svg {
  width: 18px;
  height: 18px;
}
.sp-testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  letter-spacing: 0.01em;
}
.sp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.sp-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0,245,196,0.1), 0 4px 16px rgba(0,0,0,0.25);
  transition: box-shadow 0.4s ease;
}
.sp-testimonial-card:hover .sp-testimonial-avatar {
  box-shadow: 0 0 0 3px rgba(0,245,196,0.18), 0 6px 20px rgba(0,0,0,0.3);
}
.sp-testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.sp-testimonial-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
  margin-top: 2px;
}

/* ─── 7. CTA ─── */
.sp-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.sp-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.sp-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: spCtaOrb 14s ease-in-out infinite;
}
.sp-cta-orb--1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,245,196,0.06) 0%, transparent 60%);
}
.sp-cta-orb--2 {
  top: 20%;
  right: 20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,245,196,0.03) 0%, transparent 70%);
  animation-delay: -5s;
}
@keyframes spCtaOrb {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.04); }
}
.sp-cta-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
}
.sp-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.sp-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 700px;
}
.sp-cta-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 440px;
  line-height: 1.6;
}
.sp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
  padding: 15px 34px;
  border-radius: 99px;
  transition: all 0.3s ease;
}
.sp-cta-btn:hover {
  box-shadow: 0 0 40px rgba(0,245,196,0.35);
  transform: translateY(-2px);
}
.sp-cta-trust {
  font-size: 0.72rem;
  color: var(--gray2);
}

/* ══════════════════════════════════════════════════════════════════════
   SERVICE PAGES 3.0 — Responsive
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .sp-showcase { padding: 70px 0; }
  .sp-showcase .sp-section-head { margin-bottom: 40px; }
  .sp-testimonials { padding: 100px 0; }
  .sp-testimonials .container { padding: 0 32px; }
  .sp-testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sp-testimonial-card { padding: 40px 32px 32px; }
  .sp-testimonials .sp-section-head { margin-bottom: 48px; }
  .svc-reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .svc-review-card { padding: 40px 32px 32px; }
}

@media (max-width: 768px) {
  .sp-hero { min-height: auto; padding: 100px 0 60px; }
  .sp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .sp-hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .sp-hero-desc { font-size: 0.9rem; }
  .sp-hero-actions { flex-direction: column; width: 100%; }
  .sp-hero-actions .sp-btn { width: 100%; justify-content: center; }
  .sp-hero-trust { flex-wrap: wrap; }
  .sp-showcase { padding: 60px 0; }
  .sp-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-benefits { padding: 60px 0; }
  .sp-benefits-grid { grid-template-columns: 1fr; }
  .sp-pricing { padding: 60px 0; }
  .sp-pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .sp-pricing-card { padding: 28px 22px; }
  .sp-stats { padding: 50px 0; }
  .sp-stats-grid { grid-template-columns: repeat(2, 1fr); max-width: 400px; gap: 12px; }
  .sp-stat-num { font-size: 1.5rem; }
  .sp-testimonials { padding: 80px 0; }
  .sp-testimonials .container { padding: 0 24px; }
  .sp-testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
  .sp-testimonial-card { padding: 36px 28px 28px; min-height: auto; }
  .sp-testimonials .sp-section-head { margin-bottom: 40px; }
  .svc-reviews-grid { grid-template-columns: 1fr; gap: 24px; }
  .svc-review-card { padding: 36px 28px 28px; }
  .sp-cta { padding: 80px 0; }
  .sp-cta-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .sp-section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .sp-section-head { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .sp-hero { padding: 90px 0 40px; }
  .sp-hero-title { font-size: clamp(1.3rem, 7vw, 1.7rem); }
  .sp-hero-desc { font-size: 0.85rem; }
  .sp-hero-inner { padding: 0 20px; gap: 28px; }
  .sp-showcase { padding: 40px 0; }
  .sp-showcase-grid { grid-template-columns: 1fr; }
  .sp-benefits { padding: 40px 0; }
  .sp-benefit-card { padding: 24px 20px; }
  .sp-pricing { padding: 40px 0; }
  .sp-pricing-card { padding: 24px 18px; }
  .sp-pricing-amount { font-size: 1.7rem; }
  .sp-stats { padding: 30px 0; }
  .sp-stat-num { font-size: 1.2rem; }
  .sp-testimonials { padding: 60px 0; }
  .sp-testimonials .container { padding: 0 16px; }
  .sp-testimonial-card { padding: 28px 20px 24px; min-height: auto; gap: 16px; }
  .sp-testimonial-text { font-size: 0.85rem; }
  .sp-testimonial-stars svg { width: 16px; height: 16px; }
  .sp-testimonial-avatar { width: 40px; height: 40px; font-size: 0.72rem; }
  .sp-testimonial-name { font-size: 0.85rem; }
  .sp-testimonial-role { font-size: 0.7rem; }
  .sp-testimonials .sp-section-head { margin-bottom: 32px; }
  .sp-testimonials-grid { gap: 20px; }
  .svc-reviews-grid { gap: 20px; }
  .svc-review-card { padding: 28px 20px 24px; gap: 16px; }
  .svc-review-text { font-size: 0.85rem; }
  .sp-cta { padding: 60px 0; }
  .sp-cta-title { font-size: clamp(1.2rem, 6vw, 1.5rem); }
  .sp-cta-desc { font-size: 0.82rem; }
  .sp-cta-btn { padding: 13px 26px; font-size: 0.85rem; }
  .sp-section-title { font-size: 1.3rem; }
  .sp-section-desc { font-size: 0.82rem; }
}

@media (hover: none) and (pointer: coarse) {
  .sp-benefit-card:hover { transform: none; border-color: rgba(255,255,255,0.05); box-shadow: none; }
  .sp-pricing-card:hover { transform: none; border-color: rgba(255,255,255,0.05); box-shadow: none; }
  .sp-pricing-card--featured:hover { border-color: rgba(0,245,196,0.18); box-shadow: 0 0 0 1px rgba(0,245,196,0.04); }
  .sp-testimonial-card:hover { transform: none; border-color: rgba(255,255,255,0.06); box-shadow: none; }
  .sp-testimonial-card:hover::before { opacity: 0; }
  .sp-testimonial-card:hover .sp-testimonial-avatar { box-shadow: 0 0 0 2px rgba(0,245,196,0.1), 0 4px 16px rgba(0,0,0,0.25); }
  .svc-review-card:hover { transform: none; border-color: rgba(255,255,255,0.06); box-shadow: none; }
}

/* ════════════════════════════════════════════════════════
   LANGUAGE & CURRENCY SELECTORS
   ════════════════════════════════════════════════════════ */

.footer-selectors {
  display: flex;
  align-items: center;
  gap: 6px;
}
.selector-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.selector-wrapper .selector-icon {
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,0.12);
  pointer-events: none;
  flex-shrink: 0;
}
.selector-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 5px;
  padding: 4px 18px 4px 22px;
  font-size: 0.68rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 80px;
  outline: none;
}
.selector-wrapper select:hover {
  border-color: rgba(0,245,196,0.12);
  color: rgba(255,255,255,0.35);
}
.selector-wrapper select:focus-visible {
  border-color: rgba(0,245,196,0.15);
  box-shadow: 0 0 0 2px rgba(0,245,196,0.03);
}
.selector-wrapper select option {
  background: #0c0c0e;
  color: rgba(255,255,255,0.5);
}
.selector-wrapper::after {
  content: '';
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 4px;
  border-right: 1.5px solid rgba(255,255,255,0.12);
  border-bottom: 1.5px solid rgba(255,255,255,0.12);
  pointer-events: none;
  transition: border-color 0.25s ease;
}
.selector-wrapper:hover::after {
  border-color: rgba(0,245,196,0.25);
}

/* RTL override for selectors */
[dir="rtl"] .selector-wrapper .selector-icon {
  left: auto;
  right: 7px;
}
[dir="rtl"] .selector-wrapper select {
  padding: 4px 22px 4px 18px;
}
[dir="rtl"] .selector-wrapper::after {
  right: auto;
  left: 7px;
  transform: translateY(-50%) rotate(-135deg);
}

/* ─── RTL Utilities ─── */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .container,
[dir="rtl"] .footer-grid,
[dir="rtl"] .footer-bottom {
  text-align: right;
}
[dir="rtl"] .footer-social {
  justify-content: flex-start;
}
[dir="rtl"] .newsletter-form {
  direction: ltr;
}
[dir="rtl"] .footer-bottom {
  flex-direction: row;
}

/* RTL responsive adjustments */
@media (max-width: 768px) {
  [dir="rtl"] .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile footer selectors */
@media (max-width: 768px) {
  .footer-selectors {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .selector-wrapper select {
    min-width: 75px;
    padding: 4px 16px 4px 22px;
    font-size: 0.66rem;
  }
  .selector-wrapper .selector-icon {
    width: 11px;
    height: 11px;
    left: 6px;
  }
  [dir="rtl"] .selector-wrapper .selector-icon {
    left: auto;
    right: 6px;
  }
}

/* ════════════════════════════════════════════════════════
   EMPTY STATES — Premium SaaS Empty States
   ════════════════════════════════════════════════════════ */

@keyframes ne-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes ne-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(0,245,196,0); }
  50% { box-shadow: 0 0 20px rgba(0,245,196,0.06); }
}
@keyframes ne-fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ne {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  border-radius: var(--r);
  border: 1px dashed var(--border);
  background: rgba(255,255,255,0.015);
  animation: ne-fadeInUp 0.5s cubic-bezier(0.4,0,0.2,1);
  transition: all var(--transition);
}
.ne:hover {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
}

.ne-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,245,196,0.04);
  border: 1.5px solid rgba(0,245,196,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: all var(--transition);
  animation: ne-float 3s ease-in-out infinite, ne-glow 3s ease-in-out infinite;
  flex-shrink: 0;
}
.ne:hover .ne-icon {
  background: rgba(0,245,196,0.08);
  border-color: rgba(0,245,196,0.2);
  transform: scale(1.05);
}

.ne-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.ne-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ne-desc {
  font-size: 0.85rem;
  color: var(--gray2);
  max-width: 360px;
  line-height: 1.6;
  margin: 0 auto;
}

.ne-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.ne-btn {
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  line-height: 1.4;
}
.ne-btn i, .ne-btn svg {
  font-size: 0.75rem;
}

.ne-btn-primary {
  background: var(--accent);
  color: #040404;
}
.ne-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,245,196,0.2);
}

.ne-btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--gray);
  border: 1px solid var(--border);
}
.ne-btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

/* ─── Search variant ─── */
.ne-search { border-style: dashed; }
.ne-search .ne-icon {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: var(--gray);
}
.ne-search:hover .ne-icon {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

/* ─── Error variant ─── */
.ne-error { border-color: rgba(239,68,68,0.15); }
.ne-error .ne-icon {
  border-color: rgba(239,68,68,0.15);
  background: rgba(239,68,68,0.04);
  color: var(--danger);
}
.ne-error:hover { border-color: rgba(239,68,68,0.2); }
.ne-error:hover .ne-icon {
  border-color: rgba(239,68,68,0.25);
  background: rgba(239,68,68,0.06);
}
.ne-error .ne-title { color: var(--danger); }

/* ─── Small variant (widgets, drawers) ─── */
.ne-sm { padding: 48px 20px; }
.ne-sm .ne-icon {
  width: 52px;
  height: 52px;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.ne-sm .ne-icon svg {
  width: 22px;
  height: 22px;
}
.ne-sm .ne-title { font-size: 0.95rem; }
.ne-sm .ne-desc { font-size: 0.78rem; max-width: 300px; }
.ne-sm .ne-actions { margin-top: 20px; }
.ne-sm .ne-btn { padding: 8px 20px; font-size: 0.78rem; }

/* ─── Inline variant (for tables, lists) ─── */
.ne-inline {
  padding: 48px 20px;
  background: transparent;
  border: none;
}
.ne-inline .ne-icon {
  width: 44px;
  height: 44px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.ne-inline .ne-icon svg {
  width: 18px;
  height: 18px;
}
.ne-inline .ne-title { font-size: 0.85rem; }
.ne-inline .ne-desc { font-size: 0.75rem; max-width: 260px; }

/* ─── Mobile responsive ─── */
@media (max-width: 480px) {
  .ne { padding: 48px 16px; }
  .ne-icon { width: 56px; height: 56px; font-size: 1.1rem; margin-bottom: 18px; }
  .ne-icon svg { width: 22px; height: 22px; }
  .ne-sm { padding: 36px 16px; }
  .ne-sm .ne-icon { width: 44px; height: 44px; }
  .ne-actions { flex-direction: column; width: 100%; }
  .ne-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ════════════════════════════════════════════════════════ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.cookie-banner {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 28px;
  background: rgba(7,7,8,0.96);
  border: 1px solid var(--border);
  border-radius: var(--r);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0;
  overflow: hidden;
  pointer-events: auto;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-glow {
  position: absolute;
  top: -60%;
  left: 30%;
  width: 40%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0,245,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cookie-banner-content {
  position: relative;
  padding: 28px 32px;
  z-index: 1;
}
.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.cookie-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.cookie-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 18px;
  max-width: 680px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.3;
}
.cookie-btn-accept {
  background: var(--accent);
  color: #040404;
  border-color: var(--accent);
}
.cookie-btn-accept:hover {
  box-shadow: 0 6px 24px rgba(0,245,196,0.25);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  background: rgba(255,255,255,0.04);
  color: var(--gray);
  border-color: var(--border);
}
.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}
.cookie-btn-manage,
.cookie-btn-save {
  background: transparent;
  color: var(--gray);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.15);
}
.cookie-btn-manage:hover,
.cookie-btn-save:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ─── Cookie Preferences Modal ─── */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.cookie-modal-overlay.cookie-modal--visible {
  opacity: 1;
}
.cookie-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: rgba(11,15,15,0.98);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal--visible .cookie-modal {
  transform: scale(1) translateY(0);
}
.cookie-modal-glow {
  position: absolute;
  top: -40%;
  left: 20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,245,196,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cookie-modal-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 28px 0;
  z-index: 1;
}
.cookie-modal-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}
.cookie-modal-close {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray);
  transition: var(--transition);
}
.cookie-modal-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.cookie-modal-body {
  position: relative;
  padding: 16px 28px 20px;
  z-index: 1;
}
.cookie-modal-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.cookie-category-info {
  flex: 1;
  min-width: 0;
}
.cookie-category-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.cookie-category-desc {
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--gray2);
}
.cookie-modal-footer {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 0 28px 24px;
  z-index: 1;
}

/* ─── Toggle Switch ─── */
.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-track {
  width: 40px;
  height: 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 11px;
  transition: var(--transition);
  position: relative;
}
.cookie-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--gray2);
  border-radius: 50%;
  transition: var(--transition);
}
.cookie-toggle-on .cookie-toggle-track {
  background: rgba(0,245,196,0.25);
}
.cookie-toggle-on .cookie-toggle-thumb {
  transform: translateX(18px);
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0,245,196,0.25);
}
.cookie-toggle input:disabled + .cookie-toggle-track {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-toggle input:disabled + .cookie-toggle-track .cookie-toggle-thumb {
  background: var(--accent);
}

/* ─── Cookie banner responsive ─── */
@media (max-width: 860px) {
  .cookie-banner {
    margin: 0 12px 16px;
    max-width: 100%;
  }
  .cookie-banner-content {
    padding: 22px 20px;
  }
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-actions .cookie-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cookie-modal {
    max-width: 100%;
    margin: 0 10px;
  }
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cookie-modal-footer {
    flex-direction: column;
  }
  .cookie-modal-footer .cookie-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ════════════════════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
   ════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
