/* ========================================
   SIGNJOY — Premium Design Agency
   Stylesheet
   ======================================== */

/* CSS Reset & Variables */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --c-bg: #08090a;
  --c-bg-2: #0d0e10;
  --c-bg-3: #111317;
  --c-surface: #16181d;
  --c-surface-2: #1d2026;
  --c-border: rgba(255,255,255,0.07);
  --c-border-2: rgba(255,255,255,0.12);

  --c-text: #e8eaf0;
  --c-text-muted: #7a7e8a;
  --c-text-subtle: #4a4e5a;

  --c-accent: #c8ff00;
  --c-accent-2: #a8e600;
  --c-accent-dim: rgba(200,255,0,0.15);
  --c-accent-glow: rgba(200,255,0,0.3);

  --c-white: #ffffff;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --max-w: 1280px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

html {
  font-size: 16px;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body.loading {
  overflow: hidden;
}

::selection {
  background: var(--c-accent);
  color: #000;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ========================================
   CUSTOM CURSOR
   ======================================== */
#cursor,
#cursor-follower {
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

#cursor {
  width: 8px;
  height: 8px;
  background: var(--c-white);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), opacity 0.2s;
}

#cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: transform 0.12s var(--ease-out), opacity 0.2s;
}

body.cursor-hover #cursor {
  width: 48px;
  height: 48px;
  background: var(--c-accent);
}
body.cursor-hover #cursor-follower {
  opacity: 0;
}

@media (max-width: 768px) {
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

/* ========================================
   PAGE LOADER
   ======================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.loader-logo span {
  color: var(--c-accent);
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--c-surface-2);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--c-accent);
  border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}

.loader-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  opacity: 0;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-header.centered {
  margin: 0 auto clamp(3rem, 5vw, 5rem);
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.section-tag.light {
  color: rgba(200,255,0,0.7);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: normal;
  color: var(--c-accent);
  position: relative;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--c-accent);
  color: #000;
}

.btn-primary:hover {
  background: var(--c-accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--c-accent-glow);
}

.btn-primary .btn-hover-bg {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.btn-ghost {
  color: var(--c-text-muted);
  background: transparent;
  border: 1px solid var(--c-border-2);
  padding: 14px 24px;
}

.btn-ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--c-white);
  color: #000;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(8,9,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--c-accent); }

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--c-text);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: #000;
  background: var(--c-accent);
  padding: 9px 20px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--c-accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--c-accent-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-hamburger.active span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.active span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: 1.5rem var(--gutter) 2rem;
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mob-link {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s;
}

.mob-link:hover { color: var(--c-text); }

.mob-cta {
  margin-top: 1rem;
  color: var(--c-accent) !important;
  font-weight: 600;
  border: none !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 120px var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,255,0,0.08) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100,150,255,0.06) 0%, transparent 70%);
  bottom: 0;
  right: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  opacity: 0;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.line {
  display: block;
  transform: translateY(100%);
}

.accent-line {
  color: var(--c-accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 3.5rem;
  opacity: 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1;
}

.stat > span:nth-child(2) {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--c-accent);
  line-height: 1;
  display: inline;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--c-border-2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 500px;
  opacity: 0;
}

.hero-card {
  position: absolute;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--c-text);
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
}

.hero-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.card-icon {
  color: var(--c-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.card-1 { top: 40px; right: 10%; }
.card-2 { top: 50%; right: 2%; transform: translateY(-50%); }
.card-3 { bottom: 60px; right: 15%; }

.hero-mockup {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 320px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-2);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.mockup-screen {
  background: var(--c-bg-3);
  border-radius: var(--radius-md);
  padding: 16px;
}

.mock-bar {
  height: 6px;
  background: var(--c-surface-2);
  border-radius: 4px;
  margin-bottom: 14px;
  width: 40%;
}

.mock-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mock-img {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--c-accent-dim), var(--c-surface-2));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.mock-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.mock-line {
  height: 8px;
  background: var(--c-surface-2);
  border-radius: 4px;
}

.mock-line.w-80 { width: 80%; }
.mock-line.w-60 { width: 60%; }
.mock-line.w-70 { width: 70%; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-subtle);
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   TICKER / MARQUEE
   ======================================== */
.ticker-section {
  overflow: hidden;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg-2);
  padding: 16px 0;
}

.ticker-track {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: ticker 25s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}

.ticker-inner:hover { animation-play-state: paused; }

.ticker-sep {
  color: var(--c-accent);
  font-size: 0.7rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--c-border);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-card {
  background: var(--c-bg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  cursor: none;
  transition: background 0.3s var(--ease-out);
  overflow: hidden;
}

.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--c-text-subtle);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-accent-dim);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.service-card:hover::after { opacity: 1; }

.service-icon {
  margin-bottom: 1.5rem;
  color: var(--c-accent);
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-arrow {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--c-accent);
  font-size: 1.1rem;
  transform: translateX(0);
  transition: transform 0.3s var(--ease-out);
  opacity: 0;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ========================================
   WORK / PORTFOLIO
   ======================================== */
.work-section {
  background: var(--c-bg);
  padding-bottom: 15rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(1rem, 2vw, 2.5rem);
  row-gap: 12rem;
  margin-top: 6rem;
}

.work-item {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.work-large {
  grid-column: 1 / 9;
}

.work-medium {
  grid-column: 8 / 13;
  padding-top: 15rem;
}

.work-small {
  grid-column: 2 / 7;
  margin-top: -5rem;
}mv index_1.html home.html

.work-wide {
  grid-column: 6 / 13;
  margin-top: -4rem;
}

.work-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--c-surface);
}

.work-large .work-img {
  aspect-ratio: 0.85;
}

.work-medium .work-img {
  aspect-ratio: 0.75;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200,255,0,0.15), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.work-item:hover .work-overlay { opacity: 1; }

.work-overlay-inner {
  width: 100px;
  height: 100px;
  background: var(--c-accent);
  color: #000;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: scale(0.8);
  transition: transform 0.5s var(--ease-out);
}

.work-item:hover .work-overlay-inner { transform: translateY(0); }

/* Work Placeholders */
.work-placeholder {
  width: 110%;
  height: 130%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: absolute;
  top: -15%;
  left: -5%;
}

.wp-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  position: absolute;
  top: 30px;
  left: 30px;
}

.wp-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}
.wp-bar.w70 { width: 70%; }
.wp-bar.w50 { width: 50%; }

.wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 120px;
}

.wpg-item {
  height: 50px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
}

.wp-phone {
  width: 60px;
  height: 110px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
}

.wp-wide {
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.wp-nav {
  width: 100%;
  height: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 20px;
}

.wp-hero-text {
  width: 60%;
}

.work-info {
  opacity: 0; /* Ensure JS handles the fade in */
  padding-top: 2.5rem;
}

.work-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.work-cat {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
}

.work-year {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--c-text-subtle);
  font-weight: 500;
}

.work-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}

.work-info p {
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

.work-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.about-bg-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-2), transparent);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.about-left {
  position: sticky;
  top: 100px;
}

.about-lead {
  font-size: 1.2rem;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-body {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.value-icon {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--c-accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-white);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
  background: var(--c-bg-2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-border);
  border-right: none;
  position: relative;
  transition: background 0.3s;
}

.process-step:last-child {
  border-right: 1px solid var(--c-border);
}

.process-step:hover {
  background: var(--c-surface);
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  color: var(--c-surface-2);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.process-step:hover .step-number {
  color: var(--c-accent);
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-section {
  background: var(--c-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: var(--c-border-2);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.featured-testimonial {
  background: var(--c-surface);
  border-color: var(--c-border-2);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--c-accent);
  opacity: 0.3;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: #000;
}

.av-1 { background: var(--c-accent); }
.av-2 { background: #60a5fa; }
.av-3 { background: #f472b6; }

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,255,0,0.07) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(40px);
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--c-white);
  margin: 1.25rem 0;
}

.cta-title em {
  font-style: normal;
  color: var(--c-accent);
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.82rem;
  color: var(--c-text-subtle);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: all 0.3s var(--ease-out);
}

.footer-socials a:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-subtle);
  margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--c-text); }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  font-size: 0.8rem;
  color: var(--c-text-subtle);
}

/* ========================================
   REVEAL ANIMATIONS (pre-scroll)
   ======================================== */
.reveal-title {
  opacity: 0;
  transform: translateY(30px);
}

.service-card,
.work-item,
.testimonial-card,
.process-step,
.value-item {
  opacity: 0;
  transform: translateY(24px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  #hero {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }
  .hero-visual { display: none; }
  .hero-scroll-indicator { left: var(--gutter); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-large {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .work-wide {
    grid-column: 1 / 3;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:nth-child(2) {
    border-right: 1px solid var(--c-border);
  }
  .process-step:nth-child(3) {
    border-top: none;
  }
  .process-step:nth-child(4) {
    border-right: 1px solid var(--c-border);
    border-top: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-testimonial {
    grid-column: 1 / 3;
  }
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #hero {
    padding: 100px var(--gutter) 3rem;
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .stat-divider { display: none; }

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

  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-large, .work-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .process-steps { grid-template-columns: 1fr; }
  .process-step {
    border: 1px solid var(--c-border);
    border-bottom: none;
  }
  .process-step:last-child { border-bottom: 1px solid var(--c-border); }

  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-testimonial { grid-column: auto; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }

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

  .cta-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .footer-links { grid-template-columns: 1fr; }
}
