/* ═══════════════════════════════════════════════════════════
   VMG · services.css
   Page-specific styles for the services page. Loads after shared.css.
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   HERO · cosmos gradient, no photo (matches contact)
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 55vh;
  background: var(--grad-cosmos);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(132, 42, 191, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(33, 91, 166, 0.30) 0%, transparent 55%);
  pointer-events: none;
}

.hero-glyph-float {
  right: -8%;
  top: 5%;
  width: 45%;
  max-width: 520px;
  opacity: 0.07;
  z-index: 2;
}

.hero-content {
  z-index: 3;
  display: flex;
  align-items: end;
  padding: var(--space-2xl) 0 var(--space-l);
}

.hero-display {
  max-width: 1000px;
}

.hero-sub {
  max-width: 640px;
  margin-bottom: 0;
}

.hero-foot {
  z-index: 3;
}

/* ═══════════════════════════════════════════════════════════
   CORE SERVICES · long-form alternating modules
   ═══════════════════════════════════════════════════════════ */
.core-services { padding-bottom: var(--space-2xl); }

.service-module {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}
.service-module:last-child { border-bottom: none; }

@media (min-width: 900px) {
  .service-module { grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
  .service-module--reverse > .service-visual { order: 2; }
  .service-module--reverse > .service-body { order: 1; }
}

/* Stylized SVG visual block */
.service-visual {
  aspect-ratio: 4 / 5;
  max-height: 580px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual--web { background: var(--grad-eclipse); }
.service-visual--seo { background: var(--grad-aurora); }
.service-visual--marketing { background: var(--grad-cosmos); }

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(132, 42, 191, 0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(33, 91, 166, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.service-visual-svg {
  position: relative;
  z-index: 2;
  width: 75%;
  height: auto;
}

.service-visual-label {
  position: absolute;
  top: var(--space-s);
  left: var(--space-s);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: var(--f-micro);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-70);
  padding: 4px 10px;
  border: 1px solid var(--ink-15);
  border-radius: 2px;
}
.service-visual-meta {
  position: absolute;
  bottom: var(--space-s);
  right: var(--space-s);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: var(--f-micro);
  color: var(--ink-50);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.service-body { padding: var(--space-s) 0; }
.service-body .section-num { font-size: 0.7rem; }
.service-body h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-l);
}
.service-body h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #B87CE8 0%, #842ABF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-body p {
  font-size: 1.0625rem;
  color: var(--ink-70);
  line-height: 1.65;
  margin-bottom: var(--space-m);
}

.service-includes {
  margin-top: var(--space-l);
  padding-top: var(--space-l);
  border-top: 1px solid var(--ink-08);
}
.service-includes-label {
  font-family: var(--font-mono);
  font-size: var(--f-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-50);
  margin-bottom: var(--space-m);
}
.service-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xs);
}
@media (min-width: 600px) { .service-includes-list { grid-template-columns: 1fr 1fr; } }

.service-includes-list li {
  font-size: var(--f-small);
  color: var(--ink-70);
  padding: var(--space-2xs) 0 var(--space-2xs) var(--space-m);
  position: relative;
  line-height: 1.5;
  border-top: 1px solid var(--ink-08);
}
.service-includes-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: var(--space-2xs);
  font-family: var(--font-mono);
  color: var(--hex-violet);
  font-size: var(--f-small);
}

/* ═══════════════════════════════════════════════════════════
   VERTICALS SECTION · sector grid with paragraph copy
   ═══════════════════════════════════════════════════════════ */
.verticals-section { background: var(--grad-midnight); }

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ink-15);
  border: 1px solid var(--ink-15);
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 700px)  { .verticals-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .verticals-grid { grid-template-columns: repeat(3, 1fr); } }

.vertical-card {
  background: var(--obsidian);
  padding: var(--space-xl) var(--space-l);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: background 0.3s;
  position: relative;
}
.vertical-card:hover { background: var(--midnight); }

.vertical-card-num {
  font-family: var(--font-mono);
  font-size: var(--f-micro);
  color: var(--hex-violet);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-l);
}
.vertical-card-name {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-s);
}
.vertical-card-desc {
  font-size: var(--f-small);
  color: var(--ink-70);
  line-height: 1.6;
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   TAILORED CALLOUT
   ═══════════════════════════════════════════════════════════ */
.tailored {
  background: var(--grad-aurora);
  position: relative;
  overflow: hidden;
}
.tailored::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(132, 42, 191, 0.35) 0%, transparent 55%);
  pointer-events: none;
}
.tailored-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.tailored h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: var(--space-l);
}
.tailored h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #B87CE8 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tailored p {
  font-size: 1.125rem;
  color: var(--ink-70);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: var(--space-m);
}
.tailored .btn { margin-top: var(--space-l); }
