:root {
  --electric-purple: #9d00ff;
  --neon-blue: #00f0ff;
  --cyber-pink: #ff007a;
  --deep-black: #0a0a0f;
  --panel: #101321;
  --panel-2: #151a2b;
  --text: #f4f7ff;
  --muted: #aab3d8;
  --line: rgba(0, 240, 255, 0.24);
  --radius: 18px;
  --container: 1220px;
  --glow: 0 0 20px rgba(0, 240, 255, 0.28), 0 0 34px rgba(157, 0, 255, 0.2);
  --font-body: 16px;
  --font-h1: 48px;
  --font-h2: 36px;
  --font-h3: 28px;
  --font-h4: 22px;
  --font-h5: 18px;
  --font-h6: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #090b12;
  font-family: "Poppins", sans-serif;
  font-size: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.home-premium {
  --font-body: 16px;
  --font-h1: 48px;
  --font-h2: 36px;
  --font-h3: 28px;
  --font-h4: 22px;
  --font-h5: 18px;
  --font-h6: 16px;
}

body.portfolio-premium {
  --font-body: 16px;
  --font-h1: 52px;
  --font-h2: 40px;
  --font-h3: 30px;
  --font-h4: 24px;
  --font-h5: 19px;
  --font-h6: 16px;
}

body.contact-premium {
  --font-body: 15px;
  --font-h1: 44px;
  --font-h2: 34px;
  --font-h3: 26px;
  --font-h4: 21px;
  --font-h5: 18px;
  --font-h6: 16px;
}

body.contact-premium label,
body.contact-premium input,
body.contact-premium textarea,
body.contact-premium select {
  font-size: 0.92rem;
}

body.about-premium {
  --font-body: 16px;
  --font-h1: 54px;
  --font-h2: 36px;
  --font-h3: 28px;
  --font-h4: 22px;
  --font-h5: 18px;
  --font-h6: 16px;
}

body.bg-blog {
  --font-body: 15px;
  --font-h1: 42px;
  --font-h2: 32px;
  --font-h3: 24px;
  --font-h4: 20px;
  --font-h5: 17px;
  --font-h6: 15px;
}

body.bg-services,
body.ecommerce-premium,
body.seo-page,
body.ppc-page,
body.social-page,
body.content-page,
body.webdev-page,
body.email-page,
body.brand-page,
body.hosting-page,
body.photo-page,
body.jewelry-premium,
body.ai-page {
  --font-body: 16px;
  --font-h1: 46px;
  --font-h2: 34px;
  --font-h3: 26px;
  --font-h4: 21px;
  --font-h5: 18px;
  --font-h6: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0, rgba(157, 0, 255, 0.22), transparent 42%),
    radial-gradient(circle at 90% 10%, rgba(0, 240, 255, 0.22), transparent 40%),
    linear-gradient(140deg, #05060b 0%, #090b12 55%, #0f1220 100%);
}

body.bg-services::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 24s linear infinite;
}

body.bg-portfolio::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 240, 255, 0.22), transparent 20%),
    radial-gradient(circle at 84% 30%, rgba(157, 0, 255, 0.22), transparent 22%),
    radial-gradient(circle at 52% 82%, rgba(255, 0, 122, 0.15), transparent 24%);
  animation: floatBg 16s ease-in-out infinite;
}

body.bg-blog::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(157, 0, 255, 0.18), rgba(0, 240, 255, 0.12), rgba(255, 0, 122, 0.14));
  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
}

body.bg-contact::after {
  content: "";
  position: fixed;
  left: -10%;
  width: 120%;
  height: 45vh;
  bottom: -16vh;
  z-index: 0;
  pointer-events: none;
  border-radius: 45% 55% 0 0;
  background: linear-gradient(120deg, rgba(0, 240, 255, 0.18), rgba(157, 0, 255, 0.22));
  animation: waveFlow 10s ease-in-out infinite;
}

main,
header,
footer,
.progress-wrap,
.sticky-cta,
.modal,
.page-shell {
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-title {
  font-family: "Orbitron", "Exo 2", sans-serif;
}

h1 {
  font-size: var(--font-h1);
  line-height: 1.2;
  margin: 0 0 0.9rem;
}

h2 {
  font-size: var(--font-h2);
  margin: 0 0 0.9rem;
}

h3 {
  font-size: var(--font-h3);
}

h4 {
  font-size: var(--font-h4);
}

h5 {
  font-size: var(--font-h5);
}

h6 {
  font-size: var(--font-h6);
}

a {
  color: var(--neon-blue);
  text-decoration: none;
}

a:hover {
  color: #7ef8ff;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.progress-wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  z-index: 1700;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyber-pink), var(--electric-purple), var(--neon-blue));
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.68);
}

#webgl-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1600;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(8, 9, 14, 0.72);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title {
  color: #fff;
  font-size: 1.24rem;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.45);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0.55rem;
}

.nav-links a,
.services-toggle {
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active,
.services-toggle:hover,
.services-item.open > .services-toggle {
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.1);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.52);
}

.services-item {
  position: relative;
}

.services-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 320px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background: rgba(10, 12, 22, 0.96);
  border-radius: 14px;
  padding: 0 0.5rem;
  transition: max-height 0.28s ease, opacity 0.26s ease, transform 0.26s ease;
}

.services-item.open .services-menu,
.services-item:hover .services-menu {
  max-height: 520px;
  opacity: 1;
  transform: translateY(0);
  padding: 0.5rem;
}

.services-menu a {
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  color: var(--text);
}

.services-menu a:hover {
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(0, 240, 255, 0.25);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(0, 240, 255, 0.42);
  background: rgba(0, 240, 255, 0.12);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
}

.section {
  padding: 5.6rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--cyber-pink);
  font-weight: 700;
}

.lead {
  max-width: 70ch;
  color: var(--muted);
}

.hero {
  min-height: 95vh;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.2rem;
  align-items: center;
}

.page-hero {
  padding-top: 7.5rem;
  padding-bottom: 2.6rem;
}

.panel,
.neon-card,
.hero-panel {
  background: linear-gradient(145deg, rgba(16, 19, 33, 0.95), rgba(13, 16, 27, 0.95));
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-panel {
  box-shadow: var(--glow), 0 18px 40px rgba(0, 0, 0, 0.32);
}

.hero-3d {
  min-height: 390px;
  border: 1px solid rgba(157, 0, 255, 0.4);
  border-radius: 22px;
  background: radial-gradient(circle at 14% 14%, rgba(0, 240, 255, 0.28), transparent 42%),
    radial-gradient(circle at 80% 16%, rgba(157, 0, 255, 0.34), transparent 42%),
    linear-gradient(150deg, rgba(10, 11, 18, 0.95), rgba(14, 18, 29, 0.95));
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.hero-ring {
  position: absolute;
  inset: 16% 12%;
  border-radius: 24px;
  border: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.25);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.hero-orb.a {
  width: 160px;
  height: 160px;
  left: 8%;
  top: 14%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--neon-blue));
  animation: orbFloat 7s ease-in-out infinite;
}

.hero-orb.b {
  width: 120px;
  height: 120px;
  right: 10%;
  top: 56%;
  background: radial-gradient(circle at 30% 30%, #ffe0f2, var(--cyber-pink));
  animation: orbFloat 8s ease-in-out infinite reverse;
}

.hero-orb.c {
  width: 96px;
  height: 96px;
  left: 40%;
  bottom: 8%;
  background: radial-gradient(circle at 30% 30%, #f5e5ff, var(--electric-purple));
  animation: orbFloat 6.8s ease-in-out infinite;
}

.btn-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--electric-purple), var(--cyber-pink));
  box-shadow: 0 0 14px rgba(255, 0, 122, 0.42);
}

.btn-secondary {
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.5);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 30px rgba(157, 0, 255, 0.2);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.neon-card {
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.neon-card:hover {
  border-color: rgba(0, 240, 255, 0.55);
  box-shadow: var(--glow), 0 18px 45px rgba(0, 0, 0, 0.35);
}

.tilt-card {
  transform-style: preserve-3d;
}

.depth {
  transform: translateZ(18px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.stat {
  border: 1px solid rgba(157, 0, 255, 0.45);
  border-radius: 12px;
  padding: 0.8rem;
  text-align: center;
}

.counter {
  display: block;
  color: var(--neon-blue);
  font-weight: 800;
  font-size: 1.45rem;
}

.section-icon-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.svg-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.icon-link:hover .svg-icon,
.social-icons a:hover .svg-icon {
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.8));
  transform: translateY(-1px);
}

.testimonials-wrap {
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
  border-radius: 16px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card,
.testimonial-item {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1.1rem;
  min-height: 280px;
  height: auto;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 23, 38, 0.95), rgba(13, 16, 26, 0.95));
  transform-style: preserve-3d;
}

.testimonial-card p,
.testimonial-item p {
  margin: 0;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.testimonial-card h3,
.testimonial-item h3 {
  margin: 0.1rem 0 0;
  font-size: 0.98rem;
  color: #d4ecff;
  font-weight: 600;
  text-align: center;
}

.slider-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.slider-nav {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.dot.active {
  background: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.6rem;
}

.logo-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  padding: 0.7rem;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.chart-box {
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  padding: 0.9rem;
  overflow: hidden;
}

.chart-svg {
  width: 100%;
  min-height: 220px;
}

.chart-line {
  fill: none;
  stroke: var(--neon-blue);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.6));
}

.chart-fill {
  fill: rgba(0, 240, 255, 0.13);
}

.graph-bar {
  transform-origin: bottom;
  transform: scaleY(0);
}

.graph-wrap.animate .graph-bar {
  animation: barGrow 1.1s forwards;
}

.graph-wrap.animate .chart-line {
  animation: none;
}

.axis-label {
  fill: var(--muted);
  font-size: 12px;
}

.radial-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.radial {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.radial svg {
  width: 150px;
  height: 150px;
}

.progress-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 10;
}

.progress-ring {
  fill: none;
  stroke: var(--cyber-pink);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  transform: rotate(-90deg);
  transform-origin: center;
}

.graph-wrap.animate .progress-ring {
  transition: stroke-dashoffset 1.4s ease;
}

.funnel {
  display: grid;
  gap: 0.5rem;
}

.funnel-step {
  height: 28px;
  background: linear-gradient(90deg, rgba(157, 0, 255, 0.9), rgba(0, 240, 255, 0.9));
  width: 0;
  border-radius: 8px;
}

.graph-wrap.animate .funnel-step {
  transition: width 1s ease;
}

.heat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}

.heat-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.graph-wrap.animate .heat-cell {
  animation: heatPulse 1.2s ease forwards;
}

.timeline-graph {
  display: flex;
  align-items: end;
  gap: 0.6rem;
  min-height: 150px;
}

.timeline-point {
  flex: 1;
  height: 10px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--neon-blue), var(--electric-purple));
  transform-origin: bottom;
  transform: scaleY(0);
}

.graph-wrap.animate .timeline-point {
  animation: pointGrow 1s ease forwards;
}

.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.filter-btn {
  border: 1px solid rgba(0, 240, 255, 0.5);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.08);
}

.filter-btn.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(157, 0, 255, 0.9), rgba(255, 0, 122, 0.9));
}

.project-item {
  min-height: 210px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.76);
  z-index: 1800;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-body {
  width: min(760px, 100%);
  max-height: 86vh;
  overflow: auto;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(19, 22, 36, 0.97), rgba(12, 15, 24, 0.98));
}

.close-modal {
  margin-left: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  padding: 0.35rem 0.6rem;
}

.modal-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.modal-stat {
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 10px;
  text-align: center;
  padding: 0.55rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

form {
  display: grid;
  gap: 0.55rem;
}

input,
textarea {
  background: #0c1020;
  color: #fff;
  border: 1px solid rgba(157, 0, 255, 0.4);
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.15);
}

.form-note {
  min-height: 1.3rem;
  color: var(--neon-blue);
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.06);
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1650;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: #03140a;
  background: linear-gradient(90deg, #25d366, #22b65d);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.45);
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 2.2rem 0 1rem;
  background: rgba(0, 0, 0, 0.34);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.copy {
  text-align: center;
  color: var(--muted);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  filter: blur(8px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -16px, 12px); }
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes heatPulse {
  from { transform: scale(0.8); opacity: 0.35; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pointGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(48px); }
}

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

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

/* SEO services premium page */
.seo-page .page-hero {
  overflow: hidden;
}

.seo-hero {
  position: relative;
}

.seo-keywords-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.kw-particle {
  position: absolute;
  color: var(--neon-blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.55), 0 0 16px rgba(157, 0, 255, 0.35);
  font-size: clamp(0.72rem, 1.7vw, 0.95rem);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  animation: seoFloat linear infinite;
}

@keyframes seoFloat {
  0% { transform: translate3d(0, 12px, 0); opacity: 0.05; }
  15% { opacity: 0.28; }
  50% { transform: translate3d(-12px, -18px, 0); opacity: 0.16; }
  85% { opacity: 0.24; }
  100% { transform: translate3d(18px, -34px, 0); opacity: 0.04; }
}

.seo-hero .container {
  position: relative;
  z-index: 3;
}

.seo-hero-panel {
  min-height: auto;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 12% 10%, rgba(0, 240, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 0, rgba(157, 0, 255, 0.16), transparent 44%),
    linear-gradient(160deg, rgba(12, 15, 28, 0.95), rgba(10, 12, 22, 0.95));
}

.hero-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -40px;
  left: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.26), rgba(0, 240, 255, 0));
  z-index: 0;
}

.hero-accent.two {
  width: 220px;
  height: 220px;
  top: auto;
  left: auto;
  right: -40px;
  bottom: -70px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.3), rgba(157, 0, 255, 0));
}

.seo-hero-panel > * {
  position: relative;
  z-index: 2;
}

.glow-cta {
  box-shadow: 0 0 14px rgba(255, 0, 122, 0.55), 0 0 26px rgba(0, 240, 255, 0.35);
  animation: ctaPulse 2.6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(255, 0, 122, 0.45), 0 0 22px rgba(0, 240, 255, 0.2); }
  50% { box-shadow: 0 0 20px rgba(255, 0, 122, 0.68), 0 0 30px rgba(0, 240, 255, 0.36); }
}

.seo-hero-visual .muted-copy {
  color: var(--muted);
  margin-top: -0.3rem;
}

.seo-visual-orbs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.seo-visual-orbs span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-blue);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
  animation: orbBlink 2.1s ease-in-out infinite;
}

.seo-visual-orbs span:nth-child(2) {
  background: var(--electric-purple);
  animation-delay: 0.3s;
}

.seo-visual-orbs span:nth-child(3) {
  background: var(--cyber-pink);
  animation-delay: 0.6s;
}

@keyframes orbBlink {
  0%, 100% { transform: scale(0.85); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.service-detail h3 {
  margin-top: 0;
}

.service-detail.full-width {
  grid-column: 1 / -1;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.3rem;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.14);
  color: var(--neon-blue);
  font-size: 0.85rem;
}

.animated-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.animated-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyber-pink), var(--neon-blue));
  transform-origin: left;
  transform: scaleX(0);
  animation: underlineGrow 1.1s ease forwards;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.seo-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.seo-step {
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(8, 11, 20, 0.8);
}

.step-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--electric-purple), var(--cyber-pink));
  box-shadow: 0 0 12px rgba(157, 0, 255, 0.45);
}

.seo-growth-wrap .stats-grid {
  margin-top: 0.8rem;
}

.audit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.audit-list article {
  border: 1px solid rgba(0, 240, 255, 0.24);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(7, 10, 19, 0.75);
}

.seo-audit-form {
  gap: 0.8rem;
}

.floating-field {
  position: relative;
}

.floating-field input,
.floating-field textarea {
  width: 100%;
  padding: 1rem 0.75rem 0.6rem;
  border-color: rgba(0, 240, 255, 0.32);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-field label {
  position: absolute;
  left: 0.75rem;
  top: 0.8rem;
  color: var(--muted);
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  background: transparent;
}

.floating-field input:focus + label,
.floating-field textarea:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:not(:placeholder-shown) + label,
.floating-field input:valid + label,
.floating-field textarea:valid + label {
  transform: translateY(-0.58rem);
  font-size: 0.75rem;
  color: var(--neon-blue);
}

.captcha-row {
  display: grid;
  gap: 0.35rem;
}

.captcha-row input {
  max-width: 140px;
}

.whatsapp-quick {
  margin-top: 0.85rem;
}

.animated-media {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  transform: scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.animated-media:hover {
  transform: scale(1.02);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3), 0 0 22px rgba(157, 0, 255, 0.2);
}

/* PPC premium redesign */
.ppc-page .page-hero {
  position: relative;
  overflow: hidden;
}

.ppc-hero {
  min-height: 90vh;
  display: grid;
  align-items: center;
}

.ppc-webgl-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#ppc-webgl-bg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.65;
  mix-blend-mode: screen;
}

.ppc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 14% 10%, rgba(0, 240, 255, 0.18), transparent 40%),
    radial-gradient(circle at 86% 6%, rgba(157, 0, 255, 0.24), transparent 44%),
    linear-gradient(135deg, rgba(10, 12, 18, 0.88), rgba(12, 14, 24, 0.74));
  animation: ppcHeroShift 14s ease-in-out infinite;
}

@keyframes ppcHeroShift {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-6px); }
}

.ppc-hero .container {
  position: relative;
  z-index: 3;
}

.ppc-hero-panel {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.ppc-hero-stats .stat {
  background: rgba(7, 10, 20, 0.72);
}

.scroll-indicator {
  margin-top: 1rem;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(0, 240, 255, 0.5);
  border-radius: 16px;
  display: inline-grid;
  place-items: start center;
  padding-top: 7px;
}

.scroll-indicator span {
  width: 6px;
  height: 9px;
  border-radius: 8px;
  background: var(--neon-blue);
  animation: scrollDot 1.7s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

.social-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.social-particle-item {
  position: absolute;
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.45);
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.08);
  display: grid;
  place-items: center;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.32);
  animation: socialFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-particle-item:hover {
  transform: scale(1.18);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.62), 0 0 24px rgba(157, 0, 255, 0.3);
}

.social-particle-item .svg-icon {
  width: 16px;
  height: 16px;
}

.social-particle-item .user-tag {
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 10, 18, 0.92);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.68rem;
  color: var(--neon-blue);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.social-particle-item:hover .user-tag {
  opacity: 1;
}

@keyframes socialFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.25; }
  50% { transform: translate3d(var(--x, 16px), var(--y, -24px), 0); opacity: 0.72; }
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.trust-badges span {
  border: 1px solid rgba(0, 240, 255, 0.24);
  border-radius: 999px;
  padding: 0.36rem 0.6rem;
  text-align: center;
  font-size: 0.85rem;
  background: rgba(10, 13, 23, 0.74);
}

.faq-list {
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 12px;
  background: rgba(9, 12, 21, 0.78);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  color: var(--text);
  background: transparent;
  padding: 0.8rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.faq-q[aria-expanded="true"] {
  color: var(--neon-blue);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  margin: 0;
  padding: 0 0.9rem 0.85rem;
  color: var(--muted);
}

.ppc-contact-form select {
  width: 100%;
  background: #0c1020;
  color: #fff;
  border: 1px solid rgba(0, 240, 255, 0.32);
  border-radius: 10px;
  padding: 1rem 0.75rem 0.6rem;
  font: inherit;
}

.ppc-contact-form .floating-field select:focus + label,
.ppc-contact-form .floating-field select:valid + label {
  transform: translateY(-0.58rem);
  font-size: 0.75rem;
  color: var(--neon-blue);
}

.ppc-contact-form .invalid {
  border-color: var(--cyber-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.14) !important;
}

/* Social media premium redesign */
.social-page .page-hero {
  position: relative;
  overflow: hidden;
}

.social-hero {
  min-height: 90vh;
  display: grid;
  align-items: center;
}

.social-webgl-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#social-webgl-bg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.social-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 12% 12%, rgba(255, 0, 122, 0.2), transparent 42%),
    radial-gradient(circle at 86% 8%, rgba(0, 240, 255, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(10, 12, 18, 0.9), rgba(14, 16, 27, 0.76));
  animation: socialHeroShift 14s ease-in-out infinite;
}

@keyframes socialHeroShift {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-6px); }
}

.social-hero .container {
  position: relative;
  z-index: 3;
}

.social-hero-panel {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.social-hero-stats .stat {
  background: rgba(7, 10, 20, 0.72);
}

.social-page .social-particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.social-page .social-particle-item {
  position: absolute;
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.45);
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.08);
  display: grid;
  place-items: center;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.32);
  animation: socialFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-page .social-particle-item:hover {
  transform: scale(1.18);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.62), 0 0 24px rgba(157, 0, 255, 0.3);
}

.social-page .social-particle-item .svg-icon {
  width: 16px;
  height: 16px;
}

.social-page .social-particle-item .user-tag {
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 10, 18, 0.92);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.68rem;
  color: var(--neon-blue);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.social-page .social-particle-item:hover .user-tag {
  opacity: 1;
}

.social-contact-form select {
  width: 100%;
  background: #0c1020;
  color: #fff;
  border: 1px solid rgba(0, 240, 255, 0.32);
  border-radius: 10px;
  padding: 1rem 0.75rem 0.6rem;
  font: inherit;
}

.social-contact-form .floating-field select:focus + label,
.social-contact-form .floating-field select:valid + label {
  transform: translateY(-0.58rem);
  font-size: 0.75rem;
  color: var(--neon-blue);
}

.social-contact-form .invalid {
  border-color: var(--cyber-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.14) !important;
}

/* Content marketing premium redesign */
.content-page .page-hero {
  position: relative;
  overflow: hidden;
}

.content-hero {
  min-height: 90vh;
  display: grid;
  align-items: center;
}

.content-webgl-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#content-webgl-bg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.content-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 14% 10%, rgba(157, 0, 255, 0.2), transparent 42%),
    radial-gradient(circle at 84% 9%, rgba(0, 240, 255, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(10, 12, 18, 0.9), rgba(15, 10, 22, 0.78));
  animation: contentHeroShift 14s ease-in-out infinite;
}

@keyframes contentHeroShift {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-6px); }
}

.content-hero .container {
  position: relative;
  z-index: 3;
}

.content-hero-panel {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.content-hero-stats .stat {
  background: rgba(7, 10, 20, 0.72);
}

.content-page .content-particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.content-page .social-particle-item {
  position: absolute;
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.45);
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.08);
  display: grid;
  place-items: center;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.32);
  animation: socialFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-page .social-particle-item:hover {
  transform: scale(1.18);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.62), 0 0 24px rgba(157, 0, 255, 0.3);
}

.content-page .social-particle-item .svg-icon {
  width: 16px;
  height: 16px;
}

.content-page .social-particle-item .user-tag {
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 10, 18, 0.92);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.68rem;
  color: var(--neon-blue);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.content-page .social-particle-item:hover .user-tag {
  opacity: 1;
}

.content-faq-item {
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 12px;
  background: rgba(9, 12, 21, 0.78);
  overflow: hidden;
}

.content-contact-form select {
  width: 100%;
  background: #0c1020;
  color: #fff;
  border: 1px solid rgba(0, 240, 255, 0.32);
  border-radius: 10px;
  padding: 1rem 0.75rem 0.6rem;
  font: inherit;
}

.content-contact-form .floating-field select:focus + label,
.content-contact-form .floating-field select:valid + label {
  transform: translateY(-0.58rem);
  font-size: 0.75rem;
  color: var(--neon-blue);
}

.content-contact-form .invalid {
  border-color: var(--cyber-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.14) !important;
}

.footer-layout-content .footer-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
  text-align: center;
}

.footer-layout-content .footer-lines p {
  margin: 0;
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: rgba(10, 13, 23, 0.7);
}

/* Email influencer premium redesign */
.email-page .page-hero {
  position: relative;
  overflow: hidden;
}

.email-hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
}

.email-webgl-wrap,
.email-node-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#email-webgl-bg,
#email-node-net {
  width: 100%;
  height: 100%;
  display: block;
}

#email-webgl-bg {
  opacity: 0.62;
  mix-blend-mode: screen;
}

#email-node-net {
  opacity: 0.46;
}

.email-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 12% 8%, rgba(0, 240, 255, 0.2), transparent 44%),
    radial-gradient(circle at 86% 12%, rgba(157, 0, 255, 0.22), transparent 42%),
    linear-gradient(135deg, rgba(10, 12, 18, 0.92), rgba(16, 12, 24, 0.8));
  animation: emailHeroShift 15s ease-in-out infinite;
}

@keyframes emailHeroShift {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-7px); }
}

.email-hero .container {
  position: relative;
  z-index: 3;
}

.email-hero-panel {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.email-hero-title {
  color: var(--neon-blue);
  position: relative;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .email-word {
    background: linear-gradient(90deg, #00f0ff, #9d00ff, #ff007a, #00f0ff);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: titleGradient 8s linear infinite, emailWordIn 0.64s ease forwards;
  }
}

.email-hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,240,255,0.9), rgba(157,0,255,0.9));
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
  animation: titleUnderline 1.2s ease forwards 0.55s;
}

.email-word {
  display: inline-block;
  color: inherit;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: emailWordIn 0.64s ease forwards;
}

@keyframes emailWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes titleUnderline {
  to { width: 100%; }
}

@keyframes titleGradient {
  from { background-position: 0 0; }
  to { background-position: 240% 0; }
}

.email-hero-sub {
  animation: emailSubIn 0.8s ease both;
  animation-delay: 0.35s;
}

@keyframes emailSubIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.email-hero-stats .stat {
  background: rgba(7, 10, 20, 0.72);
}

.email-light-beam {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(46px);
  opacity: 0.34;
}

.beam-a {
  left: 5%;
  top: 10%;
  background: rgba(0, 240, 255, 0.42);
  animation: beamMoveA 12s ease-in-out infinite;
}

.beam-b {
  right: 8%;
  bottom: 8%;
  background: rgba(157, 0, 255, 0.4);
  animation: beamMoveB 13s ease-in-out infinite;
}

@keyframes beamMoveA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -10px, 0); }
}

@keyframes beamMoveB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-20px, 12px, 0); }
}

.email-page .email-float-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.email-page .floating-node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.42);
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon-blue);
  display: grid;
  place-items: center;
  pointer-events: auto;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
  animation: socialFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.email-page .floating-node:hover {
  transform: scale(1.16);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 24px rgba(157, 0, 255, 0.28);
}

.email-page .floating-node .svg-icon {
  width: 16px;
  height: 16px;
}

.email-page .floating-node .user-tag {
  position: absolute;
  top: -1.65rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 10, 18, 0.9);
  color: var(--neon-blue);
  font-size: 0.68rem;
  padding: 0.08rem 0.42rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.email-page .floating-node:hover .user-tag {
  opacity: 1;
}

.email-page .floating-handle {
  position: absolute;
  pointer-events: auto;
  text-decoration: none;
  color: var(--neon-blue);
  font-size: 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(8, 10, 18, 0.86);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  animation: handleFloat var(--dur, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes handleFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.18; }
  50% { transform: translate3d(var(--x, 15px), var(--y, -18px), 0); opacity: 0.62; }
}

.table-wrap {
  overflow-x: auto;
  margin-top: 0.8rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.comparison-table caption {
  text-align: left;
  padding-bottom: 0.5rem;
  color: var(--neon-blue);
  font-weight: 600;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid rgba(0, 240, 255, 0.18);
  padding: 0.62rem 0.7rem;
}

.comparison-table th {
  background: rgba(10, 14, 24, 0.88);
  font-family: var(--font-display);
}

.comparison-table td {
  background: rgba(9, 12, 21, 0.72);
}

.timeline-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-step {
  position: relative;
  border-image: linear-gradient(120deg, rgba(0,240,255,0.6), rgba(157,0,255,0.45)) 1;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: -0.7rem;
  width: 2px;
  height: 0.7rem;
  background: linear-gradient(180deg, rgba(0,240,255,0.8), rgba(157,0,255,0.3));
}

.email-faq-item {
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 12px;
  background: rgba(9, 12, 21, 0.78);
  overflow: hidden;
}

.email-contact-form .invalid {
  border-color: var(--cyber-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.14) !important;
}

.sticky-email-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-email-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-layout-email .footer-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
  margin-top: 0.75rem;
}

.footer-layout-email .footer-lines p {
  margin: 0;
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  text-align: center;
  background: rgba(10, 13, 23, 0.7);
  padding: 0.4rem 0.65rem;
}

.footer-social-row {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-row a {
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  text-decoration: none;
}

.magnetic-btn {
  position: relative;
  overflow: hidden;
}

.magnetic-btn::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  left: var(--rx, 50%);
  top: var(--ry, 50%);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 60%);
  transition: transform 0.28s ease;
}

.magnetic-btn:active::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Web development premium redesign */
.webdev-page .page-hero {
  position: relative;
  overflow: hidden;
}

.webdev-hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
}

.webdev-webgl-wrap,
.webdev-node-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#webdev-webgl-bg,
#webdev-node-net {
  width: 100%;
  height: 100%;
  display: block;
}

#webdev-webgl-bg {
  opacity: 0.62;
  mix-blend-mode: screen;
}

#webdev-node-net {
  opacity: 0.44;
}

.webdev-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 0, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 40%, black 35%, transparent 85%);
}

.webdev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 14% 8%, rgba(0, 240, 255, 0.2), transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(157, 0, 255, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(10, 12, 18, 0.92), rgba(14, 16, 27, 0.8));
  animation: webdevHeroShift 14s ease-in-out infinite;
}

@keyframes webdevHeroShift {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-6px); }
}

.webdev-hero .container {
  position: relative;
  z-index: 3;
}

.webdev-hero-panel {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.webdev-hero-title {
  color: var(--neon-blue);
  position: relative;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .webdev-word {
    background: linear-gradient(90deg, #00f0ff, #9d00ff, #ff007a, #00f0ff);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: titleGradient 8s linear infinite, emailWordIn 0.64s ease forwards;
  }
}

.webdev-hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,240,255,0.9), rgba(157,0,255,0.9));
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
  animation: titleUnderline 1.2s ease forwards 0.55s;
}

.webdev-word {
  display: inline-block;
  color: inherit;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: emailWordIn 0.64s ease forwards;
}

.webdev-hero-sub {
  animation: emailSubIn 0.8s ease both;
  animation-delay: 0.35s;
}

.webdev-hero-stats .stat {
  background: rgba(7, 10, 20, 0.72);
}

.infra-orbit {
  position: relative;
  min-height: 76px;
  margin-bottom: 0.75rem;
}

.ssl-orbit {
  position: absolute;
  left: 46%;
  top: 4%;
  font-size: 1.5rem;
  animation: sslSpin 7s linear infinite;
}

@keyframes sslSpin {
  from { transform: rotate(0deg) translateY(0); }
  to { transform: rotate(360deg) translateY(0); }
}

.domain-chip {
  position: absolute;
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 999px;
  background: rgba(8, 10, 18, 0.86);
  color: var(--neon-blue);
  padding: 0.1rem 0.45rem;
  font-size: 0.72rem;
}

.domain-chip:nth-of-type(2) { left: 4%; top: 35%; }
.domain-chip:nth-of-type(3) { right: 10%; top: 20%; }
.domain-chip:nth-of-type(4) { left: 34%; bottom: 0; }

.webdev-page .webdev-float-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.webdev-page .floating-node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.42);
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon-blue);
  display: grid;
  place-items: center;
  pointer-events: auto;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
  animation: socialFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.webdev-page .floating-node:hover {
  transform: scale(1.16);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 24px rgba(157, 0, 255, 0.28);
}

.webdev-page .floating-node .svg-icon {
  width: 16px;
  height: 16px;
}

.webdev-page .floating-node .user-tag {
  position: absolute;
  top: -1.65rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 10, 18, 0.9);
  color: var(--neon-blue);
  font-size: 0.68rem;
  padding: 0.08rem 0.42rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.webdev-page .floating-node:hover .user-tag {
  opacity: 1;
}

.webdev-page .floating-handle {
  position: absolute;
  pointer-events: auto;
  text-decoration: none;
  color: var(--neon-blue);
  font-size: 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(8, 10, 18, 0.86);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  animation: handleFloat var(--dur, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.webdev-bubble {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  border: 1px solid rgba(157, 0, 255, 0.36);
  background: rgba(12, 14, 22, 0.9);
  color: #c7ddff;
  font-size: 0.66rem;
  padding: 0.12rem 0.4rem;
  box-shadow: 0 0 10px rgba(157, 0, 255, 0.26);
  animation: bubblePop 7s ease-in-out infinite;
}

@keyframes bubblePop {
  0%, 100% { opacity: 0; transform: scale(0.85) translateY(0); }
  20%, 70% { opacity: 0.75; transform: scale(1) translateY(-10px); }
}

.infra-icon-cluster .cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.infra-icon-cluster .cluster-grid span {
  border: 1px solid rgba(0, 240, 255, 0.24);
  border-radius: 999px;
  text-align: center;
  padding: 0.3rem 0.45rem;
  font-size: 0.82rem;
  background: rgba(10, 13, 23, 0.74);
}

.webdev-faq-item {
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 12px;
  background: rgba(9, 12, 21, 0.78);
  overflow: hidden;
}

.webdev-contact-form .invalid {
  border-color: var(--cyber-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.14) !important;
}

.sticky-webdev-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-webdev-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-layout-webdev .footer-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
  margin-top: 0.75rem;
}

.footer-layout-webdev .footer-lines p {
  margin: 0;
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  text-align: center;
  background: rgba(10, 13, 23, 0.7);
  padding: 0.4rem 0.65rem;
}

.footer-layout-webdev .footer-infra-cluster {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-layout-webdev .footer-infra-cluster span {
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  background: rgba(10, 13, 23, 0.74);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.18);
  animation: socialFloat 9s ease-in-out infinite;
}

/* Hosting domain premium redesign */
.hosting-page .page-hero {
  position: relative;
  overflow: hidden;
}

.hosting-hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
}

.hosting-webgl-wrap,
.hosting-node-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#hosting-webgl-bg,
#hosting-node-net {
  width: 100%;
  height: 100%;
  display: block;
}

#hosting-webgl-bg {
  opacity: 0.62;
  mix-blend-mode: screen;
}

#hosting-node-net {
  opacity: 0.44;
}

.hosting-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 0, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 40%, black 35%, transparent 85%);
}

.hosting-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 12% 8%, rgba(0, 240, 255, 0.2), transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(157, 0, 255, 0.22), transparent 44%),
    linear-gradient(135deg, rgba(10, 12, 18, 0.92), rgba(14, 16, 27, 0.8));
  animation: webdevHeroShift 14s ease-in-out infinite;
}

.hosting-hero .container {
  position: relative;
  z-index: 3;
}

.hosting-hero-panel {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.hosting-hero-title {
  color: var(--neon-blue);
  position: relative;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hosting-word {
    background: linear-gradient(90deg, #00f0ff, #9d00ff, #ff007a, #00f0ff);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: titleGradient 8s linear infinite, emailWordIn 0.64s ease forwards;
  }
}

.hosting-hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0,240,255,0.9), rgba(157,0,255,0.9));
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
  animation: titleUnderline 1.2s ease forwards 0.55s;
}

.hosting-word {
  display: inline-block;
  color: inherit;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: emailWordIn 0.64s ease forwards;
}

.hosting-hero-sub {
  animation: emailSubIn 0.8s ease both;
  animation-delay: 0.35s;
}

.hosting-hero-stats .stat {
  background: rgba(7, 10, 20, 0.72);
}

.hosting-page .hosting-float-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hosting-page .floating-node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.42);
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon-blue);
  display: grid;
  place-items: center;
  pointer-events: auto;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
  animation: socialFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hosting-page .floating-node:hover {
  transform: scale(1.16);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 24px rgba(157, 0, 255, 0.28);
}

.hosting-page .floating-node .svg-icon {
  width: 16px;
  height: 16px;
}

.hosting-page .floating-node .user-tag {
  position: absolute;
  top: -1.65rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 10, 18, 0.9);
  color: var(--neon-blue);
  font-size: 0.68rem;
  padding: 0.08rem 0.42rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.hosting-page .floating-node:hover .user-tag {
  opacity: 1;
}

.hosting-page .floating-handle {
  position: absolute;
  pointer-events: auto;
  text-decoration: none;
  color: var(--neon-blue);
  font-size: 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(8, 10, 18, 0.86);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  animation: handleFloat var(--dur, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hosting-bubble {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  border: 1px solid rgba(157, 0, 255, 0.36);
  background: rgba(12, 14, 22, 0.9);
  color: #c7ddff;
  font-size: 0.66rem;
  padding: 0.12rem 0.4rem;
  box-shadow: 0 0 10px rgba(157, 0, 255, 0.26);
  animation: bubblePop 7s ease-in-out infinite;
}

.hosting-faq-item {
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 12px;
  background: rgba(9, 12, 21, 0.78);
  overflow: hidden;
}

.hosting-contact-form .invalid {
  border-color: var(--cyber-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.14) !important;
}

.sticky-hosting-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-hosting-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-layout-hosting .footer-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
  margin-top: 0.75rem;
}

.footer-layout-hosting .footer-lines p {
  margin: 0;
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  text-align: center;
  background: rgba(10, 13, 23, 0.7);
  padding: 0.4rem 0.65rem;
}

.footer-layout-hosting .footer-infra-cluster {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-layout-hosting .footer-infra-cluster span {
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  background: rgba(10, 13, 23, 0.74);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.18);
  animation: socialFloat 9s ease-in-out infinite;
}

/* Photography + Branding premium pages */
.photo-page .page-hero,
.brand-page .page-hero {
  position: relative;
  overflow: hidden;
}

.photo-hero,
.brand-hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
}

.photo-webgl-wrap,
.photo-node-wrap,
.brand-webgl-wrap,
.brand-node-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#photo-webgl-bg,
#photo-node-net,
#brand-webgl-bg,
#brand-node-net {
  width: 100%;
  height: 100%;
  display: block;
}

#photo-webgl-bg,
#brand-webgl-bg { opacity: 0.62; mix-blend-mode: screen; }
#photo-node-net,
#brand-node-net { opacity: 0.44; }

.photo-beam {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(255, 196, 120, 0.14), transparent 38%),
    radial-gradient(circle at 80% 15%, rgba(0, 240, 255, 0.16), transparent 42%);
}

.brand-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 196, 120, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 40%, black 35%, transparent 85%);
}

.photo-hero::before,
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 14% 8%, rgba(0, 240, 255, 0.18), transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(157, 0, 255, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(10, 12, 18, 0.94), rgba(14, 16, 27, 0.82));
  animation: webdevHeroShift 14s ease-in-out infinite;
}

.photo-hero .container,
.brand-hero .container {
  position: relative;
  z-index: 3;
}

.photo-hero-title,
.brand-hero-title {
  color: var(--neon-blue);
  position: relative;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .photo-word,
  .brand-word {
    background: linear-gradient(90deg, #00f0ff, #9d00ff, #ffc478, #00f0ff);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: titleGradient 8s linear infinite, emailWordIn 0.64s ease forwards;
  }
}

.photo-hero-title::after,
.brand-hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,196,120,0.9), rgba(0,240,255,0.9));
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
  animation: titleUnderline 1.2s ease forwards 0.55s;
}

.photo-word,
.brand-word {
  display: inline-block;
  color: inherit;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: emailWordIn 0.64s ease forwards;
}

.photo-hero-sub,
.brand-hero-sub {
  animation: emailSubIn 0.8s ease both;
  animation-delay: 0.35s;
}

.photo-page .photo-float-layer,
.brand-page .brand-float-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.photo-page .floating-node,
.brand-page .floating-node {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.42);
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon-blue);
  display: grid;
  place-items: center;
  pointer-events: auto;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
  animation: socialFloat var(--dur, 12s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.photo-page .floating-node .svg-icon,
.brand-page .floating-node .svg-icon {
  width: 16px;
  height: 16px;
}

.photo-page .floating-node .user-tag,
.brand-page .floating-node .user-tag {
  position: absolute;
  top: -1.65rem;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  background: rgba(8, 10, 18, 0.9);
  color: var(--neon-blue);
  font-size: 0.68rem;
  padding: 0.08rem 0.42rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.photo-page .floating-node:hover .user-tag,
.brand-page .floating-node:hover .user-tag {
  opacity: 1;
}

.photo-page .floating-handle,
.brand-page .floating-handle {
  position: absolute;
  pointer-events: auto;
  text-decoration: none;
  color: var(--neon-blue);
  font-size: 0.75rem;
  border: 1px solid rgba(0, 240, 255, 0.28);
  background: rgba(8, 10, 18, 0.86);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  animation: handleFloat var(--dur, 14s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.photo-faq-item,
.brand-faq-item {
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 12px;
  background: rgba(9, 12, 21, 0.78);
  overflow: hidden;
}

.photo-contact-form .invalid,
.brand-contact-form .invalid {
  border-color: var(--cyber-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 122, 0.14) !important;
}

.sticky-photo-cta,
.sticky-brand-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-photo-cta.visible,
.sticky-brand-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-layout-photo .footer-lines,
.footer-layout-brand .footer-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.64rem;
  margin-top: 0.75rem;
}

.footer-layout-photo .footer-lines p,
.footer-layout-brand .footer-lines p {
  margin: 0;
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 999px;
  text-align: center;
  background: rgba(10, 13, 23, 0.7);
  padding: 0.4rem 0.65rem;
}

@media (max-width: 1050px) {
  .hero-grid,
  .cols-4,
  .cols-3,
  .logo-row,
  .footer-grid,
  .modal-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .cols-2,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .seo-steps,
  .audit-list {
    grid-template-columns: 1fr 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    background: rgba(9, 12, 21, 0.97);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 12px;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    max-height: 75vh;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .services-item {
    width: 100%;
  }

  .services-toggle {
    width: 100%;
    text-align: left;
  }

  .services-menu {
    position: static;
    width: 100%;
    max-height: 0;
    border-radius: 10px;
  }

  .services-item.open .services-menu {
    max-height: 520px;
  }

  .hero-grid,
  .cols-4,
  .cols-3,
  .logo-row,
  .footer-grid,
  .modal-stats,
  .radial-wrap {
    grid-template-columns: 1fr;
  }

  .seo-steps,
  .audit-list {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .social-particles {
    display: none;
  }

  .social-page .social-particles {
    display: none;
  }

  .content-page .content-particles {
    display: none;
  }

  .email-page .email-float-layer,
  .email-node-wrap {
    display: none;
  }

  .webdev-page .webdev-float-layer,
  .webdev-node-wrap {
    display: none;
  }

  .hosting-page .hosting-float-layer,
  .hosting-node-wrap {
    display: none;
  }

  .photo-page .photo-float-layer,
  .photo-node-wrap,
  .brand-page .brand-float-layer,
  .brand-node-wrap {
    display: none;
  }

  .footer-layout-content .footer-lines {
    grid-template-columns: 1fr;
  }

  .footer-layout-email .footer-lines,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout-webdev .footer-lines {
    grid-template-columns: 1fr;
  }

  .footer-layout-hosting .footer-lines {
    grid-template-columns: 1fr;
  }

  .footer-layout-photo .footer-lines,
  .footer-layout-brand .footer-lines {
    grid-template-columns: 1fr;
  }

  .infra-icon-cluster .cluster-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 4.4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .email-word,
  .webdev-word,
  .hosting-word,
  .photo-word,
  .brand-word {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ===== Premium Standardization: Home / Portfolio / Contact ===== */
.home-premium,
.portfolio-premium,
.contact-premium {
  --lux-midnight: #081428;
  --lux-gold: #d7b56d;
  --lux-teal: #00f0ff;
  --lux-violet: #9d00ff;
  --lux-pink: #ff007a;
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 240, 255, 0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(215, 181, 109, 0.09), transparent 45%),
    linear-gradient(150deg, #060a15 0%, #081428 55%, #0a0a0f 100%);
}

.home-premium .site-header,
.portfolio-premium .site-header,
.contact-premium .site-header {
  backdrop-filter: blur(12px);
  background: rgba(10, 12, 22, 0.62);
  border-bottom: 1px solid rgba(0, 240, 255, 0.14);
}

.home-hero-premium,
.portfolio-hero-premium,
.contact-hero-premium {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: clip;
}

#home-webgl-canvas,
#portfolio-webgl-canvas,
#contact-webgl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-overlay-grid,
.home-floating-icons,
.portfolio-floating-icons,
.contact-floating-icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-overlay-grid {
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 25%, #000 100%);
}

.home-hero-content,
.portfolio-hero-premium .container,
.contact-hero-premium .container {
  position: relative;
  z-index: 2;
}

.hero-gradient-title {
  font-family: "Orbitron", "Exo 2", sans-serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  background: linear-gradient(100deg, #ffffff 0%, #00f0ff 28%, #d7b56d 62%, #9d00ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShift 8s linear infinite;
}

@keyframes heroShift {
  to { background-position: 200% center; }
}

.ai-summary {
  max-width: 940px;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.26);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: #d3f5ff;
}

.scarcity-copy {
  margin-top: 0.85rem;
  color: #ffdca0;
  font-weight: 600;
}

.home-hero-stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 0.9rem;
}

.home-hero-stats .stat,
.kpi-panel article {
  background: linear-gradient(160deg, rgba(12, 16, 32, 0.82), rgba(18, 8, 32, 0.66));
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(157, 0, 255, 0.12) inset;
}

.home-hero-stats .counter,
.kpi-panel .counter {
  display: inline-block;
  font-family: "Orbitron", "Exo 2", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  color: #00f0ff;
  margin-bottom: 0.4rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
}

.badge-card {
  border: 1px solid rgba(215, 181, 109, 0.3);
  background: rgba(10, 15, 28, 0.74);
  border-radius: 14px;
  padding: 1rem;
}

.badge-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(215, 181, 109, 0.16);
  margin-bottom: 0.65rem;
}

.home-service-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.premium-service-card,
.case-card {
  background: linear-gradient(165deg, rgba(10, 14, 28, 0.9), rgba(24, 8, 44, 0.65));
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 16px;
  overflow: hidden;
  padding: 0 0 1rem;
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.premium-service-card:hover,
.case-card:hover {
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.4), 0 0 24px rgba(157, 0, 255, 0.22);
}

.premium-service-card img,
.case-card img,
.contact-visual-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.premium-service-card:hover img,
.case-card:hover img,
.contact-visual-grid img:hover {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.premium-service-card h3,
.premium-service-card p,
.premium-service-card a,
.case-card h3,
.case-card p,
.case-card button {
  margin-left: 1rem;
  margin-right: 1rem;
}

.home-enterprise-band {
  background: linear-gradient(170deg, rgba(9, 14, 30, 0.6), rgba(12, 8, 28, 0.78));
  border-top: 1px solid rgba(0, 240, 255, 0.16);
  border-bottom: 1px solid rgba(0, 240, 255, 0.16);
}

.two-col-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.faq-wrap {
  max-width: 980px;
}

.faq-item {
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: rgba(12, 14, 25, 0.8);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  color: #eff6ff;
  border: 0;
  padding: 0.95rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-a p {
  padding: 0 1rem 1rem;
  margin: 0;
}

.exit-intent-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(3, 7, 15, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 70;
}

.exit-intent-modal.open {
  opacity: 1;
  visibility: visible;
}

.exit-intent-card {
  width: min(92vw, 460px);
  border: 1px solid rgba(0, 240, 255, 0.28);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(10, 12, 24, 0.97), rgba(24, 10, 38, 0.9));
}

.portfolio-masonry {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 1rem;
}

.case-card {
  padding-bottom: 1.1rem;
}

.kpi-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.contact-command-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.command-form-wrap .floating-field input,
.command-form-wrap .floating-field textarea {
  border: 1px solid rgba(0, 240, 255, 0.24);
}

.form-progress {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.8rem 0 1rem;
  overflow: hidden;
}

.form-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  transition: width 0.25s ease;
}

.micro-trust {
  color: #d0f8ff;
  margin-bottom: 0.6rem;
}

.trust-mini-grid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
  color: #d9eeff;
  font-size: 0.94rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: grid;
  gap: 0.35rem;
}

.map-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.24);
  margin-bottom: 0.8rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}

.map-pin-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 50%;
  background: #00f0ff;
  box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.55);
  animation: pinPulse 2.1s infinite;
}

@keyframes pinPulse {
  to { box-shadow: 0 0 0 18px rgba(0, 240, 255, 0); }
}

.contact-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.55rem;
}

.home-floating-icons .float-dot,
.portfolio-floating-icons .float-dot,
.contact-floating-icons .float-dot {
  position: absolute;
  font-size: 0.76rem;
  color: rgba(201, 246, 255, 0.64);
  background: rgba(6, 12, 24, 0.35);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  transform: translate3d(0, 0, 0);
  animation: floatTag var(--dur, 12s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes floatTag {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.35; }
  50% { transform: translate3d(var(--x, 15px), var(--y, -18px), 0); opacity: 0.85; }
}

.footer-layout-home-premium,
.footer-layout-portfolio-premium,
.footer-layout-contact-premium {
  background: linear-gradient(180deg, rgba(7, 10, 20, 0.96), rgba(4, 6, 14, 0.98));
  border-top: 1px solid rgba(0, 240, 255, 0.22);
}

.sticky-home-cta,
.sticky-portfolio-cta,
.sticky-contact-cta {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-home-cta.visible,
.sticky-portfolio-cta.visible,
.sticky-contact-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .home-hero-stats,
  .trust-badges,
  .home-service-grid,
  .kpi-panel {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .portfolio-masonry,
  .contact-command-grid,
  .two-col-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-hero-premium,
  .portfolio-hero-premium,
  .contact-hero-premium {
    min-height: 78vh;
  }

  .home-hero-stats,
  .trust-badges,
  .home-service-grid,
  .kpi-panel,
  .contact-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-gradient-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}

/* ===== Global Premium Engine ===== */
:root {
  --lux-bg-1: #0a0f1f;
  --lux-bg-2: #0f2f2f;
  --lux-gold: #c6a85b;
  --lux-teal: #00d7d7;
  --lux-white: #f5f8ff;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 15% 10%, rgba(15, 47, 47, 0.22), transparent 40%),
    radial-gradient(circle at 85% 0%, rgba(198, 168, 91, 0.12), transparent 45%),
    linear-gradient(145deg, var(--lux-bg-1) 0%, #08101d 60%, #090c16 100%);
  color: var(--lux-white);
}

body > * {
  position: relative;
  z-index: 1;
}

.global-fx-root {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.global-fx-root canvas,
.global-fx-root .global-fx-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#global-webgl-bg {
  opacity: 0.5;
}

#global-fx-lines {
  opacity: 0.65;
}

.global-fx-layer {
  overflow: hidden;
}

.fx-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  border-radius: 999px;
  border: 1px solid rgba(198, 168, 91, 0.28);
  background: rgba(7, 12, 24, 0.3);
  color: rgba(239, 246, 255, 0.76);
  padding: 0.2rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(198, 168, 91, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.fx-node::after {
  content: attr(aria-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: rgba(12, 16, 28, 0.85);
  border: 1px solid rgba(198, 168, 91, 0.32);
  border-radius: 8px;
  font-size: 0.62rem;
  padding: 0.2rem 0.42rem;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.fx-node.is-hover {
  transform: scale(1.12) translateZ(0);
  color: #fff;
  box-shadow: 0 0 22px rgba(198, 168, 91, 0.4), 0 0 0 1px rgba(198, 168, 91, 0.3) inset;
}

.fx-node.is-hover::after {
  opacity: 1;
}

.fx-node.clicked {
  animation: fxPop 0.26s ease;
}

@keyframes fxPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.fx-social {
  border-color: rgba(0, 215, 215, 0.36);
}

.fx-infra {
  border-color: rgba(198, 168, 91, 0.35);
}

.fx-brand {
  opacity: 0.56;
}

.depth-1 { z-index: 1; }
.depth-2 { z-index: 2; }
.depth-3 { z-index: 3; }
.depth-4 { z-index: 4; }
.depth-5 { z-index: 5; }

.global-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  display: flex;
  align-items: flex-end;
  gap: 1%;
  opacity: 0.42;
}

.hero-skyline span {
  flex: 1;
  min-width: 24px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(198, 168, 91, 0.55), rgba(10, 15, 31, 0.1));
  box-shadow: 0 0 18px rgba(198, 168, 91, 0.2);
}

.hero-skyline span:nth-child(1) { height: 25%; }
.hero-skyline span:nth-child(2) { height: 45%; }
.hero-skyline span:nth-child(3) { height: 36%; }
.hero-skyline span:nth-child(4) { height: 58%; }
.hero-skyline span:nth-child(5) { height: 42%; }
.hero-skyline span:nth-child(6) { height: 67%; }
.hero-skyline span:nth-child(7) { height: 34%; }

.hero-data-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 215, 215, 0.06), rgba(0, 215, 215, 0.06) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(180deg, rgba(0, 215, 215, 0.045), rgba(0, 215, 215, 0.045) 1px, transparent 1px, transparent 32px);
  opacity: 0.32;
}

.hero-data-graph {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  height: 30%;
  opacity: 0.86;
}

.hero-data-graph polyline {
  fill: none;
  stroke: rgba(198, 168, 91, 0.95);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 5px rgba(198, 168, 91, 0.4));
}

.global-load-screen {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(15, 47, 47, 0.26), #080d19 70%);
  z-index: 120;
  display: grid;
  place-items: center;
  transition: opacity 0.65s ease;
}

.global-load-mark {
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: loadMarkIn 0.55s ease forwards;
}

.global-load-mark strong {
  display: block;
  font-family: "Orbitron", "Exo 2", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  color: #f5f8ff;
}

.global-load-mark span {
  color: rgba(198, 168, 91, 0.92);
  font-size: 0.88rem;
}

.global-load-screen.ready {
  opacity: 0;
  pointer-events: none;
}

@keyframes loadMarkIn {
  to { opacity: 1; transform: translateY(0); }
}

.page-fade-out body,
.page-fade-out {
  opacity: 0.98;
}

.global-lux-footer {
  margin-top: 2rem;
  padding-top: 1.2rem;
  background: linear-gradient(180deg, rgba(7, 11, 19, 0.95), rgba(5, 8, 16, 0.98));
  border-top: 1px solid rgba(198, 168, 91, 0.3);
}

.global-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.9fr;
  gap: 1rem;
}

.global-footer-grid h3 {
  margin-bottom: 0.45rem;
  font-family: "Orbitron", "Exo 2", sans-serif;
  color: #f4f8ff;
}

.global-footer-grid a {
  color: #d2f8ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.global-footer-grid a:hover {
  color: #fff;
  border-color: rgba(198, 168, 91, 0.65);
}

.global-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.global-footer-social a {
  border: 1px solid rgba(198, 168, 91, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.54rem;
  background: rgba(8, 14, 24, 0.68);
  animation: floatSocial 5.5s ease-in-out infinite;
}

.global-footer-social a:nth-child(odd) {
  animation-delay: 0.8s;
}

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

.global-footer-copy {
  margin: 0.8rem auto 0;
  text-align: center;
  padding: 0.8rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: min(1200px, 92vw);
  color: rgba(233, 245, 255, 0.88);
}

.global-footer-copy a {
  color: #f4d48a;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease;
}

.global-footer-copy a:hover {
  background-size: 100% 1px;
}

.sticky-global-cta {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-global-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 900px) {
  .global-footer-grid {
    grid-template-columns: 1fr;
  }

  .fx-node {
    font-size: 0.62rem;
    padding: 0.16rem 0.44rem;
  }
}

@media (max-width: 760px) {
  .global-fx-root {
    opacity: 0.64;
  }

  .global-fx-root.is-mobile .fx-brand,
  .global-fx-root.is-mobile .fx-keyword {
    display: none;
  }
}

.global-lottie-accent {
  width: 92px;
  height: 44px;
  opacity: 0.75;
  margin-top: 0.5rem;
  filter: drop-shadow(0 0 8px rgba(198, 168, 91, 0.28));
}

.fx-dns {
  animation: dnsSpin 9s linear infinite;
}

@keyframes dnsSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.global-hero-overlay.mode-home .hero-skyline {
  transform-origin: bottom;
}

.global-hero-overlay.mode-portfolio .hero-skyline {
  clip-path: inset(0 100% 0 0);
  animation: skylineWipe 1.2s ease 0.25s forwards;
}

@keyframes skylineWipe {
  to { clip-path: inset(0 0 0 0); }
}

.global-hero-overlay.mode-portfolio .hero-data-lines {
  transform: skewX(-8deg);
  opacity: 0.26;
}

.global-hero-overlay.mode-contact {
  filter: blur(5px);
  animation: contactFocus 1.1s ease 0.2s forwards;
}

@keyframes contactFocus {
  to { filter: blur(0); }
}

.global-hero-overlay.mode-contact .hero-data-graph polyline {
  stroke: rgba(255, 236, 188, 0.9);
}

.global-footer-social a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  display: inline-block;
  background: var(--lux-gold);
  box-shadow: 0 0 8px rgba(198, 168, 91, 0.6);
}

.webgl-image-card {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  min-height: 180px;
  background: radial-gradient(circle at 20% 15%, rgba(0, 240, 255, 0.18), rgba(10, 12, 22, 0.8) 58%);
  border: 1px solid rgba(198, 168, 91, 0.34);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36), 0 0 18px rgba(198, 168, 91, 0.16);
}

.webgl-image-card::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: conic-gradient(from 140deg, rgba(198, 168, 91, 0.08), rgba(0, 240, 255, 0.18), rgba(198, 168, 91, 0.06));
  animation: webglAura 9s linear infinite;
  pointer-events: none;
}

.webgl-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.14) 22%, transparent 45%);
  transform: translateX(-120%);
  animation: webglSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes webglAura {
  to { transform: rotate(360deg); }
}

@keyframes webglSweep {
  0%, 25% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(130%); }
}

.webgl-image-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.webgl-image-source {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.webgl-image-card.is-ready .webgl-image-source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.webgl-model-fallback {
  opacity: 1;
}

@media (max-width: 980px) {
  .webgl-image-card {
    display: none;
  }
  .webgl-image-source,
  img.webgl-model-fallback {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }
}

/* About premium page */
.about-premium .about-hero {
  min-height: 78vh;
  position: relative;
}

.about-premium .hero-grid {
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  align-items: stretch;
}

.about-hero-panel {
  backdrop-filter: blur(12px);
  background: linear-gradient(165deg, rgba(10, 16, 30, 0.76), rgba(24, 10, 38, 0.64));
  border: 1px solid rgba(198, 168, 91, 0.32);
  min-width: 0;
}

.about-hero-panel .hero-gradient-title {
  max-width: 22ch;
  word-break: normal;
  overflow-wrap: normal;
}

.about-hero-visual {
  min-height: 320px;
  display: grid;
  align-items: center;
}

.about-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.about-section-grid .neon-card {
  border: 1px solid rgba(198, 168, 91, 0.28);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32), 0 0 16px rgba(0, 240, 255, 0.08);
}

.about-core-values {
  grid-column: 1 / -1;
}

.about-core-values ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
}

@media (max-width: 900px) {
  .about-premium .hero-grid {
    grid-template-columns: 1fr;
  }

  .about-section-grid {
    grid-template-columns: 1fr;
  }
}

/* E-commerce premium page */
.ecommerce-premium .ecommerce-hero {
  min-height: 82vh;
}

.ecommerce-hero-panel {
  border: 1px solid rgba(198, 168, 91, 0.34);
  background: linear-gradient(165deg, rgba(8, 14, 28, 0.78), rgba(20, 10, 32, 0.66));
  backdrop-filter: blur(12px);
}

.ecommerce-counters .stat {
  border-color: rgba(198, 168, 91, 0.26);
}

.ecommerce-why .neon-card {
  border: 1px solid rgba(0, 240, 255, 0.22);
}

.ecommerce-platform-grid .neon-card,
.ecommerce-services-grid .neon-card {
  border: 1px solid rgba(198, 168, 91, 0.32);
  background: linear-gradient(160deg, rgba(10, 16, 28, 0.88), rgba(24, 10, 36, 0.62));
}

.ecommerce-platform-grid .neon-card:hover,
.ecommerce-services-grid .neon-card:hover {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34), 0 0 20px rgba(198, 168, 91, 0.22);
}

.ecommerce-cro-panel {
  border: 1px solid rgba(198, 168, 91, 0.32);
}

.ecommerce-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.65rem;
}

.ecommerce-visual-grid img {
  width: 100%;
  border-radius: 12px;
}

.fx-commerce {
  border-color: rgba(198, 168, 91, 0.45);
  color: rgba(255, 245, 220, 0.9);
}

.global-hero-overlay.mode-ecommerce .hero-skyline {
  opacity: 0.34;
}

.global-hero-overlay.mode-ecommerce .hero-data-lines {
  opacity: 0.38;
  transform: perspective(900px) rotateX(14deg);
}

.global-hero-overlay.mode-ecommerce .hero-data-graph polyline {
  stroke: rgba(198, 168, 91, 0.95);
  stroke-width: 2;
}

@media (max-width: 900px) {
  .ecommerce-visual-grid {
    grid-template-columns: 1fr;
  }
}

/* Jewelry premium page */
.jewelry-premium .jewelry-hero {
  min-height: 84vh;
}

.jewelry-hero-panel {
  border: 1px solid rgba(198, 168, 91, 0.36);
  background: linear-gradient(165deg, rgba(8, 12, 24, 0.8), rgba(20, 10, 30, 0.64));
  backdrop-filter: blur(12px);
}

.jewelry-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.jewelry-hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 18%, rgba(198, 168, 91, 0.22), transparent 38%);
  pointer-events: none;
  animation: jewelrySparkle 10s ease-in-out infinite;
}

@keyframes jewelrySparkle {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(-8px); }
}

.split-left,
.split-right {
  min-height: 250px;
}

.jewelry-focus-card {
  border: 1px solid rgba(198, 168, 91, 0.38);
  background: linear-gradient(160deg, rgba(10, 14, 26, 0.9), rgba(24, 10, 34, 0.64));
}

.jewelry-services-grid .neon-card {
  border: 1px solid rgba(198, 168, 91, 0.34);
  background: linear-gradient(165deg, rgba(10, 14, 26, 0.88), rgba(24, 10, 34, 0.62));
  position: relative;
  overflow: hidden;
}

.jewelry-services-grid .neon-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(198, 168, 91, 0.16) 20%, transparent 42%);
  transform: translateX(-130%);
  animation: jewelSweep 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes jewelSweep {
  0%, 70% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.8rem;
}

.timeline-step {
  border: 1px solid rgba(198, 168, 91, 0.32);
  border-radius: 12px;
  padding: 0.9rem;
  background: rgba(10, 14, 26, 0.82);
  position: relative;
}

.timeline-step span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(198, 168, 91, 0.55);
  color: #ffe9b5;
  margin-bottom: 0.4rem;
  box-shadow: 0 0 12px rgba(198, 168, 91, 0.25);
}

.jewelry-advantage-card {
  border: 1px solid rgba(198, 168, 91, 0.32);
  background: linear-gradient(165deg, rgba(9, 13, 23, 0.88), rgba(22, 11, 30, 0.68));
}

.jewelry-visual-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.fx-luxury {
  border-color: rgba(198, 168, 91, 0.5);
  color: rgba(255, 242, 214, 0.95);
}

.global-hero-overlay.mode-jewelry .hero-skyline {
  opacity: 0.28;
}

.global-hero-overlay.mode-jewelry .hero-data-lines {
  opacity: 0.2;
}

.global-hero-overlay.mode-jewelry .hero-data-graph polyline {
  stroke: rgba(233, 201, 130, 0.9);
}

@media (max-width: 980px) {
  .jewelry-hero-split,
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

.ecommerce-hero-visual {
  position: relative;
  overflow: hidden;
}

.ecommerce-hero-scene {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 170px;
  height: 170px;
  pointer-events: none;
  z-index: 3;
}

.product-box-3d {
  position: absolute;
  inset: 22% 22% auto auto;
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(198, 168, 91, 0.5), rgba(0, 240, 255, 0.2));
  border: 1px solid rgba(198, 168, 91, 0.65);
  box-shadow: 0 0 20px rgba(198, 168, 91, 0.32);
  transform-style: preserve-3d;
  animation: productRotate 9.5s linear infinite;
}

@keyframes productRotate {
  0% { transform: perspective(600px) rotateX(8deg) rotateY(0deg); }
  50% { transform: perspective(600px) rotateX(14deg) rotateY(180deg); }
  100% { transform: perspective(600px) rotateX(8deg) rotateY(360deg); }
}

.cart-particle-cluster {
  position: absolute;
  inset: 0;
}

.cart-particle-cluster span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(198, 168, 91, 0.9);
  box-shadow: 0 0 10px rgba(198, 168, 91, 0.65);
  animation: cartParticles 4.2s ease-in-out infinite;
}

.cart-particle-cluster span:nth-child(1) { left: 22%; top: 34%; animation-delay: 0s; }
.cart-particle-cluster span:nth-child(2) { left: 34%; top: 28%; animation-delay: 0.25s; }
.cart-particle-cluster span:nth-child(3) { left: 46%; top: 36%; animation-delay: 0.5s; }
.cart-particle-cluster span:nth-child(4) { left: 58%; top: 33%; animation-delay: 0.8s; }
.cart-particle-cluster span:nth-child(5) { left: 31%; top: 46%; animation-delay: 1.1s; }
.cart-particle-cluster span:nth-child(6) { left: 51%; top: 48%; animation-delay: 1.35s; }

.cart-icon {
  position: absolute;
  left: 40%;
  top: 36%;
  font-style: normal;
  font-size: 26px;
  color: #f9e3ad;
  text-shadow: 0 0 14px rgba(198, 168, 91, 0.55);
  animation: cartGlow 4.2s ease-in-out infinite;
}

@keyframes cartParticles {
  0%, 100% { transform: translateY(0) scale(0.7); opacity: 0.35; }
  50% { transform: translateY(-8px) scale(1.15); opacity: 1; }
}

@keyframes cartGlow {
  0%, 100% { opacity: 0.45; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

.ecommerce-data-lines {
  display: grid;
  gap: 0.36rem;
  margin: 0.8rem 0;
}

.ecommerce-data-lines span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.2), rgba(198, 168, 91, 0.75), rgba(0, 240, 255, 0.15));
  background-size: 170% 100%;
  animation: dataLineShift 3.6s ease-in-out infinite;
}

.ecommerce-data-lines span:nth-child(2) { animation-delay: 0.35s; }
.ecommerce-data-lines span:nth-child(3) { animation-delay: 0.7s; }

@keyframes dataLineShift {
  0%, 100% { background-position: 0% 50%; transform: scaleX(0.92); }
  50% { background-position: 100% 50%; transform: scaleX(1); }
}

@media (max-width: 900px) {
  .ecommerce-hero-scene {
    width: 130px;
    height: 130px;
    right: 0.4rem;
    top: 0.4rem;
  }
}

/* ==========================================================================
   GLOBAL MOBILE RESPONSIVENESS FIXES (Appended by Update)
   ========================================================================== */
@media (max-width: 991px) {
    /* Base Typography Scaling */
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem) !important;
        line-height: 1.1;
    }
    
    .section-title, h2 {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }
    
    .hero-section {
        padding-top: 120px;
    }

    /* Diff Grid & Pillars Grid Stacking */
    .diff-grid.count-2, .pillars-grid, .portfolio-flip-grid, .matrix-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Dashboard Mockup Responsiveness */
    .dashboard-mockup {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 15px;
    }
    
    .dash-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Authority Metrics */
    .authority-metrics {
        flex-direction: column;
        gap: 20px;
    }

    /* Social Network Section */
    .network-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Constellation Orbit Scaling */
    .orbit-system {
        transform: scale(0.6);
        margin: -50px 0;
    }
}

@media (max-width: 576px) {
    /* Extreme Mobile Downscaling */
    .hero-cta-group, .btn-row {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .orbit-system {
        transform: scale(0.45);
        margin: -100px 0;
    }
    
    .partner-badges-container {
        flex-direction: column;
        gap: 15px;
    }
}
