/* ─────────────────────────────────────────────
   VELA — Agency Site
   Dark aurora · Teal-purple gradient · Bold type
   ───────────────────────────────────────────── */

:root {
  --bg:        #0C0C0F;
  --bg-2:      #111116;
  --bg-3:      #18181F;
  --border:    rgba(255,255,255,0.07);
  --white:     #FFFFFF;
  --off:       rgba(255,255,255,0.65);
  --dim:       rgba(255,255,255,0.35);
  --teal:      #5EEAD4;
  --purple:    #A78BFA;
  --gold:      #FBBF24;
  --green:     #34D399;
  --grad:      linear-gradient(135deg, #5EEAD4 0%, #A78BFA 100%);
  --grad-text: linear-gradient(135deg, #5EEAD4 0%, #A78BFA 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: pageFadeIn 0.35s ease both;
}

/* Home page: hero only, no scroll */
body.page-home {
  overflow: hidden;
  height: 100vh;
}

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

img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
}
h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
}
h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 14px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--off);
  max-width: 520px;
  line-height: 1.65;
  margin-top: 20px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--grad);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(94, 234, 212, 0.25);
}
.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 16px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--off);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  height: 60px;
  background: rgba(12, 12, 15, 0.75);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

/* Hamburger button */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
  justify-self: start;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav drawer */
.nav-drawer {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(10, 10, 13, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 36px 56px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.3s ease;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-drawer-link {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.35);
  padding: 4px 0;
  transition: color 0.2s;
  line-height: 1.15;
}
.nav-drawer-link:hover { color: var(--white); }
.nav-drawer-cta-link {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav-drawer-cta-link:hover { color: var(--white); }

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
}
.nav-dot {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--off);
  transition: color 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--white); }
.nav-link.active {
  color: var(--white);
  font-weight: 600;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad);
  border-radius: 1px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
  justify-self: end;
}
.nav-cta:hover { color: var(--white); }

/* ── INNER PAGES ── */
/* Sections on inner pages start below the fixed nav */
.inner-section { padding-top: 100px; }

.work-cta, .process-cta {
  max-width: 1200px;
  margin: 72px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.work-cta p {
  font-size: 17px;
  color: var(--off);
}

.process-cta {
  margin-top: 60px;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-aura {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(94,234,212,0.09) 0%, rgba(167,139,250,0.07) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-aura-2 {
  top: 30%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(167,139,250,0.06) 0%, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94, 234, 212, 0.08);
  border: 1px solid rgba(94, 234, 212, 0.2);
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 36px;
  letter-spacing: 0.1px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  color: var(--off);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ── HERO NAV GRID (home page) ── */
.hero-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 580px;
  margin: 44px auto 0;
  width: 100%;
  text-align: left;
}

.hero-nav-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.hero-nav-tile:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

.hero-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-tile-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-tile-arrow {
  font-size: 16px;
  color: var(--dim);
  transition: color 0.2s, transform 0.2s;
}
.hero-nav-tile:hover .hero-tile-arrow {
  color: var(--teal);
  transform: translate(3px, -3px);
}
.hero-tile-desc {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.45;
}

/* Start a project tile — gradient */
.hero-nav-cta {
  background: var(--grad);
  border-color: transparent;
}
.hero-nav-cta:hover {
  background: var(--grad);
  border-color: transparent;
  opacity: 0.92;
}
.hero-nav-cta .hero-tile-label { color: #0C0C0F; }
.hero-nav-cta .hero-tile-desc  { color: rgba(12,12,15,0.6); }
.hero-nav-cta .hero-tile-arrow { color: rgba(12,12,15,0.45); }
.hero-nav-cta:hover .hero-tile-arrow { color: rgba(12,12,15,0.7); transform: translate(3px,-3px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dim);
  z-index: 1;
}

/* ── PROOF STRIP ── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 40px 56px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}
.proof-item strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-item span {
  font-size: 13px;
  color: var(--dim);
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── WORK ── */
.work-section {
  padding: 120px 56px;
}

.work-section h2 { margin-bottom: 0; }

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

.work-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}
.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.12);
}

.work-card-inner { display: flex; flex-direction: column; height: 100%; }

.work-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dim);
  padding: 16px 20px 0;
}

/* Preview mockups */
.work-preview {
  margin: 12px 16px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

/* Shine Ninjas — dark gold */
.dark-preview {
  background: #0A0A0A;
  padding: 12px;
}
.dark-preview .preview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.preview-logo { font-size: 11px; font-weight: 700; color: #C9A84C; letter-spacing: 1px; text-transform: uppercase; }
.preview-dots { font-size: 8px; color: rgba(255,255,255,0.2); letter-spacing: 3px; }
.preview-hero-text { padding: 4px 0; }
.preview-h1 { font-size: 13px; font-weight: 700; line-height: 1.3; color: white; margin-bottom: 14px; }
.gold-text { color: #C9A84C; }
.preview-btn {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.gold-btn { background: #C9A84C; color: #0A0A0A; }

/* Cut & Co — cinematic green */
.green-preview {
  background: linear-gradient(to top, rgba(5,20,12,0.92) 0%, rgba(5,20,12,0.4) 50%, rgba(5,20,12,0.1) 100%), url('https://images.unsplash.com/photo-1558904541-efa843a96f01?w=400&q=60&auto=format&fit=crop') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}
.preview-nav.light { display: flex; justify-content: space-between; align-items: center; }
.dark-logo { color: white; font-size: 11px; font-weight: 700; }
.dark-dots { font-size: 8px; color: rgba(255,255,255,0.3); letter-spacing: 3px; }
.preview-hero-overlay { padding: 4px 0; margin-top: auto; }
.white-text { color: white; font-size: 13px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.white-text em { font-style: italic; font-weight: 300; }
.white-btn { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(8px); font-size: 9px; }

/* Arc Audio — white minimal (shared nav styles) */
.arc-compare-preview,
.white-preview {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 12px;
}
.white-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.preview-ham { font-size: 14px; color: #1D1D1F; }

/* Arc comparison table mockup */
.arc-compare-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.32);
  margin-bottom: 8px;
}
.arc-compare-table {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.arc-compare-header,
.arc-compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  align-items: center;
  padding: 5px 0;
}
.arc-compare-header {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 7px;
  margin-bottom: 1px;
}
.arc-col-head {
  font-size: 9px;
  font-weight: 700;
  color: rgba(0,0,0,0.4);
  text-align: center;
}
.arc-col-head.arc-col-hl { color: #7C5CFA; }
.arc-compare-row { border-bottom: 1px solid rgba(0,0,0,0.05); }
.arc-row-label {
  font-size: 9px;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
}
.arc-col-val {
  font-size: 9px;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
  text-align: center;
}
.arc-col-val.arc-col-hl { color: #7C5CFA; }
.arc-check { color: #7C5CFA !important; }
.arc-cross { color: rgba(0,0,0,0.18) !important; font-weight: 400; }

/* Shine Ninjas — real service cards mockup */
.sn-services-preview {
  background: #F7F6F3;
  display: flex;
  flex-direction: row;
  padding: 0;
  gap: 0;
  align-items: stretch;
}

.sn-sc {
  flex: 1;
  padding: 14px 10px 12px;
  background: #fff;
  border-right: 2px solid #F7F6F3;
  display: flex;
  flex-direction: column;
}
.sn-sc:last-child { border-right: none; }

.sn-sc-featured { background: #1C1C1C; }

.sn-sc-label {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  background: #C9961A;
  display: inline-block;
  padding: 3px 6px;
  border-radius: 2px;
  margin-bottom: 8px;
  white-space: nowrap;
  align-self: flex-start;
}
.sn-sc-label-outline {
  background: #fff;
  color: #1C1C1C;
  border: 1px solid #1C1C1C;
}

.sn-sc-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 3px;
  line-height: 1.2;
}
.sn-sc-featured .sn-sc-name { color: #fff; }

.sn-sc-price {
  font-size: 22px;
  font-weight: 300;
  color: #C9961A;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.sn-sc-price sup { font-size: 9px; font-weight: 500; vertical-align: top; margin-top: 3px; display: inline-block; }
.sn-sc-price sub { font-size: 7px; color: #888; }

.sn-sc-list {
  list-style: none;
  margin-bottom: 10px;
  flex: 1;
}
.sn-sc-list li {
  font-size: 7px;
  color: #888;
  padding: 4px 0;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
}
.sn-sc-featured .sn-sc-list li {
  color: rgba(255,255,255,0.45);
  border-bottom-color: rgba(255,255,255,0.08);
}
.sn-sc-list li::before { content: '✓'; color: #C9961A; font-weight: 700; font-size: 7px; flex-shrink: 0; }

.sn-sc-btn {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 8px;
  background: #C9961A;
  color: #111;
  border-radius: 2px;
  margin-top: auto;
}
.sn-sc-btn-outline {
  background: #fff;
  color: #1C1C1C;
  border: 1.5px solid #1C1C1C;
}

/* Arc Audio — watermark background effect */
.arc-wm-preview {
  background: #fafafa;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px;
}
.arc-wm-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  font-size: 108px;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(124, 92, 250, 0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}
.arc-wm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.arc-wm-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
  gap: 6px;
}
.arc-wm-eyebrow {
  font-size: 9px;
  font-weight: 700;
  color: #7C5CFA;
  letter-spacing: 0.5px;
}
.arc-wm-h1 {
  font-size: 14px;
  font-weight: 800;
  color: #1D1D1F;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.purple-btn { background: #7C5CFA; color: white; font-size: 9px; }

/* Work info */
.work-info {
  padding: 20px 20px 24px;
  flex: 1;
}
.work-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.work-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 16px;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.work-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--off);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── SERVICES ── */
.services-section {
  padding: 120px 56px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-section h2 { margin-bottom: 0; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 72px auto 0;
}
.services-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  column-gap: 20px;
  row-gap: 0;
  align-items: start;
}

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-row: span 7;
  grid-template-rows: subgrid;
  row-gap: 0;
  align-content: start;
}
.service-card:hover { border-color: rgba(255,255,255,0.12); }

/* Clickable card */
.service-card-link { cursor: pointer; }
.service-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* CTA hint at bottom of each card */
.service-card-cta {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  transition: color 0.2s, letter-spacing 0.2s;
}
.service-card-link:hover .service-card-cta {
  color: var(--white);
  letter-spacing: 0.02em;
}
.service-card-cta-gold { color: #FBBF24; }
.service-card-link:hover .service-card-cta-gold { color: var(--white); }

/* Bundle card */
.bundle-card {
  border-color: rgba(251,191,36,0.2);
  background: linear-gradient(135deg, rgba(251,191,36,0.04) 0%, rgba(167,139,250,0.04) 100%);
}
.bundle-card:hover { border-color: rgba(251,191,36,0.4); }

.service-badge-gold {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-save {
  font-size: 11px;
  font-weight: 700;
  color: #FBBF24;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
  -webkit-text-fill-color: #FBBF24;
}

.featured-service {
  border-color: rgba(94,234,212,0.2);
  background: linear-gradient(135deg, rgba(94,234,212,0.04) 0%, rgba(167,139,250,0.04) 100%);
}
.featured-service:hover { border-color: rgba(94,234,212,0.35); }

.service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.service-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.featured-service .service-number { color: var(--teal); opacity: 0.6; }

.service-icon { display: none; }

.service-card h3 { margin-bottom: 16px; }

.service-card p {
  font-size: 15px;
  color: var(--off);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.service-list li {
  font-size: 14px;
  color: var(--off);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
}

.service-price {
  font-size: 14px;
  color: var(--dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.service-price strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.services-bundle {
  max-width: 1100px;
  margin: 24px auto 0;
  background: linear-gradient(135deg, rgba(94,234,212,0.06) 0%, rgba(167,139,250,0.06) 100%);
  border: 1px solid rgba(94,234,212,0.15);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bundle-text {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.bundle-text strong {
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}
.bundle-text span { color: var(--off); }

/* ── PROCESS ── */
.process-section {
  padding: 120px 56px;
}
.process-section h2 { margin-bottom: 0; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 80px auto 0;
  align-items: start;
}

.process-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s;
}
.process-step:hover { border-color: rgba(255,255,255,0.12); }

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.process-step h3 { margin-bottom: 12px; font-size: 18px; }
.process-step p {
  font-size: 14px;
  color: var(--off);
  line-height: 1.7;
}

.process-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin-top: -24px;
}

/* ── CONTACT ── */
.contact-section {
  padding: 120px 56px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-aura {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(167,139,250,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-inner h2 { margin-bottom: 0; }

.contact-form {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--off);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dim);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(94,234,212,0.4);
}
.form-group select option { background: #1a1a22; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer {
  padding: 32px 56px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.footer-tagline {
  font-size: 13px;
  color: var(--dim);
}
.footer-right {
  font-size: 13px;
  color: var(--dim);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-grid  .reveal:nth-child(2) { transition-delay: 0.10s; }
.work-grid  .reveal:nth-child(3) { transition-delay: 0.20s; }
.proof-inner .reveal:nth-child(1) { transition-delay: 0.00s; }
.proof-inner .reveal:nth-child(3) { transition-delay: 0.08s; }
.proof-inner .reveal:nth-child(5) { transition-delay: 0.16s; }
.proof-inner .reveal:nth-child(7) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.12s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: 1fr; max-width: 520px; }
  .services-grid { grid-template-columns: 1fr; max-width: 600px; }
  .services-grid-3 { grid-template-columns: 1fr; max-width: 600px; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-connector { display: none; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .proof-strip { padding: 32px 24px; }
  .proof-inner { flex-wrap: wrap; gap: 24px; }
  .proof-divider { display: none; }
  .work-section, .services-section, .process-section, .contact-section { padding: 80px 24px; }
  .inner-section { padding-top: 84px; }
  .form-row { grid-template-columns: 1fr; }
  .services-bundle { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .footer-left { flex-direction: column; gap: 8px; }
  .work-cta { flex-direction: column; align-items: flex-start; }
}
