:root {
  --navy: #1e3a8a;
  --navy-dark: #172554;
  --navy-light: #3b82f6;
  --amber: #d97706;
  --amber-light: #fbbf24;
  --amber-soft: #fef3c7;
  --cream: #faf7f2;
  --white: #ffffff;
  --ink: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #e7e5e4;
  --soft: #f5f5f4;
  --success: #059669;
  --danger: #dc2626;
  --warn: #d97706;
  --grad-1: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --grad-2: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
  --grad-3: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
  --grad-mesh: radial-gradient(at 20% 30%, rgba(30, 58, 138, 0.15) 0px, transparent 50%),
               radial-gradient(at 80% 20%, rgba(217, 119, 6, 0.12) 0px, transparent 50%),
               radial-gradient(at 50% 80%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.15);
  --shadow-xl: 0 40px 80px rgba(15, 23, 42, 0.2);
  --shadow-glow: 0 10px 40px rgba(217, 119, 6, 0.35);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Manrope', -apple-system, sans-serif;
  --display: 'Fraunces', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ===== Mesh Background ===== */
.mesh-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.blob-1 {
  width: 600px; height: 600px;
  background: var(--navy);
  top: -200px; left: -100px;
  animation: mesh-drift 30s infinite ease-in-out;
}

.blob-2 {
  width: 500px; height: 500px;
  background: var(--amber);
  top: 30%; right: -100px;
  animation: mesh-drift 30s infinite ease-in-out reverse;
  animation-delay: -8s;
}

.blob-3 {
  width: 400px; height: 400px;
  background: var(--navy-light);
  bottom: -100px; left: 20%;
  animation: mesh-drift 25s infinite ease-in-out;
  animation-delay: -15s;
}

.blob-4 {
  width: 350px; height: 350px;
  background: var(--amber-light);
  top: 60%; left: 50%;
  animation: mesh-drift 28s infinite ease-in-out reverse;
  animation-delay: -5s;
}

@keyframes mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -30px) scale(1.1); }
  50% { transform: translate(-30px, 50px) scale(0.95); }
  75% { transform: translate(-50px, -20px) scale(1.05); }
}

/* ===== Navigation ===== */
.topnav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1280px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 100px;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}

.topnav.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 38px; height: 38px;
  background: var(--grad-1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-center {
  display: flex;
  gap: 32px;
}

.nav-center a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0; height: 2px;
  background: var(--amber);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease);
}

.nav-center a:hover { color: var(--navy); }
.nav-center a:hover::after { width: 20px; }

.nav-pill {
  padding: 10px 22px;
  background: var(--ink);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
}

.nav-pill:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

/* ===== Hero Editorial ===== */
.hero-edit {
  min-height: 100vh;
  padding: 160px 24px 80px;
  position: relative;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.eyebrow-line {
  width: 50px; height: 2px;
  background: var(--amber);
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-headline .line {
  display: block;
}

.hero-headline .line-1 {
  font-family: var(--font);
  font-size: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-headline .line-2 {
  font-style: italic;
}

.hero-headline .accent {
  color: var(--amber);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-headline .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 5%;
  height: 12px;
  background: var(--amber-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-primary {
  padding: 16px 28px;
  background: var(--ink);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}

.cta-primary:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  gap: 14px;
}

.cta-ghost {
  padding: 16px 24px;
  color: var(--ink);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
}

.cta-ghost:hover { color: var(--amber); }
.cta-ghost i { font-size: 1.4rem; color: var(--amber); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
}

.trust-score {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.trust-stars {
  color: var(--amber);
  font-size: 0.85rem;
  margin: 4px 0;
  letter-spacing: 2px;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-sep {
  width: 1px; height: 60px;
  background: var(--line);
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--slate);
}

.trust-points i { color: var(--success); }

/* Hero Visual */
.hero-right {
  position: relative;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
}

.visual-main {
  width: 100%;
  height: 100%;
  background: var(--grad-1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.visual-abstract {
  position: absolute;
  inset: 0;
}

.abstract-circle {
  position: absolute;
  border-radius: 50%;
}

.c1 {
  width: 70%; height: 70%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  top: 15%; left: 15%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 8s infinite ease-in-out;
}

.c2 {
  width: 40%; height: 40%;
  background: var(--amber);
  bottom: 15%; right: 10%;
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.4);
  animation: float 10s infinite ease-in-out reverse;
}

.abstract-square {
  position: absolute;
  width: 30%; height: 30%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  top: 30%; right: 20%;
  transform: rotate(15deg);
  backdrop-filter: blur(10px);
  animation: rotate-slow 20s infinite linear;
}

.abstract-line {
  position: absolute;
  width: 60%; height: 4px;
  background: white;
  border-radius: 100px;
  bottom: 35%; left: 20%;
  opacity: 0.8;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -15px); }
}

@keyframes rotate-slow {
  from { transform: rotate(15deg); }
  to { transform: rotate(375deg); }
}

.floating-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float-card 6s infinite ease-in-out;
}

.floating-card i {
  width: 40px; height: 40px;
  background: var(--amber-soft);
  color: var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
}

.floating-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

.card-1 {
  top: 10%; left: -40px;
  animation-delay: -2s;
}

.card-2 {
  top: 45%; right: -30px;
  animation-delay: -4s;
}

.card-3 {
  bottom: 10%; left: 10%;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Stats Strip */
.stats-strip {
  max-width: 1100px;
  margin: 80px auto 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.strip-item {
  text-align: center;
}

.strip-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.strip-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.strip-divider {
  width: 1px; height: 50px;
  background: var(--line);
}

/* ===== Section Common ===== */
section { padding: 120px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.kicker i { color: var(--amber); }

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===== Services Staggered ===== */
.services-stagger { background: white; }

.stagger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 20px;
}

.service-tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.tile-tall { grid-row: span 2; }
.tile-wide { grid-column: span 2; }

.tile-accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-1);
}

.accent-2 { background: var(--grad-2); }
.accent-3 { background: linear-gradient(135deg, #059669, #10b981); }
.accent-4 { background: linear-gradient(135deg, #dc2626, #ef4444); }
.accent-5 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.accent-6 { background: linear-gradient(135deg, #0891b2, #06b6d4); }

.tile-icon {
  width: 64px; height: 64px;
  background: var(--grad-1);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}

.icon-2 { background: var(--grad-2); }
.icon-3 { background: linear-gradient(135deg, #059669, #10b981); }
.icon-4 { background: linear-gradient(135deg, #dc2626, #ef4444); }
.icon-5 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.icon-6 { background: linear-gradient(135deg, #0891b2, #06b6d4); }

.service-tile h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-tile > p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.tile-features {
  margin-bottom: 24px;
}

.tile-features li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tile-features li i { color: var(--success); font-size: 0.8rem; }

.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  width: 100%;
}

.tile-link:hover { gap: 14px; color: var(--amber); }

.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-tile:hover .tile-icon {
  transform: rotate(-8deg) scale(1.05);
}

/* ===== Process Alternating ===== */
.process-alt { background: var(--cream); }

.alt-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.alt-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--grad-3);
  transform: translateX(-50%);
}

.alt-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.alt-step:last-child { margin-bottom: 0; }

.alt-content {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.alt-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-left .alt-content { grid-column: 1; }
.step-right .alt-content { grid-column: 3; }

.alt-marker {
  grid-column: 2;
  display: grid;
  place-items: center;
}

.marker-dot {
  width: 50px; height: 50px;
  background: var(--grad-1);
  border: 4px solid var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow);
  position: relative;
}

.marker-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--amber-soft);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.5; }
}

.alt-num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}

.alt-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.alt-content p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===== Portfolio Stack ===== */
.portfolio-stack { background: white; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stack-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
}

.stack-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: var(--shadow-xl);
}

.stack-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  overflow: hidden;
}

.art-shape {
  position: absolute;
}

.s1 {
  width: 60%; height: 60%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  top: 15%; left: 15%;
}

.s2 {
  width: 25%; height: 25%;
  background: var(--c3);
  border-radius: 50%;
  bottom: 25%; right: 15%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.s3 {
  width: 30%; height: 30%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  bottom: 15%; left: 20%;
  transform: rotate(15deg);
}

.stack-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 40%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}

.stack-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--amber);
  color: white;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}

.stack-overlay h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.stack-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

/* ===== Publication Article ===== */
.publication { background: var(--cream); }

.pub-wrapper {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pub-left {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pub-meta {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.meta-item { text-align: center; }

.meta-num {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.meta-label {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.pub-author {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.author-initials {
  width: 44px; height: 44px;
  background: var(--grad-2);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.pub-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.pub-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

.pub-cta-card {
  background: var(--ink);
  color: white;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.pub-cta-card i {
  font-size: 1.8rem;
  color: var(--amber);
  margin-bottom: 12px;
}

.pub-cta-card h4 {
  color: white;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pub-cta-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.cta-mini {
  display: inline-block;
  padding: 10px 20px;
  background: var(--amber);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Main Article */
.pub-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--ink);
}

.pub-cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.pub-dot {
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
}

.pub-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.pub-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--muted);
}

.pub-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pub-body h2 {
  font-size: 1.85rem;
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  position: relative;
}

.pub-body h2::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 60px; height: 3px;
  background: var(--amber);
}

.pub-body h2:first-of-type { border-top: none; padding-top: 0; }
.pub-body h2:first-of-type::before { display: none; }

.pub-body h3 {
  font-size: 1.3rem;
  margin: 36px 0 14px;
  color: var(--navy);
}

.pub-body p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.85;
}

.pub-lead {
  font-size: 1.2rem !important;
  color: var(--ink) !important;
  font-weight: 400;
  font-family: var(--display);
  font-style: italic;
  line-height: 1.6 !important;
}

.pub-body a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1.5px solid var(--amber);
  transition: all 0.2s var(--ease);
}

.pub-body a:hover {
  color: var(--amber);
  border-color: var(--amber);
}

/* Pull Quote */
.pub-pullquote {
  position: relative;
  padding: 40px 40px 40px 60px;
  margin: 40px 0;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.pub-pullquote i {
  position: absolute;
  top: 20px; left: 24px;
  font-size: 2rem;
  color: var(--amber);
}

.pub-pullquote p {
  color: white !important;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem !important;
  line-height: 1.5 !important;
  margin: 0;
}

/* Info Notes */
.pub-note {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  margin: 28px 0;
  border-left: 4px solid;
}

.note-insight {
  background: var(--amber-soft);
  border-color: var(--amber);
}

.note-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.note-content h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.note-content p { margin: 0; font-size: 0.95rem; }

/* Stats Row */
.pub-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.pub-stat {
  background: var(--grad-1);
  color: white;
  padding: 24px 18px;
  border-radius: var(--radius);
  text-align: center;
}

.pub-stat strong {
  font-family: var(--display);
  font-size: 2.2rem;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.pub-stat span {
  font-size: 0.78rem;
  opacity: 0.9;
}

/* Comparison Table */
.pub-comparison {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
  overflow-x: auto;
}

.pub-comparison h4 {
  font-family: var(--font);
  font-weight: 700;
  padding: 18px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 1rem;
}

.pub-comparison table {
  width: 100%;
  border-collapse: collapse;
}

.pub-comparison th {
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.pub-comparison td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.pub-comparison tr:last-child td { border-bottom: none; }
.pub-comparison tbody tr:hover { background: var(--cream); }
.pub-comparison td:first-child { font-weight: 600; color: var(--ink); }

/* Checklist */
.pub-checklist {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.pub-checklist h4 {
  font-family: var(--font);
  color: #065f46;
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.check-item {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-item i { color: var(--success); }

/* Timeline */
.pub-timeline {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 36px 0;
}

.pub-timeline h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}

.tl-item {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}

.tl-item:last-child { border-bottom: none; }

.tl-marker {
  width: 40px; height: 40px;
  background: var(--grad-1);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.tl-content strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.tl-content p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Feature */
.pub-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 32px 0;
  align-items: center;
}

.pub-feature .feature-icon {
  width: 60px; height: 60px;
  background: var(--grad-2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pub-feature h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.pub-feature p {
  margin: 0;
  font-size: 0.95rem;
}

/* Materials */
.pub-materials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 32px 0;
}

.mat-item {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.mat-item:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--shadow);
}

.mat-icon {
  width: 50px; height: 50px;
  background: var(--amber-soft);
  color: var(--amber);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.mat-item h5 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.mat-item p { font-size: 0.85rem; margin: 0; color: var(--muted); }

/* Warning */
.pub-warning {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid var(--danger);
  border-radius: var(--radius);
  margin: 28px 0;
}

.warn-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--danger);
  font-size: 1.1rem;
}

.pub-warning h4 {
  font-family: var(--font);
  color: #991b1b;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.pub-warning p { margin: 0; font-size: 0.95rem; }

/* Costs */
.pub-costs {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.pub-costs h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}

.cost-row {
  display: grid;
  grid-template-columns: 120px 1fr 100px;
  gap: 16px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.cost-row:last-child { border-bottom: none; }

.cost-label { font-weight: 600; font-size: 0.9rem; }

.cost-visual {
  height: 10px;
  background: var(--soft);
  border-radius: 100px;
  overflow: hidden;
}

.cost-fill {
  height: 100%;
  width: var(--w);
  background: var(--grad-3);
  border-radius: 100px;
}

.cost-amount { font-weight: 700; color: var(--navy); font-size: 0.9rem; }

/* Pros Cons */
.pub-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.pc-col {
  padding: 24px;
  border-radius: var(--radius);
}

.pc-col.pros {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.pc-col.cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pc-col h5 {
  font-family: var(--font);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.pc-col.pros h5 { color: #065f46; }
.pc-col.cons h5 { color: #991b1b; }

.pc-col ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.92rem;
}

.pc-col.pros li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--success);
}

.pc-col.cons li::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--danger);
}

/* Right Sidebar */
.pub-right {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.toc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.toc-card h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.toc-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}

.toc-card ul li:last-child { border-bottom: none; }

.toc-card ul li a {
  color: var(--slate);
  display: block;
  transition: all 0.2s var(--ease);
}

.toc-card ul li a:hover {
  color: var(--navy);
  padding-left: 6px;
}

.share-card {
  background: var(--ink);
  color: white;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.share-card h4 {
  color: white;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.share-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.share-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.share-btn {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: all 0.3s var(--ease);
}

.share-btn:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

/* ===== Testimonials ===== */
.testimonials-section { background: white; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--cream);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.4s var(--ease);
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--amber);
}

.testi-quote {
  width: 50px; height: 50px;
  background: var(--grad-2);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testi-rating {
  color: var(--amber);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-review {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 48px; height: 48px;
  background: var(--grad-1);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.testi-author strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.testi-author span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ===== FAQ Accordion ===== */
.faq-accordion { background: var(--cream); }

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  height: fit-content;
}

.faq-block.active {
  border-color: var(--amber);
  box-shadow: var(--shadow);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  gap: 12px;
}

.faq-trigger i {
  color: var(--amber);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-block.active .faq-trigger i { transform: rotate(45deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-block.active .faq-content {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-content p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-section { background: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--ink);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(40px);
}

.contact-info h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 32px;
  position: relative;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.info-item .info-icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-item a, .info-item span {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-item a:hover { color: var(--amber); }

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

.btn-primary {
  padding: 14px 22px;
  background: var(--amber);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  padding: 14px 22px;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  transition: all 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: white;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--ink);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s var(--ease);
}

.btn-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 80px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.foot-logo .logo-name { color: white; }
.foot-logo .logo-sub { color: #94a3b8; }

.foot-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.foot-col h4 {
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.foot-col ul li { margin-bottom: 10px; }

.foot-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
}

.foot-col ul li a:hover { color: var(--amber); padding-left: 4px; }

.foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.foot-contact i {
  color: var(--amber);
  margin-top: 4px;
  flex-shrink: 0;
}

.foot-contact a { color: #94a3b8; }
.foot-contact a:hover { color: white; }

.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .pub-wrapper {
    grid-template-columns: 1fr;
  }
  .pub-left, .pub-right {
    position: static;
  }
  .pub-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pub-cta-card { grid-column: span 2; }
  .pub-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 450px; margin: 0 auto; }
  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .strip-divider { display: none; }
  .stagger-grid { grid-template-columns: 1fr 1fr; }
  .tile-tall, .tile-wide { grid-row: auto; grid-column: span 2; }
  .alt-timeline { padding-left: 40px; }
  .alt-line { left: 20px; }
  .alt-step { grid-template-columns: 1fr; gap: 16px; }
  .alt-marker { position: absolute; left: -40px; }
  .step-right .alt-content { grid-column: 1; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-center { display: none; }
  .hamburger { display: flex; }
  .nav-center.active {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .topnav { width: calc(100% - 24px); padding: 10px 16px; }
  .nav-pill span { display: none; }
  .nav-pill { padding: 10px 14px; }
  .hero-edit { padding-top: 140px; }
  .stats-strip { grid-template-columns: 1fr; padding: 28px 20px; }
  .stagger-grid { grid-template-columns: 1fr; }
  .tile-tall, .tile-wide { grid-column: span 1; }
  .pub-stats-row { grid-template-columns: 1fr; }
  .pub-materials { grid-template-columns: 1fr; }
  .pub-proscons { grid-template-columns: 1fr; }
  .pub-left, .pub-right { grid-template-columns: 1fr; }
  .pub-cta-card { grid-column: span 1; }
  .stack-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info, .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row a { width: 100%; justify-content: center; }
}

/* Selection & Scrollbar */
::selection { background: var(--amber); color: white; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--grad-1);
  border-radius: 10px;
}