/* ================================================
   StratifyOne — Apple-tier Premium
   Design principles: restraint, whitespace, confidence
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --gold-1: #f8d08a;
  --gold-2: #c9a355;
  --gold-3: #8d5939;

  --black: #050505;
  --surface: #0a0a0a;
  --surface-raised: #111111;
  --surface-hover: #161616;
  --divider: rgba(255, 255, 255, 0.06);
  --divider-strong: rgba(255, 255, 255, 0.1);

  --white: #f5f5f7;
  --gray-1: #86868b;
  --gray-2: #6e6e73;
  --gray-3: #424245;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@keyframes safeReveal { to { opacity: 1; } }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  animation: safeReveal 0.8s 4s var(--ease) forwards;
}

body.loaded {
  opacity: 1;
  animation: none;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

::selection {
  background: rgba(200, 163, 85, 0.3);
  color: var(--white);
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

p {
  color: var(--gray-1);
  line-height: 1.65;
  font-weight: 400;
}

.text-lg {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  line-height: 1.6;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline;
}

.hero h1 .gold-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), transparent);
  opacity: 0;
  animation: underlineFade 1.5s 1.8s var(--ease) forwards;
}

@keyframes underlineFade {
  to { opacity: 0.4; }
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

/* ===== Layout ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
  scroll-margin-top: 20px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-header p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 163, 85, 0.15), var(--divider-strong), rgba(200, 163, 85, 0.15), transparent);
  border: none;
  margin: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 12px;
  border: none;
  padding: 0.875rem 2rem;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on gold buttons */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: none;
  animation: btnShimmer 4s 2s ease-in-out infinite;
}

@keyframes btnShimmer {
  0%, 100% { left: -100%; }
  40% { left: 150%; }
  41% { left: -100%; }
}

.btn-gold:hover {
  box-shadow: 0 0 0 0 transparent, 0 4px 32px rgba(200, 163, 85, 0.4), 0 0 80px rgba(200, 163, 85, 0.12);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-1);
  border: 1px solid var(--divider-strong);
}

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-text {
  background: none;
  border: none;
  color: var(--gold-2);
  padding: 0;
  font-weight: 500;
}

.btn-text:hover {
  color: var(--gold-1);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--divider);
}

.nav-logo svg {
  height: 26px;
  width: auto;
  display: block;
  transition: filter 0.4s var(--ease);
}

.nav-logo:hover svg {
  filter: drop-shadow(0 0 12px rgba(200, 163, 85, 0.3));
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-center a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-1);
  transition: color 0.3s var(--ease);
  letter-spacing: -0.01em;
}

.nav-home {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-home:hover {
  opacity: 1;
}
.nav-home svg { display: block; }

.nav-center a:hover {
  color: var(--gold-1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-right .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  position: relative;
}

.mobile-toggle span {
  position: absolute;
  left: 2px;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  border-radius: 1px;
}

.mobile-toggle span:nth-child(1) { top: 8px; }
.mobile-toggle span:nth-child(2) { top: 14px; }
.mobile-toggle span:nth-child(3) { top: 20px; }

/* Mobile menu — right-side drawer */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 80vw;
  background: var(--surface);
  border-right: 1px solid var(--divider);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--divider);
}

.mobile-menu-logo svg {
  height: 18px;
  width: auto;
  display: block;
}

.mobile-close {
  background: none;
  border: 1px solid var(--divider-strong);
  color: var(--gray-2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.mobile-close:hover {
  border-color: rgba(200, 163, 85, 0.3);
  color: var(--white);
}

.mobile-close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  overflow-y: auto;
}

.mobile-menu-links a {
  display: block;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-1);
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.mobile-menu-links a:hover {
  color: var(--gold-1);
  background: rgba(200, 163, 85, 0.04);
}

.mobile-home {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
}
.mobile-home svg { display: block; flex-shrink: 0; width: 15px; height: 15px; }

.mobile-menu-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--divider);
  flex-shrink: 0;
}

.mobile-menu-footer .btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.8125rem;
  margin-bottom: 0.625rem;
}

.mobile-menu-footer .btn:last-child {
  margin-bottom: 0;
}

.mobile-menu-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--divider);
}

.mobile-menu-social a {
  color: var(--gray-3);
  transition: color 0.3s var(--ease);
}

.mobile-menu-social a:hover {
  color: var(--gold-1);
}

.mobile-menu-social svg {
  width: 16px;
  height: 16px;
}

/* Solutions dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.8125rem; font-weight: 400; color: var(--gray-1);
  letter-spacing: -0.01em; cursor: pointer;
  transition: color 0.3s var(--ease);
  background: none; border: none; padding: 0;
  font-family: var(--font-body);
}
.nav-dropdown-trigger:hover { color: var(--gold-1); }
.nav-dropdown-trigger svg {
  width: 10px; height: 10px; stroke: currentColor; stroke-width: 2;
  transition: transform 0.3s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 16px;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 220px; padding: 0.5rem;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(200, 163, 85, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 163, 85, 0.04);
  display: none; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(6px);
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block; opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 208, 138, 0.2), transparent);
  border-radius: 14px 14px 0 0;
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: 10px;
  font-size: 0.8125rem; color: var(--gray-1);
  transition: all 0.2s var(--ease);
}
.nav-dropdown-menu a:hover {
  color: var(--white); background: rgba(200, 163, 85, 0.06);
}
.nav-dropdown-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(200, 163, 85, 0.08);
  border: 1px solid rgba(200, 163, 85, 0.1);
}
.nav-dropdown-icon svg { width: 16px; height: 16px; stroke: var(--gold-1); stroke-width: 1.5; }
.nav-dropdown-text { display: flex; flex-direction: column; }
.nav-dropdown-label { font-weight: 500; color: inherit; line-height: 1.3; }
.nav-dropdown-desc { font-size: 0.6875rem; color: var(--gray-3); font-weight: 400; line-height: 1.3; margin-top: 0.125rem; }
.nav-dropdown-divider { height: 1px; background: var(--divider); margin: 0.375rem 0.5rem; }
.mobile-menu-section-label {
  padding: 1.25rem 1.75rem 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  font-weight: 600;
  border-top: 1px solid var(--divider);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Interactive cosmos canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 2s var(--ease);
}

body.loaded .hero-canvas {
  opacity: 1;
}

/* Animated aurora orbs */
.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-aurora .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: auroraFade 2s var(--ease) forwards;
}

.hero-aurora .orb-1 {
  width: 900px;
  height: 900px;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(248, 208, 138, 0.06), rgba(200, 163, 85, 0.02) 50%, transparent 70%);
  animation: orbFloat1 25s ease-in-out infinite, auroraFade 3s var(--ease) forwards;
}

.hero-aurora .orb-2 {
  width: 700px;
  height: 700px;
  bottom: -20%;
  right: -15%;
  background: radial-gradient(circle, rgba(141, 89, 57, 0.05), rgba(80, 50, 30, 0.02) 50%, transparent 70%);
  animation: orbFloat2 30s ease-in-out infinite, auroraFade 3s 0.8s var(--ease) forwards;
}

.hero-aurora .orb-3 {
  width: 600px;
  height: 600px;
  top: 40%;
  left: -10%;
  background: radial-gradient(circle, rgba(200, 163, 85, 0.04), rgba(141, 89, 57, 0.015) 50%, transparent 70%);
  animation: orbFloat3 22s ease-in-out infinite, auroraFade 3s 1.5s var(--ease) forwards;
}

@keyframes auroraFade {
  to { opacity: 1; }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  33% { transform: translateX(-45%) translateY(20px); }
  66% { transform: translateX(-55%) translateY(-15px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(-20px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(25px) translateX(15px); }
}

/* Floating astronaut — 3D container */
.hero-astronaut {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s var(--ease);
}

.hero-astronaut.loaded {
  opacity: 0.55;
}

.hero-astronaut-3d {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-astronaut-3d canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Data particle container */
.hero-astronaut-particles {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content .section-eyebrow {
  opacity: 0;
  animation: heroTextIn 1s 0.3s var(--ease) forwards;
}

.hero-content h1 {
  opacity: 0;
  animation: heroTextIn 1s 0.5s var(--ease) forwards;
}

.hero-content > p {
  opacity: 0;
  animation: heroTextIn 1s 0.7s var(--ease) forwards;
}

.hero-content .hero-actions {
  opacity: 0;
  animation: heroTextIn 1s 0.9s var(--ease) forwards;
}

.hero-content .hero-metrics {
  opacity: 0;
  animation: heroTextIn 1s 1.1s var(--ease) forwards;
}

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

.hero h1 {
  margin-bottom: 1.75rem;
  text-shadow: 0 0 80px rgba(200, 163, 85, 0.08);
}

.hero p {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.metric {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--white), var(--gold-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--gray-2);
  margin-top: 0.5rem;
  font-weight: 400;
}

/* ===== Logo Strip ===== */
.logo-strip {
  padding: 3.5rem 0;
  overflow: hidden;
}

.logo-strip-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-3);
  font-weight: 500;
  margin-bottom: 2rem;
}

.logo-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.logo-track {
  display: flex;
  gap: 5rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.logo-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-3);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}

.logo-track span:hover {
  color: var(--gold-2);
}

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

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: border-color 0.5s var(--ease);
}

.services-grid:hover {
  border-color: rgba(200, 163, 85, 0.1);
}

.service-item {
  background: var(--surface);
  padding: 3rem 2.5rem;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}

.service-item:hover {
  background: var(--surface-raised);
  box-shadow: inset 0 1px 0 rgba(200, 163, 85, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.service-item:hover .service-icon {
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(200, 163, 85, 0.3));
}

.service-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold-2);
  stroke-width: 1.25;
}

.service-item h3 {
  margin-bottom: 0.75rem;
  transition: color 0.4s var(--ease);
}

.service-item:hover h3 {
  background: linear-gradient(135deg, var(--white), var(--gold-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-2);
}

/* ===== Process / How It Works ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 20px;
  transition: all 0.5s var(--ease);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 163, 85, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(200, 163, 85, 0.04);
}

.process-day {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-3);
  margin-bottom: 0.125rem;
}

.process-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  transition: transform 0.5s var(--ease);
}

.process-step:hover .process-number {
  transform: scale(1.05);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  border: 1px solid var(--divider);
  transition: all 0.5s var(--ease);
}

.price-card:hover {
  border-color: rgba(200, 163, 85, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(200, 163, 85, 0.04);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(200, 163, 85, 0.04) 0%, var(--surface-raised) 40%);
  border-color: rgba(200, 163, 85, 0.2);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(180deg, rgba(248, 208, 138, 0.25), rgba(200, 163, 85, 0.08) 40%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.price-card.featured:hover {
  border-color: rgba(200, 163, 85, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 60px rgba(200, 163, 85, 0.08);
}

.price-card.featured:hover::before {
  opacity: 1;
}

.price-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #0a0a0a;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: 980px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(200, 163, 85, 0.3), 0 0 40px rgba(200, 163, 85, 0.1);
}

.price-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}

.price-card-desc {
  font-size: 0.875rem;
  color: var(--gray-2);
  margin-bottom: 2rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  margin-bottom: 0.25rem;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-2);
}

.price-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
}

.price-card.featured .price-number {
  background: linear-gradient(135deg, var(--white), var(--gold-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 0.875rem;
  color: var(--gray-2);
  margin-bottom: 0.5rem;
}

.price-hourly {
  font-size: 0.8125rem;
  color: var(--gray-3);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--divider);
}

.price-hourly em {
  font-style: normal;
  color: var(--gold-2);
  font-weight: 500;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-1);
  line-height: 1.4;
}

.price-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-2);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-cta {
  width: 100%;
}

.price-trial {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--gray-3);
}

/* ===== Testimonials ===== */
#testimonials {
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 163, 85, 0.015) 50%, transparent 100%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
}

.testimonial:hover {
  border-color: rgba(200, 163, 85, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-2);
  opacity: 0.8;
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-1);
  flex: 1;
  margin-bottom: 2rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.6em;
  color: var(--gold-2);
  opacity: 0.4;
  margin-right: 0.125rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--gray-3);
  margin-top: 0.125rem;
}

/* ===== Differentiators / Why ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
}

.why-item {
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
  transition: border-color 0.5s var(--ease);
}

.why-item:hover {
  border-top-color: rgba(200, 163, 85, 0.3);
}

.why-item h3 {
  margin-bottom: 0.75rem;
  transition: color 0.4s var(--ease);
}

.why-item:hover h3 {
  color: var(--gold-1);
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--gray-2);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
  transition: border-color 0.4s var(--ease);
}

.faq-item.active {
  border-bottom-color: rgba(200, 163, 85, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: left;
  gap: 2rem;
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--gold-1);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--divider-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-2);
  stroke-width: 2;
  transition: transform 0.4s var(--ease), stroke 0.3s var(--ease);
}

.faq-item.active .faq-icon {
  border-color: var(--gold-2);
  background: rgba(200, 163, 85, 0.08);
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
  stroke: var(--gold-2);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out);
}

.faq-answer-content {
  padding-bottom: 1.75rem;
  max-width: 640px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-1);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 163, 85, 0.05) 0%, rgba(141, 89, 57, 0.02) 40%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.cta h2 {
  margin-bottom: 1.5rem;
  position: relative;
}

.cta p {
  font-size: 1.125rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-note {
  font-size: 0.8125rem;
  color: var(--gray-3);
  position: relative;
}

.cta-note::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: ctaDot 2s ease-in-out infinite;
}

@keyframes ctaDot {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== Footer ===== */
.footer {
  padding: 5rem 0 3rem;
  border-top: 1px solid var(--divider);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--gray-2);
  margin-top: 1.25rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-brand .footer-logo svg {
  height: 24px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-social a {
  color: var(--gray-3);
  transition: color 0.3s var(--ease);
}

.footer-social a:hover {
  color: var(--gold-1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-2);
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-1);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--gray-3);
}

.footer-bottom a {
  color: var(--gray-3);
  transition: color 0.3s var(--ease);
}

.footer-bottom a:hover {
  color: var(--gray-1);
}

/* ===== Comparison Table ===== */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.compare-table thead th {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--divider);
  color: var(--gray-1);
}

.compare-table thead th:first-child {
  text-align: left;
  color: var(--gray-2);
  font-weight: 500;
}

.compare-table thead th.highlight {
  color: var(--gold-2);
  position: relative;
}

.compare-table thead th.highlight::before {
  content: 'Recommended';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  padding: 0.2rem 0.75rem;
  border-radius: 980px;
  white-space: nowrap;
}

.compare-table tbody td {
  padding: 1.125rem 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-1);
  border-bottom: 1px solid var(--divider);
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--white);
  font-size: 0.9375rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table .col-highlight {
  background: rgba(200, 163, 85, 0.04);
  position: relative;
}

.compare-table tbody tr {
  transition: background 0.3s var(--ease);
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.015);
}

.compare-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 163, 85, 0.1);
  position: relative;
}

.compare-check::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 9px;
  border: solid var(--gold-2);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.compare-x {
  color: var(--gray-3);
  font-size: 1rem;
}

.compare-table-wrapper {
  border-radius: 16px;
  border: 1px solid var(--divider);
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.compare-table-wrapper:hover {
  border-color: rgba(200, 163, 85, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ===== Sticky CTA Bar ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--divider);
  padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-bar-text {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--gray-1);
}

.sticky-bar-text strong {
  color: var(--white);
  font-weight: 600;
}

.sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-bar .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.8125rem;
}

/* ===== Cursor Glow ===== */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 163, 85, 0.03), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s var(--ease);
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* ===== Scroll Indicator ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: scrollFadeIn 1.5s 2.5s var(--ease) forwards;
}

.hero-scroll-indicator span {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
  font-weight: 500;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold-2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollFadeIn {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ===== Card Tilt Effect ===== */
.tilt-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}

/* ===== Section Glow Accents ===== */
#pricing {
  position: relative;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 163, 85, 0.03), transparent 70%);
  pointer-events: none;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.06s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.18s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.36s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.42s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.48s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Urgency Badge ===== */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(200, 163, 85, 0.08);
  border: 1px solid rgba(200, 163, 85, 0.2);
  border-radius: 980px;
  font-size: 0.8125rem;
  color: var(--gold-1);
  letter-spacing: 0.01em;
}

.urgency-badge svg {
  flex-shrink: 0;
}

/* ===== ROI Calculator ===== */
.calc-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--divider);
  padding: 3rem;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.calc-card:hover {
  border-color: rgba(200, 163, 85, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calc-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.calc-role-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.calc-role {
  padding: 0.5rem 1rem;
  border-radius: 980px;
  border: 1px solid var(--divider-strong);
  background: transparent;
  color: var(--gray-1);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.calc-role:hover {
  border-color: rgba(200, 163, 85, 0.3);
  color: var(--white);
}

.calc-role.active {
  background: linear-gradient(135deg, rgba(200, 163, 85, 0.15), rgba(141, 89, 57, 0.1));
  border-color: rgba(200, 163, 85, 0.4);
  color: var(--gold-1);
}

.calc-label-hours {
  margin-top: 0.5rem;
}

.calc-slider-wrap {
  margin-bottom: 2rem;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--surface-raised);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(200, 163, 85, 0.4);
  transition: transform 0.2s var(--ease);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(200, 163, 85, 0.4);
}

.calc-hours-display {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--white), var(--gold-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-assumptions {
  font-size: 0.75rem;
  color: var(--gray-3);
  line-height: 1.6;
}

.calc-result-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-compare-item {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--surface-raised);
  border: 1px solid var(--divider);
  text-align: center;
}

.calc-compare-highlight {
  border-color: rgba(200, 163, 85, 0.25);
  background: rgba(200, 163, 85, 0.06);
}

.calc-compare-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-2);
  margin-bottom: 0.5rem;
}

.calc-compare-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.calc-compare-highlight .calc-compare-amount {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-compare-sub {
  font-size: 0.6875rem;
  color: var(--gray-3);
  margin-top: 0.25rem;
}

.calc-savings {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 163, 85, 0.08) 0%, rgba(141, 89, 57, 0.04) 100%);
  border: 1px solid rgba(200, 163, 85, 0.15);
}

.calc-savings-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-2);
  margin-bottom: 0.25rem;
}

.calc-savings-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.calc-savings-annual {
  font-size: 0.875rem;
  color: var(--gray-1);
  margin-top: 0.5rem;
}

.calc-result-side .btn {
  align-self: center;
}

/* ===== Page Hero (sub-pages) ===== */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  margin-bottom: 1.5rem;
}

.page-hero-content > p {
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  color: var(--gray-1);
}

/* ===== Add-On Feature Card ===== */
.addon-feature-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--divider);
  padding: 3rem;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.addon-feature-card:hover {
  border-color: rgba(200, 163, 85, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(200, 163, 85, 0.04);
}

.addon-feature-details h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
}

.addon-includes {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.addon-feature-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--surface-raised);
  border-radius: 16px;
  border: 1px solid var(--divider);
}

.addon-feature-price .price-amount {
  margin-bottom: 0.25rem;
}

.addon-feature-price .btn {
  width: 100%;
  margin-top: 1.5rem;
}

.addon-from-label {
  font-size: 0.875rem;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.addon-note {
  font-size: 0.75rem;
  color: var(--gray-3);
  margin-top: 1rem;
}

/* ===== Add-Ons Teaser (Homepage) ===== */
.addons-teaser {
  padding: 4rem 0;
}

.addons-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--divider);
  padding: 3rem;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.addons-teaser-inner:hover {
  border-color: rgba(200, 163, 85, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.addons-teaser-content .section-eyebrow {
  margin-bottom: 0.75rem;
}

.addons-teaser-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
}

.addons-teaser-content p {
  color: var(--gray-1);
  font-size: 0.9375rem;
}

/* ===== Bundle Banner ===== */
.addon-bundle {
  padding: 4rem 0;
}

.addon-bundle-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(200, 163, 85, 0.06) 0%, rgba(141, 89, 57, 0.04) 100%);
  border-radius: 20px;
  border: 1px solid rgba(200, 163, 85, 0.15);
  padding: 3rem;
}

.addon-bundle-inner h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  margin-bottom: 0.5rem;
}

.addon-bundle-inner p {
  color: var(--gray-1);
  font-size: 0.9375rem;
}

/* ===== Legal Pages ===== */
.legal-content {
  padding-top: 2rem;
}

.legal-section {
  max-width: 720px;
  margin: 0 auto 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--divider);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.8125rem;
  color: var(--gray-3);
  margin-bottom: 3rem;
}

.legal-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.legal-section p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-1);
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 0.75rem 0 1.25rem 1.25rem;
  list-style: none;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-1);
  margin-bottom: 0.5rem;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.6;
}

.legal-section ul li strong {
  color: var(--white);
  font-weight: 500;
}

.legal-section a {
  color: var(--gold-2);
  transition: color 0.3s var(--ease);
}

.legal-section a:hover {
  color: var(--gold-1);
}

.legal-contact {
  text-align: center;
  border-bottom: none;
}

.legal-contact h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.legal-contact p {
  color: var(--gray-2);
}

.legal-contact p strong {
  color: var(--white);
  font-weight: 600;
}

/* ===== Logo Mosaic ===== */
.logo-mosaic {
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.logo-mosaic::before,
.logo-mosaic::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.logo-mosaic::before {
  top: 0;
  background: linear-gradient(to bottom, var(--black), transparent);
}

.logo-mosaic::after {
  bottom: 0;
  background: linear-gradient(to top, var(--black), transparent);
}

.logo-mosaic-grid {
  display: flex;
  flex-direction: column;
}

.logo-mosaic-row {
  display: flex;
  line-height: 1;
}

.logo-mosaic-row span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  padding: 0 0.1em;
  flex-shrink: 0;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-color: rgba(255, 255, 255, 0.04);
  transition: opacity 0.3s ease-out;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  section { padding: 6rem 0; }

  .hero-astronaut.loaded { opacity: 0.4; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .addon-feature-card { grid-template-columns: 1fr; }
  .addon-feature-price { max-width: 400px; margin: 0 auto; }

  .calc-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .logo-mosaic { padding: 1.5rem 0; }
  .logo-mosaic::before, .logo-mosaic::after { height: 30px; }

  section { padding: 5rem 0; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .section-header { margin-bottom: 3.5rem; }

  .compare-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 540px; }
  .compare-table thead th.highlight::before { display: none; }

  .sticky-bar-text { display: none; }
  .sticky-bar-inner { justify-content: center; }
  .sticky-bar .btn { flex: 1; justify-content: center; }

  .nav-center { display: none; }
  .nav-right .btn-ghost { display: none; }
  .nav-right .btn-gold { padding: 0.4rem 1rem; font-size: 0.75rem; }
  .mobile-toggle { display: block; order: -1; }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .nav-right { margin-left: auto; }

  .hero { min-height: 100vh; min-height: 100dvh; padding: 5rem 0 2rem; }
  .hero-scroll-indicator { display: none; }
  .hero-astronaut.loaded { opacity: 0.3; }
  .hero-astronaut-particles { display: none; }
  .hero-metrics { flex-direction: column; gap: 1.5rem; align-items: center; }
  .hero-actions { margin-bottom: 0; }

  .services-grid { grid-template-columns: 1fr; border-radius: 16px; }
  .service-item { padding: 2.25rem 2rem; text-align: center; }
  .service-icon { margin-left: auto; margin-right: auto; }

  .process-grid { grid-template-columns: 1fr; gap: 2rem; }

  .price-card.featured { transform: none; }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .page-hero { padding: 8rem 0 4rem; }
  .addons-teaser-inner { flex-direction: column; text-align: center; }
  .addon-bundle-inner { flex-direction: column; text-align: center; }
  .addon-feature-card { padding: 2rem; }

  .calc-card { padding: 2rem; }
  .calc-compare-row { grid-template-columns: 1fr; }
  .calc-savings-amount { font-size: 2rem; }
}

@media (max-width: 480px) {
  .services-grid { border-radius: 12px; }
}

/* ===== Bespoke Systems Page ===== */

/* SaaS Cost Problem */
.saas-cost-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.saas-cost-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.4s var(--ease);
}

.saas-cost-card:hover {
  border-color: rgba(255, 80, 80, 0.3);
}

.saas-cost-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-1);
  margin-bottom: 0.5rem;
}

.saas-cost-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ff6b6b;
}

.saas-cost-price span {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--gray-3);
}

.saas-savings-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--divider);
}

.saas-savings-item {
  text-align: center;
  flex: 1;
  max-width: 320px;
}

.saas-savings-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-2);
  margin-bottom: 0.5rem;
}

.saas-savings-bad .saas-savings-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b6b;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 107, 107, 0.4);
}

.saas-savings-good .saas-savings-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.saas-savings-vs {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tool Showcase Grid */
.tool-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tool-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--divider);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}

.tool-card:hover {
  border-color: rgba(200, 163, 85, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(200, 163, 85, 0.04);
  transform: translateY(-4px);
}

.tool-card-info {
  padding: 1.5rem 2rem 2rem;
}

.tool-card-info h3 { margin-bottom: 0.5rem; }

.tool-card-info p {
  font-size: 0.9375rem;
  color: var(--gray-2);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.tool-replaces {
  font-size: 0.75rem;
  color: var(--gray-3);
  font-weight: 500;
}

/* Mockup Window */
.mockup-window {
  background: #0d0d0d;
  border-bottom: 1px solid var(--divider);
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--divider);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }

.mockup-title {
  font-size: 0.6875rem;
  color: var(--gray-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mockup-body {
  padding: 1.25rem;
  min-height: 200px;
}

/* Kanban (CRM) */
.mockup-kanban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mockup-kanban-header {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-3);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.mockup-kanban-card {
  background: var(--surface-raised);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid var(--divider);
  margin-bottom: 0.5rem;
  position: relative;
}

.mockup-kanban-card.won {
  border-color: rgba(200, 163, 85, 0.25);
}

.mockup-deal-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: var(--gray-1);
  margin-bottom: 0.25rem;
}

.mockup-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}

.mockup-avatar.small {
  width: 20px;
  height: 20px;
  font-size: 0.4375rem;
}

.mockup-deal-value {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-1);
}

.mockup-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.mockup-status-dot.new { background: #4ecdc4; }
.mockup-status-dot.progress { background: var(--gold-2); }
.mockup-status-dot.won { background: #28c840; }

/* AI Sales Assistant */
.mockup-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mockup-metric-box {
  background: var(--surface-raised);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--divider);
}

.mockup-metric-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-3);
  margin-bottom: 0.25rem;
}

.mockup-metric-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

.mockup-metric-value.gold { color: var(--gold-1); }
.mockup-metric-value.green-text { color: #28c840; }

.mockup-sentiment-bars {
  margin-bottom: 1rem;
}

.mockup-bar-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.625rem;
  color: var(--gray-2);
}

.mockup-bar-row span:first-child { width: 50px; text-align: right; }
.mockup-bar-row span:last-child { width: 28px; text-align: right; }

.mockup-bar {
  flex: 1;
  height: 6px;
  background: var(--surface-raised);
  border-radius: 3px;
  overflow: hidden;
}

.mockup-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  border-radius: 3px;
}

.mockup-bar-fill.neutral { background: var(--gray-3); }
.mockup-bar-fill.negative { background: #ff6b6b; }

.mockup-ai-box {
  background: var(--surface-raised);
  border: 1px solid rgba(200, 163, 85, 0.25);
  border-radius: 8px;
  padding: 0.75rem;
}

.mockup-ai-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-2);
  margin-bottom: 0.375rem;
  font-weight: 500;
}

.mockup-ai-text {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--gray-1);
}

/* Analytics Dashboard */
.mockup-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mockup-kpi {
  text-align: center;
  background: var(--surface-raised);
  border-radius: 6px;
  padding: 0.5rem;
}

.mockup-kpi-val {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
}

.mockup-kpi-label {
  font-size: 0.5rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mockup-chart-area {
  margin-bottom: 1rem;
  height: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.mockup-area-chart {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(200, 163, 85, 0.15) 0%, rgba(200, 163, 85, 0.02) 100%);
  clip-path: polygon(0 80%, 8% 60%, 16% 65%, 24% 40%, 32% 45%, 40% 25%, 48% 30%, 56% 15%, 64% 20%, 72% 10%, 80% 25%, 88% 18%, 96% 12%, 100% 15%, 100% 100%, 0 100%);
  position: relative;
}

.mockup-area-chart::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  clip-path: polygon(0 0, 8% 0, 16% 0, 24% 0, 32% 0, 40% 0, 48% 0, 56% 0, 64% 0, 72% 0, 80% 0, 88% 0, 96% 0, 100% 0);
}

.mockup-donut-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.mockup-donut {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(var(--gold-2) 0% var(--donut-pct), var(--surface-raised) var(--donut-pct) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mockup-donut::before {
  content: '';
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d0d0d;
  position: absolute;
}

.mockup-donut-label {
  position: relative;
  z-index: 1;
  font-size: 0.4375rem;
  text-align: center;
  line-height: 1.3;
  color: var(--gray-2);
}

/* Project Management */
.mockup-task-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mockup-task {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--surface-raised);
  border-radius: 6px;
  font-size: 0.6875rem;
  color: var(--gray-1);
}

.mockup-task.done { opacity: 0.5; }
.mockup-task.done .mockup-task-name { text-decoration: line-through; }

.mockup-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--gray-3);
  flex-shrink: 0;
}

.mockup-checkbox.checked {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  border-color: var(--gold-2);
  position: relative;
}

.mockup-checkbox.checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 3px;
  height: 6px;
  border: solid var(--black);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.mockup-task-name { flex: 1; }

.mockup-priority {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 980px;
}

.mockup-priority.high { background: rgba(255, 107, 107, 0.15); color: #ff6b6b; }
.mockup-priority.med { background: rgba(254, 188, 46, 0.15); color: #febc2e; }
.mockup-priority.low { background: rgba(40, 200, 64, 0.15); color: #28c840; }

.mockup-due {
  font-size: 0.5625rem;
  color: var(--gray-3);
}

.mockup-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mockup-progress-label {
  font-size: 0.625rem;
  color: var(--gray-3);
  white-space: nowrap;
}

.mockup-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--surface-raised);
  border-radius: 3px;
  overflow: hidden;
}

.mockup-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  border-radius: 3px;
}

.mockup-progress-pct {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-1);
}

/* Inventory Management */
.mockup-search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--surface-raised);
  border-radius: 6px;
  border: 1px solid var(--divider);
  margin-bottom: 0.75rem;
  font-size: 0.625rem;
  color: var(--gray-3);
}

.mockup-search-bar svg { stroke: var(--gray-3); flex-shrink: 0; }

.mockup-table {
  font-size: 0.625rem;
}

.mockup-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 0.75fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-bottom: 1px solid var(--divider);
}

.mockup-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.75fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--gray-1);
  border-bottom: 1px solid var(--divider);
  align-items: center;
}

.mockup-table-row:last-child { border-bottom: none; }

.mockup-stock {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.4rem;
  border-radius: 980px;
  text-align: center;
}

.mockup-stock.in-stock { background: rgba(40, 200, 64, 0.12); color: #28c840; }
.mockup-stock.low { background: rgba(254, 188, 46, 0.12); color: #febc2e; }
.mockup-stock.reorder { background: rgba(255, 107, 107, 0.12); color: #ff6b6b; }

/* Booking System */
.mockup-calendar {
  font-size: 0.625rem;
}

.mockup-cal-header {
  display: grid;
  grid-template-columns: 40px repeat(5, 1fr);
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
}

.mockup-cal-row {
  display: grid;
  grid-template-columns: 40px repeat(5, 1fr);
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}

.mockup-cal-time {
  font-size: 0.5625rem;
  color: var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.25rem;
}

.mockup-cal-slot {
  padding: 0.4rem 0.25rem;
  border-radius: 4px;
  text-align: center;
  font-size: 0.5rem;
  font-weight: 500;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-cal-slot.booked {
  background: rgba(200, 163, 85, 0.12);
  border: 1px solid rgba(200, 163, 85, 0.25);
  color: var(--gold-1);
}

.mockup-cal-slot.available {
  border: 1px dashed var(--divider-strong);
  color: var(--gray-3);
}

/* Retainer Grid */
.retainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.retainer-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--divider);
  padding: 2.5rem;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.retainer-card:hover {
  border-color: rgba(200, 163, 85, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.retainer-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.retainer-desc {
  font-size: 0.9375rem;
  color: var(--gray-2);
  margin-bottom: 1.5rem;
}

/* Bespoke Form */
.bespoke-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-1);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--surface);
  border: 1px solid var(--divider-strong);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(200, 163, 85, 0.4);
  box-shadow: 0 0 0 3px rgba(200, 163, 85, 0.08);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--surface);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--gray-1);
  cursor: pointer;
}

.form-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gray-3);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s var(--ease);
}

.form-radio input[type="radio"]:checked {
  border-color: var(--gold-2);
}

.form-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
}

.form-submit {
  margin-top: 0.5rem;
}

/* Bespoke Responsive */
@media (max-width: 1024px) {
  .saas-cost-grid { grid-template-columns: repeat(3, 1fr); }
  .tool-showcase-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .retainer-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .saas-cost-grid { grid-template-columns: repeat(2, 1fr); }
  .saas-savings-banner { flex-direction: column; gap: 1rem; padding: 2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 1.5rem; }
  .form-radio-group { flex-direction: column; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .saas-cost-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .saas-cost-card { padding: 1rem 0.75rem; }
  .mockup-kanban { grid-template-columns: 1fr; }
  .mockup-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .mockup-metrics-row { grid-template-columns: 1fr; }
}
