/* ULTRA PREMIUM SERVICES CSS */
.svc-hero {
  padding: 180px 0 120px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .svc-hero { background: var(--bg-2); }
.svc-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% -20%, rgba(79,70,229,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}
.svc-hero-icon { display: none; }
.svc-hero-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.svc-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 32px;
}
.svc-hero-sub {
  font-size: 22px;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 48px;
}
.svc-hero-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.meta-pill {
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 14px; font-weight: 500;
  color: #fff;
  display: inline-flex; align-items: center; gap: 10px;
}
.meta-pill svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* OVERVIEW & DELIVERABLES BENTO */
.overview-section { padding: 140px 0; background: var(--bg); }
.overview-grid {
  display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start;
}
.ov-sticky { position: sticky; top: 120px; }
.sec-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 24px;
}
.ov-desc { font-size: 18px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.ov-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-size: 16px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}
.ov-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(79,70,229,0.4); }
.ov-cta svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.ov-cta.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--border); box-shadow: none;
}
[data-theme="dark"] .ov-cta.ghost { color: #fff; }
.ov-cta.ghost:hover { background: var(--bg-2); transform: none; }

.deliverables {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.dl-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.3s, background 0.3s;
}
.dl-item:hover { transform: translateY(-4px); background: var(--surface); box-shadow: 0 10px 40px rgba(0,0,0,0.06); border-color: var(--accent); }
.dl-check {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(79,70,229,0.1);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.dl-check svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.dl-text { font-size: 16px; color: var(--ink); font-weight: 600; line-height: 1.5; }
.dl-item:nth-child(1) { grid-column: 1 / 3; }
.dl-item:nth-child(4) { grid-column: 1 / 3; }

/* PORTFOLIO */
.portfolio-section { padding: 140px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 64px; }
.pf-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 32px; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.pf-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.08); }
.pf-thumb { height: 320px; display: flex; align-items: center; justify-content: center; position: relative; }
.pf-logo { font-family: 'Outfit', sans-serif; font-size: 80px; font-weight: 700; color: rgba(0,0,0,0.1); }
.pf-badge { position: absolute; top: 24px; right: 24px; padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pf-body { padding: 40px; border-top: 1px solid var(--border); }
.pf-name { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em; }
.pf-client { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.pf-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.pf-tag { padding: 6px 14px; border-radius: 100px; background: var(--bg); border: 1px solid var(--border); font-size: 13px; color: var(--ink); font-weight: 600; }
.pf-desc { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* OTHER */
.other-section { padding: 140px 0; background: var(--bg); border-top: 1px solid var(--border); }
.other-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 64px; }
.oc {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 24px; padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: transform 0.3s, background 0.3s;
}
.oc:hover { transform: translateY(-4px); background: var(--surface); border-color: var(--accent); }
.oc-left { display: flex; align-items: center; gap: 24px; }
.oc-icon {
  width: 64px; height: 64px; border-radius: 16px; background: rgba(79,70,229,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.oc-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2; }
.oc-name { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; color: var(--ink); }
.oc-desc { font-size: 15px; color: var(--muted); margin-top: 4px; }
.oc-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: background 0.3s, color 0.3s; }
.oc:hover .oc-arrow { background: var(--accent); color: #fff; border-color: var(--accent); }
.oc-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.oc-num { display: none; }

@media(max-width: 960px) {
  .overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .ov-sticky { position: static; }
  .deliverables { grid-template-columns: 1fr; }
  .dl-item:nth-child(1), .dl-item:nth-child(4) { grid-column: auto; }
  .pf-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
}
@media(max-width: 600px) {
  .oc-left { flex-direction: column; align-items: flex-start; gap: 16px; }
  .oc { flex-direction: column; align-items: flex-start; gap: 24px; }
  .svc-hero-title { font-size: 36px; }
}
