/* =========================================================
   BRIGHT WEBSITES — Porthe-inspired theme
   ========================================================= */
:root {
  --bg:        #FAFAF7;
  --bg-alt:    #F0EDE6;
  --bg-dark:   #12141C;
  --ink:       #12141C;
  --ink-soft:  #5C616D;
  --ink-muted: #949AA6;
  --amber:     #FFB627;
  --coral:     #FF5A36;
  --teal:      #0C8479;
  --line:      rgba(18, 20, 28, 0.10);
  --line-dark: rgba(255, 255, 255, 0.08);
  --radius:    20px;
  --radius-sm: 12px;
  --shadow:    0 24px 60px -24px rgba(18, 20, 28, 0.22);
  --shadow-lg: 0 40px 80px -30px rgba(18, 20, 28, 0.35);

  --font-display: 'Cabinet Grotesk', 'General Sans', sans-serif;
  --font-body:    'General Sans', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --container:    1240px;
  --ease:         cubic-bezier(0.16, 0.84, 0.44, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.loaded { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; width: min(320px, 80vw); }
.preloader-logo {
  margin-bottom: 24px;
}
.preloader-bar {
  height: 3px; background: rgba(255,255,255,0.12); border-radius: 100px; overflow: hidden; margin-bottom: 12px;
}
.preloader-fill {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--amber), var(--coral));
  border-radius: 100px; transition: width 0.15s linear;
}
.preloader-pct {
  font-family: var(--font-mono); font-size: 2.5rem; font-weight: 500; color: #fff;
}

/* Grain / progress */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  z-index: 9999; transition: width 0.1s linear;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease;
  white-space: nowrap;
}
.btn i { width: 16px; height: 16px; }
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -12px rgba(18,20,28,0.45); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost { color: var(--ink-soft); font-size: 0.9rem; background: none; border: none; padding: 10px 16px; }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(250, 250, 247, 0.75); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(0,0,0,0.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.02em; display: inline-flex; align-items: center;
}
.logo-dot { color: var(--amber); }
.logo-img {
  display: block; height: 40px; width: auto; max-width: 180px;
  object-fit: contain;
}
.logo-img-preloader {
  height: 48px; max-width: 220px; margin: 0 auto 28px;
}
.logo-img-footer {
  height: 42px; max-width: 200px;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.25s; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--amber); transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }

/* Hero */
.hero {
  position: relative; padding: 170px 0 110px; overflow: hidden; min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: -20% -10% auto -10%; height: 700px; pointer-events: none;
  background:
    radial-gradient(55% 90% at 15% 0%, rgba(255, 182, 39, 0.32), transparent 60%),
    radial-gradient(45% 80% at 85% 5%, rgba(255, 90, 54, 0.25), transparent 65%),
    radial-gradient(40% 70% at 50% 50%, rgba(12, 132, 121, 0.12), transparent 70%);
  filter: blur(50px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { transform: translateY(-20px) scale(1); opacity: 0.85; }
  100% { transform: translateY(10px) scale(1.05); opacity: 1; }
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px; align-items: center; position: relative;
}
.hero-right {
  width: 100%; min-width: 0;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; z-index: 1;
}
.eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); background: rgba(12, 132, 121, 0.08);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
}
.eyebrow-light { color: var(--amber); background: rgba(255, 182, 39, 0.12); }
.hero-title { margin-bottom: 24px; overflow: visible; }
.hero-left { min-width: 0; overflow: visible; position: relative; z-index: 2; }
.hero-line { display: block; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.05; }
.hero-line-accent {
  display: inline-block;
  width: max-content;
}
.hero-line-accent .hero-typed-live {
  background: linear-gradient(110deg, var(--amber) 0%, var(--coral) 50%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-line-accent .hero-cursor {
  background: linear-gradient(110deg, var(--amber), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-line-tag {
  display: block;
  font-size: clamp(1.35rem, 3.2vw, 2.2rem);
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  margin-top: 6px;
}
.hero-typed-wrap {
  display: inline-grid;
  vertical-align: bottom;
  white-space: nowrap;
}
.hero-typed-placeholder,
.hero-typed-live {
  grid-area: 1 / 1;
  white-space: nowrap;
}
.hero-typed-placeholder {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}
.hero-typed-placeholder .hero-cursor { animation: none; opacity: 0; }
.hero-typed-live { display: inline; }
.hero-typed { display: inline; }
.hero-cursor {
  display: inline-block;
  margin-left: 3px;
  font-weight: 300;
  color: var(--amber);
  animation: cursorBlink 0.9s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-line-tag .hero-cursor { color: var(--teal); }
.hero-cursor.is-done { opacity: 0; animation: none; }
.hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-clients { display: flex; align-items: center; gap: 16px; }
.hero-clients-label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-avatars { display: flex; align-items: center; }
.hero-avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--bg);
  background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; margin-left: -10px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars-more { background: linear-gradient(135deg, var(--amber), var(--coral)) !important; color: var(--ink) !important; font-size: 0.68rem !important; }

.hero-stats-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
.hero-stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px; row-gap: 2px;
  align-items: center;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; min-height: 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hero-stat-card .stat-icon-wrap {
  grid-row: 1 / 3; width: 44px; height: 44px; border-radius: 12px;
  margin-bottom: 0; flex-shrink: 0;
}
.hero-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hero-stat-value {
  display: block; font-family: var(--font-mono); font-size: 1.65rem;
  font-weight: 600; line-height: 1.1; margin-bottom: 0;
}
.hero-stat-label {
  font-size: 0.78rem; color: var(--ink-soft); line-height: 1.3;
}

/* Marquee */
.marquee-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 24px 0; overflow: hidden; background: var(--bg-alt);
}
.marquee-track { display: flex; width: max-content; gap: 16px; animation: marquee 32s linear infinite; }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-mono); font-size: 0.88rem; color: var(--ink-soft); white-space: nowrap; }
.marquee-dot { color: var(--amber); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-head { max-width: 600px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.55); }

/* Services showcase */
.services-showcase { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }
.services-nav { display: flex; flex-direction: column; gap: 6px; }
.service-tab {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  background: transparent; border: 1px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; text-align: left; transition: all 0.35s var(--ease); width: 100%;
  font-family: var(--font-body);
}
.service-tab-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-muted); min-width: 28px; }
.service-tab-title { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); }
.service-tab.active, .service-tab:hover { background: #fff; border-color: var(--line); box-shadow: var(--shadow); }
.service-tab.active .service-tab-title, .service-tab:hover .service-tab-title { color: var(--ink); }
.service-tab.active .service-tab-num { color: var(--amber); }

.services-panel { position: relative; min-height: 320px; }
.service-detail {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(16px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 48px;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
.service-detail.active { opacity: 1; visibility: visible; transform: translateY(0); position: relative; }
.service-detail-icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--amber), var(--coral)); color: #fff; margin-bottom: 24px;
}
.service-detail-icon i { width: 26px; height: 26px; }
.service-detail-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-muted); display: block; margin-bottom: 12px; }
.service-detail h3 { font-size: 1.8rem; margin-bottom: 16px; }
.service-detail p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 28px; max-width: 520px; }
.service-detail-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.service-detail-tags span {
  font-family: var(--font-mono); font-size: 0.78rem; padding: 8px 14px; border-radius: 100px;
  border: 1px solid var(--line); background: var(--bg-alt);
}

/* Process — creative section */
.process-section {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #0a0b10 0%, #12141c 40%, #1a1520 70%, #12141c 100%);
  color: #fff;
}
.process-section .section-head h2 { color: #fff; }
.process-section .section-head p,
.process-sub { color: rgba(255,255,255,0.5); font-size: 1.05rem; margin-top: 12px; }

.process-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.process-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}
.process-orb-1 {
  width: 420px; height: 420px; top: -10%; left: -8%;
  background: radial-gradient(circle, rgba(255,182,39,0.22), transparent 70%);
}
.process-orb-2 {
  width: 360px; height: 360px; bottom: -15%; right: -5%;
  background: radial-gradient(circle, rgba(255,90,54,0.18), transparent 70%);
  animation-delay: -4s;
}
.process-orb-3 {
  width: 280px; height: 280px; top: 40%; left: 45%;
  background: radial-gradient(circle, rgba(12,132,121,0.15), transparent 70%);
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

.process-grid-pattern {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.6;
}
.process-vector {
  position: absolute; height: 80%; width: auto; opacity: 0.7;
  animation: vectorDrift 20s ease-in-out infinite;
}
.process-vector-left { left: 0; top: 10%; }
.process-vector-right { right: 0; top: 15%; animation-delay: -10s; }
@keyframes vectorDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.process-inner { position: relative; z-index: 2; }

.process-timeline { position: relative; padding-top: 0; }

.process-line {
  position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: rgba(255,255,255,0.08); border-radius: 100px; z-index: 1;
  transform: translateY(-50%);
}
.process-line-fill {
  height: 100%; width: 0%; border-radius: 100px;
  background: linear-gradient(90deg, var(--amber), var(--coral), var(--teal));
  transition: width 0.8s var(--ease);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 4px;
  position: relative; z-index: 2; align-items: stretch;
  padding-top: 28px;
}

.process-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 44px;
  position: relative;
  z-index: 4;
  color: var(--amber);
  pointer-events: none;
}
.process-connector-line {
  position: absolute;
  left: 2px; right: 18px;
  height: 2px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(255,182,39,0.15), rgba(255,182,39,0.7), var(--coral));
  box-shadow: 0 0 12px rgba(255,182,39,0.35);
  animation: connectorPulse 2.4s ease-in-out infinite;
}
.process-connector:nth-of-type(2) .process-connector-line { animation-delay: 0.2s; }
.process-connector:nth-of-type(4) .process-connector-line { animation-delay: 0.4s; }
.process-connector:nth-of-type(6) .process-connector-line { animation-delay: 0.6s; }

.process-connector-chevron {
  position: relative;
  z-index: 1;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,182,39,0.25), rgba(255,90,54,0.18));
  border: 1px solid rgba(255,182,39,0.45);
  box-shadow: 0 0 20px rgba(255,182,39,0.25), inset 0 0 12px rgba(255,182,39,0.08);
  animation: connectorBounce 2.4s ease-in-out infinite;
}
.process-connector:nth-of-type(2) .process-connector-chevron { animation-delay: 0.2s; }
.process-connector:nth-of-type(4) .process-connector-chevron { animation-delay: 0.4s; }
.process-connector:nth-of-type(6) .process-connector-chevron { animation-delay: 0.6s; }
.process-connector-chevron svg {
  width: 16px; height: 16px;
  filter: drop-shadow(0 0 4px rgba(255,182,39,0.5));
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.55; transform: scaleX(0.92); }
  50% { opacity: 1; transform: scaleX(1); }
}
@keyframes connectorBounce {
  0%, 100% { transform: translateX(0); box-shadow: 0 0 16px rgba(255,182,39,0.2), inset 0 0 12px rgba(255,182,39,0.08); }
  50% { transform: translateX(4px); box-shadow: 0 0 28px rgba(255,182,39,0.45), inset 0 0 12px rgba(255,182,39,0.12); }
}

.process-card {
  position: relative; padding: 36px 28px 32px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex; flex-direction: column; min-height: 268px; height: 100%;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.process-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(255,182,39,0.3), transparent 50%, rgba(12,132,121,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.process-card:hover {
  border-color: rgba(255,182,39,0.35);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 40px -10px rgba(255,182,39,0.15);
}
.process-card.is-active {
  border-color: rgba(255,182,39,0.45);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.45), 0 0 36px -8px rgba(255,182,39,0.2);
}
.process-card.is-active::before { opacity: 1; }
.process-card.is-done .process-node-dot,
.process-card.is-active .process-node-dot {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 12px rgba(255,182,39,0.6);
}
.process-card.is-active .process-node-dot { transform: scale(1.25); }
.process-card:hover::before { opacity: 1; }

.process-card[data-step="1"] .process-card-glow { background: radial-gradient(circle, rgba(255,182,39,0.15), transparent 70%); }
.process-card[data-step="2"] .process-card-glow { background: radial-gradient(circle, rgba(255,90,54,0.15), transparent 70%); }
.process-card[data-step="3"] .process-card-glow { background: radial-gradient(circle, rgba(12,132,121,0.15), transparent 70%); }
.process-card[data-step="4"] .process-card-glow { background: radial-gradient(circle, rgba(100,120,255,0.15), transparent 70%); }

.process-card-glow {
  position: absolute; width: 200px; height: 200px; top: -60px; right: -60px;
  border-radius: 50%; pointer-events: none; opacity: 0.8;
  transition: transform 0.5s var(--ease);
}
.process-card:hover .process-card-glow { transform: scale(1.3); }

.process-watermark {
  position: absolute; top: 12px; right: 16px;
  font-family: var(--font-display); font-size: 4rem; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.04); pointer-events: none; user-select: none;
  transition: color 0.4s;
}
.process-card:hover .process-watermark { color: rgba(255,182,39,0.08); }

.process-node {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px; z-index: 3;
}
.process-node-dot {
  display: block; width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg-dark); border: 2px solid rgba(255,255,255,0.2);
  margin: 2px auto; transition: all 0.4s var(--ease);
}
.process-card:hover .process-node-dot {
  background: var(--amber); border-color: var(--amber);
  box-shadow: 0 0 20px rgba(255,182,39,0.6);
  transform: scale(1.3);
}

.process-icon {
  width: 52px; height: 52px; border-radius: 16px; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255,182,39,0.2), rgba(255,90,54,0.1));
  color: var(--amber); display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,182,39,0.15);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.process-card:hover .process-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px -8px rgba(255,182,39,0.4);
}

.process-time {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px;
}
.process-card h3 {
  font-size: 1.35rem; color: #fff; margin-bottom: 10px;
  font-family: var(--font-display);
}
.process-card p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.65; flex: 1; }

.process-arrow {
  position: absolute; bottom: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); opacity: 0;
  transform: translate(-6px, 6px);
  transition: all 0.4s var(--ease);
}
.process-card:hover .process-arrow {
  opacity: 1; transform: translate(0, 0); color: var(--amber);
  background: rgba(255,182,39,0.12); border-color: rgba(255,182,39,0.3);
}

@media (max-width: 960px) {
  .process-line { display: none; }
  .process-node { display: none; }
  .process-connector { display: none; }
  .process-timeline { padding-top: 0; }
  .process-vector { display: none; }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 720px) {
  .process-watermark { font-size: 3rem; }
  .process-grid { grid-template-columns: 1fr; }
}

/* Featured projects */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.featured-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.featured-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.featured-type {
  font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--teal); background: rgba(12,132,121,0.08); padding: 5px 12px; border-radius: 100px;
}
.featured-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.featured-link:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.featured-link i { width: 16px; height: 16px; }
.featured-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.featured-domain { font-family: var(--font-mono); font-size: 0.82rem; color: var(--amber); margin-bottom: 14px; }
.featured-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.6; }
.featured-category { font-size: 0.78rem; color: var(--ink-muted); }

/* Mobile apps */
.apps-section {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #12141C 0%, #1a1d28 55%, #12141C 100%);
  color: #fff;
}
.apps-bg { position: absolute; inset: 0; pointer-events: none; }
.apps-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55;
}
.apps-orb-1 {
  width: 420px; height: 420px; top: -12%; left: -8%;
  background: radial-gradient(circle, rgba(12,132,121,0.35), transparent 70%);
}
.apps-orb-2 {
  width: 360px; height: 360px; bottom: -10%; right: -6%;
  background: radial-gradient(circle, rgba(255,182,39,0.22), transparent 70%);
}
.apps-inner { position: relative; z-index: 2; }
.apps-section .section-head .eyebrow { color: var(--amber); }
.apps-section .section-head h2 { color: #fff; }
.apps-section .section-head p { color: rgba(255,255,255,0.62); }

.apps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px;
}
.app-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: center;
  padding: 28px; border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
}
.app-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--app-accent) 45%, transparent);
  background: rgba(255,255,255,0.07);
}

.app-phone {
  width: 120px; margin: 0 auto;
  background: #0a0b10; border-radius: 22px; padding: 8px 7px 10px;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.app-phone-notch {
  width: 42px; height: 5px; border-radius: 100px;
  background: rgba(255,255,255,0.18); margin: 2px auto 8px;
}
.app-phone-screen {
  aspect-ratio: 9/16; border-radius: 12px; overflow: hidden;
  background: linear-gradient(160deg, var(--app-accent), #1a1d28);
}
.app-phone-screen img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.92;
}

.app-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.app-plat {
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 100px;
}
.app-plat-android { background: rgba(61,220,132,0.15); color: #3ddc84; }
.app-plat-ios { background: rgba(255,255,255,0.1); color: #fff; }

.app-card h3 { font-size: 1.35rem; margin-bottom: 4px; color: #fff; }
.app-brand { font-family: var(--font-mono); font-size: 0.8rem; color: var(--app-accent); margin-bottom: 12px; }
.app-desc { font-size: 0.92rem; color: rgba(255,255,255,0.62); line-height: 1.6; margin-bottom: 18px; }
.app-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.app-category { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.app-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: #fff;
  transition: color 0.3s;
}
.app-link:hover { color: var(--app-accent); }

@media (max-width: 900px) {
  .apps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .app-card { grid-template-columns: 1fr; text-align: center; }
  .app-platforms, .app-footer { justify-content: center; }
  .app-phone { width: 110px; }
}

/* Clients — directory layout */
.clients-section {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.clients-bg { position: absolute; inset: 0; pointer-events: none; }
.clients-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
}
.clients-orb-1 {
  width: 360px; height: 360px; top: -8%; right: -5%;
  background: radial-gradient(circle, rgba(12,132,121,0.18), transparent 70%);
}
.clients-orb-2 {
  width: 280px; height: 280px; bottom: 5%; left: -4%;
  background: radial-gradient(circle, rgba(255,182,39,0.15), transparent 70%);
}
.clients-inner { position: relative; z-index: 2; }

.clients-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap; margin-bottom: 40px;
}
.clients-header-text { max-width: 560px; }
.clients-header-text h2 { margin-bottom: 10px; }
.clients-header-text p { color: var(--ink-soft); }

.clients-header-stats {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.clients-stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 22px; min-width: 120px; text-align: center;
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.06);
}
.clients-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.6rem;
  color: var(--ink); line-height: 1.1; margin-bottom: 4px;
}
.clients-stat span { font-size: 0.78rem; color: var(--ink-muted); }

.clients-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start;
}

.clients-sidebar {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: 0 8px 32px -12px rgba(0,0,0,0.08);
}
.clients-search {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg);
  margin-bottom: 16px;
}
.clients-search input {
  border: none; outline: none; width: 100%;
  font-family: var(--font-body); font-size: 0.88rem; background: transparent;
}
.clients-filters {
  display: flex; flex-direction: column; gap: 6px;
}
.clients-filter {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; padding: 10px 12px; border-radius: 10px;
  border: 1px solid transparent; background: transparent;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft);
  cursor: pointer; transition: all 0.25s var(--ease); text-align: left;
}
.clients-filter em {
  font-style: normal; font-size: 0.72rem;
  padding: 2px 8px; border-radius: 100px;
  background: var(--bg-alt); color: var(--ink-muted);
}
.clients-filter:hover {
  background: var(--bg-alt); color: var(--ink);
}
.clients-filter.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.clients-filter.active em {
  background: rgba(255,255,255,0.15); color: #fff;
}

.clients-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 32px -12px rgba(0,0,0,0.08);
}
.clients-panel-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.clients-panel-label {
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted);
}
.client-count {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--teal); font-weight: 500;
}

.clients-list {
  max-height: 620px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.clients-list::-webkit-scrollbar { width: 6px; }
.clients-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }

.client-row {
  display: grid;
  grid-template-columns: 36px 44px 1fr auto 40px;
  align-items: center; gap: 16px;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.client-row:last-child { border-bottom: none; }
.client-row:hover {
  background: rgba(255,182,39,0.06);
  padding-left: 26px;
}
.client-row.hidden { display: none; }

.client-row-num {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-muted);
}
.client-row-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--bg-alt); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.client-row:hover .client-row-icon {
  transform: scale(1.08); background: rgba(12,132,121,0.12);
}
.client-row-main {
  display: flex; flex-direction: column; gap: 3px; min-width: 0;
}
.client-row-main strong {
  font-size: 0.95rem; font-weight: 700; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.client-row-main small {
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.client-row-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.client-type-badge {
  font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--teal);
  background: rgba(12,132,121,0.08); padding: 4px 8px; border-radius: 100px; white-space: nowrap;
}
.client-sector { font-size: 0.72rem; color: var(--ink-muted); }
.client-row-action {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted); transition: all 0.3s var(--ease);
}
.client-row:hover .client-row-action {
  background: var(--ink); border-color: var(--ink); color: #fff;
}
.client-private {
  font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--ink-muted);
}

/* Legacy filter bar (services etc.) */
.filter-bar { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  font-family: var(--font-mono); font-size: 0.78rem; padding: 10px 16px; border-radius: 100px;
  border: 1px solid var(--line); background: #fff; cursor: pointer; transition: all 0.3s var(--ease);
  color: var(--ink-soft);
}
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-search {
  display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: #fff; min-width: 280px;
}
.filter-search i { width: 16px; height: 16px; color: var(--ink-muted); flex-shrink: 0; }
.filter-search input {
  border: none; outline: none; font-family: var(--font-body); font-size: 0.9rem; width: 100%; background: transparent;
}

/* Glow cards */
.glow-card { position: relative; overflow: hidden; }
.glow-card::before {
  content: ''; position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,182,39,0.3), transparent 70%);
  left: var(--x, 50%); top: var(--y, 50%); transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.3s ease; pointer-events: none; z-index: 1;
}
.glow-card:hover::before { opacity: 1; }

/* Tech stack — dark tabbed showcase */
.tech-section {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #0a0b10 0%, #12141c 45%, #151220 100%);
  color: #fff;
}
.tech-section .section-head h2 { color: #fff; }
.tech-section .tech-sub { color: rgba(255,255,255,0.5); font-size: 1.05rem; margin-top: 12px; }

.tech-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.tech-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: orbFloat 14s ease-in-out infinite;
}
.tech-orb-1 {
  width: 400px; height: 400px; top: -12%; right: -6%;
  background: radial-gradient(circle, rgba(255,182,39,0.2), transparent 70%);
}
.tech-orb-2 {
  width: 320px; height: 320px; bottom: -10%; left: -4%;
  background: radial-gradient(circle, rgba(12,132,121,0.18), transparent 70%);
  animation-delay: -5s;
}
.tech-orb-3 {
  width: 260px; height: 260px; top: 50%; left: 40%;
  background: radial-gradient(circle, rgba(107,92,231,0.15), transparent 70%);
  animation-delay: -9s;
}
.tech-grid-pattern {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55;
}

.tech-inner { position: relative; z-index: 2; }

.tech-showcase { margin-top: 48px; opacity: 1; transform: none; }

.tech-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
}
.tech-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.65);
  font-family: var(--font-mono); font-size: 0.82rem;
  cursor: pointer; transition: all 0.35s var(--ease);
}
.tech-tab-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: color-mix(in srgb, var(--cat-color) 15%, transparent);
  color: var(--cat-color);
  display: flex; align-items: center; justify-content: center;
}
.tech-tab-count {
  font-size: 0.72rem; padding: 2px 8px; border-radius: 100px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
}
.tech-tab:hover {
  border-color: color-mix(in srgb, var(--cat-color) 40%, transparent);
  color: #fff;
}
.tech-tab.active {
  background: color-mix(in srgb, var(--cat-color) 18%, rgba(255,255,255,0.06));
  border-color: color-mix(in srgb, var(--cat-color) 50%, transparent);
  color: #fff;
  box-shadow: 0 8px 32px -8px color-mix(in srgb, var(--cat-color) 35%, transparent);
}
.tech-tab.active .tech-tab-count {
  background: var(--cat-color); color: var(--ink);
}

.tech-panels { position: relative; min-height: 320px; }
.tech-panel {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px; backdrop-filter: blur(12px);
}
.tech-panel.active { display: block; }

.tech-panel-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.tech-panel-icon {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: color-mix(in srgb, var(--cat-color) 18%, transparent);
  color: var(--cat-color);
  border: 1px solid color-mix(in srgb, var(--cat-color) 30%, transparent);
  display: flex; align-items: center; justify-content: center;
}
.tech-panel-head h3 {
  font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.tech-panel-head p { font-size: 0.88rem; color: rgba(255,255,255,0.45); }
.tech-panel-abbr {
  margin-left: auto; font-family: var(--font-display);
  font-size: 4rem; font-weight: 800; line-height: 1;
  color: color-mix(in srgb, var(--cat-color) 12%, transparent);
  user-select: none;
}

.tech-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.tech-tile {
  position: relative; overflow: hidden;
  padding: 18px 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
  cursor: default;
}
.tech-tile::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--cat-color); opacity: 0; transition: opacity 0.35s;
}
.tech-tile:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--cat-color) 40%, transparent);
  background: color-mix(in srgb, var(--cat-color) 8%, rgba(255,255,255,0.04));
}
.tech-tile:hover::before { opacity: 1; }
.tech-tile-num {
  display: block; font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--cat-color); opacity: 0.7; margin-bottom: 8px;
}
.tech-tile-name {
  display: block; font-family: var(--font-mono); font-size: 0.92rem;
  font-weight: 500; color: #fff; line-height: 1.3;
}

.tech-marquees { margin-top: 48px; display: flex; flex-direction: column; gap: 14px; }
.tech-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.tech-marquee-track {
  display: flex; width: max-content; gap: 20px; align-items: center;
  animation: techMarqueeLeft 40s linear infinite;
}
.tech-marquee--right .tech-marquee-track { animation-name: techMarqueeRight; }
.tech-marquee:hover .tech-marquee-track { animation-play-state: paused; }
.tech-marquee-item {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: rgba(255,255,255,0.25); white-space: nowrap;
}
.tech-marquee-sep { color: var(--amber); opacity: 0.4; font-size: 0.7rem; }
@keyframes techMarqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes techMarqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 960px) {
  .tech-panel { padding: 22px; }
  .tech-panel-abbr { display: none; }
  .tech-tiles { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .tech-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .tech-tab { flex-shrink: 0; }
}

@media (max-width: 600px) {
  .tech-tiles { grid-template-columns: repeat(2, 1fr); }
  .tech-tab-label { display: none; }
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card-popular { border-color: var(--ink); background: var(--ink); color: #fff; }
.price-card-popular .price-features li, .price-card-popular .price-value span { color: rgba(255,255,255,0.65); }
.price-badge {
  position: absolute; top: -13px; right: 24px;
  background: linear-gradient(120deg, var(--amber), var(--coral));
  color: var(--ink); font-family: var(--font-mono); font-size: 0.68rem;
  padding: 5px 12px; border-radius: 100px; font-weight: 600;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.price-tagline { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.45; }
.price-card-popular .price-tagline { color: rgba(255,255,255,0.6); }
.price-quote {
  font-family: var(--font-mono); font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
}
.price-card-popular .price-quote { color: var(--amber); }
.price-value { font-family: var(--font-mono); font-size: 2rem; margin-bottom: 22px; }
.price-value span { font-size: 0.85rem; color: var(--ink-soft); }
.price-features { flex: 1; margin-bottom: 26px; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; padding: 7px 0; color: var(--ink-soft); }
.price-features li i { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.price-card-popular .price-features li i { color: var(--amber); }

/* Testimonials — horizontal scroll band */
.testimonials-band { overflow: hidden; }
.testimonials-band-head { margin-bottom: 48px; }
.testimonials-band-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 14px; }
.testimonials-band-title-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.testimonials-band-nav { display: flex; gap: 10px; flex-shrink: 0; }
.testimonial-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.04);
  color: #fff; font-size: 1.1rem; cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-arrow:hover {
  background: rgba(255, 182, 39, 0.15); border-color: var(--amber); transform: translateY(-2px);
}
.testimonials-scroller {
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonials-scroller::-webkit-scrollbar { display: none; }
.testimonials-track {
  display: flex; gap: 24px; width: max-content;
  padding: 4px max(28px, calc((100vw - var(--container)) / 2 + 28px)) 8px;
}
.testimonial-panel {
  flex: 0 0 min(540px, calc(100vw - 56px));
  scroll-snap-align: start;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column; min-height: 300px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.testimonial-panel:hover { border-color: rgba(255, 182, 39, 0.35); background: rgba(255,255,255,0.06); }
.testimonial-panel-num {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--amber); margin-bottom: 22px;
}
.testimonial-panel-quote {
  font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.7;
  color: rgba(255,255,255,0.88); margin: 0 0 28px; flex: 1;
}
.testimonial-panel-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line-dark); padding-top: 22px; margin-top: auto;
}
.testimonials-dots {
  display: flex; justify-content: center; gap: 10px; margin-top: 32px;
}
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  border: none; background: rgba(255,255,255,0.22); cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), width 0.3s var(--ease);
}
.testimonial-dot.is-active {
  width: 28px; border-radius: 100px; background: linear-gradient(90deg, var(--amber), var(--coral));
}
.testimonials-band .testimonial-name { color: #fff; }
.testimonials-band .testimonial-role { color: rgba(255,255,255,0.5); }
.testimonials-band .testimonial-avatar { border-color: rgba(255,255,255,0.15); }

/* Footer */
.site-footer { background: var(--bg-dark); color: #fff; padding: 100px 0 30px; }
.footer-cta { text-align: center; max-width: 680px; margin: 0 auto 90px; }
.footer-cta-title { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: 16px; }
.footer-cta-sub { color: rgba(255,255,255,0.55); margin-bottom: 32px; font-size: 1.05rem; }
.footer-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.site-footer .btn-outline { border-color: rgba(255,255,255,0.25); color: #fff; }
.site-footer .btn-solid { background: linear-gradient(120deg, var(--amber), var(--coral)); color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: rgba(255,255,255,0.5); margin: 14px 0 20px; max-width: 300px; font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.footer-social a:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.footer-social i { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 500; }
.footer-col a, .footer-address { display: block; color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 10px; transition: color 0.25s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { padding-top: 26px; text-align: center; color: rgba(255,255,255,0.35); font-size: 0.85rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); }

/* Responsive */
@media (max-width: 1100px) {
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-layout { grid-template-columns: 1fr; }
  .clients-sidebar { position: static; }
  .clients-filters {
    flex-direction: row; flex-wrap: wrap; max-height: none;
  }
  .clients-filter { width: auto; flex: 1 1 calc(50% - 6px); }
  .clients-list { max-height: 520px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-visual-wrap { max-height: 300px; }
  .services-showcase { grid-template-columns: 1fr; }
  .services-nav { flex-direction: row; flex-wrap: wrap; }
  .service-tab { flex: 1 1 calc(50% - 6px); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-connector { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .client-row {
    grid-template-columns: 32px 40px 1fr 40px;
    gap: 12px; padding: 14px 16px;
  }
  .client-row-meta { display: none; }
}
@media (max-width: 720px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 140px 0 80px; min-height: auto; }
  .section { padding: 80px 0; }
  .service-tab { flex: 1 1 100%; }
  .service-detail { padding: 28px; }
  .process-grid, .featured-grid, .pricing-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .testimonials-band-title-row { flex-direction: column; align-items: flex-start; }
  .clients-header { flex-direction: column; align-items: flex-start; }
  .clients-header-stats { width: 100%; }
  .clients-stat { flex: 1; min-width: 0; }
  .client-row { grid-template-columns: 28px 1fr 36px; }
  .client-row-icon { display: none; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-search { min-width: 100%; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }

  .main-nav.open {
    display: flex; flex-direction: column; gap: 0; position: fixed; top: 80px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px 28px 24px; box-shadow: var(--shadow);
  }
  .main-nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =========================================================
   IMAGES & VISUAL ENHANCEMENTS
   ========================================================= */
.hero-visual-wrap {
  position: relative; width: 100%;
  aspect-ratio: 16 / 10; max-height: 360px;
  border-radius: var(--radius-lg); overflow: visible;
}
.hero-visual-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  animation: heroImgFloat 6s ease-in-out infinite;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 18px; font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  box-shadow: var(--shadow); white-space: nowrap; z-index: 2;
}
.float-card-1 { top: 10%; right: 4%; animation: floatCard 4s ease-in-out infinite; }
.float-card-2 { bottom: 12%; left: 4%; animation: floatCard 4s ease-in-out infinite 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.service-detail { padding: 0; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.service-detail-media { overflow: hidden; min-height: 360px; }
.service-detail-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-detail:hover .service-detail-media img { transform: scale(1.05); }
.service-detail-body { padding: 40px; }

.service-tab-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,182,39,0.15), rgba(255,90,54,0.12));
  display: flex; align-items: center; justify-content: center; color: var(--coral);
}

.featured-card { padding: 0; }
.featured-media {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.featured-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.featured-card:hover .featured-media img { transform: scale(1.08); }
.featured-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(18,20,28,0.5));
  opacity: 0; transition: opacity 0.4s;
}
.featured-card:hover .featured-media-overlay { opacity: 1; }
.featured-card-body { padding: 24px; }

.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; margin-bottom: 20px;
  border: 2px solid var(--line);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.stat-icon-wrap {
  width: 40px; height: 40px; border-radius: 12px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  color: #fff; display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   ANIMATED ICONS — micro interactions
   ========================================================= */
.icon-svg { width: 22px; height: 22px; display: block; }
.icon-xs .icon-svg, .icon-xs.icon-svg { width: 16px; height: 16px; }
.icon-sm .icon-svg, .icon-sm.icon-svg { width: 18px; height: 18px; }

.icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease);
}

.icon-pulse { animation: iconPulse 2.5s ease-in-out infinite; }
@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

.icon-bounce { animation: iconBounce 2s ease-in-out infinite; }
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.icon-float { animation: iconFloat 3s ease-in-out infinite; animation-delay: var(--delay, 0s); }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.icon-wiggle:hover { animation: iconWiggle 0.5s ease; }
@keyframes iconWiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

.icon-spin-hover:hover { animation: iconSpin 0.6s var(--ease); }
@keyframes iconSpin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.icon-slide { transition: transform 0.35s var(--ease); }
.btn:hover .icon-slide { transform: translate(3px, -3px); }

.icon-check .icon-svg { color: var(--teal); transition: transform 0.3s var(--ease); }
.price-card:hover .icon-check .icon-svg { transform: scale(1.2); }

.btn-glow {
  position: relative; overflow: hidden;
}
.btn-glow::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: transform 0.6s;
}
.btn-glow:hover::after { transform: translateX(100%); }

.social-icon {
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.social-icon:hover { transform: translateY(-4px) scale(1.08); }
.social-icon .icon-svg { width: 16px; height: 16px; }

.featured-link { color: var(--ink); }
.featured-link:hover { transform: rotate(45deg); }

@media (max-width: 960px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-media { min-height: 220px; }
  .float-card-1, .float-card-2 { display: none; }
}
