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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --text-primary: #e8e8f0;
  --text-secondary: #9898a8;
  --text-muted: #68687a;
  --accent-gold: #c9a84c;
  --accent-gold-light: #e8c95a;
  --accent-gold-dark: #a08030;
  --accent-blue: #4a8fe7;
  --border-color: #222233;
  --glow-gold: rgba(201, 168, 76, 0.15);
  --glow-blue: rgba(74, 143, 231, 0.1);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1520px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

section {
  padding: 100px 0;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo-icon {
  display: none;
}

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

.logo-img {
  height: 123px;
  width: auto;
  display: block;
}

/* Navigation pill */
.nav {
  display: flex;
  align-items: center;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(10, 10, 15, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 4px 6px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-pill a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-pill a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--text-secondary);
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

.nav-dropdown-toggle svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Header CTA button (outside pill) */
.header-cta {
  flex-shrink: 0;
}

.btn-header-mobile {
  display: none;
}

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
  background: #000;
}

/* AM Hero — canvas background */
.am-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.am-hero-void {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150vw;
  height: 150vw;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.04) 0%, #000 55%);
  pointer-events: none;
  z-index: 0;
}

.am-hero-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.4);
  margin-bottom: 2rem;
  font-family: monospace;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 24px;
}

.am-hero h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  margin-bottom: 2rem;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  letter-spacing: -0.04em;
  font-weight: 800;
  line-height: 0.95;
}

.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #888;
  line-height: 1.7;
}

.am-hero-tagline {
  font-size: 1rem;
  font-family: monospace;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.am-hero-btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--accent-gold);
  color: #000;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.am-hero-btn-gold:hover {
  background: var(--accent-gold-light);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ===== MYCELIUM MANIFESTO ===== */
.myc-manifesto {
  padding: 140px 0;
  background: #000000;
  position: relative;
}

.myc-manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.myc-manifesto-content {
  max-width: 720px;
}

/* Network visual */
.myc-manifesto-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.myc-network-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.myc-node {
  animation: myc-nodeGlow 3s ease-in-out infinite;
}
.myc-node:nth-child(odd) { animation-delay: 0.5s; }
.myc-node:nth-child(even) { animation-delay: 1.5s; }

.myc-node-center {
  animation: myc-centerPulse 4s ease-in-out infinite;
}

.myc-node-pulse {
  animation: myc-ringExpand 3s ease-out infinite;
}

.myc-line {
  animation: myc-lineFlow 4s ease-in-out infinite;
}
.myc-line:nth-child(1) { animation-delay: 0s; }
.myc-line:nth-child(2) { animation-delay: 0.4s; }
.myc-line:nth-child(3) { animation-delay: 0.8s; }
.myc-line:nth-child(4) { animation-delay: 1.2s; }
.myc-line:nth-child(5) { animation-delay: 1.6s; }
.myc-line:nth-child(6) { animation-delay: 2s; }
.myc-line:nth-child(7) { animation-delay: 0.3s; }
.myc-line:nth-child(8) { animation-delay: 0.7s; }
.myc-line:nth-child(9) { animation-delay: 1.1s; }
.myc-line:nth-child(10) { animation-delay: 1.5s; }
.myc-line:nth-child(11) { animation-delay: 1.9s; }
.myc-line:nth-child(12) { animation-delay: 2.3s; }

@keyframes myc-nodeGlow {
  0%, 100% { opacity: 0.4; r: 4; }
  50% { opacity: 1; r: 6; }
}

@keyframes myc-centerPulse {
  0%, 100% { stroke-opacity: 0.6; }
  50% { stroke-opacity: 1; }
}

@keyframes myc-ringExpand {
  0% { r: 24; stroke-opacity: 0.3; }
  100% { r: 50; stroke-opacity: 0; }
}

@keyframes myc-lineFlow {
  0%, 100% { stroke-opacity: 0.1; }
  50% { stroke-opacity: 0.4; }
}

.myc-manifesto-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 20px 0 28px;
}

.myc-manifesto-content > p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.myc-manifesto-points {
  display: flex;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.myc-manifesto-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
}

.myc-manifesto-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(201,168,76,0.4);
}

@media (max-width: 900px) {
  .myc-manifesto-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .myc-network-svg {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .myc-manifesto {
    padding: 80px 0;
  }

  .myc-manifesto-points {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== STATEMENT (legacy) ===== */
.statement {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.statement-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.statement-bg-text span {
  font-size: clamp(7rem, 20vw, 22rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: -0.04em;
  display: block;
}

.statement-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.statement-content p {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.35;
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .statement-bg-text {
    display: none;
  }

  .statement {
    padding: 120px 0;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #0a0a0f;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-header {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: #0a0a0f;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.84rem;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.btn-header:hover {
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-label {
  display: none;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
  display: none;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.service-card p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 500;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ===== MYCELIUM SERVICES ===== */
.myc-services {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #000000;
}

/* Floating spore particles */
.myc-spores {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.myc-spore {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0;
  animation: sporeDrift 18s ease-in-out infinite;
}

.myc-spore:nth-child(1) { left: 8%;  top: 20%; animation-delay: 0s;    animation-duration: 20s; }
.myc-spore:nth-child(2) { left: 25%; top: 60%; animation-delay: -3s;   animation-duration: 16s; }
.myc-spore:nth-child(3) { left: 55%; top: 15%; animation-delay: -7s;   animation-duration: 22s; }
.myc-spore:nth-child(4) { left: 75%; top: 45%; animation-delay: -11s;  animation-duration: 18s; }
.myc-spore:nth-child(5) { left: 90%; top: 70%; animation-delay: -5s;   animation-duration: 24s; }
.myc-spore:nth-child(6) { left: 42%; top: 85%; animation-delay: -14s;  animation-duration: 19s; }

@keyframes sporeDrift {
  0%, 100% { opacity: 0;   transform: translate(0, 0) scale(1); }
  20%      { opacity: 0.4; }
  50%      { opacity: 0.15; transform: translate(40px, -60px) scale(1.5); }
  80%      { opacity: 0.35; }
}

/* Service list */
.myc-list {
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

/* Gold thread spine — vertical line connecting all nodes */
.myc-list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201,168,76,0.25) 8%,
    rgba(201,168,76,0.25) 92%,
    transparent 100%
  );
}

/* Animated gold pulse traveling down the spine */
.myc-list::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  width: 3px;
  height: 80px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--accent-gold), transparent);
  animation: spinePulse 4s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes spinePulse {
  0%   { top: -80px;  opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { top: 100%;    opacity: 0; }
}

/* Service row */
.myc-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0 32px 60px;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.5s ease, padding 0.5s ease;
}

.myc-row:first-child {
  border-top: 1px solid rgba(201,168,76,0.08);
}

/* Node dot on the spine */
.myc-row::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(201,168,76,0.3);
  transform: translateY(-50%);
  transition: all 0.4s ease;
  z-index: 2;
}

/* Horizontal branch from node to content */
.myc-row::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 50%;
  width: 31px;
  height: 1px;
  background: rgba(201,168,76,0.15);
  transform: translateY(-50%);
  transition: background 0.4s ease;
}

/* Hover states */
.myc-row:hover {
  background: rgba(201,168,76,0.03);
  padding-left: 68px;
}

.myc-row:hover::before {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.5), 0 0 40px rgba(201,168,76,0.15);
}

.myc-row:hover::after {
  background: rgba(201,168,76,0.4);
}

/* Number */
.myc-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(201,168,76,0.3);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 24px;
  transition: color 0.4s ease;
}

.myc-row:hover .myc-num {
  color: var(--accent-gold);
}

/* Text body */
.myc-row-body {
  flex: 1;
  min-width: 0;
}

.myc-row-body h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
  transition: color 0.4s ease;
}

.myc-row:hover .myc-row-body h3 {
  color: #fff;
}

.myc-row-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease 0.05s,
              margin 0.5s ease;
  margin-top: 0;
}

.myc-row:hover .myc-row-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

/* Tag pill */
.myc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 5px 14px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.myc-row:hover .myc-tag {
  color: var(--accent-gold);
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
}

/* Arrow icon */
.myc-arrow {
  width: 22px;
  height: 22px;
  stroke: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.4s ease;
  transform: translate(0, 0);
}

.myc-row:hover .myc-arrow {
  stroke: var(--accent-gold);
  transform: translate(3px, -3px);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .myc-services {
    padding: 80px 0;
  }

  .myc-list::before,
  .myc-list::after {
    display: none;
  }

  .myc-row {
    padding-left: 0;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .myc-row::before,
  .myc-row::after {
    display: none;
  }

  .myc-row:hover {
    padding-left: 8px;
  }

  .myc-row-body h3 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .myc-row-desc {
    max-height: none;
    opacity: 0.8;
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .myc-tag {
    display: none;
  }
}

/* Legacy svc classes kept for FAQ reuse */
.svc-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 0 28px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.svc-item:hover { border-color: rgba(201,168,76,0.3); }
.svc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; cursor: pointer; gap: 24px;
}
.svc-header h3 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; letter-spacing: -0.02em; transition: color var(--transition); }
.svc-header:hover h3 { color: var(--accent-gold); }
.svc-toggle { width: 36px; height: 36px; background: none; border: none; cursor: pointer; position: relative; flex-shrink: 0; }
.svc-toggle span { position: absolute; background: var(--text-secondary); border-radius: 1px; transition: transform 0.35s ease, opacity 0.35s ease; }
.svc-toggle span:first-child { width: 22px; height: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.svc-toggle span:last-child { width: 2px; height: 22px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.svc-item.open .svc-toggle span:last-child { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.svc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.svc-item.open .svc-body { max-height: 500px; padding-bottom: 28px; }
.svc-body p { font-size: 1rem; color: var(--text-secondary); max-width: 700px; line-height: 1.7; margin-bottom: 16px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--accent-gold); font-weight: 500; transition: var(--transition); }
.svc-link:hover { gap: 12px; }
.svc-link svg { width: 16px; height: 16px; }

/* ===== BENTO TABS ===== */
.bento-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.bento-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.bento-tab:hover {
  color: var(--text-primary);
  border-color: rgba(201,168,76,0.3);
}

.bento-tab.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #0a0a0f;
}

.bento-panel {
  display: none;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  animation: bentoFadeIn 0.35s ease;
}

.bento-panel.active {
  display: grid;
}

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--transition);
}

.bento-card:hover {
  border-color: rgba(201,168,76,0.2);
}

.bento-card-main {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
}

.bento-card-main h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
}

.bento-card-main p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-weight: 500;
  transition: var(--transition);
}

.bento-link:hover {
  gap: 12px;
}

.bento-link svg {
  width: 16px;
  height: 16px;
}

.bento-card-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201,168,76,0.06) 100%);
}

.bento-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.bento-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.bento-card-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-card-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.bento-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

@media (max-width: 700px) {
  .bento-panel {
    grid-template-columns: 1fr;
  }
  .bento-card-main {
    grid-row: auto;
  }
  .bento-nav {
    gap: 6px;
  }
  .bento-tab {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
}

/* ===== MYCELIUM CASES ===== */
.myc-cases {
  background: #000000;
  padding: 120px 0;
  position: relative;
}

.myc-cases-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.myc-case {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 48px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.myc-case:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.25);
  transform: translateX(8px);
}

/* Gold stat block */
.myc-case-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}

.myc-case-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  transition: text-shadow 0.4s ease;
}

.myc-case:hover .myc-case-num {
  text-shadow: 0 0 30px rgba(201,168,76,0.4);
}

.myc-case-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Info block */
.myc-case-info {
  flex: 1;
  min-width: 0;
}

.myc-case-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.myc-case-info h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.myc-case:hover .myc-case-info h3 {
  color: #fff;
}

.myc-case-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease 0.05s,
              margin 0.5s ease;
  margin-top: 0;
}

.myc-case:hover .myc-case-info p {
  max-height: 100px;
  opacity: 1;
  margin-top: 4px;
}

/* Arrow */
.myc-case-arrow {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.myc-case:hover .myc-case-arrow {
  stroke: var(--accent-gold);
  transform: translate(3px, -3px);
}

/* Responsive */
@media (max-width: 768px) {
  .myc-cases {
    padding: 80px 0;
  }

  .myc-case {
    flex-wrap: wrap;
    padding: 28px 24px;
    gap: 16px;
  }

  .myc-case-stat {
    min-width: auto;
  }

  .myc-case-num {
    font-size: 2rem;
  }

  .myc-case-info p {
    max-height: none;
    opacity: 0.8;
    margin-top: 4px;
  }

  .myc-case:hover {
    transform: none;
  }
}

/* ===== CASES (legacy) ===== */
.cases {
  background: var(--bg-primary);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.case-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.case-card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 0.6s ease;
  background: #e6eaee;
}

.case-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.case-card:hover .case-card-bg {
  transform: scale(1.04);
}

.positions-frame {
  border: none;
  display: block;
  transform-origin: top left;
  pointer-events: none;
}

.case-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  pointer-events: none;
}

.case-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 5px;
  line-height: 1.3;
}

.case-result {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  margin: 0;
}

/* ─── Position table lightbox ─────────────────────────────── */
.pos-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbFadeIn 0.18s ease;
}

.pos-lightbox.open {
  display: flex;
}

.pos-lightbox-inner {
  position: relative;
  width: min(980px, 96vw);
  height: min(88vh, 860px);
  background: #e6eaee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}

.pos-lightbox-frame {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}

.pos-lightbox-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.pos-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.75);
}

.case-result strong {
  color: var(--accent-gold);
  font-weight: 700;
}

.card-expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  z-index: 3;
  pointer-events: all;
}

.card-expand-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

.case-card:hover .card-expand-btn {
  opacity: 1;
}

.card-expand-btn:hover {
  background: rgba(201, 168, 76, 0.8);
  border-color: transparent;
  color: #fff;
}

.case-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a2e;
  position: relative;
}

/* View button */
.case-view-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.case-card:hover .case-view-btn {
  opacity: 1;
}

.case-view-btn:hover {
  background: rgba(201, 168, 76, 0.85);
  border-color: transparent;
}

.case-view-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lbFadeIn 0.18s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: min(1300px, 94vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-inner svg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 0;
}

.lightbox-inner img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.case-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.case-card:hover .case-image svg {
  transform: scale(1.03);
  transition: transform 0.4s ease;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.03);
}

.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  width: fit-content;
}

.case-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-client {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.case-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.case-info p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
}

.case-link {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--accent-gold);
  text-decoration: none;
  margin-top: 6px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.case-link:hover {
  opacity: 1;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags span {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.cases-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PARTNERSHIP MODEL ===== */
.partnership {
  background: var(--bg-secondary);
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.partnership-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
}

.partnership-card .number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.partnership-card h3 {
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.partnership-card p {
  font-size: 0.95rem;
}

/* ===== DUALITY PARTNERSHIP BLOCK ===== */
.am-duality {
  background: #050508;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.am-duality-label {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
}

.am-duality-title {
  color: #fff;
}

/* --- Split comparison --- */
.am-duality-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  margin-top: 4rem;
  align-items: stretch;
}

.am-duality-side {
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Dead side (traditional) */
.am-side-dead {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.am-side-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2.5rem;
  width: fit-content;
  font-family: monospace;
}

.am-badge-gold {
  color: var(--accent-gold);
  border-color: rgba(201, 168, 76, 0.4);
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.05);
}

.am-side-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  flex: 1;
}

/* Dead items */
.am-dead-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.am-strikethrough {
  font-size: 1.15rem;
  font-weight: 600;
  color: #666;
  text-decoration: line-through;
  text-decoration-color: #ff4444;
  text-decoration-thickness: 2px;
  transition: all 0.3s ease;
}

.am-dead-item:hover .am-strikethrough {
  color: #888;
}

.am-dead-label {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.4;
}

.am-dead-verdict {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff4444;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.am-dead-verdict svg {
  width: 20px;
  height: 20px;
  color: #ff4444;
}

/* Divider */
.am-duality-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  gap: 1.2rem;
}

.am-divider-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.am-divider-vs {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 3px;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.05);
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* Gold side (Aurum) */
.am-side-gold {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04), rgba(201, 168, 76, 0.01));
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
}

.am-side-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.06), transparent 60%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.am-gold-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.am-gold-highlight {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.3);
  transition: all 0.3s ease;
}

.am-gold-item:hover .am-gold-highlight {
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
}

.am-gold-label {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.4;
}

.am-gold-verdict {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
  position: relative;
  z-index: 1;
}

.am-gold-verdict svg {
  width: 22px;
  height: 22px;
  color: var(--accent-gold);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.5));
}

/* --- Format cards row --- */
.am-formats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.am-format-card {
  background: rgba(20, 20, 30, 0.5);
  border-left: 3px solid var(--accent-gold);
  padding: 2.5rem 2rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}

.am-format-card:hover {
  transform: translateX(8px);
  background: rgba(30, 30, 45, 0.5);
}

.am-format-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: serif;
}

.am-format-card h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.am-format-card h3 span {
  font-size: 0.85rem;
  color: #666;
  font-family: monospace;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.am-format-card p {
  color: #999;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- Stagger animations via fade-in.visible --- */
.am-duality-split.visible .am-side-dead {
  animation: am-slideLeft 0.7s ease both;
}
.am-duality-split.visible .am-duality-divider {
  animation: am-fadeScale 0.5s 0.3s ease both;
}
.am-duality-split.visible .am-side-gold {
  animation: am-slideRight 0.7s 0.15s ease both;
}

.am-duality-split.visible .am-dead-item {
  animation: am-fadeUp 0.5s ease both;
}
.am-duality-split.visible .am-dead-item:nth-child(1) { animation-delay: 0.3s; }
.am-duality-split.visible .am-dead-item:nth-child(2) { animation-delay: 0.45s; }
.am-duality-split.visible .am-dead-item:nth-child(3) { animation-delay: 0.6s; }
.am-duality-split.visible .am-dead-item:nth-child(4) { animation-delay: 0.75s; }

.am-duality-split.visible .am-gold-item {
  animation: am-fadeUp 0.5s ease both;
}
.am-duality-split.visible .am-gold-item:nth-child(1) { animation-delay: 0.4s; }
.am-duality-split.visible .am-gold-item:nth-child(2) { animation-delay: 0.55s; }
.am-duality-split.visible .am-gold-item:nth-child(3) { animation-delay: 0.7s; }
.am-duality-split.visible .am-gold-item:nth-child(4) { animation-delay: 0.85s; }

.am-duality-split.visible .am-dead-verdict {
  animation: am-fadeUp 0.5s 0.9s ease both;
}
.am-duality-split.visible .am-gold-verdict {
  animation: am-fadeUp 0.5s 1s ease both;
}

.am-formats-row.visible .am-format-card {
  animation: am-fadeUp 0.6s ease both;
}
.am-formats-row.visible .am-format-card:nth-child(1) { animation-delay: 0.1s; }
.am-formats-row.visible .am-format-card:nth-child(2) { animation-delay: 0.25s; }
.am-formats-row.visible .am-format-card:nth-child(3) { animation-delay: 0.4s; }

/* Gold pulse on verdict */
.am-duality-split.visible .am-gold-verdict::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  animation: am-goldPulse 2s 1.2s ease-in-out infinite;
}

@keyframes am-slideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes am-slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes am-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes am-fadeScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes am-goldPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  .am-duality-split {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .am-duality-divider {
    flex-direction: row;
    padding: 1.5rem 0;
  }
  .am-divider-line {
    width: auto;
    height: 1px;
    flex: 1;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
  }
  .am-formats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .am-duality {
    padding: 5rem 0 4rem;
  }
  .am-duality-side {
    padding: 2rem 1.5rem;
  }
  .am-format-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.advantage-item {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.advantage-item:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.advantage-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.advantage-item p {
  font-size: 0.9rem;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.stat-item p {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA ===== */
.cta {
  text-align: center;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ===== AM SINGULARITY CTA ===== */
.am-singularity-section {
  background: #000;
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.mycelium-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.am-singularity-void {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200vw;
  height: 200vw;
  background: radial-gradient(circle at center, rgba(201, 168, 76, 0.05) 0%, #000 70%);
  pointer-events: none;
  z-index: 0;
}

.am-singularity-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.am-singularity-point {
  background: #000;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.4), inset 0 0 20px rgba(201, 168, 76, 0.2);
  transition: all 0.5s ease;
  text-align: center;
  padding: 2rem;
}

.am-singularity-point:hover {
  transform: scale(0.9);
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.8), inset 0 0 40px rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.1);
}

.am-s-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-contact .logo {
  margin-bottom: 28px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--text-primary);
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-contact .logo {
    display: flex;
    justify-content: flex-start;
    align-self: flex-start;
    margin-left: -22px;
  }

  .footer-contact .logo-img {
    height: 110px;
  }
}

/* ===== SERVICE PAGE ===== */
.service-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.service-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-hero .section-label {
  margin-bottom: 20px;
}

.service-hero h1 {
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

.service-hero > .container > p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* Hero checklist */
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-checklist li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 1px;
}

.hero-checklist li strong {
  color: #fff;
}

/* Philosophy section */
.philosophy-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-left {
}

.philosophy-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.philosophy-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.philosophy-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.philosophy-text strong {
  color: var(--text-primary);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.philosophy-cell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s, border-color 0.3s;
}

.philosophy-cell:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.philosophy-cell-icon {
  margin-bottom: auto;
  padding-bottom: 48px;
}

.philosophy-cell h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.philosophy-cell p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .philosophy-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
}

/* Services categories list */
.services-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-category {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.services-category .services-category-header {
  margin-bottom: auto;
  padding-bottom: 24px;
}

.services-category:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.services-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-category-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.services-category-header svg {
  color: var(--text-muted);
  opacity: 0.5;
}

.services-category-divider {
  height: 1px;
  background: var(--border-color);
  margin: 16px 0 20px;
}

.services-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-category-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color 0.2s;
}

.services-category-list li:hover {
  color: var(--accent-gold);
}

@media (max-width: 900px) {
  .services-categories {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-categories {
    grid-template-columns: 1fr;
  }
}

/* Our numbers section */
.our-numbers-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.our-numbers-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.our-numbers-link {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 36px;
  transition: opacity 0.2s;
}

.our-numbers-link:hover {
  opacity: 0.7;
}

.our-numbers-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.our-numbers-facts li {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.our-numbers-diamond {
  color: var(--accent-gold);
  margin-right: 10px;
  font-size: 0.7rem;
}

.chart-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px 24px 20px;
}

.chart-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .our-numbers-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Service detail sections */
.service-detail {
  padding: 80px 0;
}

.service-detail.alt-bg {
  background: var(--bg-secondary);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.detail-grid h2 {
  margin-bottom: 20px;
}

.detail-grid p {
  margin-bottom: 16px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-list-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--accent-gold);
}

.detail-list-item p {
  font-size: 0.95rem;
}

.detail-list-item strong {
  color: var(--text-primary);
}

/* Steps — Bento */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 32px 32px;
  counter-increment: step;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color var(--transition);
}

.step-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.step-card:nth-child(1),
.step-card:nth-child(2),
.step-card:nth-child(3) {
  grid-column: span 2;
}

.step-card:nth-child(4),
.step-card:nth-child(5) {
  grid-column: span 3;
  min-height: 260px;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-size: 5.5rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Steps visual layout */
.steps-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  align-items: center;
}

.steps-visual-icon {
  width: 546px;
  height: 546px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  margin: 0 auto;
}

.steps-visual-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steps-visual-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-visual-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.steps-visual-text {
  position: relative;
  z-index: 1;
}

.steps-visual-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.steps-visual-item p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 65%;
}

.steps-visual-num {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
  position: absolute;
  bottom: 8px;
  right: 20px;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  .steps-visual {
    grid-template-columns: 260px 1fr;
    gap: 0 36px;
  }

  .steps-visual-num {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .steps-visual {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-visual-icon {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .steps-visual-num {
    font-size: 3rem;
  }
}

/* SEO Benefits block */
.seo-benefits {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: stretch;
}

.seo-benefits-left h2 {
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.25;
}

.seo-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.seo-benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.seo-benefit-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 2px;
}

.seo-benefit-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.seo-benefit-item p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.seo-benefits-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.seo-stat-card {
  background: var(--accent-gold);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-stat-card--offset {
  margin-top: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.seo-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bg-primary);
  line-height: 1;
}

.seo-stat-card--offset .seo-stat-num {
  color: var(--accent-gold);
}

.seo-stat-text {
  font-size: 0.9rem;
  color: var(--bg-primary);
  line-height: 1.5;
  font-weight: 500;
}

.seo-stat-card--offset .seo-stat-text {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .seo-benefits {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .seo-benefits-right {
    flex-direction: row;
  }

  .seo-stat-card {
    flex: 1;
  }

  .seo-stat-card--offset {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .seo-benefits-right {
    flex-direction: column;
  }
}

/* Context 4-feature grid */
.ctx-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ctx-feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, transform 0.25s;
}

.ctx-feat-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-3px);
}

.ctx-feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ctx-feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-gold);
}

.ctx-feat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.ctx-feat-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .ctx-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ctx-feat-grid {
    grid-template-columns: 1fr;
  }
}

/* Context benefits grid */
.ctx-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ctx-benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
}

.ctx-benefit-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-3px);
}

.ctx-benefit-card--accent {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.ctx-benefit-card--accent:hover {
  border-color: var(--accent-gold);
}

.ctx-benefit-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.ctx-benefit-card--accent .ctx-benefit-num {
  color: var(--bg-primary);
}

.ctx-benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 4px 0 0;
}

.ctx-benefit-card--accent h3 {
  color: var(--bg-primary);
}

.ctx-benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.ctx-benefit-card--accent p {
  color: rgba(10, 10, 15, 0.7);
}

@media (max-width: 900px) {
  .ctx-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Services cards grid (seo.html "Наши услуги" block) */
.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s, transform 0.25s;
}

.srv-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-3px);
}

.srv-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.srv-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent-gold);
  stroke: var(--accent-gold);
}

.srv-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.srv-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.srv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 8px;
  padding: 8px 16px;
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.srv-card-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--accent-gold);
}

@media (max-width: 900px) {
  .srv-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .srv-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Commission highlight */
.commission-banner {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
}

.commission-banner h3 {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.commission-banner p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* FAQ */
.faq-list {
  margin: 0 auto;
  grid-template-columns: 1fr;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 0 28px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq-list .svc-item {
  background: var(--bg-card);
}

.faq-question.svc-header {
  padding: 24px 0;
}

.faq-list .svc-header h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0;
}

.faq-question {
  padding: 0;
}

.faq-question h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    gap: 4px;
    transition: right var(--transition);
    border-left: 1px solid var(--border-color);
    overflow-y: auto;
  }

  .nav.open {
    right: 0;
  }

  .nav-pill {
    flex-direction: column;
    width: 100%;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-pill a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    white-space: normal;
    word-break: break-word;
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
    min-width: auto;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
    border-radius: var(--radius-sm);
    display: none;
    padding: 4px 0 4px 8px;
  }

  .nav-dropdown-menu a {
    white-space: normal;
    word-break: break-word;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }

  .header-cta {
    display: none;
  }

  .btn-header-mobile {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #0a0a0f;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
  }

  .header .container {
    padding: 0 20px;
  }

  .header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4px 0;
  }

  .logo-img {
    height: 75px;
  }

  .burger {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
  }

  .hero {
    min-height: auto;
    padding: 150px 0 80px;
  }

  .am-hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .service-hero {
    padding-top: 150px;
    padding-bottom: 50px;
  }

  .numbers-chart-box {
    padding: 20px 16px 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }

  .numbers-chart-box canvas {
    width: 100% !important;
    height: auto !important;
  }

  .service-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

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

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

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

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

  .step-card {
    grid-column: span 1 !important;
    min-height: 180px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .commission-banner {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ===== OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

/* ===== PRIVACY PAGE ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin-bottom: 12px;
}

.privacy-content ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.privacy-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.privacy-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .contact-form {
    padding: 28px 20px;
  }

  .btn-header {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0 !important;
    margin-top: 8px;
  }
}

/* ===== MYCELIUM PRINCIPLES ===== */
.myc-principles {
  padding: 120px 0;
  background: #000000;
}

.myc-princ-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.myc-princ {
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-xl);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}

.myc-princ:hover {
  background: rgba(201,168,76,0.03);
  border-color: rgba(201,168,76,0.2);
}

.myc-princ-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.myc-princ-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(201,168,76,0.5);
  transition: stroke 0.4s ease;
}

.myc-princ:hover .myc-princ-icon {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}

.myc-princ:hover .myc-princ-icon svg {
  stroke: var(--accent-gold);
}

.myc-princ h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.myc-princ:hover h3 {
  color: #fff;
}

.myc-princ p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .myc-principles {
    padding: 80px 0;
  }

  .myc-princ-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .myc-princ {
    padding: 28px 24px;
  }
}

/* ===== NUMBERS SECTION (legacy) ===== */
.numbers-section {
  padding: 100px 0;
}

.numbers-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.numbers-title-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.numbers-title-row h2 {
  margin: 0;
}

.numbers-link {
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 1px;
  transition: border-color var(--transition), color var(--transition);
}

.numbers-link:hover {
  border-color: var(--accent-gold);
}

.numbers-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.numbers-facts li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
}

.numbers-diamond {
  width: 10px;
  height: 10px;
  background: var(--accent-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.numbers-chart-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px 24px 20px;
}

.numbers-chart-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .numbers-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .numbers-title-row {
    flex-direction: column;
    gap: 8px;
  }

}

/* ============================================================
   REDESIGN: GHOST HEADER + FULLSCREEN NAV + MINIMAL FOOTER
   ============================================================ */

/* --- Header override --- */
.header {
  padding: 18px 0;
  background: transparent;
  border-bottom: none;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.header.scrolled {
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

/* Hide old nav elements */
.header .nav,
.header .header-cta,
.header .burger,
.nav-overlay:not(.fullnav) {
  display: none !important;
}

/* New inner layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Header navigation ---- */
.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.header-nav > a {
  padding: 8px 13px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(232, 232, 240, 0.5);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 3px;
  transition: color 0.25s ease;
}

.header-nav > a:hover {
  color: rgba(201, 168, 76, 0.9);
}

/* Dropdown "Услуги" */
.header-nav-dropdown {
  position: relative;
}

.header-nav-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(232, 232, 240, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  border-radius: 3px;
  transition: color 0.25s ease;
}

.header-nav-toggle:hover {
  color: rgba(201, 168, 76, 0.9);
}

.header-nav-toggle svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.header-nav-dropdown:hover .header-nav-toggle svg,
.header-nav-dropdown.open .header-nav-toggle svg {
  transform: rotate(180deg);
}

.header-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 270px;
  background: rgba(5, 5, 8, 0.97);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  padding: 6px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.header-nav-dropdown:hover .header-nav-dropdown-menu,
.header-nav-dropdown.open .header-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header-nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 0.9rem;
  color: rgba(232, 232, 240, 0.4);
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-nav-dropdown-menu a:hover {
  color: rgba(201, 168, 76, 0.9);
  background: rgba(201, 168, 76, 0.06);
}

/* Hide nav below 1100px — fullscreen МЕНЮ handles mobile */
@media (max-width: 1100px) {
  .header-nav { display: none; }
}

.header-inner .logo-img {
  height: 140px;
  transition: height 0.4s ease;
}

.header.scrolled .header-inner .logo-img {
  height: 100px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Кнопка "Принимаем проекты" в хедере */
.header-accept-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.85);
  font-family: monospace;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.header-accept-btn:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.7);
  color: #c9a84c;
}

/* Устаревший .header-status — оставляем как fallback */
.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.45);
  font-family: monospace;
  white-space: nowrap;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a84c;
  flex-shrink: 0;
  animation: statusPulse 3s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.menu-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(201, 168, 76, 0.75);
  font-family: monospace;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0;
  transition: color 0.3s ease;
}

.menu-trigger:hover {
  color: #c9a84c;
}

.menu-trigger-label {
  transition: opacity 0.3s ease;
}

.menu-trigger.is-open .menu-trigger-label {
  opacity: 0;
}

.menu-trigger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-trigger-lines i {
  display: block;
  width: 30px;
  height: 1.5px;
  background: currentColor;
  font-style: normal;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.3s ease;
}

.menu-trigger.is-open .menu-trigger-lines i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-trigger.is-open .menu-trigger-lines i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* --- Fullscreen navigation overlay --- */
.fullnav {
  position: fixed;
  inset: 0;
  background: #060608;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  overflow-y: auto;
}

.fullnav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 10% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.fullnav.is-open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.fullnav-close {
  position: absolute;
  top: clamp(1.4rem, 2.5vw, 2rem);
  right: clamp(1.5rem, 3vw, 3.2rem);
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fullnav-close i {
  position: absolute;
  width: 24px;
  height: 1px;
  background: rgba(201, 168, 76, 0.55);
  font-style: normal;
  transition: background 0.3s ease;
}

.fullnav-close i:first-child { transform: rotate(45deg); }
.fullnav-close i:last-child  { transform: rotate(-45deg); }

.fullnav-close:hover i { background: #c9a84c; }

.fullnav-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  flex: 1;
}

/* Big nav links */
.fullnav-main {
  display: flex;
  flex-direction: column;
}

.fullnav-main a {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 800;
  color: rgba(232, 232, 240, 0.12);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.07);
  padding: 0.55rem 0;
  opacity: 0;
  transform: translateY(18px);
  transition: color 0.3s ease,
              border-color 0.3s ease,
              opacity 0.5s ease calc(var(--i, 0) * 0.07s),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i, 0) * 0.07s);
}

.fullnav.is-open .fullnav-main a {
  opacity: 1;
  transform: translateY(0);
}

.fullnav-main a:hover {
  color: #c9a84c;
  border-color: rgba(201, 168, 76, 0.25);
}

/* Right side: services + contacts */
.fullnav-side {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 0.6rem;
}

.fullnav-services-title {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.38);
  font-family: monospace;
  margin-bottom: 14px;
}

.fullnav-services a {
  display: block;
  font-size: 1.05rem;
  color: rgba(232, 232, 240, 0.35);
  padding: 7px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
  text-decoration: none;
  transition: color 0.25s ease;
}

.fullnav-services a:hover { color: #c9a84c; }

.fullnav-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.fullnav-contact a {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: rgba(232, 232, 240, 0.25);
  font-family: monospace;
  text-decoration: none;
  transition: color 0.25s ease;
}

.fullnav-contact a:hover { color: rgba(201, 168, 76, 0.7); }

/* --- Footer redesign --- */
.footer {
  padding: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.footer-top,
.footer-contact,
.footer-contact-list,
.footer-col {
  display: none !important;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  padding-top: 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
}

.footer-logo .logo-img {
  height: 110px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-logo:hover .logo-img { opacity: 1; }

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(152, 152, 168, 0.45);
  font-family: monospace;
}

.footer-privacy-link {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(152, 152, 168, 0.35);
  font-family: monospace;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-privacy-link:hover { color: rgba(201, 168, 76, 0.65); }

/* --- Футер: навигационная секция --- */
.footer-nav-section {
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.07);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-title {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.4);
  font-family: monospace;
  margin-bottom: 6px;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: rgba(232, 232, 240, 0.4);
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.4;
}

.footer-nav-col a:hover { color: rgba(201, 168, 76, 0.85); }

.footer-nav-cta {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

/* Кнопка "Принимаем проекты" в футере */
.footer-accept-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 48px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.06) 100%);
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a84c;
  font-family: monospace;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  z-index: 1;
}

.footer-accept-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 4px;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  animation: footerBtnGlow 3s ease-in-out infinite;
  z-index: -1;
}

.footer-accept-btn::after {
  content: '→';
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-left: 6px;
}

@keyframes footerBtnGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.footer-accept-btn .status-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

.footer-accept-btn:hover {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.22) 0%, rgba(201, 168, 76, 0.12) 100%);
  border-color: rgba(201, 168, 76, 0.8);
  color: #d4b85a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.footer-accept-btn:hover::after {
  transform: translateX(5px);
}

.footer-accept-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.1);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .header-accept-btn { display: none; }

  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-nav-cta {
    grid-column: 1 / -1;
  }

  .footer-accept-btn {
    padding: 18px 36px;
    font-size: 0.75rem;
  }

  .fullnav-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fullnav-main a {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 768px) {
  .header-inner .logo-img,
  .header.scrolled .header-inner .logo-img {
    height: 75px;
    transition: none;
  }

  .fullnav {
    padding-top: 120px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0 20px;
  }

  .footer-bottom-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-logo { display: none; }
}

@media (max-width: 400px) {
  .fullnav {
    padding: 7.5rem 1.4rem 2rem;
  }
}

/* ============================================================
   MYC STATS — "Нас в цифрах"
   ============================================================ */
.myc-stats {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.myc-stats-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.myc-stats-header .section-label {
  margin-bottom: 0;
}

.myc-stats-note {
  font-size: 0.78rem;
  color: rgba(152,152,168,0.5);
  letter-spacing: 0.04em;
  max-width: 260px;
  text-align: right;
  line-height: 1.6;
}

.myc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.myc-stat-item {
  padding: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border: 1px solid rgba(201,168,76,0.07);
  background: rgba(201,168,76,0.02);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.myc-stat-item:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.18);
}

.myc-stat-num {
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: 'tnum';
}

.myc-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(232,232,240,0.85);
  margin-bottom: 0.4rem;
}

.myc-stat-desc {
  font-size: 0.75rem;
  color: rgba(152,152,168,0.55);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .myc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .myc-stats-header { flex-direction: column; align-items: flex-start; }
  .myc-stats-note { text-align: left; max-width: 100%; }
}

@media (max-width: 500px) {
  .myc-stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MYC PROCESS — "Как мы прорастаем"
   ============================================================ */
.myc-process {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.myc-process-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.myc-process-left {
  position: sticky;
  top: 120px;
}

.myc-process-left .section-title {
  margin-bottom: 1.2rem;
}

.myc-process-tagline {
  font-size: 0.82rem;
  color: rgba(152,152,168,0.55);
  line-height: 1.7;
  max-width: 280px;
}

.myc-process-tagline em {
  color: rgba(201,168,76,0.7);
  font-style: normal;
}

.myc-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.myc-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25) 10%, rgba(201,168,76,0.25) 90%, transparent);
}

.myc-step {
  display: flex;
  gap: 32px;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
  position: relative;
}

.myc-step:last-child {
  border-bottom: none;
}

.myc-step-num {
  width: 60px;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.08em;
  padding-top: 0.2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.myc-step-num::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  margin-top: 1.1rem;
}

.myc-step-body {
  flex: 1;
}

.myc-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(232,232,240,0.9);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.myc-step-text {
  font-size: 0.82rem;
  color: rgba(152,152,168,0.6);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .myc-process-inner { grid-template-columns: 1fr; }
  .myc-process-left { position: static; }
  .myc-steps::before { left: 22px; }
}

/* ============================================================
   MYC FAQ — "Частые вопросы"
   ============================================================ */
.myc-faq {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.myc-faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.myc-faq-left {
  position: sticky;
  top: 120px;
}

.myc-faq-left .section-title {
  margin-bottom: 1rem;
}

.myc-faq-sub {
  font-size: 0.8rem;
  color: rgba(152,152,168,0.5);
  line-height: 1.65;
}

.myc-faq-list .faq-item {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 0;
}

.myc-faq-list .faq-item:last-child {
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.myc-faq-list .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(232,232,240,0.8);
  gap: 16px;
}

.myc-faq-list .faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.myc-faq-list .faq-item.open .faq-question::after {
  content: '×';
  opacity: 1;
}

.myc-faq-list .faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.myc-faq-list .faq-item.open .faq-answer {
  max-height: 400px;
}

.myc-faq-list .faq-answer-inner {
  padding: 0 0 1.4rem;
  font-size: 0.82rem;
  color: rgba(152,152,168,0.62);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .myc-faq-inner { grid-template-columns: 1fr; }
  .myc-faq-left { position: static; margin-bottom: 2rem; }
}

/* ============================================================
   ABOUT PAGE — Unique Blocks
   ============================================================ */

/* Block 3: Процесс */
.about-process-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.about-process-card {
  position: relative;
  padding: 48px 40px;
  border: 1px solid rgba(201,168,76,0.1);
  background: rgba(201,168,76,0.02);
  transition: background 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.about-process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-process-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.25);
}

.about-process-card:hover::before {
  opacity: 1;
}

.about-process-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201,168,76,0.08);
  font-family: monospace;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-process-icon {
  color: rgba(201,168,76,0.5);
  margin-bottom: 20px;
  transition: color 0.35s ease;
}

.about-process-card:hover .about-process-icon {
  color: rgba(201,168,76,0.85);
}

.about-process-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about-process-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .about-process-grid { grid-template-columns: 1fr; gap: 1px; }
}

/* Block 4: Хронология */
.about-timeline-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.about-timeline {
  margin-top: 64px;
  position: relative;
  padding-left: 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.3) 10%, rgba(201,168,76,0.3) 90%, transparent);
}

.about-tl-item {
  display: grid;
  grid-template-columns: 120px 24px 1fr;
  gap: 0 40px;
  align-items: flex-start;
  padding: 0 0 56px;
  position: relative;
}

.about-tl-year {
  text-align: right;
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(201,168,76,0.6);
  padding-top: 4px;
  font-weight: 600;
}

.about-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.4);
  background: var(--bg-primary);
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  left: -5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-tl-dot--active {
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.15);
}

.about-tl-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.about-tl-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .about-timeline::before { left: 80px; }
  .about-tl-item { grid-template-columns: 80px 20px 1fr; gap: 0 24px; }
}

/* Block 5: Цифры */
.about-stats-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.about-stat-card {
  padding: 48px 36px;
  background: var(--bg-primary);
  text-align: center;
  transition: background 0.3s ease;
}

.about-stat-card:hover {
  background: rgba(201,168,76,0.04);
}

.about-stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-num span {
  font-size: 0.5em;
  font-weight: 700;
  vertical-align: super;
  margin-left: 2px;
}

.about-stat-unit {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  font-family: monospace;
  margin-top: 6px;
  margin-bottom: 12px;
}

.about-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-stat-card { padding: 36px 24px; }
}

/* ============================================================
   ABOUT HERO — Unique statement hero
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 0;
  background: var(--bg-primary);
}

/* Animated grid background */
.about-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}

/* Gold glow blob */
.about-hero-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Vertical side label */
.about-hero-label-vert {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.25);
  white-space: nowrap;
  z-index: 2;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

/* Eyebrow */
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 32px;
}

/* Main title */
.about-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.about-hero-title-line {
  display: block;
}

.about-hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,168,76,0.5);
  text-stroke: 1.5px rgba(201,168,76,0.5);
}

/* Description */
.about-hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}

/* Inline stats */
.about-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.about-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
}

.about-hero-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-hero-stat-label {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}

.about-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.15);
  margin-right: 48px;
  flex-shrink: 0;
}

/* Ticker */
.about-hero-ticker-wrap {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(201,168,76,0.03);
}

.about-hero-ticker {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: aboutHeroTicker 20s linear infinite;
}

.about-hero-ticker span {
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
  padding: 0 20px;
}

.about-hero-ticker-sep {
  color: rgba(201,168,76,0.25) !important;
  padding: 0 4px !important;
  letter-spacing: 0 !important;
}

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

@media (max-width: 860px) {
  .about-hero-label-vert { display: none; }
  .about-hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .about-hero-stat { padding-right: 28px; }
  .about-hero-stat-divider { margin-right: 28px; }
}

@media (max-width: 480px) {
  .about-hero-stats { flex-wrap: wrap; gap: 24px; }
  .about-hero-stat-divider { display: none; }
  .about-hero-stat { padding-right: 0; }
}

/* ============================================================
   ABOUT HERO — Split layout (v2, in-style)
   ============================================================ */
.about-hero-split.service-hero {
  padding-bottom: 100px;
}

.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}

/* Override centered default */
.about-hero-split .container {
  text-align: left;
}

.about-split-left h1 {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.about-split-left p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-split-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  margin-top: 36px;
}

/* Right card */
.about-split-card {
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  background: rgba(201,168,76,0.03);
  padding: 8px 0;
}

.about-split-card-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
}

.about-split-num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 100px;
}

.about-split-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-family: monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-split-card-divider {
  height: 1px;
  background: rgba(201,168,76,0.1);
  margin: 0 40px;
}

@media (max-width: 900px) {
  .about-split-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-split-left h1,
  .about-split-left p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .about-split-left {
    text-align: center;
  }
  .about-split-status {
    justify-content: center;
    display: flex;
  }
}

/* About hero split — fix font size and top offset */
.about-hero-split.service-hero {
  padding-top: 180px;
}

.about-split-left h1 {
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  white-space: nowrap;
}

/* ============================================================
   PHILOSOPHY V2 — Top text + bottom 4-column strip
   ============================================================ */
.phil-v2-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  margin-bottom: 0;
}

.phil-v2-top-left .philosophy-title {
  margin-bottom: 0;
}

.phil-v2-top-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phil-v2-top-right p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.phil-v2-top-right strong {
  color: var(--text-primary);
}

/* 4-column strip */
.phil-v2-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.phil-v2-item {
  padding: 48px 36px;
  border-right: 1px solid rgba(201,168,76,0.08);
  transition: background 0.3s ease;
}

.phil-v2-item:last-child {
  border-right: none;
}

.phil-v2-item:hover {
  background: rgba(201,168,76,0.03);
}

.phil-v2-icon {
  margin-bottom: 28px;
  opacity: 0.8;
}

.phil-v2-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.phil-v2-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .phil-v2-top { grid-template-columns: 1fr; gap: 32px; }
  .phil-v2-items { grid-template-columns: repeat(2, 1fr); }
  .phil-v2-item { border-bottom: 1px solid rgba(201,168,76,0.08); }
  .phil-v2-item:nth-child(2n) { border-right: none; }
}

@media (max-width: 540px) {
  .phil-v2-items { grid-template-columns: 1fr; }
  .phil-v2-item { border-right: none; }
}

/* ============================================================
   ABOUT PAGE — Match index.html section backgrounds
   ============================================================ */
.about-hero-split.service-hero,
.phil-v2.philosophy-section,
.about-process-section,
.about-stats-section,
#services:has(.myc-list) {
  background: #000000;
}

.about-timeline-section {
  background: #050508;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.about-stats-grid {
  background: transparent;
  border-color: rgba(201,168,76,0.08);
}

.about-stat-card {
  background: #000000;
}

.about-stat-card:hover {
  background: rgba(201,168,76,0.04);
}

.myc-principles.alt-bg {
  background: #000000;
}

/* ============================================================
   ABOUT — Members block
   ============================================================ */
.about-members-section {
  background: #000000;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.about-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  margin-top: 64px;
  border: 1px solid rgba(201,168,76,0.08);
}

.about-member-card {
  background: #000000;
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-member-card:hover {
  background: rgba(201,168,76,0.03);
}

.about-member-num {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(201,168,76,0.3);
  margin-bottom: 4px;
}

.about-member-icon {
  color: rgba(201,168,76,0.55);
  margin-bottom: 4px;
}

.about-member-card h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--text-primary);
}

.about-member-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.about-member-tag {
  display: inline-block;
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 5px 12px;
  border-radius: 2px;
  margin-top: 4px;
  width: fit-content;
}

@media (max-width: 860px) {
  .about-members-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT — Standards block
   ============================================================ */
.about-standards-section {
  background: #050508;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.about-standards-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.about-standards-left h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.about-standards-left p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-standards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-standard-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.about-standard-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.08);
}

.about-standard-cross {
  font-size: 1rem;
  color: rgba(201,168,76,0.4);
  flex-shrink: 0;
  margin-top: 2px;
  font-family: monospace;
}

.about-standard-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.about-standard-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .about-standards-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Standards block — strikethrough "не" + vertical center */
.about-standards-inner {
  align-items: center;
}

.about-std-not {
  position: relative;
  color: inherit;
}

.about-std-not::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 9px;
  background: #e03535;
  transform: translateY(-50%) rotate(-4deg);
  border-radius: 2px;
}

/* ============================================================
   INDEX — Block: Как начать (4 steps)
   ============================================================ */
.idx-steps-section {
  background: #050508;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.idx-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  position: relative;
}

.idx-step {
  padding: 0 40px 0 0;
  position: relative;
}

.idx-step-num {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-family: monospace;
}

.idx-step-connector {
  position: absolute;
  top: 28px;
  right: -1px;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}

.idx-step-connector--last {
  display: none;
}

.idx-step h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.idx-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .idx-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .idx-step-connector { display: none; }
  .idx-step { padding-right: 0; }
}

@media (max-width: 480px) {
  .idx-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   INDEX — Block: Голоса сети (testimonials)
   ============================================================ */
.idx-voices-section {
  background: #000000;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.idx-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  margin-top: 64px;
  border: 1px solid rgba(201,168,76,0.08);
}

.idx-voice-card {
  background: #000000;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.3s ease;
}

.idx-voice-card:hover {
  background: rgba(201,168,76,0.03);
}

.idx-voice-quote {
  font-size: 4rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -8px;
}

.idx-voice-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}

.idx-voice-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.idx-voice-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.idx-voice-role {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
}

@media (max-width: 860px) {
  .idx-voices-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INDEX — Block: FAQ
   ============================================================ */
.idx-faq-section {
  background: #050508;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid rgba(201,168,76,0.08);
}

.idx-faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

.idx-faq-left h2 {
  margin-top: 16px;
}

.idx-faq-list {
  display: flex;
  flex-direction: column;
}

.idx-faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.idx-faq-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.08);
}

.idx-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  font-family: inherit;
  transition: color 0.25s ease;
}

.idx-faq-q:hover {
  color: var(--accent-gold);
}

.idx-faq-q svg {
  flex-shrink: 0;
  color: rgba(201,168,76,0.4);
  transition: transform 0.3s ease;
}

.idx-faq-item.open .idx-faq-q svg {
  transform: rotate(180deg);
}

.idx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.idx-faq-item.open .idx-faq-a {
  max-height: 200px;
}

.idx-faq-a p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 22px;
}

@media (max-width: 860px) {
  .idx-faq-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Redacted name — секретный документ */
.idx-redacted {
  position: relative;
  color: transparent;
  background: rgba(201,168,76,0.15);
  border-radius: 2px;
  padding: 0 4px;
  user-select: none;
  letter-spacing: 0.05em;
}

.idx-redacted::after {
  content: 'КОНФИДЕНЦИАЛЬНО';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(201,168,76,0.4);
}

/* ============================================================
   ABOUT — Team block
   ============================================================ */
.about-team-section {
  background: #000000;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.about-team-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

.about-team-left h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.about-team-left p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
}

.about-team-card {
  background: #000000;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease;
}

.about-team-card:hover {
  background: rgba(201,168,76,0.03);
}

.about-team-role {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
}

.about-team-name-hidden {
  margin: 4px 0;
}

.about-team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .about-team-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT — Geography block
   ============================================================ */
.about-geo-section {
  background: #050508;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.about-geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
  margin-top: 56px;
}

.about-geo-group {
  background: #050508;
  padding: 36px 32px;
}

.about-geo-group-title {
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.about-geo-cities {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-geo-cities span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-geo-more {
  color: rgba(201,168,76,0.4) !important;
  font-style: italic;
  font-size: 0.82rem !important;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .about-geo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .about-geo-grid { grid-template-columns: 1fr; }
}

/* Geo — international banner */
.about-geo-intl {
  margin-top: 1px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-top: none;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-geo-intl-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  white-space: nowrap;
  flex-shrink: 0;
}

.about-geo-intl-label svg {
  color: rgba(201,168,76,0.6);
}

.about-geo-intl p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-geo-intl p strong {
  color: rgba(201,168,76,0.85);
  font-weight: 600;
}

@media (max-width: 640px) {
  .about-geo-intl { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* Increase small label sizes on about page */
.about-team-role {
  font-size: 0.78rem;
  color: rgba(201,168,76,0.8);
}

.about-geo-group-title {
  font-size: 0.72rem;
  color: rgba(201,168,76,0.7);
}

.about-geo-intl-label {
  font-size: 0.75rem;
  color: rgba(201,168,76,0.85);
}

.about-member-num {
  font-size: 0.75rem;
  color: rgba(201,168,76,0.55);
}

.about-member-tag {
  font-size: 0.7rem;
  color: rgba(201,168,76,0.7);
}

.about-tl-year {
  font-size: 0.85rem;
  color: rgba(201,168,76,0.8);
}

.about-process-num {
  color: rgba(201,168,76,0.15);
}

/* ===== SITEWIDE SMALL TEXT READABILITY FIXES ===== */

/* Footer nav column titles */
.footer-nav-title {
  font-size: 0.78rem;
  color: rgba(201, 168, 76, 0.65);
}

/* Footer copyright & privacy */
.footer-copy {
  font-size: 0.82rem;
  color: rgba(152, 152, 168, 0.65);
}
.footer-privacy-link {
  font-size: 0.82rem;
  color: rgba(152, 152, 168, 0.55);
}

/* Header button text */
.header-accept-btn {
  font-size: 0.84rem;
}

/* Fullnav services section title */
.fullnav-services-title {
  font-size: 0.72rem;
  color: rgba(201, 168, 76, 0.6);
}

/* Fullnav contact links */
.fullnav-contact a {
  font-size: 0.92rem;
  color: rgba(232, 232, 240, 0.45);
}

/* Service tags on mycelium list */
.myc-tag {
  font-size: 0.78rem;
}

/* Testimonial / voice role labels */
.idx-voice-role {
  font-size: 0.75rem;
  color: rgba(201, 168, 76, 0.75);
}

/* About page geo group titles — bump again for sitewide consistency */
.about-geo-group-title {
  font-size: 0.78rem;
  color: rgba(201, 168, 76, 0.8);
}

/* About page intl label */
.about-geo-intl-label {
  font-size: 0.78rem;
  color: rgba(201, 168, 76, 0.9);
}

/* About page team role labels */
.about-team-role {
  font-size: 0.82rem;
  color: rgba(201, 168, 76, 0.85);
}

/* ===== SITEWIDE TYPOGRAPHY SCALE-UP ===== */

/* Base paragraph text — bigger and easier to read */
p {
  font-size: 1.15rem;
  line-height: 1.75;
}

/* h3 in content blocks — bigger globally */
h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

/* h4 in content blocks */
h4 {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

/* --- index.html block texts --- */
.idx-step p { font-size: 1.15rem; }
.idx-voice-text { font-size: 1.15rem; line-height: 1.75; }
.idx-faq-q { font-size: 1.1rem; }
.idx-faq-a { font-size: 1.1rem; line-height: 1.75; }
.myc-row-desc { font-size: 1.1rem; }

/* about.html sections */
.phil-v2-left p,
.phil-v2-right p { font-size: 1.15rem; }
.phil-v2-item p { font-size: 1.1rem; }
.about-process-card p { font-size: 1.15rem; }
.about-tl-content h4 { font-size: 1.2rem; }
.about-tl-content p { font-size: 1.1rem; }
.about-member-card p { font-size: 1.1rem; }
.about-standard-item strong { font-size: 1.1rem; }
.about-standard-item p { font-size: 1.05rem; }
.about-team-left p { font-size: 1.1rem; }
.about-team-card p { font-size: 1.05rem; }

/* web.html new blocks */
.web-type-desc { font-size: 1.1rem; }
.web-stack-title-col p { font-size: 1.15rem; }
.web-rm-before { font-size: 1.05rem; }
.web-rm-after { font-size: 1.2rem; }

/* ===== ORACLE FAQ (sitewide) ===== */
.am-oracle-section {
  background: #000;
  color: #e0e0e0;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 6rem 0;
}
.am-oracle-header h2 { color: #fff; }
.am-oracle-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .am-oracle-container { grid-template-columns: 1fr; }
}
.am-oracle-questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 1rem;
}
.am-oracle-questions::-webkit-scrollbar { width: 4px; }
.am-oracle-questions::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }
.am-oracle-questions::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }
.am-oracle-q {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.45);
  padding: 1.2rem 1.5rem;
  text-align: left;
  color: #c9a84c;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
  font-family: inherit;
  line-height: 1.5;
}
.am-oracle-q:hover,
.am-oracle-q.active {
  background: rgba(201,168,76,0.12);
  color: #e0c06a;
  border-color: #c9a84c;
  transform: translateX(8px);
}
.am-oracle-answer-area {
  background: #050508;
  border: 1px solid rgba(201,168,76,0.45);
  padding: 2rem;
  border-radius: 2px;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-start;
}
.am-oracle-text {
  color: #c9a84c;
  white-space: pre-wrap;
  width: 100%;
}
.am-oracle-text.typing::after {
  content: '█';
  animation: oracle-blink 1s step-start infinite;
}
@keyframes oracle-blink { 50% { opacity: 0; } }

/* ===== SHARED P-CTA BLOCK ===== */
.p-cta {
  background: #000000;
  padding: 120px 0;
  border-top: 1px solid rgba(201,168,76,0.1);
  text-align: center;
}
.p-cta .p-lbl { display: block; text-align: center; margin-bottom: 20px; }
.p-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  color: #e8e8f0;
  margin-bottom: 24px;
}
.p-cta p {
  font-size: 1.2rem;
  color: rgba(152,152,168,0.7);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.75;
}
.p-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== MARKETPLACES: PLATFORM CARDS ===== */
.mp-platforms {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.mp-platforms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.mp-platforms-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
  line-height: 1.7;
}

.mp-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.mp-plat-card {
  background: var(--bg-card);
  padding: 48px 36px 36px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.mp-plat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0), transparent);
  transition: background 0.5s ease;
}

.mp-plat-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
}

.mp-plat-card:hover {
  background: var(--bg-card-hover);
}

.mp-plat-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: rgba(201,168,76,0.6);
  transition: all 0.4s ease;
}

.mp-plat-icon svg {
  width: 32px;
  height: 32px;
}

.mp-plat-card:hover .mp-plat-icon {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 30px rgba(201,168,76,0.1);
  color: var(--accent-gold);
}

.mp-plat-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.mp-plat-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

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

.mp-plat-val {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mp-plat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.mp-plat-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.mp-plat-bar {
  width: 100%;
  height: 3px;
  background: rgba(201,168,76,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}

.mp-plat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold));
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

.mp-plat-bar-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mp-platforms-cta {
  margin-top: 64px;
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(10,10,15,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-xl);
}

.mp-platforms-cta p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.mp-platforms-cta p:last-of-type {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .mp-platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mp-platforms-grid .mp-plat-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .mp-platforms {
    padding: 80px 0;
  }

  .mp-platforms-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mp-platforms-grid .mp-plat-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .mp-plat-card {
    padding: 36px 24px 28px;
  }

  .mp-plat-stats {
    gap: 16px;
  }

  .mp-platforms-cta {
    padding: 32px 20px;
  }

  .mp-platforms-cta p:first-child {
    font-size: 1.25rem;
  }
}

/* ===== MARKETPLACES: HERO ===== */
.mp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.mp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.97) 18%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.15) 55%,
    transparent 70%
  );
  z-index: 2;
}

.mp-hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.mp-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.mp-hero-content .section-label {
  display: block;
  margin-bottom: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.mp-hero-content h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.mp-hero-content h1 em {
  font-style: normal;
  color: var(--accent-gold);
}

.mp-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.mp-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Strip со статистикой внизу */
.mp-hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: stretch;
  background: rgba(10,10,15,0.9);
  border-top: 1px solid rgba(201,168,76,0.12);
  backdrop-filter: blur(12px);
}

.mp-hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
}

.mp-hero-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,0.1);
}

.mp-hero-stat-num {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mp-hero-stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* SVG-анимации */
.mp-plat-node rect {
  transition: stroke 0.3s ease;
}

.mp-plat-node:hover rect {
  stroke: rgba(201,168,76,0.6);
}

.mp-hub circle:first-child {
  animation: mpHubPulse 4s ease-in-out infinite;
}

@keyframes mpHubPulse {
  0%, 100% { r: 36; stroke-opacity: 0.5; }
  50% { r: 40; stroke-opacity: 0.7; }
}

.mp-sale-dot circle:first-child {
  animation: mpSalePulse 3s ease-in-out infinite;
}

@keyframes mpSalePulse {
  0%, 100% { r: 8; opacity: 0.15; }
  50% { r: 16; opacity: 0.05; }
}

.mp-float-card rect:first-child {
  transition: stroke 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .mp-hero-svg {
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .mp-hero {
    min-height: 90vh;
  }

  .mp-hero-bg::after {
    background: linear-gradient(180deg,
      rgba(0,0,0,0.3) 0%,
      rgba(0,0,0,0.85) 50%,
      rgba(0,0,0,1) 100%
    );
  }

  .mp-hero-content {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .mp-hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .mp-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .mp-hero-stat {
    padding: 16px 8px;
  }

  .mp-hero-stat-num {
    font-size: 1.2rem;
  }

  .mp-hero-stat-lbl {
    font-size: 0.65rem;
  }
}

/* ===== BLOCK 1: FUNNEL ===== */
.mp-platforms {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.mp-platforms .section-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

.mp-funnel {
  position: relative;
}

.mp-funnel::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201,168,76,0.25) 8%,
    rgba(201,168,76,0.25) 92%,
    transparent 100%
  );
}

.mp-funnel-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 0 32px 60px;
  position: relative;
  transition: background 0.5s ease, padding-left 0.5s ease;
}

.mp-funnel-row:first-child { padding-top: 0; }

.mp-funnel-row:hover {
  background: rgba(201,168,76,0.02);
  padding-left: 68px;
}

.mp-funnel-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(201,168,76,0.5);
  transition: all 0.4s ease;
}

.mp-funnel-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.mp-funnel-row:hover .mp-funnel-icon {
  border-color: rgba(201,168,76,0.5);
  color: var(--accent-gold);
}

.mp-funnel-body {
  flex: 1;
  min-width: 0;
}

.mp-funnel-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.mp-funnel-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.mp-funnel-metric {
  text-align: right;
  flex-shrink: 0;
}

.mp-funnel-val {
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mp-funnel-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .mp-platforms { padding: 80px 0; }
  .mp-funnel::before { display: none; }
  .mp-funnel-row { flex-direction: column; gap: 12px; padding: 24px 0; }
  .mp-funnel-row:hover { padding-left: 0; }
  .mp-funnel-metric { text-align: left; }
}

/* ===== BLOCK 2: MISTAKES ===== */
.mp-mistakes {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.mp-mistakes .section-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

.mp-mistakes-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.mp-mistake-row {
  background: var(--bg-card);
  padding: 40px 32px 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(201,168,76,0.06);
  border-left: 2px solid rgba(220,60,60,0.3);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.mp-mistake-row:hover {
  background: var(--bg-card-hover);
  border-left-color: rgba(220,60,60,0.7);
}

.mp-mistake-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(220,60,60,0.3), transparent 60%);
}

.mp-mistake-num {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(220,60,60,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  transition: color 0.4s ease;
}

.mp-mistake-row:hover .mp-mistake-num {
  color: rgba(220,60,60,0.9);
}

.mp-mistake-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.mp-mistake-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .mp-mistakes { padding: 80px 0; }
  .mp-mistakes-list { grid-template-columns: 1fr; }
  .mp-mistake-row { padding: 28px 20px; }
}

/* ===== BLOCK 3: COMPARE TABLE ===== */
.mp-compare {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.mp-compare-table {
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mp-compare-head {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  background: rgba(201,168,76,0.04);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.mp-compare-col {
  padding: 20px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mp-compare-col:first-child { text-align: left; }

.mp-compare-gold {
  color: var(--accent-gold) !important;
  border-left: 1px solid rgba(201,168,76,0.12);
}

.mp-compare-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}

.mp-compare-row:last-child { border-bottom: none; }

.mp-compare-cell {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.mp-compare-cell:first-child {
  justify-content: flex-start;
  color: var(--text-primary);
  font-weight: 500;
}

.mp-compare-yes {
  color: var(--accent-gold) !important;
}

.mp-compare-yes svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-gold);
}

.mp-compare-no svg {
  width: 20px;
  height: 20px;
  stroke: rgba(201,168,76,0.25);
}

.mp-compare-row:hover {
  background: rgba(201,168,76,0.02);
}

@media (max-width: 768px) {
  .mp-compare { padding: 80px 0; }
  .mp-compare-head, .mp-compare-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .mp-compare-col, .mp-compare-cell { padding: 14px 12px; font-size: 0.8rem; }
  .mp-compare-cell:first-child { font-size: 0.8rem; }
}

/* ===== BLOCK 4: NUMBERS ===== */
.mp-numbers {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.mp-nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.mp-num-card {
  background: var(--bg-card);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.4s ease;
}

.mp-num-card:hover {
  background: var(--bg-card-hover);
}

.mp-num-val {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.mp-num-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .mp-nums-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mp-numbers { padding: 80px 0; }
  .mp-nums-grid { grid-template-columns: 1fr; }
  .mp-num-card { padding: 36px 24px; }
}

/* ===== BLOCK 5: КАЖДАЯ НИТЬ (uses existing .myc-services / .myc-list) ===== */
.mp-nity-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.mp-nity-section .section-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

/* ===== BLOCK 6: ФОРМА ЗАЯВКИ ===== */
.ct-form-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.ct-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ct-form-section .section-label {
  display: block;
  margin-bottom: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.ct-form-section h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ct-form-section > .container > .ct-form-inner > div:first-child > p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

.ct-prereq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-prereq-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ct-prereq-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.ct-prereq-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.ct-prereq-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Form */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.ct-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10,10,15,0.6);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}

.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
  border-color: rgba(201,168,76,0.4);
}

.ct-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.ct-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(201,168,76,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.ct-form-submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.ct-form-submit .btn {
  width: 100%;
  justify-content: center;
}

.ct-form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.ct-form-note a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.2);
}

.ct-form-note a:hover {
  color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .ct-form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .ct-form-section { padding: 80px 0; }
  .ct-form { padding: 24px; }
  .ct-form-section h2 { font-size: 2rem; }
}

/* ===== LEADGEN: HERO ===== */
.lg-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}
.lg-hero-bg { position: absolute; inset: 0; z-index: 1; }
.lg-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.97) 18%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.15) 55%,
    transparent 70%
  );
  z-index: 2;
}
.lg-hero-svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.88; }

/* --- SVG stream animations --- */
@keyframes lgStreamFlow {
  0%   { stroke-dashoffset: 526; }
  100% { stroke-dashoffset: 0; }
}
@keyframes lgHubRing {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(5.5); opacity: 0; }
}
@keyframes lgHubGlowPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}
@keyframes lgSrcBlink {
  0%, 60%, 100% { opacity: 0.35; }
  80% { opacity: 1; }
}
.lg-stream-path { fill: none; stroke: rgba(201,168,76,0.1); stroke-width: 1; }
.lg-stream-dot {
  fill: none;
  stroke: rgba(201,168,76,0.82);
  stroke-width: 2.5;
  stroke-dasharray: 6 520;
  stroke-dashoffset: 526;
  animation: lgStreamFlow 3.2s linear infinite;
}
.lg-src-node { animation: lgSrcBlink 3.2s ease-in-out infinite; }
.lg-hub-ring {
  fill: none;
  stroke: rgba(201,168,76,0.65);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
}
.lg-hr-1 { animation: lgHubRing 2.8s ease-out infinite; }
.lg-hr-2 { animation: lgHubRing 2.8s ease-out -0.93s infinite; }
.lg-hr-3 { animation: lgHubRing 2.8s ease-out -1.87s infinite; }
.lg-hub-glow-pulse { animation: lgHubGlowPulse 2.6s ease-in-out infinite; }

.lg-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}
.lg-hero-content .section-label { display: block; margin-bottom: 24px; font-size: 0.85rem; letter-spacing: 0.15em; color: var(--text-muted); }
.lg-hero-content h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.05; color: var(--text-primary); margin: 0 0 24px; letter-spacing: -0.03em; }
.lg-hero-content h1 em { font-style: normal; color: var(--accent-gold); }
.lg-hero-desc { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--text-secondary); max-width: 480px; line-height: 1.65; margin-bottom: 40px; }
.lg-hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lg-hero-strip { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; display: flex; align-items: stretch; background: rgba(10,10,15,0.9); border-top: 1px solid rgba(201,168,76,0.12); backdrop-filter: blur(12px); }
.lg-hero-stat { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 16px; position: relative; }
.lg-hero-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(201,168,76,0.1); }
.lg-hero-stat-num { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--accent-gold); letter-spacing: -0.02em; line-height: 1.1; }
.lg-hero-stat-lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
@media (max-width: 1024px) { .lg-hero-svg { opacity: 0.6; } }
@media (max-width: 768px) {
  .lg-hero { min-height: 90vh; }
  .lg-hero-bg::after { background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,1) 100%); }
  .lg-hero-content { padding-top: 100px; padding-bottom: 120px; }
  .lg-hero-content h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .lg-hero-btns { flex-direction: column; align-items: flex-start; }
  .lg-hero-stat { padding: 16px 8px; }
  .lg-hero-stat-num { font-size: 1.2rem; }
  .lg-hero-stat-lbl { font-size: 0.65rem; }
}

/* ===== LEADGEN: WIDE FUNNEL BARS ===== */
.lg-wide-funnel {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.lg-wide-funnel .section-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}
.lg-wide-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lg-wide-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lg-wide-num {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}
.lg-wide-bar {
  flex: 1;
  height: 52px;
  background: rgba(201,168,76,0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding-left: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.08);
}
.lg-wide-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
  border-radius: 7px;
}
.lg-wide-bar-fill.animated {
  width: var(--fill);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--delay);
}
.lg-wide-bar-label {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}
.lg-wide-pct {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  width: 55px;
  text-align: right;
  flex-shrink: 0;
}
.lg-funnel-desc-full {
  margin-top: 32px;
  text-align: center;
}
.lg-funnel-desc-full p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lg-wide-funnel { padding: 80px 0; }
  .lg-wide-row { flex-wrap: wrap; gap: 8px; }
  .lg-wide-num { width: auto; text-align: left; }
  .lg-wide-pct { text-align: left; }
  .lg-wide-bar { height: 40px; }
}

/* ===== LEADGEN: BENTO GRID ===== */
.lg-bento {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.lg-bento .section-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}
.lg-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 2px;
}
.lg-bento-item {
  background: var(--bg-card);
  padding: 32px 24px;
  position: relative;
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lg-bento-item:hover { background: var(--bg-card-hover); }
.lg-bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.lg-bento-medium {
  grid-column: span 2;
}
.lg-bento-small {
  grid-column: span 1;
}
.lg-bento-tall {
  grid-row: span 2;
}
.lg-bento-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: rgba(201,168,76,0.4);
  transition: all 0.4s ease;
}
.lg-bento-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.lg-bento-item:hover .lg-bento-icon { border-color: rgba(201,168,76,0.4); color: var(--accent-gold); }
.lg-bento-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.lg-bento-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.lg-bento-tag {
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 3px;
  padding: 2px 6px;
  align-self: flex-start;
  transition: all 0.4s ease;
}
.lg-bento-item:hover .lg-bento-tag { color: var(--accent-gold); border-color: rgba(201,168,76,0.35); background: rgba(201,168,76,0.06); }
@media (max-width: 1024px) {
  .lg-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .lg-bento-large { grid-column: span 2; }
  .lg-bento-medium { grid-column: span 1; }
}
@media (max-width: 768px) {
  .lg-bento { padding: 80px 0; }
  .lg-bento-grid { grid-template-columns: 1fr; }
  .lg-bento-large, .lg-bento-medium, .lg-bento-small { grid-column: span 1; grid-row: span 1; }
}

/* ===== LEADGEN: FILTER ===== */
.lg-filter {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.lg-filter-header {
  text-align: center;
  margin-bottom: 64px;
}
.lg-filter-header .section-label {
  display: block;
  margin-bottom: 20px;
}
.lg-filter-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lg-filter-header p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.lg-filter-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.lg-filter-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  transition: all 0.4s ease;
}
.lg-filter-num {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}
.lg-filter-item:hover .lg-filter-num {
  color: var(--accent-gold);
}
.lg-filter-item-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: rgba(201,168,76,0.35);
  transition: all 0.5s ease;
}
.lg-filter-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.lg-filter-item:hover .lg-filter-item-icon {
  border-color: rgba(201,168,76,0.4);
  color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.1);
}
.lg-filter-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: color 0.4s ease;
}
.lg-filter-item:hover h3 {
  color: #fff;
}
.lg-filter-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.lg-filter-divider {
  width: 1px;
  min-height: 200px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.12), transparent);
  flex-shrink: 0;
  margin: 0 0;
}
@media (max-width: 1024px) {
  .lg-filter-row { flex-wrap: wrap; }
  .lg-filter-item { flex: 1 1 calc(50% - 24px); padding: 32px 24px; }
  .lg-filter-divider { display: none; }
}
@media (max-width: 768px) {
  .lg-filter { padding: 80px 0; }
  .lg-filter-item { flex: 1 1 100%; padding: 28px 0; border-bottom: 1px solid rgba(201,168,76,0.06); }
  .lg-filter-item:last-child { border-bottom: none; }
  .lg-filter-item { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .lg-filter-num { margin-bottom: 0; min-width: 28px; }
  .lg-filter-item-icon { margin: 0; flex-shrink: 0; width: 44px; height: 44px; }
  .lg-filter-item-icon svg { width: 20px; height: 20px; }
  .lg-filter-item:hover .lg-filter-item-icon { transform: none; }
}

/* ===== LEADGEN: MINIMAL COMPARE ===== */
.lg-min-compare {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.lg-min-table {
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lg-min-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}
.lg-min-head {
  background: rgba(201,168,76,0.04);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.lg-min-cell {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
}
.lg-min-cell:first-child {
  justify-content: flex-start;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}
.lg-min-gold { color: var(--accent-gold) !important; font-weight: 700 !important; }
.lg-min-ok { color: var(--accent-gold) !important; }
.lg-min-ok svg { width: 20px; height: 20px; stroke: var(--accent-gold); }
.lg-min-x svg { width: 18px; height: 18px; stroke: rgba(201,168,76,0.2); }
.lg-min-row:not(.lg-min-head) { border-top: 1px solid rgba(201,168,76,0.06); }
.lg-min-row:not(.lg-min-head):hover { background: rgba(201,168,76,0.02); }
@media (max-width: 768px) {
  .lg-min-compare { padding: 80px 0; }
  .lg-min-cell { padding: 12px 10px; font-size: 0.8rem; }
}

/* ===== LEADGEN: HORIZONTAL NICHES ===== */
.lg-h-niches {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.lg-h-niches .section-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}
.lg-h-niches-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lg-h-niche {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-card);
  transition: background 0.4s ease;
}
.lg-h-niche:hover { background: var(--bg-card-hover); }
.lg-h-n-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(201,168,76,0.4);
  transition: all 0.4s ease;
}
.lg-h-n-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.lg-h-niche:hover .lg-h-n-icon { border-color: rgba(201,168,76,0.4); color: var(--accent-gold); }
.lg-h-n-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.lg-h-n-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .lg-h-niches { padding: 80px 0; }
  .lg-h-niche { padding: 18px 16px; gap: 14px; }
}

/* ===== LEADGEN: NUMS ROW ===== */
.lg-nums-row {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.lg-nums-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lg-num-r {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 32px;
}
.lg-num-r-val {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lg-num-r-lbl {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 8px;
}
.lg-num-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,168,76,0.12);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .lg-nums-row { padding: 80px 0; }
  .lg-nums-wrapper { flex-direction: column; }
  .lg-num-divider { width: 60px; height: 1px; }
}

/* ===== LEADGEN: CARDS STEPS 2x2 ===== */
.lg-cards-steps {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}
.lg-cards-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.lg-cs-card {
  background: var(--bg-card);
  padding: 48px 36px;
  position: relative;
  transition: background 0.4s ease;
}
.lg-cs-card:hover { background: var(--bg-card-hover); }
.lg-cs-num {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.lg-cs-card:hover .lg-cs-num { color: var(--accent-gold); }
.lg-cs-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.lg-cs-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .lg-cards-steps { padding: 80px 0; }
  .lg-cards-steps-grid { grid-template-columns: 1fr; }
  .lg-cs-card { padding: 32px 24px; }
}

/* ===== LEADGEN: КАЖДАЯ НИТЬ ===== */
.lg-nity-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.lg-nity-section .section-header p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

/* ===== UNIVERSAL SCROLL-REVEAL ANIMATIONS ===== */
/* Fade-in from below (scroll-triggered) */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0, 1), transform 0.7s cubic-bezier(0.4, 0, 0, 1);
}
.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in with slight scale */
.anim-fade-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-fade-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.anim-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in */
.anim-zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.anim-stagger-1 { transition-delay: 0.1s !important; }
.anim-stagger-2 { transition-delay: 0.2s !important; }
.anim-stagger-3 { transition-delay: 0.3s !important; }
.anim-stagger-4 { transition-delay: 0.4s !important; }
.anim-stagger-5 { transition-delay: 0.5s !important; }
.anim-stagger-6 { transition-delay: 0.6s !important; }

/* ===== FOOTER ANIMATIONS ===== */
.footer-nav-col {
  animation: footerColFadeIn 0.8s ease both;
}
.footer-nav-col:nth-child(1) { animation-delay: 0.1s; }
.footer-nav-col:nth-child(2) { animation-delay: 0.2s; }
.footer-nav-col:nth-child(3) { animation-delay: 0.3s; }
.footer-nav-col:nth-child(4) { animation-delay: 0.4s; }

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

.footer-nav-grid {
  animation: footerGridPulse 4s ease-in-out infinite;
}

@keyframes footerGridPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.footer-bottom-inner {
  animation: footerBottomSlide 0.6s ease both;
  animation-delay: 0.5s;
}

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

/* ===== FAQ ANIMATIONS ===== */
.idx-faq-q {
  position: relative;
  transition: all 0.3s ease;
}
.idx-faq-q:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

/* ===== PRINCIPLES ANIMATIONS ENHANCEMENT ===== */
.myc-princ {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.myc-princ:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.1);
}

/* ===== STEP CARDS ANIMATIONS ===== */
.idx-steps-section .step-card {
  transition: all 0.4s ease;
}
.idx-steps-section .step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

/* ===== VOICE CARDS ANIMATIONS ===== */
.idx-voice-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.idx-voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT PROCESS CARDS ===== */
.about-process-card {
  transition: all 0.4s ease;
}
.about-process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

/* ===== ABOUT TIMELINE ANIMATIONS ===== */
.about-tl-item {
  animation: tlItemFadeIn 0.6s ease both;
}
.about-tl-item:nth-child(1) { animation-delay: 0.1s; }
.about-tl-item:nth-child(2) { animation-delay: 0.2s; }
.about-tl-item:nth-child(3) { animation-delay: 0.3s; }
.about-tl-item:nth-child(4) { animation-delay: 0.4s; }
.about-tl-item:nth-child(5) { animation-delay: 0.5s; }

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

/* ===== ABOUT MEMBER CARDS ===== */
.about-member-card {
  transition: all 0.4s ease;
}
.about-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT STANDARDS ===== */
.about-standard-item {
  animation: standardFade 0.5s ease both;
  transition: transform 0.3s ease;
}
.about-standard-item:nth-child(1) { animation-delay: 0.05s; }
.about-standard-item:nth-child(2) { animation-delay: 0.1s; }
.about-standard-item:nth-child(3) { animation-delay: 0.15s; }
.about-standard-item:nth-child(4) { animation-delay: 0.2s; }
.about-standard-item:nth-child(5) { animation-delay: 0.25s; }
.about-standard-item:nth-child(6) { animation-delay: 0.3s; }
.about-standard-item:nth-child(7) { animation-delay: 0.35s; }
.about-standard-item:nth-child(8) { animation-delay: 0.4s; }

.about-standard-item:hover {
  transform: translateX(6px);
}

@keyframes standardFade {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== ABOUT TEAM CARDS ===== */
.about-team-card {
  transition: all 0.4s ease;
}
.about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* ===== ABOUT GEOGRAPHY ===== */
.about-geo-group {
  animation: geoGroupFade 0.8s ease both;
}
.about-geo-group:nth-child(1) { animation-delay: 0.1s; }
.about-geo-group:nth-child(2) { animation-delay: 0.2s; }
.about-geo-group:nth-child(3) { animation-delay: 0.3s; }

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

.about-geo-intl {
  animation: geoIntlFloat 3s ease-in-out infinite;
}

@keyframes geoIntlFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== ABOUT SPLIT CARDS ===== */
.about-split-card {
  transition: all 0.4s ease;
}
.about-split-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-split-card-row {
  animation: splitRowSlide 0.5s ease both;
}
.about-split-card-row:nth-child(1) { animation-delay: 0.1s; }
.about-split-card-row:nth-child(2) { animation-delay: 0.2s; }
.about-split-card-row:nth-child(3) { animation-delay: 0.3s; }

@keyframes splitRowSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.about-split-card-divider {
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ===== DETAIL LIST ITEMS (ADVANTAGES) ===== */
.detail-list-item {
  animation: detailListSlide 0.5s ease both;
  transition: transform 0.3s ease, color 0.3s ease;
}
.detail-list-item:nth-child(1) { animation-delay: 0.05s; }
.detail-list-item:nth-child(2) { animation-delay: 0.1s; }
.detail-list-item:nth-child(3) { animation-delay: 0.15s; }
.detail-list-item:nth-child(4) { animation-delay: 0.2s; }
.detail-list-item:nth-child(5) { animation-delay: 0.25s; }
.detail-list-item:nth-child(6) { animation-delay: 0.3s; }
.detail-list-item:nth-child(7) { animation-delay: 0.35s; }
.detail-list-item:nth-child(8) { animation-delay: 0.4s; }
.detail-list-item:nth-child(9) { animation-delay: 0.45s; }
.detail-list-item:nth-child(10) { animation-delay: 0.5s; }

.detail-list-item:hover {
  transform: translateX(8px);
  color: var(--accent-gold);
}

@keyframes detailListSlide {
  from { opacity: 0; transform: translateX(-25px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== ADVANTAGE ITEMS ===== */
.advantage-item {
  transition: all 0.4s ease;
}
.advantage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
}

/* ===== STEP CARDS (ADVANTAGES) ===== */
.steps-grid .step-card {
  transition: all 0.4s ease;
}
.steps-grid .step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ===== CTA BOX ===== */
.cta-box {
  position: relative;
  transition: all 0.4s ease;
}
.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(201, 168, 76, 0.15);
}

/* ===== POSITION TABLE CELLS (CASES-CLEANING) ===== */
.pos-table td,
.pos-table th {
  transition: all 0.3s ease;
}
.pos-table tr:hover td {
  background: rgba(201, 168, 76, 0.05);
  transform: scale(1.01);
}

/* ===== CASE STAT CARDS ===== */
.case-stat-card {
  animation: statCardPop 0.5s ease both;
  transition: all 0.4s ease;
}
.case-stat-card:nth-child(1) { animation-delay: 0.1s; }
.case-stat-card:nth-child(2) { animation-delay: 0.2s; }
.case-stat-card:nth-child(3) { animation-delay: 0.3s; }
.case-stat-card:nth-child(4) { animation-delay: 0.4s; }

.case-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.2);
}

@keyframes statCardPop {
  from { opacity: 0; transform: scale(0.9) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== ENGINE BADGES ===== */
.engine-badge {
  animation: badgeFloat 3s ease-in-out infinite;
}
.engine-badge:nth-child(odd) { animation-delay: 0.5s; }

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
}

/* ===== POSITION LEGEND ===== */
.pos-legend-item {
  animation: legendFade 0.4s ease both;
  transition: transform 0.3s ease;
}
.pos-legend-item:nth-child(1) { animation-delay: 0.1s; }
.pos-legend-item:nth-child(2) { animation-delay: 0.2s; }
.pos-legend-item:nth-child(3) { animation-delay: 0.3s; }

.pos-legend-item:hover {
  transform: scale(1.05);
}

@keyframes legendFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TOPVISOR NOTE ===== */
.topvisor-note {
  animation: noteGlow 3s ease-in-out infinite;
}

@keyframes noteGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.1); }
  50% { box-shadow: 0 0 25px rgba(201, 168, 76, 0.25); }
}

/* ===== ENGINE HEADERS ===== */
.engine-header {
  transition: all 0.3s ease;
}
.engine-header:hover {
  color: var(--accent-gold);
  text-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

/* ===== CONTACTS PREREQUISITES ===== */
.ct-prereq-item {
  animation: prereqSlide 0.5s ease both;
  transition: transform 0.3s ease;
}
.ct-prereq-item:nth-child(1) { animation-delay: 0.1s; }
.ct-prereq-item:nth-child(2) { animation-delay: 0.2s; }
.ct-prereq-item:nth-child(3) { animation-delay: 0.3s; }

.ct-prereq-item:hover {
  transform: translateX(6px);
}

@keyframes prereqSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== CONTACT FORM GROUPS ===== */
.ct-form-group {
  transition: all 0.3s ease;
}
.ct-form-group:focus-within {
  transform: translateX(4px);
}

/* ===== CONTACT SCHEDULE ===== */
.ct-schedule-row {
  transition: all 0.3s ease;
}
.ct-schedule-row:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT STEPS ===== */
.ct-step {
  transition: all 0.4s ease;
}
.ct-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== CONTACT HERO DESC ===== */
.ct-hero-desc {
  animation: heroDescFade 0.8s ease both;
  animation-delay: 0.3s;
}

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

/* ===== PARTNERSHIP FORMAT CARDS ===== */
.p-format-card {
  transition: all 0.4s ease;
}
.p-format-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* ===== PARTNERSHIP COMPARE TABLE ===== */
.p-compare-table td,
.p-compare-cell {
  transition: all 0.3s ease;
}
.p-compare-table tr:hover td,
.p-compare-cell:hover {
  background: rgba(201, 168, 76, 0.05);
  transform: scale(1.01);
}

/* ===== PARTNERSHIP STAT ITEMS ===== */
.p-stat-item {
  animation: statItemBounce 0.5s ease both;
}
.p-stat-item:nth-child(1) { animation-delay: 0.1s; }
.p-stat-item:nth-child(2) { animation-delay: 0.2s; }
.p-stat-item:nth-child(3) { animation-delay: 0.3s; }
.p-stat-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes statItemBounce {
  0% { opacity: 0; transform: scale(0.8) translateY(20px); }
  60% { transform: scale(1.05) translateY(-5px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.p-stat-sub {
  animation: subStatFade 0.4s ease both;
  animation-delay: 0.3s;
}

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

/* ===== PARTNERSHIP PROCESS STEPS ===== */
.p-step {
  transition: all 0.4s ease;
}
.p-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* ===== PARTNERSHIP INVEST ===== */
.p-invest-item {
  animation: investItemGlow 3s ease-in-out infinite;
}
.p-invest-item:nth-child(odd) { animation-delay: 1s; }

@keyframes investItemGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.05); }
  50% { box-shadow: 0 0 30px rgba(201, 168, 76, 0.15); }
}

/* ===== PARTNERSHIP WHOM ITEMS ===== */
.p-whom-item {
  transition: all 0.4s ease;
}
.p-whom-item:hover {
  transform: translateX(8px);
  background: rgba(201, 168, 76, 0.04);
}

/* ===== PARTNERSHIP VOICES ===== */
.p-voice-card {
  animation: voiceCardFloat 0.6s ease both;
  transition: all 0.4s ease;
}
.p-voice-card:nth-child(1) { animation-delay: 0.1s; }
.p-voice-card:nth-child(2) { animation-delay: 0.2s; }
.p-voice-card:nth-child(3) { animation-delay: 0.3s; }

.p-voice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.p-voice-text {
  transition: color 0.3s ease;
}
.p-voice-card:hover .p-voice-text {
  color: var(--accent-gold);
}

/* ===== PORTFOLIO STAT CARDS ===== */
.pf-stat {
  animation: pfStatReveal 0.6s ease both;
}
.pf-stat:nth-child(1) { animation-delay: 0.1s; }
.pf-stat:nth-child(2) { animation-delay: 0.2s; }
.pf-stat:nth-child(3) { animation-delay: 0.3s; }
.pf-stat:nth-child(4) { animation-delay: 0.4s; }

@keyframes pfStatReveal {
  0% { opacity: 0; transform: translateY(25px) rotateX(15deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* ===== PORTFOLIO NICHE TAGS ===== */
.pf-niche-tag {
  transition: all 0.3s ease;
}
.pf-niche-tag:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.2);
}

/* ===== PORTFOLIO METHODOLOGY CARDS ===== */
.pf-method-card {
  animation: methodCardSlide 0.5s ease both;
  transition: all 0.4s ease;
}
.pf-method-card:nth-child(1) { animation-delay: 0.1s; }
.pf-method-card:nth-child(2) { animation-delay: 0.2s; }
.pf-method-card:nth-child(3) { animation-delay: 0.3s; }
.pf-method-card:nth-child(4) { animation-delay: 0.4s; }

.pf-method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

@keyframes methodCardSlide {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== PORTFOLIO TIMELINE ===== */
.pf-tl-item {
  animation: tlItemReveal 0.5s ease both;
}
.pf-tl-item:nth-child(1) { animation-delay: 0.1s; }
.pf-tl-item:nth-child(2) { animation-delay: 0.15s; }
.pf-tl-item:nth-child(3) { animation-delay: 0.2s; }
.pf-tl-item:nth-child(4) { animation-delay: 0.25s; }
.pf-tl-item:nth-child(5) { animation-delay: 0.3s; }
.pf-tl-item:nth-child(6) { animation-delay: 0.35s; }

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

.pf-tl-dot {
  transition: all 0.3s ease;
}
.pf-tl-item:hover .pf-tl-dot {
  transform: scale(1.5);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

.pf-tl-content {
  transition: all 0.3s ease;
}
.pf-tl-item:hover .pf-tl-content {
  transform: translateX(6px);
}

/* ===== PRIVACY PAGE ANIMATIONS ===== */
.privacy-content h2 {
  animation: privacyHeadingFade 0.6s ease both;
}
.privacy-content h2:nth-of-type(1) { animation-delay: 0.1s; }
.privacy-content h2:nth-of-type(2) { animation-delay: 0.15s; }
.privacy-content h2:nth-of-type(3) { animation-delay: 0.2s; }
.privacy-content h2:nth-of-type(4) { animation-delay: 0.25s; }
.privacy-content h2:nth-of-type(5) { animation-delay: 0.3s; }
.privacy-content h2:nth-of-type(6) { animation-delay: 0.35s; }
.privacy-content h2:nth-of-type(7) { animation-delay: 0.4s; }
.privacy-content h2:nth-of-type(8) { animation-delay: 0.45s; }

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

.privacy-content p,
.privacy-content ul,
.privacy-content ol {
  animation: privacyTextFade 0.5s ease both;
}
.privacy-content p:nth-of-type(1),
.privacy-content ul:nth-of-type(1) { animation-delay: 0.15s; }
.privacy-content p:nth-of-type(2),
.privacy-content ul:nth-of-type(2) { animation-delay: 0.2s; }
.privacy-content p:nth-of-type(3),
.privacy-content ul:nth-of-type(3) { animation-delay: 0.25s; }
.privacy-content p:nth-of-type(4),
.privacy-content ul:nth-of-type(4) { animation-delay: 0.3s; }
.privacy-content p:nth-of-type(5),
.privacy-content ul:nth-of-type(5) { animation-delay: 0.35s; }
.privacy-content p:nth-of-type(6),
.privacy-content ul:nth-of-type(6) { animation-delay: 0.4s; }
.privacy-content p:nth-of-type(7),
.privacy-content ul:nth-of-type(7) { animation-delay: 0.45s; }
.privacy-content p:nth-of-type(8),
.privacy-content ul:nth-of-type(8) { animation-delay: 0.5s; }

@keyframes privacyTextFade {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== HERO GLOW BLOBS ===== */
.hero-glow {
  animation: heroBlobPulse 5s ease-in-out infinite;
}

@keyframes heroBlobPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

/* ===== SECTION LABEL ANIMATIONS ===== */
.section-label {
  display: inline-block;
  animation: labelReveal 0.4s ease both;
}

@keyframes labelReveal {
  from { opacity: 0; letter-spacing: 0px; }
  to { opacity: 1; letter-spacing: 2px; }
}

/* ===== FORM INPUT ANIMATIONS ===== */
input:focus,
textarea:focus,
select:focus {
  animation: inputFocusPulse 0.3s ease;
}

@keyframes inputFocusPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  100% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}
