:root {
  --emerald: #059669;
  --emerald-dark: #047857;
  --emerald-light: #10b981;
  --coral: #f97316;
  --coral-dark: #ea580c;
  --coral-light: #fb923c;
  --dark: #0f172a;
  --ink: #1e293b;
  --slate: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --cream: #fefcf9;
  --white: #ffffff;
  --danger: #dc2626;
  --warn: #f59e0b;
  --success: #059669;
  --grad-1: linear-gradient(135deg, #059669 0%, #10b981 100%);
  --grad-2: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  --grad-3: linear-gradient(135deg, #059669 0%, #f97316 100%);
  --grad-soft: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(249, 115, 22, 0.06) 100%);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 40px rgba(5, 150, 105, 0.3);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'DM Sans', -apple-system, sans-serif;
  --display: 'Syne', 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(--dark);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== Mesh Background ===== */
.mesh-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: drift 30s infinite ease-in-out;
}

.m-1 { width: 600px; height: 600px; background: var(--emerald); top: -150px; left: -100px; }
.m-2 { width: 500px; height: 500px; background: var(--coral); top: 40%; right: -100px; animation-delay: -10s; }
.m-3 { width: 400px; height: 400px; background: #10b981; bottom: 10%; left: 30%; animation-delay: -5s; }
.m-4 { width: 350px; height: 350px; background: #fb923c; top: 60%; right: 40%; animation-delay: -15s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ===== Navigation ===== */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1280px;
  z-index: 1000;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}

.topbar.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-star {
  width: 40px;
  height: 40px;
  background: var(--grad-1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}

.brand:hover .brand-star { transform: rotate(72deg) scale(1.05); }

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-wordmark strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--dark);
}

.brand-wordmark span {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navlist {
  display: flex;
  gap: 32px;
}

.navlist a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
}

.navlist a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad-3);
  border-radius: 10px;
  transition: width 0.3s var(--ease);
}

.navlist a:hover { color: var(--emerald); }
.navlist a:hover::after { width: 24px; }

.nav-cta {
  padding: 10px 20px;
  background: var(--dark);
  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-cta:hover {
  background: var(--emerald);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--grad-1);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: white;
  color: var(--dark);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-2px);
}

.glow-btn { animation: glow 3s infinite; }

@keyframes glow {
  0%, 100% { box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08); }
  50% { box-shadow: 0 10px 40px rgba(5, 150, 105, 0.45); }
}

.btn-full { width: 100%; }

/* ===== Bento Hero ===== */
.bento-hero {
  min-height: 100vh;
  padding: 160px 0 80px;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 20px;
}

.bento-main {
  grid-column: span 3;
  grid-row: span 2;
  background: white;
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--grad-soft);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--emerald-dark);
  width: fit-content;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6); }
  50% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
}

.bento-main h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Bento Stat Cards */
.bento-stat {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.bento-stat:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-light);
}

.bento-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.bento-stat:hover::before { opacity: 1; }

.stat-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stat-1 .stat-num { color: var(--emerald-dark); }
.stat-2 .stat-num { color: var(--coral-dark); }

.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.stat-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--grad-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--emerald);
  font-size: 1.1rem;
  z-index: 1;
}

/* Bento Feature */
.bento-feature {
  grid-column: span 2;
  background: var(--grad-1);
  color: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.4s var(--ease);
}

.bento-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.bento-feature h3 {
  color: white;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.bento-feature p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Bento Rating */
.bento-rating {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.bento-rating:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.rating-stars {
  color: var(--warn);
  font-size: 1.1rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.rating-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.rating-text {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Bento Visual */
.bento-visual {
  grid-column: span 2;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  box-shadow: var(--shadow);
}

.visual-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.art-ring {
  position: absolute;
  border: 3px solid rgba(249, 115, 22, 0.3);
  border-radius: 50%;
  animation: rotate-slow 20s infinite linear;
}

.art-ring.r1 {
  width: 140px;
  height: 140px;
  top: 20%;
  left: 15%;
}

.art-ring.r2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: 20%;
  border-color: rgba(5, 150, 105, 0.4);
  animation-direction: reverse;
  animation-duration: 15s;
}

.art-blob {
  width: 80px;
  height: 80px;
  background: var(--grad-2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
  animation: morph 8s infinite ease-in-out;
}

.art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.visual-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
  z-index: 2;
}

/* Bento Trust */
.bento-trust {
  grid-column: span 4;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
}

.trust-item i {
  width: 36px;
  height: 36px;
  background: var(--grad-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--emerald);
}

/* ===== Section Common ===== */
section { padding: 120px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.head-tag {
  display: inline-block;
  padding: 6px 16px;
  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(--emerald-dark);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* ===== Services ===== */
.services-section { background: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--c, var(--emerald)), transparent);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: white;
  border-color: transparent;
}

.svc-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.svc-icon {
  width: 54px;
  height: 54px;
  background: var(--c, var(--emerald));
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.08); }

.svc-top h3 {
  font-size: 1.25rem;
}

.svc-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.svc-card ul {
  margin-bottom: 24px;
}

.svc-card ul li {
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-card ul li i {
  color: var(--emerald);
  font-size: 0.75rem;
}

.svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--emerald-dark);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.svc-cta:hover {
  gap: 14px;
  color: var(--coral);
}

/* ===== Process ===== */
.process-section { background: var(--cream); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.p-step {
  background: white;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.p-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-light);
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--emerald);
  transition: all 0.3s var(--ease);
}

.p-step:hover .step-icon {
  background: var(--grad-1);
  color: white;
  transform: scale(1.1);
}

.p-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.p-step p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== Portfolio ===== */
.portfolio-section { background: white; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.port-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  background: white;
  border: 1px solid var(--line);
}

.port-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.port-wide {
  grid-column: span 3;
}

.port-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.port-art {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  overflow: hidden;
}

.port-lg .port-art, .port-wide .port-art {
  position: relative;
  height: 65%;
}

.port-item:not(.port-lg):not(.port-wide) {
  display: flex;
  flex-direction: column;
}

.port-item:not(.port-lg):not(.port-wide) .port-art {
  position: relative;
  height: 60%;
}

.art-circle {
  position: absolute;
  width: 55%;
  height: 55%;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 15%;
  left: 15%;
  animation: float-shape 8s infinite ease-in-out;
}

.art-shape {
  position: absolute;
  width: 25%;
  height: 25%;
  background: var(--c3);
  border-radius: 50%;
  bottom: 20%;
  right: 18%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float-shape 6s infinite ease-in-out reverse;
}

.art-line {
  position: absolute;
  width: 40%;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  bottom: 15%;
  left: 20%;
  transform: rotate(-8deg);
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}

.port-info {
  padding: 22px;
  background: white;
  position: relative;
  z-index: 1;
}

.port-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--grad-soft);
  color: var(--emerald-dark);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.port-info h4 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.port-info p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ===== Publication Article ===== */
.pub-section { background: var(--cream); }

.pub-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.pub-meta {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meta-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.meta-stat { text-align: center; }

.meta-stat strong {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--emerald-dark);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.meta-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  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;
  flex-shrink: 0;
}

.author-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.author-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

.toc-card h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: var(--dark);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.toc-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}

.toc-list li:last-child { border-bottom: none; }

.toc-list li a {
  color: var(--slate);
  display: block;
  transition: all 0.2s var(--ease);
}

.toc-list li a:hover {
  color: var(--emerald);
  padding-left: 6px;
}

.cta-card {
  background: var(--dark);
  color: white;
  border: none;
  text-align: center;
}

.cta-card i {
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 12px;
}

.cta-card h4 {
  font-family: var(--display);
  color: white;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.mini-cta {
  display: inline-block;
  padding: 10px 20px;
  background: var(--coral);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}

.mini-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

/* Publication Content */
.pub-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--dark);
}

.pub-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pub-badge {
  padding: 6px 14px;
  background: var(--grad-soft);
  color: var(--emerald-dark);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.pub-badge.badge-alt {
  background: rgba(249, 115, 22, 0.1);
  color: var(--coral-dark);
  border-color: rgba(249, 115, 22, 0.2);
}

.pub-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.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-info i { color: var(--emerald); }

.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(--grad-3);
  border-radius: 10px;
}

.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(--emerald-dark);
}

.pub-body p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.85;
}

.lead {
  font-size: 1.2rem !important;
  color: var(--dark) !important;
  font-weight: 500;
  font-family: var(--display);
  font-style: italic;
  line-height: 1.6 !important;
}

.pub-body a {
  color: var(--emerald-dark);
  font-weight: 600;
  border-bottom: 1.5px solid var(--coral);
}

.pub-body a:hover {
  color: var(--coral);
  border-color: var(--coral);
}

/* Pull Quote */
.pull-quote {
  position: relative;
  padding: 40px 40px 40px 70px;
  margin: 40px 0;
  background: var(--dark);
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pull-quote i {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 2rem;
  color: var(--coral);
}

.pull-quote p {
  color: white !important;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem !important;
  line-height: 1.5 !important;
  margin: 0;
}

/* Info Callouts */
.info-callout {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  margin: 28px 0;
  border-left: 4px solid;
}

.info-callout.tip { background: #fef3c7; border-color: var(--warn); }
.info-callout.warning { background: #fef2f2; border-color: var(--danger); }

.callout-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.info-callout.tip .callout-icon { color: var(--warn); }
.info-callout.warning .callout-icon { color: var(--danger); }

.callout-content h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.callout-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.mini-stat {
  background: var(--grad-1);
  color: white;
  padding: 24px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.mini-stat strong {
  font-family: var(--display);
  font-size: 2.4rem;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.mini-stat span {
  font-size: 0.8rem;
  opacity: 0.95;
}

/* Feature Box */
.feature-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.feature-box .feature-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-2);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-box h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.feature-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Issue Grid */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.issue-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--emerald-light);
}

.issue-icon {
  width: 48px;
  height: 48px;
  background: var(--grad-soft);
  color: var(--emerald);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.issue-card h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.issue-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* Comparison Table */
.comparison-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 16px 20px;
  background: var(--dark);
  color: white;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--soft); }
.comparison-table td:first-child { color: var(--slate); }
.comparison-table td:last-child { color: var(--emerald-dark); font-weight: 600; }

/* Timeline Box */
.timeline-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
}

.timeline-box h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.tl-step {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  align-items: flex-start;
}

.tl-step: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;
  box-shadow: var(--shadow-sm);
}

.tl-content strong {
  display: block;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.tl-content p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Benefits List */
.benefits-list {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
}

.benefits-list h4 {
  font-family: var(--font);
  color: #065f46;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.benefit-item {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-item i { color: var(--success); }

/* Checklist */
.checklist {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.checklist h4 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--emerald-dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}

.checklist ul {
  display: grid;
  gap: 10px;
}

.checklist li {
  padding: 10px 14px 10px 40px;
  background: var(--soft);
  border-radius: var(--radius-sm);
  position: relative;
  font-size: 0.92rem;
  color: var(--slate);
}

.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--emerald);
}

/* Cost Bars */
.cost-bars {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.cost-bars h4 {
  font-family: var(--font);
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--dark);
}

.cost-item {
  display: grid;
  grid-template-columns: 130px 1fr 100px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.cost-item:last-child { border-bottom: none; }

.cost-label { font-weight: 600; font-size: 0.9rem; }

.cost-bar-wrap {
  height: 10px;
  background: var(--soft);
  border-radius: 100px;
  overflow: hidden;
}

.cost-bar {
  height: 100%;
  width: var(--w);
  background: var(--grad-3);
  border-radius: 100px;
}

.cost-val { font-weight: 700; color: var(--emerald-dark); font-size: 0.9rem; }

/* Pros Cons */
.pros-cons {
  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;
  font-size: 1rem;
}

.pc-col.pros h5 { color: #065f46; }
.pc-col.cons h5 { color: #991b1b; }

.pc-col ul { display: grid; gap: 6px; }

.pc-col 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);
}

/* ===== Testimonials ===== */
.testi-section { background: white; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.4s var(--ease);
}

.testi-card::before {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.5rem;
  color: var(--line);
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--emerald-light);
  background: white;
}

.testi-stars {
  color: var(--warn);
  font-size: 0.9rem;
  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-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  background: var(--grad-1);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-person strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.testi-person span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-section { background: var(--cream); }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item.active {
  border-color: var(--emerald-light);
  box-shadow: var(--shadow);
}

.faq-q {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  gap: 16px;
}

.faq-q i {
  color: var(--emerald);
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.active .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-a {
  max-height: 400px;
  padding: 0 24px 22px;
}

.faq-a p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact-section { background: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  background: var(--dark);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--emerald);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(50px);
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(50px);
}

.contact-info h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.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(--coral-light);
  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(--coral-light); }

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-actions .btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: white;
}

.contact-form-wrap {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.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(--soft);
  transition: all 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--emerald);
  background: white;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.form-field textarea { resize: vertical; min-height: 110px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  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;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo .brand-wordmark strong { color: white; }
.footer-logo .brand-wordmark span { color: #94a3b8; }

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h4 {
 