/* ============================================================
   PIXEPRINT — MAIN STYLESHEET
   Design System: DesignJoy-inspired clean, white, editorial
   Heading font: Space Grotesk (kept)
   Body font: Figtree (DesignJoy-style)
   ============================================================ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Colors — Clean white palette inspired by DesignJoy */
  --bg-primary:      #ffffff;
  --bg-secondary:    #fafaf9;
  --bg-surface:      #f5f4f2;
  --bg-elevated:     #eeede9;
  --bg-border:       #e8e6e1;
  --bg-dark:         #141414;
  --bg-dark-card:    #1c1c1c;

  --text-primary:    #141414;
  --text-secondary:  #141414;
  --text-muted:      #4c4c4c;
  --text-on-dark:    #ffffff;

  --accent:          #141414;
  --accent-light:    #f0efec;

  /* Typography */
  --font-body:       'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:    'Space Grotesk', sans-serif;

  /* Sizing */
  --nav-height:      80px;
  --max-width:       1200px;
  --section-pad:     120px;

  /* Transitions */
  --ease:            cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:        cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   500ms;

  /* Borders */
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       18px;
  --radius-xl:       28px;
  --radius-pill:     100px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 17px;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── UTILITY ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm {
  padding: 72px 0;
}

.text-center { text-align: center; }

/* ── GRID LINES (DesignJoy style) ── */
.grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--bg-border);
  pointer-events: none;
}

/* ── TYPOGRAPHY SCALE ── */
/* Headings stay as Space Grotesk */
h1, h2, h3, h4, h5, h6,
.display-xl, .display-lg, .display-md, .display-sm {
  font-family: var(--font-display);
}

.display-xl {
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.display-lg {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.display-md {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.body-lg {
  font-family: var(--font-body);
  font-size: 19.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 400;
}

.body-md {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.body-sm {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.eyebrow, .section-eyebrow {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bg-border);
  transition: all var(--duration-base) var(--ease);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) ease;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.nav-cta {
  margin-left: auto;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--duration-base) ease;
  border-radius: 2px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--bg-dark);
  color: #ffffff;
  border: 1.5px solid var(--bg-dark);
}

.btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--bg-border);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: var(--bg-surface);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 15px;
}

/* ── MOBILE NAV ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-border);
  display: block;
  transition: color var(--duration-fast) ease;
}

.nav-mobile a:last-child {
  border-bottom: none;
  padding-top: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

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

/* ── PAGE HERO ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 64px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-border);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-top: 12px;
  margin-bottom: 16px;
  max-width: 800px;
}

.page-hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 0;
}

/* ── HERO ── */
.hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--bg-border);
  position: relative;
  overflow: hidden;
}

.hero-canvas { display: none; }
.hero-grid-bg { display: none; }

/* DesignJoy style grid lines */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--bg-border);
  pointer-events: none;
}
.hero::before { left: calc((100% - var(--max-width)) / 2 + 48px + (var(--max-width) / 3)); }
.hero::after  { right: calc((100% - var(--max-width)) / 2 + 48px + (var(--max-width) / 3)); }

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.hero-content {
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-headline .text-italic {
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast) ease;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hero-play-btn:hover { color: var(--text-primary); }

.hero-play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-play-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--text-primary);
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--bg-border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-surface);
  border-left: 1px solid var(--bg-border);
  border-right: 1px solid var(--bg-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.img-placeholder-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.img-placeholder-label-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.img-placeholder-label-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-secondary);
}

/* ── MARQUEE ── */
.marquee-wrapper {
  background: var(--bg-dark);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #888;
  padding: 0 24px;
  letter-spacing: 0.02em;
}

.marquee-dot {
  color: #333;
  font-size: 10px;
}

/* ── SECTIONS GENERAL ── */
.section-divider {
  height: 1px;
  background: var(--bg-border);
}

/* ── PROBLEM / GRID CARDS (DesignJoy 3-col feature cards) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--bg-border);
}

.feature-cell {
  padding: 48px 40px;
  border-right: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  transition: background var(--duration-base) ease;
}

.feature-cell:hover {
  background: var(--bg-surface);
}

.feature-cell-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.feature-cell-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.feature-cell-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── SERVICES GRID (2 col) ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--bg-border);
}

.service-card {
  display: block;
  padding: 48px 40px;
  border-right: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  transition: background var(--duration-base) ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--bg-surface);
}

.service-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.service-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.service-card:hover .service-tag {
  background: var(--bg-primary);
}

.card-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--duration-fast) ease;
}

.service-card:hover .card-link {
  gap: 10px;
}

/* Placeholder image inside service card */
.service-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.service-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-note {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 16px;
}

.placeholder-note-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.placeholder-note-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* ── SECTION HEADER (left aligned like DesignJoy) ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bg-border);
}

.section-header-left h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.06;
}

.section-header-right {
  flex-shrink: 0;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--bg-border);
  transition: background var(--duration-fast) ease;
}

.process-step:first-child {
  padding-top: 0;
}

.process-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 32px;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.process-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ── INDUSTRIES PILLS ── */
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  background: var(--bg-primary);
  border: 1.5px solid var(--bg-border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  transition: all var(--duration-base) ease;
  text-decoration: none;
}

.industry-pill:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  background: var(--bg-surface);
}

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--bg-border);
}

.package-card {
  padding: 40px 36px;
  border-right: 1px solid var(--bg-border);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  transition: background var(--duration-base) ease;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}

.package-card:not(.featured):hover {
  background: var(--bg-surface);
}

.package-name {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.package-card.featured .package-name {
  color: #666;
}

.package-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.package-card.featured .package-tagline {
  color: #fff;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.package-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
}

.package-card.featured .package-feature {
  color: #aaa;
}

.package-feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card.featured .package-feature-check {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.package-feature-check svg {
  width: 10px;
  height: 10px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2.5;
}

.package-card.featured .package-feature-check svg {
  stroke: #888;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--bg-border);
}

.testimonial {
  padding: 40px 36px;
  border-right: 1px solid var(--bg-border);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 3px;
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── WORK/PORTFOLIO SECTION ── */
.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-left: 1px solid var(--bg-border);
  border-top: 1px solid var(--bg-border);
}

.work-cell {
  border-right: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
  overflow: hidden;
  position: relative;
}

.work-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.work-cell:hover .work-img {
  transform: scale(1.03);
}

.work-img-placeholder {
  width: 100%;
  min-height: 320px;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  transition: background var(--duration-base) ease;
}

.work-cell:hover .work-img-placeholder {
  background: var(--bg-elevated);
}

.work-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.work-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.work-label-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.work-label-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

/* Placeholder note for work cell */
.work-placeholder-note {
  text-align: center;
}

.work-placeholder-note-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.work-placeholder-note-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.work-placeholder-note-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--bg-dark);
  padding: 120px 0;
  border-top: 1px solid #222;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-eyebrow {
  color: #555;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 20px;
}

.cta-section p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: #888;
  margin-bottom: 36px;
  max-width: 540px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: #fff;
  color: #141414;
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

.cta-section .btn-outline {
  border-color: #333;
  color: #aaa;
}

.cta-section .btn-outline:hover {
  border-color: #666;
  color: #fff;
  background: transparent;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  border-top: 1px solid #222;
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: #aaa;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: #aaa;
  transition: all var(--duration-fast) ease;
}

.social-link:hover {
  border-color: #444;
  color: #fff;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #aaa;
  transition: color var(--duration-fast) ease;
  line-height: 1;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid #1e1e1e;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #666;
}

/* ── VIDEO MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  padding: 40px;
  max-width: 780px;
  width: 90%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--duration-fast) ease;
}

.modal-close:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.modal-video {
  width: 100%;
  border-radius: var(--radius-md);
}

.modal-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px;
  text-align: center;
  color: var(--text-muted);
}

.modal-video-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── STAGGER GRID ── */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-grid.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger-grid.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger-grid.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger-grid.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.2s; }

/* ── CARD COMPONENTS (legacy compatibility) ── */
.card {
  padding: 32px;
  background: var(--bg-primary);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-base) ease, box-shadow var(--duration-base) ease;
}

.card:hover {
  border-color: var(--text-muted);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-secondary);
  fill: none;
  stroke-width: 1.5;
}

.card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.card-body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .container { padding: 0 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual {
    border-top: 1px solid var(--bg-border);
  }

  .hero-img-placeholder {
    border-left: none;
    border-right: none;
    aspect-ratio: 4/3;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat-num { font-size: 22px; }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-section h2 { font-size: 34px; }
  .hero-headline { font-size: 36px; }
}

/* ── PROCESS STEP LAYOUT (home section) ── */
.process-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--bg-border);
  border-left: 1px solid var(--bg-border);
}

.process-section-left {
  padding: 64px 48px;
  border-right: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.process-section-right {
  padding: 64px 48px;
  border-bottom: 1px solid var(--bg-border);
}

@media (max-width: 768px) {
  .process-section-grid {
    grid-template-columns: 1fr;
  }
  .process-section-left {
    border-right: none;
  }
  .process-section-left,
  .process-section-right {
    padding: 40px 20px;
  }
  .page-hero {
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 48px;
  }
}

/* ── ACCENT WORD ── */
.accent-word {
  font-style: italic;
}

/* ── VIDEO WRAPPER ── */
.video-wrapper {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-border);
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(20,20,20,0.2);
  transition: background var(--duration-base) ease;
}

.video-wrapper:hover .video-play-overlay {
  background: rgba(20,20,20,0.35);
}

.video-play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.video-play-circle svg {
  width: 18px;
  height: 18px;
  fill: var(--text-primary);
  margin-left: 3px;
}

.video-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.case-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── IMAGE INSTRUCTION ── */
.image-instruction {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px dashed var(--bg-border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-style: italic;
  display: block;
}
.service-card .image-instruction {
  margin-top: -12px;
  margin-bottom: 16px;
}
.work-cell .image-instruction {
  margin-top: 12px;
  margin-bottom: 24px;
}

/* ── FAQ ACCORDION ── */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bg-border);
}

.faq-item {
  border-bottom: 1px solid var(--bg-border);
  transition: all var(--duration-base) var(--ease);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  transition: color var(--duration-fast) ease;
}

.faq-question:hover {
  color: var(--text-secondary);
}

.faq-icon {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--duration-base) var(--ease);
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--text-primary);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-base) var(--ease);
  overflow: hidden;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  min-height: 0;
  padding: 0 8px 24px 8px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}


