
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --teal:       #27cfc3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-500:   #242424;
  --dark-400:   #2e2e2e;
  --dark-300:   #3a3a3a;
  --grey-500:   #676767;
  --grey-400:   #888888;
  --grey-100:   #e0e0e0;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --grid-max: 2000px;
  --grid-margin: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   NEON BLUR ORBS
   ═══════════════════════════════════════════════════════════ */

.neon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.neon-orb--1 {
  width: clamp(350px, 45vw, 800px);
  height: clamp(350px, 45vw, 800px);
  background: radial-gradient(circle, rgba(230,0,126,0.35) 0%, rgba(230,0,126,0.12) 40%, transparent 70%);
  animation: orbDrift1 14s ease-in-out infinite;
}

.neon-orb--2 {
  width: clamp(250px, 30vw, 500px);
  height: clamp(250px, 30vw, 500px);
  background: radial-gradient(circle, rgba(230,0,126,0.25) 0%, rgba(230,0,126,0.08) 40%, transparent 70%);
  animation: orbDrift2 18s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(60px, -80px) scale(1.15); }
  50%  { transform: translate(-40px, 40px) scale(0.9); }
  75%  { transform: translate(80px, 20px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-50px, 60px) scale(1.1); }
  50%  { transform: translate(70px, -30px) scale(0.95); }
  75%  { transform: translate(-30px, -50px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */

.services {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}

.services-inner {
  position: relative;
  z-index: 1;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
}

/* ─── SECTION HEADER ──────────────────────────────────── */

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.services-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.services-label::before,
.services-label::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--grad);
  flex-shrink: 0;
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
}

.services-headline em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.6vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ─── SERVICES GRID ───────────────────────────────────── */

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

/* ─── SERVICE CARD ────────────────────────────────────── */

.service-card {
  position: relative;
  background: var(--dark-600);
  border: 1px solid var(--dark-400);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(230,0,126,0.06) 0%, rgba(0,159,227,0.06) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(230,0,126,0.2);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(230,0,126,0.1), 0 12px 40px rgba(230,0,126,0.1), 0 0 24px rgba(0,159,227,0.06);
}

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

/* Card number watermark */
.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.08;
  transition: opacity 0.35s ease;
}

.service-card:hover .service-num {
  opacity: 0.15;
}

/* Icon */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230,0,126,0.1) 0%, rgba(0,159,227,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(230,0,126,0.18) 0%, rgba(0,159,227,0.18) 100%);
  box-shadow: 0 0 20px rgba(230,0,126,0.15);
  transform: scale(1.06);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Category tag */
.service-tag {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 8px;
}

/* Title */
.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.service-card:hover .service-title {
  color: var(--pink);
}

/* Description */
.service-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.65;
  flex: 1;
}

/* Arrow link */
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out), gap 0.25s var(--ease-out);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateY(0);
}

.service-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease-out);
}

.service-card:hover .service-arrow svg {
  transform: translateX(3px);
}

/* ─── BOTTOM CTA ──────────────────────────────────────── */

.services-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  background: var(--pink);
  color: var(--white);
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, outline-color 0.25s ease;
}

.services-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(0,159,227,0.35), 0 0 20px rgba(0,159,227,0.25);
  outline-color: rgba(0,159,227,0.8);
}

.services-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease-out);
}

.services-cta:hover svg {
  transform: translateX(3px);
}

.services-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: transform 0.25s var(--ease-out), color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-cta-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 8px 24px rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.30s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.36s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.42s; }
.reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1800px) {
  :root { --grid-margin: clamp(24px, 4.5vw, 72px); }
}

@media (max-width: 1600px) {
  .services-headline { font-size: clamp(2.5rem, 5vw, 4.5rem); }
}

@media (max-width: 1400px) {
  .services-headline { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
  .service-card { padding: 32px 24px 28px; }
}

@media (max-width: 1200px) {
  :root { --grid-margin: clamp(20px, 4vw, 56px); }
  .services-grid { gap: 16px; }
}

@media (max-width: 1000px) {
  :root { --grid-margin: clamp(20px, 3.5vw, 40px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-arrow { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  :root { --grid-margin: 20px; }
  .services-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .services-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .services-header { margin-bottom: 40px; }
  .services-cta-row { flex-direction: column; }
  .services-cta, .services-cta-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  :root { --grid-margin: 16px; }
  .services-headline { font-size: 1.8rem; }
}

