:root {
  --tk-color-bg: #f7f8fa;
  --tk-color-surface: #ffffff;
  --tk-color-text: #15181f;
  --tk-color-muted: #5c6475;
  --tk-color-accent: #6e46ff;
  --tk-radius: 20px;
  --tk-shadow-sm: 0 8px 20px rgba(16, 24, 40, 0.06);
  --tk-shadow-md: 0 16px 36px rgba(16, 24, 40, 0.1);
  --tk-shadow-lg: 0 22px 52px rgba(16, 24, 40, 0.14);
  --tk-gap-section-desktop: 120px;
  --tk-gap-section-tablet: 88px;
  --tk-gap-section-mobile: 64px;
}

body {
  background: linear-gradient(180deg, #f9fafc 0%, #f4f6fa 100%);
  color: var(--tk-color-text);
}

.section {
  padding: var(--tk-gap-section-desktop) 0;
}

.container {
  width: min(1280px, calc(100% - 64px));
}

.section-title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.14;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.66;
  max-width: 760px;
  margin: 0 auto;
}

.btn {
  min-height: 52px;
}

.btn.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--tk-color-surface);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--tk-radius);
  padding: 28px;
  box-shadow: var(--tk-shadow-sm);
  transition: transform 260ms ease-out, box-shadow 260ms ease-out;
}

.audience-card h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 28px;
  margin-bottom: 14px;
}

.audience-card p {
  font-size: 18px;
  line-height: 1.66;
  color: var(--tk-color-muted);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tk-shadow-md);
}

.capabilities-intro {
  font-size: 18px;
  line-height: 1.66;
  color: var(--tk-color-muted);
  margin-bottom: 28px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  background: var(--tk-color-surface);
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--tk-radius);
  box-shadow: var(--tk-shadow-sm);
  overflow: hidden;
  transition: transform 280ms ease-out, box-shadow 280ms ease-out, border-color 280ms ease-out;
}

.capability-card[open],
.capability-card.is-active {
  transform: scale(1.02);
  border-color: rgba(110, 70, 255, 0.55);
  box-shadow: var(--tk-shadow-md);
}

.capability-card summary {
  list-style: none;
  cursor: pointer;
  padding: 24px;
  min-height: 180px;
}

.capability-card summary::-webkit-details-marker {
  display: none;
}

.capability-name {
  font-size: 20px;
  line-height: 1.3;
}

.capability-desc {
  font-size: 14px;
  line-height: 1.42;
}

.capability-more {
  padding: 0 24px 24px;
  color: var(--tk-color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  background: var(--tk-color-surface);
  border-radius: var(--tk-radius);
  padding: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--tk-shadow-sm);
}

.metric-card strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: var(--tk-color-accent);
}

.metric-card span {
  color: var(--tk-color-muted);
  font-size: 14px;
  line-height: 1.4;
}

.manifesto-card {
  background: var(--tk-color-surface);
  border-radius: var(--tk-radius);
  padding: 36px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: var(--tk-shadow-sm);
}

.manifesto-title {
  font-size: 34px;
  line-height: 1.24;
  font-family: "Sora", "Segoe UI", sans-serif;
  margin-bottom: 16px;
}

.manifesto-text {
  font-size: 18px;
  line-height: 1.66;
  color: var(--tk-color-muted);
}

.principles-core {
  width: min(560px, 100%);
  margin: 0 auto 28px;
  text-align: center;
  background: #161b2b;
  color: #fff;
  padding: 20px 26px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(10, 14, 22, 0.3);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card {
  background: var(--tk-color-surface);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--tk-radius);
  padding: 24px 20px;
  box-shadow: var(--tk-shadow-sm);
  position: relative;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 1px;
  height: 16px;
  background: rgba(46, 56, 84, 0.35);
  transform: translateX(-50%);
}

.pillar-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 12px;
  background: linear-gradient(145deg, #d7deef, #f8faff);
  object-fit: cover;
}

.pillar-character {
  font-size: 14px;
  color: var(--tk-color-muted);
  margin-bottom: 4px;
}

.pillar-title {
  font-size: 20px;
  font-family: "Sora", "Segoe UI", sans-serif;
  margin-bottom: 8px;
}

.pillar-description {
  font-size: 16px;
  line-height: 1.55;
  color: var(--tk-color-muted);
}

.timeline {
  display: grid;
  gap: 16px;
}

.work-step {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--tk-radius);
  background: var(--tk-color-surface);
  box-shadow: var(--tk-shadow-sm);
  padding: 24px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a2032;
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.step-duration {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #5238b9;
  background: rgba(110, 70, 255, 0.11);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--tk-radius);
  background: var(--tk-color-surface);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: var(--tk-shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 22px;
  padding: 20px 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--tk-color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.cta-emotion-text {
  font-size: 18px;
  line-height: 1.66;
  color: var(--tk-color-muted);
  margin-bottom: 24px;
  max-width: 880px;
}

.contact-form-modern .form-input,
.contact-form-modern .form-textarea {
  min-height: 52px;
}

.contact-form-modern .form-textarea {
  min-height: 120px;
}

.footer-geo,
.footer-positioning {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .section {
    padding: var(--tk-gap-section-tablet) 0;
  }

  .container {
    width: min(100%, calc(100% - 48px));
  }

  .section-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-title {
    font-size: 44px;
    line-height: 1.2;
  }

  .capabilities-grid,
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: var(--tk-gap-section-mobile) 0;
  }

  .container {
    width: min(100%, calc(100% - 24px));
  }

  .section-title {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.16;
  }

  .hero-subtitle,
  .capabilities-intro,
  .manifesto-text,
  .cta-emotion-text,
  .audience-card p {
    font-size: 16px;
    line-height: 1.62;
  }

  .audience-grid,
  .capabilities-grid,
  .metrics-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card,
  .metric-card,
  .manifesto-card,
  .pillar-card,
  .work-step {
    padding: 20px;
  }

  .btn {
    min-height: 48px;
  }

  .capability-card[open],
  .capability-card.is-active {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* --------- Refinements by feedback --------- */
.metrics-section .section-title,
.cta-emotion-section,
.audit-cta-container {
  text-align: center;
}

.metrics-grid {
  margin-bottom: 34px;
}

.metric-card {
  background: linear-gradient(170deg, #fefeff 0%, #f2f4f9 100%);
  border: 1px solid rgba(58, 66, 92, 0.14);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.09);
}

.metric-card strong {
  text-shadow: 0 8px 26px rgba(110, 70, 255, 0.28);
}

.manifesto-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 10px 0 0;
  text-align: center;
}

.manifesto-title {
  margin-bottom: 10px;
}

.categories-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 !important;
  border-radius: 20px;
  overflow: hidden;
  min-height: 560px;
}

.category-card {
  position: relative;
  min-height: 560px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #161b23;
  transition: flex 300ms ease, transform 300ms ease, filter 300ms ease;
}

.category-card-image,
.category-card-image img,
.category-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 14, 0.2) 0%, rgba(6, 8, 12, 0.82) 100%);
}

.category-card-info {
  position: absolute;
  inset: auto 20px 22px 20px;
  z-index: 2;
}

.category-card-info h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.category-card-info .preview-project-title {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.category-card:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) contrast(1.05);
}

.audience-grid {
  perspective: 1400px;
}

.audience-card-3d {
  transform-style: preserve-3d;
  animation: audience-float 5.5s ease-in-out infinite;
}

.audience-card-3d:nth-child(2) {
  animation-delay: 0.5s;
}

.audience-card-3d summary {
  list-style: none;
  cursor: pointer;
}

.audience-card-3d summary::-webkit-details-marker {
  display: none;
}

.audience-card-3d p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 300ms ease;
  opacity: 0;
}

.audience-card-3d[open] p {
  max-height: 220px;
  opacity: 1;
}

@keyframes audience-float {
  0%, 100% { transform: rotateY(-4deg) translateY(0); }
  50% { transform: rotateY(4deg) translateY(-4px); }
}

.pillars-grid {
  gap: 22px;
}

.pillar-card {
  background: radial-gradient(circle at 50% 0, #171c24 0%, #0c0f14 72%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  overflow: hidden;
}

.pillar-figure {
  position: relative;
  height: 220px;
  margin: -24px -20px 16px;
  overflow: hidden;
}

.pillar-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 340ms ease, transform 340ms ease;
}

.pillar-silhouette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 100%);
  mix-blend-mode: multiply;
  transition: opacity 340ms ease;
}

.pillar-card .pillar-description {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 340ms ease, opacity 340ms ease;
  color: rgba(255, 255, 255, 0.82);
}

.pillar-card:hover .pillar-full,
.pillar-card.active .pillar-full {
  opacity: 1;
  transform: scale(1);
}

.pillar-card:hover .pillar-silhouette,
.pillar-card.active .pillar-silhouette {
  opacity: 0.06;
}

.pillar-card:hover .pillar-description,
.pillar-card.active .pillar-description {
  max-height: 220px;
  opacity: 1;
}

.pillar-character {
  color: rgba(255, 255, 255, 0.7);
}

.timeline {
  position: relative;
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: calc(280px + 18px);
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(75, 184, 255, 0.6), rgba(75, 184, 255, 0.15));
}

.work-step {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: linear-gradient(110deg, rgba(16, 20, 30, 0.9) 0%, rgba(16, 20, 30, 0.7) 44%, rgba(16, 20, 30, 0) 100%);
  color: #fff;
  border-color: rgba(137, 197, 255, 0.24);
}

.step-media {
  border-radius: 16px;
  overflow: hidden;
  min-height: 180px;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-body {
  display: grid;
  gap: 8px;
}

.step-header h3 {
  font-size: 24px;
  line-height: 1.2;
}

.step-short {
  color: rgba(255, 255, 255, 0.82);
}

.faq-item,
.capability-card,
.audience-card,
.metric-card,
.category-card,
.work-step,
.pillar-card {
  will-change: transform;
}

.faq-item:hover,
.capability-card:hover,
.metric-card:hover,
.work-step:hover {
  transform: translateY(-3px);
}

.cta-emotion-section .btn,
.audit-cta-section .btn {
  margin-left: auto;
  margin-right: auto;
}

.audit-cta-form {
  margin: 0 auto;
  max-width: 860px;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    min-height: 420px;
  }

  .timeline::before {
    display: none;
  }

  .work-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .category-card {
    min-height: 340px;
  }

  .pillars-grid {
    gap: 16px;
  }

  .pillar-figure {
    height: 200px;
  }

  .step-header {
    flex-wrap: wrap;
  }
}

/* Audience cinematic cards */
.audience-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.audience-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.audience-panel {
  --audience-bg-image: none;
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  height: min(76vh, 680px);
  background:
    radial-gradient(95% 64% at 50% 10%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(13, 16, 24, 0.96) 0%, rgba(10, 13, 21, 0.92) 58%, rgba(8, 10, 17, 0.98) 100%),
    var(--audience-bg-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 52px rgba(9, 12, 20, 0.5);
}

.audience-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 16, 25, 0.2) 0%, rgba(12, 16, 25, 0.55) 66%, rgba(8, 10, 17, 0.9) 100%);
}

.audience-panel-inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
  padding: 18px 16px 12px;
  color: #f6f7fb;
}

.audience-panel-top {
  display: grid;
  align-content: start;
  gap: 14px;
}

.audience-panel-title {
  margin: 0;
  text-align: center;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-panel-lead {
  margin: 0;
  text-align: center;
  color: rgba(232, 236, 246, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.audience-panel-services {
  margin-top: 4px;
  max-height: 48%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.audience-panel-services-title {
  margin: 0 0 12px;
  text-align: left;
  color: rgba(241, 244, 250, 0.96);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audience-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.audience-service-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}

.audience-service-index {
  color: rgba(185, 191, 206, 0.84);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.audience-service-copy h4 {
  margin: 0 0 3px;
  color: #f6f7fb;
  font-size: 14px;
  line-height: 1.32;
  font-weight: 600;
}

.audience-service-copy p {
  margin: 0;
  color: rgba(210, 218, 232, 0.82);
  font-size: 12px;
  line-height: 1.4;
}

.audience-mini-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.audience-mini-stat {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(170deg, rgba(22, 27, 39, 0.82) 0%, rgba(12, 16, 27, 0.72) 100%);
  min-height: 86px;
  padding: 8px 6px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 6px;
}

.audience-mini-stat strong {
  color: #f5f6fa;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.audience-mini-stat span {
  color: rgba(211, 219, 233, 0.8);
  font-size: 10px;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .audience-panel-grid {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    height: min(82vh, 720px);
  }
}

@media (max-width: 760px) {
  .audience-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .audience-panel {
    height: min(84vh, 680px);
    border-radius: 22px;
  }

  .audience-panel-inner {
    padding: 14px 12px 10px;
  }

  .audience-panel-title {
    font-size: clamp(24px, 8.6vw, 34px);
  }

  .audience-mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Timeline redesign */
.timeline {
  display: grid;
  gap: 14px;
  background: transparent;
}

.work-step.work-step-timeline {
  display: grid;
  grid-template-columns: 86px minmax(250px, 1fr) minmax(320px, 1.2fr);
  gap: 18px;
  align-items: start;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #dbe5ee;
}

.step-stage-index {
  display: grid;
  align-content: start;
  gap: 4px;
  padding-top: 2px;
}

.step-stage-label {
  color: rgba(180, 188, 196, 0.7);
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 600;
}

.step-stage-number {
  color: rgba(236, 241, 246, 0.92);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(46px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.step-main-copy {
  position: relative;
  padding-top: 8px;
}

.step-main-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 100%;
  height: 1px;
  background: rgba(124, 164, 198, 0.28);
}

.step-main-copy h3 {
  position: relative;
  margin: 0 0 8px;
  color: #ecf1f6;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.1;
  font-weight: 600;
  background: transparent;
}

.step-main-copy .step-short {
  margin: 0;
  color: rgba(194, 204, 214, 0.8);
  font-size: 14px;
  line-height: 1.45;
}

.step-main-copy .step-duration {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(230, 220, 255, 0.9);
  background: rgba(136, 96, 208, 0.18);
  border: 1px solid rgba(168, 124, 233, 0.28);
}

.step-checkpoints {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: 16px;
  padding-top: 2px;
}

.step-checkpoints::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: rgba(124, 164, 198, 0.26);
}

.step-checkpoint {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.step-checkpoint-head {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: center;
}

.step-checkpoint-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4dcf89;
  box-shadow: none;
}

.step-checkpoint h4 {
  margin: 0;
  color: #e7edf3;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
}

.step-checkpoint-points {
  list-style: none;
  margin: 6px 0 0 0;
  padding: 0 0 0 22px;
  display: grid;
  gap: 3px;
}

.step-checkpoint-points li {
  position: relative;
  color: rgba(184, 196, 208, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.step-checkpoint-points li::before {
  content: "-";
  position: absolute;
  left: -11px;
  color: rgba(160, 174, 188, 0.7);
}

.work-step-timeline--01 .step-main-copy::before { background: rgba(77, 207, 137, 0.65); }
.work-step-timeline--02 .step-main-copy::before { background: rgba(229, 166, 84, 0.65); }
.work-step-timeline--03 .step-main-copy::before { background: rgba(94, 144, 214, 0.65); }
.work-step-timeline--04 .step-main-copy::before { background: rgba(150, 106, 212, 0.65); }
.work-step-timeline--05 .step-main-copy::before { background: rgba(214, 110, 132, 0.65); }

.step-checkpoint--emerald .step-checkpoint-dot { background: #4dcf89; }
.step-checkpoint--amber .step-checkpoint-dot { background: #dba358; }
.step-checkpoint--azure .step-checkpoint-dot { background: #5e90d6; }
.step-checkpoint--violet .step-checkpoint-dot { background: #966ad4; }
.step-checkpoint--rose .step-checkpoint-dot { background: #d66e84; }

@media (max-width: 1200px) {
  .work-step.work-step-timeline {
    grid-template-columns: 84px 1fr;
  }

  .step-checkpoints {
    grid-column: 1 / -1;
    padding-left: 14px;
  }
}

@media (max-width: 760px) {
  .work-step.work-step-timeline {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 4px 0;
  }

  .step-stage-index {
    grid-auto-flow: column;
    justify-content: start;
    align-items: baseline;
    gap: 10px;
  }

  .step-stage-number {
    font-size: 34px;
  }
}

/* Premium typography + hero/cta/footer alignment */
body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #e8ecf3;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.section-title,
.hero-title,
.audience-panel-title,
.step-main-copy h3,
.cta-emotion-section .section-title,
.footer-modern .footer-title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.hero-brand-line {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(13px, 1.4vw, 18px) !important;
  letter-spacing: 0.18em;
  line-height: 1.25;
  opacity: 0.78;
  margin: 0;
}

.hero-title {
  font-size: clamp(44px, 6vw, 72px) !important;
  line-height: 1.03;
  max-width: 980px;
  margin-inline: auto;
}

.hero-subtitle {
  max-width: 840px;
  text-align: center;
  margin: 0 auto;
  color: rgba(231, 236, 245, 0.86);
}

.hero-cta-wrap {
  margin-top: 18px !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.categories-section {
  padding-top: 86px;
}

.cta-emotion-section .container {
  max-width: 980px;
  text-align: center;
}

.cta-emotion-section .section-title {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 12px;
  text-wrap: balance;
}

.cta-emotion-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: rgba(227, 234, 244, 0.82);
}

.footer-modern .footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px;
}

.footer-modern .footer-topline,
.footer-modern .footer-bottom {
  text-align: center;
}

@media (max-width: 760px) {
  .footer-modern .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ----- Latest UX polish ----- */
.btn.btn-header-write {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.faq-section .faq-list {
  gap: 12px;
}

.faq-section .faq-item {
  border: 1px solid rgba(159, 132, 203, 0.28);
  background: linear-gradient(165deg, rgba(18, 17, 22, 0.9) 0%, rgba(13, 12, 16, 0.84) 100%);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(8, 6, 12, 0.38);
}

.faq-section .faq-item summary {
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  gap: 12px;
  color: #f2eef7;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.1;
  padding: 16px 20px;
}

.faq-section .faq-item summary::after {
  content: "+";
  color: rgba(198, 168, 244, 0.92);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 500;
  justify-self: end;
  transition: transform 220ms ease;
}

.faq-section .faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-section .faq-item p {
  color: rgba(216, 206, 232, 0.88);
  font-size: 14px;
  line-height: 1.5;
  padding: 0 20px 16px;
}

.faq-item-hidden {
  display: none;
}

.faq-more-btn {
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(165, 136, 206, 0.34);
  background: linear-gradient(165deg, rgba(39, 30, 56, 0.9) 0%, rgba(25, 19, 37, 0.86) 100%);
  color: #f1eaf8;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cta-emotion-linked {
  padding-bottom: 14px;
}

.contact-linked {
  margin-top: 0;
  padding-top: 4px;
}

.contact-linked .audit-cta-form {
  max-width: 980px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.footer.footer-modern {
  padding: 48px 0 28px;
}

.footer.footer-modern::before {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}

.footer-modern .footer-topline {
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  padding-bottom: 14px;
  position: relative;
}

.footer-modern .footer-topline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(860px, 96%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(112, 92, 145, 0) 0%, rgba(166, 137, 215, 0.62) 50%, rgba(112, 92, 145, 0) 100%);
}

.footer-modern .footer-kicker,
.footer-modern .footer-tagline {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(229, 219, 245, 0.88);
}

.footer-modern .footer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) !important;
  gap: 36px;
  align-items: start;
}

.footer-modern .footer-col-social {
  justify-self: end;
  text-align: left;
}

.footer-modern .footer-geo {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(196, 208, 224, 0.74);
}

.footer-social-list {
  display: grid;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(234, 240, 247, 0.92);
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(165, 136, 206, 0.32);
  background: linear-gradient(165deg, rgba(41, 31, 58, 0.9) 0%, rgba(24, 19, 36, 0.9) 100%);
  color: #f1e6ff;
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-social-icon-instagram {
  color: #f1d2e8;
}

.footer-social-icon-youtube {
  color: #ffd3d3;
}

.footer-modern .footer-bottom {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-modern .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .footer-modern .footer-col-social {
    justify-self: start;
  }

  .contact-linked .audit-cta-form {
    padding: 0;
  }

  .footer-modern .footer-topline {
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
  }
}

/* Project modal navigation polish */
.project-modal-nav {
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: 14px;
  margin-top: 2rem;
}

.project-modal-nav-btn {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(173, 188, 206, 0.26);
  background: linear-gradient(165deg, rgba(19, 25, 38, 0.9) 0%, rgba(12, 17, 28, 0.86) 100%);
  color: rgba(237, 243, 250, 0.94);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-modal-nav-btn:hover:not(:disabled) {
  background: linear-gradient(165deg, rgba(29, 37, 53, 0.94) 0%, rgba(18, 24, 36, 0.9) 100%);
  border-color: rgba(192, 206, 224, 0.42);
  transform: translateY(-1px);
}

.project-modal-nav-close {
  width: 46px;
  min-width: 46px;
  border-radius: 14px;
}

.project-modal-nav-close-x {
  font-size: 1.05rem;
}

#project-modal-prev {
  justify-self: start;
}

#project-modal-next {
  justify-self: end;
}

.project-modal-close {
  border-radius: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(174, 192, 214, 0.3);
  background: linear-gradient(165deg, rgba(20, 26, 39, 0.9) 0%, rgba(12, 16, 26, 0.88) 100%);
  color: rgba(237, 243, 250, 0.92);
}

.project-modal-close:hover {
  background: linear-gradient(165deg, rgba(30, 39, 55, 0.94) 0%, rgba(20, 27, 40, 0.92) 100%);
  border-color: rgba(195, 208, 226, 0.44);
  transform: translateY(-1px);
}

/* Category project card alignment */
.category-project-card-title {
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.38;
}

.category-project-card-info {
  min-height: 86px;
  justify-content: flex-start;
}

.category-project-card-meta {
  margin-top: 0;
  align-items: center;
}

/* ===== Final visual pass (dark graphite / violet accents) ===== */
.hero-title {
  font-size: clamp(34px, 4.7vw, 60px) !important;
  line-height: 1.07 !important;
  max-width: 820px !important;
  text-wrap: balance;
}

.hero-brand-line {
  font-size: clamp(11px, 1.1vw, 15px) !important;
  letter-spacing: 0.13em !important;
}

.hero-subtitle {
  max-width: 760px !important;
  font-size: clamp(14px, 1.3vw, 17px) !important;
}

.nav-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(14px, 2.2vw, 34px);
}

.nav-container .logo {
  justify-self: start;
  font-family: "Manrope", "Segoe UI", sans-serif !important;
  font-size: clamp(13px, 1.02vw, 16px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em !important;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.95;
  color: rgba(241, 241, 246, 0.96);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.nav-container .nav-links {
  justify-self: center;
  gap: clamp(14px, 1.55vw, 26px) !important;
}

.nav-container .nav-links a {
  text-align: center;
}

.nav-container .btn.btn-header-write {
  justify-self: end;
}

.audience-panel-grid {
  gap: 22px !important;
  align-items: stretch !important;
}

.audience-panel {
  border-radius: 30px !important;
  border: 1px solid rgba(171, 151, 204, 0.18) !important;
  background:
    radial-gradient(90% 74% at 50% 8%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(18, 20, 26, 0.97) 0%, rgba(13, 14, 18, 0.95) 58%, rgba(8, 9, 12, 0.99) 100%),
    var(--audience-bg-image) !important;
  box-shadow: 0 22px 56px rgba(6, 6, 9, 0.58) !important;
}

.audience-panel::after {
  background: linear-gradient(180deg, rgba(9, 10, 14, 0.12) 0%, rgba(9, 10, 14, 0.52) 64%, rgba(6, 7, 10, 0.92) 100%) !important;
}

.audience-panel-inner {
  display: block !important;
  height: 100% !important;
  padding: 18px 16px 14px !important;
}

.audience-panel-top {
  gap: 10px !important;
  margin-bottom: 8px !important;
}

.audience-panel-title {
  font-size: clamp(26px, 2.9vw, 40px) !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

.audience-panel-lead {
  font-size: 12px !important;
  line-height: 1.3 !important;
  color: rgba(214, 214, 224, 0.74) !important;
}

.audience-panel-services {
  margin-top: 0 !important;
  padding-right: 4px !important;
  padding-bottom: 96px !important;
  max-height: calc(100% - 74px) !important;
  overflow: auto !important;
  scrollbar-color: rgba(178, 158, 208, 0.45) transparent !important;
}

.audience-panel-services-title {
  margin: 0 0 10px !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  color: rgba(191, 175, 218, 0.82) !important;
  text-transform: uppercase !important;
}

.audience-services-list {
  gap: 14px !important;
}

.audience-service-item {
  display: block !important;
  gap: 0 !important;
}

.audience-service-index {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  color: rgba(167, 155, 186, 0.8) !important;
}

.audience-service-toggle {
  width: 100% !important;
  min-height: 34px !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  display: grid !important;
  grid-template-columns: 34px 1fr !important;
  gap: 12px !important;
  align-items: center !important;
  padding: 0 !important;
  text-align: left !important;
  cursor: pointer !important;
}

.audience-service-title {
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: rgba(238, 238, 245, 0.95) !important;
}

.audience-service-desc {
  margin: 8px 0 2px 46px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  color: rgba(186, 183, 196, 0.88) !important;
}

.audience-mini-stats {
  position: absolute !important;
  left: 8px !important;
  right: 8px !important;
  bottom: 8px !important;
  gap: 10px !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.audience-mini-stat {
  min-height: 104px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(168, 146, 202, 0.2) !important;
  background:
    radial-gradient(140% 100% at 12% 0%, rgba(122, 103, 152, 0.18) 0%, rgba(122, 103, 152, 0) 56%),
    linear-gradient(172deg, rgba(24, 24, 31, 0.92) 0%, rgba(14, 14, 18, 0.88) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 8px 18px rgba(4, 4, 7, 0.45) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 10px !important;
  gap: 6px !important;
  text-align: center !important;
}

.audience-mini-stat strong {
  font-size: 28px !important;
  color: #f2edf8 !important;
  width: 100% !important;
  min-height: auto !important;
  margin: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.audience-mini-stat span {
  font-size: 14px !important;
  line-height: 1.22 !important;
  color: rgba(196, 187, 211, 0.8) !important;
  width: 100% !important;
  min-height: auto !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.audience-panel-more {
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 128px !important;
  z-index: 4 !important;
  min-height: 42px !important;
  border-radius: 21px !important;
  border: 1px solid rgba(255, 255, 255, 0.17) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 62%),
    linear-gradient(160deg, rgba(225, 229, 240, 0.2) 0%, rgba(197, 205, 224, 0.12) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 20px rgba(0, 0, 0, 0.32) !important;
  backdrop-filter: blur(8px) saturate(105%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.09em !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: rgba(243, 246, 252, 0.95) !important;
  will-change: transform, box-shadow !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease !important;
}

.audience-panel-more::after {
  content: "";
}

.audience-panel-more:hover {
  transform: translateY(-2px) scale(1.01) !important;
  border-color: rgba(255, 255, 255, 0.26) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 62%),
    linear-gradient(160deg, rgba(229, 233, 244, 0.24) 0%, rgba(198, 207, 227, 0.14) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 14px 24px rgba(0, 0, 0, 0.36) !important;
  color: #fff !important;
}

.audience-panel-more:focus-visible {
  outline: none !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
  box-shadow:
    0 0 0 2px rgba(236, 242, 255, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.35) !important;
}

.timeline::before {
  content: none !important;
}

.how-we-work-section .section-title {
  margin-bottom: 24px !important;
}

.work-step.work-step-timeline {
  color: rgba(231, 226, 241, 0.95) !important;
}

.step-main-copy::before {
  opacity: 0.82 !important;
}

.step-main-copy h3 {
  color: #f0ebf8 !important;
}

.step-checkpoints::before {
  background: rgba(165, 147, 194, 0.34) !important;
}

.step-checkpoint h4 {
  color: rgba(233, 227, 244, 0.96) !important;
}

.step-checkpoint-points li {
  color: rgba(194, 185, 209, 0.88) !important;
}

.footer-social-link span:last-child {
  font-family: "Manrope", "Segoe UI", sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(231, 221, 246, 0.9) !important;
}

@media (max-width: 900px) {
  .audience-panel {
    height: min(84vh, 710px) !important;
  }

  .audience-panel-services {
    padding-bottom: 108px !important;
  }

  .audience-mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* Hero readability boost */
.hero::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.38) 0%,
    rgba(0, 0, 0, 0.26) 46%,
    rgba(8, 8, 10, 0.58) 74%,
    rgba(8, 8, 10, 0.86) 92%,
    rgba(8, 8, 10, 1) 100%
  ) !important;
}

.hero-content {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.hero-title,
.hero-subtitle,
.hero-brand-line {
  position: relative;
  z-index: 2;
}

/* Categories centering + mobile stability pass */
.categories-grid {
  --categories-per-row: 4;
  grid-template-columns: repeat(var(--categories-per-row), minmax(0, 1fr)) !important;
  justify-content: center !important;
  align-items: stretch !important;
}

.categories-grid .category-link-item {
  min-height: clamp(300px, 36vw, 420px) !important;
  border-radius: 18px !important;
}

.categories-grid .category-link-title {
  line-height: 1.25 !important;
}

.categories-grid .category-link-item.has-subtitle .category-link-title {
  bottom: 2.55rem !important;
}

.categories-grid .category-link-subtitle {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  color: rgba(224, 226, 235, 0.9);
  font-size: clamp(0.66rem, 0.78vw, 0.74rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.audit-cta-container,
.contact-linked .audit-cta-form,
.contact-form-modern {
  width: 100% !important;
  max-width: 980px !important;
  margin-inline: auto !important;
}

.contact-form-modern {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.contact-form-modern label {
  display: block !important;
  min-width: 0 !important;
}

.contact-form-modern .form-input,
.contact-form-modern .form-textarea,
.contact-form-modern .btn-audit-submit {
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 760px) {
  .nav-container {
    display: flex !important;
    gap: 10px !important;
  }

  .logo {
    font-size: clamp(10px, 2.95vw, 11.5px) !important;
    font-family: "Manrope", "Segoe UI", sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.09em !important;
    white-space: nowrap;
    line-height: 1.1 !important;
  }

  .btn.btn-header-write {
    min-height: 36px !important;
    padding: 8px 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
  }

  .categories-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .categories-grid .category-link-item {
    min-height: 240px !important;
    aspect-ratio: 16 / 10 !important;
  }

  .categories-grid .category-link-item.has-subtitle .category-link-title {
    bottom: 2.2rem !important;
  }

  .categories-grid .category-link-subtitle {
    font-size: 0.66rem;
    bottom: 0.82rem;
  }

  .contact-linked {
    padding-top: 0 !important;
  }

  .audit-cta-section .container {
    width: min(100%, calc(100% - 24px)) !important;
  }

  .contact-form-modern .form-input,
  .contact-form-modern .form-textarea {
    font-size: 16px !important;
  }
}
/* ===== Runtime hotfix final (keep last) ===== */
body .hero-title {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.035em !important;
}

body .hero-cta-wrap {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: min(560px, calc(100vw - 32px)) !important;
  margin-inline: auto !important;
  gap: 12px !important;
}

body .hero-cta-wrap .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  min-height: 46px !important;
  padding: 10px 14px !important;
  line-height: 1.15 !important;
}

body .audience-panel {
  height: min(88vh, 820px) !important;
  background: linear-gradient(180deg, rgba(14, 16, 22, 0.98) 0%, rgba(10, 12, 17, 0.96) 60%, rgba(8, 9, 13, 0.99) 100%) !important;
}

body .audience-panel.audience-panel-has-bg::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 122px 0 !important;
  border-radius: inherit !important;
  background-image: var(--audience-bg-image) !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  opacity: 0.76 !important;
  pointer-events: none !important;
}

body .audience-panel::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.28) 0%, rgba(8, 10, 15, 0.52) 52%, rgba(8, 10, 15, 0.9) 74%, rgba(8, 10, 15, 1) 100%),
    radial-gradient(84% 58% at 50% 2%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 58%) !important;
}

body .audience-panel-services {
  padding-bottom: 106px !important;
}

body .audience-services-list {
  gap: 16px !important;
}

body .category-filter-btn {
  border: 1px solid rgba(164, 138, 204, 0.34) !important;
  background:
    radial-gradient(120% 180% at 10% 0%, rgba(122, 102, 154, 0.2) 0%, rgba(122, 102, 154, 0) 52%),
    linear-gradient(165deg, rgba(25, 24, 33, 0.92) 0%, rgba(14, 13, 19, 0.9) 100%) !important;
  color: rgba(235, 226, 247, 0.92) !important;
  animation: none !important;
}

body .category-filter-btn.active {
  border-color: rgba(188, 163, 225, 0.58) !important;
  background:
    radial-gradient(130% 180% at 20% 0%, rgba(168, 140, 210, 0.34) 0%, rgba(168, 140, 210, 0) 58%),
    linear-gradient(165deg, rgba(41, 34, 56, 0.96) 0%, rgba(21, 17, 30, 0.92) 100%) !important;
}

@media (min-width: 1920px) {
  body .nav-container {
    width: min(calc(100% - 48px), 1420px) !important;
    max-width: 1420px !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
    grid-template-columns: minmax(300px, 1fr) auto minmax(300px, 1fr) !important;
  }
}

@media (max-width: 760px) {
  body .nav-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "logo cta"
      "links links" !important;
    align-items: center !important;
    column-gap: 8px !important;
    row-gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  body .hero-cta-wrap .btn,
  body .btn.btn-secondary {
    min-height: 44px !important;
    font-size: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.15 !important;
    padding-inline: 10px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body .hero-cta-wrap {
    width: calc(100vw - 28px) !important;
    gap: 8px !important;
  }

  body .logo {
    grid-area: logo !important;
    margin: 0 !important;
    font-size: clamp(9.4px, 2.55vw, 10.8px) !important;
    line-height: 1.05 !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
  }

  body .nav-links {
    grid-area: links !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    overflow: hidden !important;
  }

  body .nav-links a {
    font-size: clamp(9px, 2.35vw, 10px) !important;
    line-height: 1 !important;
    letter-spacing: 0.055em !important;
    white-space: nowrap !important;
  }

  body .btn.btn-header-write {
    grid-area: cta !important;
    margin: 0 !important;
    min-height: 30px !important;
    padding: 6px 8px !important;
    font-size: 9px !important;
    letter-spacing: 0.045em !important;
  }

  body .audience-panel {
    height: min(84vh, 670px) !important;
  }

  body .audience-panel.audience-panel-has-bg::before {
    inset: 0 0 86px 0 !important;
  }

  body .audience-panel-services {
    padding-bottom: 74px !important;
    max-height: calc(100% - 56px) !important;
    overflow: hidden !important;
  }

  body .audience-services-list {
    max-height: 16.2rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-right: 2px !important;
    gap: 8px !important;
  }

  body .audience-service-title {
    font-size: 14px !important;
    line-height: 1.32 !important;
  }

  body .audience-service-index {
    font-size: 12px !important;
  }

  body .audience-service-toggle {
    grid-template-columns: 30px 1fr !important;
    gap: 10px !important;
  }

  body .audience-service-desc {
    margin-left: 40px !important;
    font-size: 11px !important;
    line-height: 1.38 !important;
  }

  body .audience-panel-more {
    left: 6px !important;
    right: 6px !important;
    bottom: 104px !important;
    min-height: 38px !important;
    font-size: 15px !important;
    border-radius: 18px !important;
  }

  body .audience-mini-stats {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    gap: 8px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body .audience-mini-stat {
    min-height: 78px !important;
    border-radius: 18px !important;
    padding: 8px 7px !important;
    gap: 6px !important;
  }

  body .audience-mini-stat strong {
    font-size: 18px !important;
    min-height: 22px !important;
  }

  body .audience-mini-stat span {
    font-size: 11px !important;
    min-height: 2.3em !important;
    align-items: center !important;
  }

  body .category-filter-btn {
    min-height: 38px !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
  }

  body .project-modal,
  body .project-modal.active,
  body .project-modal-content,
  body .project-modal-body,
  body .project-case-gallery,
  body .project-case-videos {
    overflow-x: clip !important;
    max-width: 100vw !important;
  }

  body .project-modal {
    touch-action: pan-y !important;
  }

  body .project-modal-content {
    width: calc(100vw - 12px) !important;
    margin-inline: auto !important;
    padding-inline: 10px !important;
    box-sizing: border-box !important;
  }

  body .project-modal-main-image,
  body .project-modal-main-video,
  body .project-modal-video-item,
  body .video-embed-wrapper,
  body .video-embed-preview,
  body .video-embed-wrapper iframe {
    max-width: 100% !important;
    width: 100% !important;
  }

  body .project-modal-nav {
    grid-template-columns: 42px 1fr 42px !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  body #project-modal-prev,
  body #project-modal-next {
    min-width: 42px !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    justify-self: center !important;
  }

  body #project-modal-prev::before,
  body #project-modal-next::before {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    font-size: 20px !important;
    line-height: 1 !important;
    color: rgba(242, 236, 252, 0.95) !important;
  }

  body #project-modal-prev::before {
    content: "\2190" !important;
  }

  body #project-modal-next::before {
    content: "\2192" !important;
  }

  body .project-modal-nav-close {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
  }
}

@media (max-width: 420px) {
  body .btn.btn-header-write {
    min-height: 28px !important;
    padding: 5px 7px !important;
    font-size: 8.5px !important;
  }

  body .nav-links {
    gap: 8px !important;
  }

  body .audience-panel-more {
    bottom: 98px !important;
    font-size: 14px !important;
    letter-spacing: 0.08em !important;
  }
}

/* Header scroll jitter/flash fix */
body .header,
body .header.scrolled {
  border-bottom: none !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

body .header {
  background: rgba(8, 9, 13, 0.01) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body .header.scrolled {
  background: rgba(10, 11, 16, 0.78) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(10px) saturate(105%) !important;
}

@media (min-width: 761px) {
  body .hero-cta-wrap .btn {
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 18px !important;
    white-space: nowrap !important;
  }
}

/* SEO service landing links */
.seo-services-container {
  max-width: 1160px;
}

.seo-services-subtitle {
  max-width: 860px;
  margin: 0 auto 18px;
  text-align: center;
  color: rgba(232, 233, 239, 0.78);
}

.seo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-service-card {
  display: block;
  text-decoration: none;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(163, 136, 205, 0.26);
  background:
    radial-gradient(110% 120% at 8% 0%, rgba(142, 114, 190, 0.2) 0%, rgba(142, 114, 190, 0) 58%),
    linear-gradient(160deg, rgba(20, 18, 28, 0.94) 0%, rgba(11, 10, 16, 0.92) 100%);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.seo-service-card h3 {
  margin: 0 0 8px;
  color: rgba(246, 244, 252, 0.95);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.seo-service-card p {
  margin: 0;
  color: rgba(223, 224, 230, 0.8);
  line-height: 1.45;
}

.seo-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 165, 228, 0.56);
  box-shadow: 0 16px 38px rgba(8, 8, 13, 0.42);
}

@media (max-width: 920px) {
  .seo-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Audience cards: force portrait rectangle on desktop/laptop */
@media (min-width: 1024px) {
  body .audience-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
  }

  body .audience-panel {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
    min-height: clamp(660px, 74vh, 860px) !important;
    max-height: none !important;
  }
}

/* Category modal spacing under fixed header */
body .category-modal-content {
  padding-top: 6rem !important;
}

body .category-modal-header {
  margin-top: 0.9rem !important;
  margin-bottom: 2.2rem !important;
}

@media (max-width: 768px) {
  body .category-modal-content {
    padding-top: 4.8rem !important;
  }

  body .category-modal-header {
    margin-top: 0.6rem !important;
  }
}

/* Final mobile header + hero hard-fix (keep last) */
@media (max-width: 1024px) {
  body .nav-container {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "logo"
      "links" !important;
    justify-items: center !important;
    align-items: center !important;
    row-gap: 8px !important;
    column-gap: 0 !important;
  }

  body .logo {
    grid-area: logo !important;
    justify-self: center !important;
    text-align: center !important;
    margin: 0 !important;
    font-size: clamp(11px, 2.7vw, 14px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
  }

  body .nav-links {
    grid-area: links !important;
    justify-self: center !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(8px, 2.2vw, 16px) !important;
    overflow: hidden !important;
    flex-wrap: nowrap !important;
  }

  body .nav-links a {
    font-size: clamp(10px, 2.15vw, 12px) !important;
    line-height: 1.05 !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
  }

  body .btn.btn-header-write {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body .hero-title {
    font-size: clamp(34px, 9.2vw, 46px) !important;
    line-height: 1.03 !important;
    letter-spacing: 0.02em !important;
    max-width: 94vw !important;
  }
}

@media (max-width: 420px) {
  body .hero-title {
    font-size: clamp(31px, 8.6vw, 40px) !important;
    line-height: 1.02 !important;
  }

  body .logo {
    font-size: clamp(10px, 2.6vw, 12px) !important;
    letter-spacing: 0.085em !important;
  }
}

/* Founder section */
body .founder-section {
  padding-top: clamp(34px, 4.6vw, 56px) !important;
  padding-bottom: clamp(40px, 5vw, 64px) !important;
  background: linear-gradient(180deg, #08080a 0%, #08080a 100%) !important;
}

body .audience-section + .founder-section,
body .founder-section + .categories-section {
  border-top: none !important;
}

body .founder-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr) !important;
  gap: clamp(18px, 2.8vw, 32px) !important;
  align-items: start !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body .founder-media {
  display: grid !important;
  align-content: start !important;
  gap: 12px !important;
}

body .founder-photo-wrap {
  border-radius: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(180, 161, 212, 0.14) !important;
  background: linear-gradient(160deg, rgba(16, 17, 23, 0.86), rgba(11, 12, 17, 0.92)) !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 5 !important;
  position: relative !important;
}

body .founder-photo-wrap::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.06) 0%, rgba(5, 6, 8, 0.2) 100%),
    radial-gradient(circle at 82% 14%, rgba(198, 184, 225, 0.26), rgba(198, 184, 225, 0) 32%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

body .founder-photo {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: saturate(1.03) contrast(1.04) !important;
  position: relative !important;
  z-index: 0 !important;
}

body .founder-caption {
  margin: 0 !important;
  text-align: left !important;
  color: rgba(210, 202, 228, 0.8) !important;
  font-size: 11px !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

body .founder-copy {
  display: grid !important;
  align-content: start !important;
  gap: 12px !important;
  padding: clamp(4px, 0.8vw, 10px) 0 !important;
}

body .founder-head {
  display: grid !important;
  gap: 8px !important;
}

body .founder-kicker {
  margin: 0 !important;
  color: rgba(188, 170, 221, 0.9) !important;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  justify-self: start !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(184, 166, 214, 0.32) !important;
  background: rgba(19, 20, 27, 0.44) !important;
}

body .founder-name {
  margin: 0 !important;
  color: rgba(245, 242, 251, 0.98) !important;
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-size: clamp(28px, 3.1vw, 42px) !important;
  line-height: 1.06 !important;
  letter-spacing: 0.01em !important;
  font-weight: 600 !important;
  text-transform: none !important;
}

body .founder-role {
  margin: 0 !important;
  color: rgba(224, 218, 236, 0.88) !important;
  font-size: clamp(14px, 1.05vw, 17px) !important;
  line-height: 1.42 !important;
  font-weight: 500 !important;
  letter-spacing: 0.015em !important;
  max-width: 44ch !important;
}

body .founder-intro,
body .founder-bio {
  margin: 0 !important;
  color: rgba(212, 208, 224, 0.84) !important;
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  max-width: 64ch !important;
}

body .founder-brands {
  margin-top: 4px !important;
  display: grid !important;
  gap: 10px !important;
}

body .founder-brands-title {
  margin: 0 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(193, 182, 215, 0.9) !important;
}

body .founder-brands-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

body .founder-brand-chip {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(168, 148, 199, 0.28) !important;
  background: linear-gradient(170deg, rgba(30, 31, 40, 0.84), rgba(16, 17, 24, 0.86)) !important;
  color: rgba(234, 230, 243, 0.92) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body .founder-brand-chip:empty {
  display: none !important;
}

body .founder-facts {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px 16px !important;
  margin-top: 2px !important;
}

body .founder-fact {
  margin: 0 !important;
  min-height: 96px !important;
  padding: 10px 0 8px 14px !important;
  display: grid !important;
  align-content: start !important;
  gap: 4px !important;
  border-left: 1px solid rgba(186, 170, 214, 0.38) !important;
  position: relative !important;
}

body .founder-fact::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: 0 !important;
  width: 72% !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(192, 176, 221, 0.36), rgba(192, 176, 221, 0.06)) !important;
}

body .founder-fact strong {
  color: rgba(248, 246, 252, 0.96) !important;
  font-size: clamp(18px, 1.8vw, 26px) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.02em !important;
  font-weight: 600 !important;
}

body .founder-fact span {
  color: rgba(213, 207, 228, 0.84) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

body .founder-cta {
  justify-self: start !important;
  margin-top: 4px !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(177, 157, 210, 0.34) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 64%),
    linear-gradient(160deg, rgba(29, 30, 40, 0.8) 0%, rgba(16, 17, 24, 0.92) 100%) !important;
  color: rgba(242, 241, 247, 0.96) !important;
  text-decoration: none !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  will-change: box-shadow, border-color, color, background !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease !important;
}

body .founder-cta:hover {
  border-color: rgba(198, 182, 228, 0.44) !important;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.34) !important;
}

body .founder-actions {
  margin-top: 4px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

body .founder-more {
  min-height: 44px !important;
  padding: 0 20px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(176, 164, 201, 0.24) !important;
  color: rgba(228, 224, 238, 0.9) !important;
  text-decoration: none !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  will-change: box-shadow, border-color, color, background !important;
  transition: border-color 170ms ease, color 170ms ease, box-shadow 170ms ease, background 170ms ease !important;
}

body .founder-more:hover {
  border-color: rgba(202, 192, 224, 0.4) !important;
  color: rgba(245, 244, 250, 0.98) !important;
  box-shadow: 0 10px 20px rgba(8, 7, 14, 0.28) !important;
}

@media (max-width: 980px) {
  body .founder-shell {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body .founder-copy {
    display: contents !important;
  }

  body .founder-head {
    order: 1 !important;
  }

  body .founder-media {
    order: 2 !important;
  }

  body .founder-intro {
    order: 3 !important;
  }

  body .founder-facts {
    order: 4 !important;
  }

  body .founder-bio {
    order: 5 !important;
  }

  body .founder-actions {
    order: 6 !important;
  }

  body .founder-photo-wrap {
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
  }

  body .founder-facts {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body .founder-kicker,
  body .founder-name,
  body .founder-role,
  body .founder-intro,
  body .founder-bio,
  body .founder-brands-title {
    text-align: center !important;
    justify-self: center !important;
  }

  body .founder-brands-list {
    justify-content: center !important;
  }

  body .founder-cta {
    justify-self: center !important;
  }

  body .founder-actions {
    justify-content: center !important;
  }

  body .founder-caption {
    text-align: center !important;
  }
}

/* ===== Shipping fixes: submit chooser overlap + header seam flicker ===== */
body .audit-cta-section,
body .audit-cta-container,
body .audit-cta-form,
body .contact-form-modern,
body .contact-form-modern label {
  overflow: visible !important;
  position: relative !important;
}

body .contact-form-modern .contact-chooser-wrap {
  position: relative !important;
  z-index: 12 !important;
}

body .contact-form-modern .contact-chooser-menu {
  z-index: 12050 !important;
  box-shadow: 0 18px 36px rgba(3, 3, 8, 0.58) !important;
}

body .header,
body .header.scrolled {
  border-bottom: 1px solid rgba(130, 106, 170, 0.2) !important;
  box-shadow: none !important;
  background: rgba(6, 6, 10, 0.86) !important;
  backdrop-filter: blur(12px) saturate(110%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(110%) !important;
}

body .header::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -1px !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    rgba(74, 58, 103, 0.06) 0%,
    rgba(120, 100, 160, 0.28) 50%,
    rgba(74, 58, 103, 0.06) 100%
  ) !important;
  pointer-events: none !important;
}

/* Hero title final centering: clean 1-2 lines */
body .hero {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body .hero-content {
  width: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 12px !important;
  padding-top: clamp(116px, 12vh, 170px) !important;
  padding-bottom: clamp(54px, 8vh, 104px) !important;
}

body .hero-title {
  margin: 0 auto !important;
  max-width: min(26ch, 90vw) !important;
  text-wrap: balance !important;
  font-size: clamp(30px, 4.2vw, 56px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.012em !important;
  transform: none !important;
}

body .hero-cta-wrap {
  justify-content: center !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  body .hero-content {
    padding-top: clamp(104px, 13vh, 148px) !important;
    padding-bottom: clamp(40px, 7vh, 72px) !important;
  }

  body .hero-title {
    max-width: min(18ch, 92vw) !important;
    font-size: clamp(24px, 7.6vw, 36px) !important;
  }
}

/* Hero -> Audience seam fix (safe, no layout shift) */
body .hero {
  position: relative !important;
  overflow: hidden !important;
}

body .hero::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.36) 0%,
    rgba(0, 0, 0, 0.26) 44%,
    rgba(8, 8, 10, 0.66) 70%,
    rgba(8, 8, 10, 0.96) 88%,
    rgba(8, 8, 10, 1) 100%
  ) !important;
}

body .hero + .audience-section {
  margin-top: 0 !important;
  border-top: none !important;
  background: linear-gradient(180deg, #08080a 0%, #07070a 100%) !important;
}

/* Unified page background (final override) */
body {
  background:
    radial-gradient(120% 70% at 50% -18%, rgba(120, 96, 170, 0.11) 0%, rgba(120, 96, 170, 0) 62%),
    linear-gradient(180deg, #08080a 0%, #09090c 54%, #08080a 100%) !important;
  background-attachment: fixed !important;
}

body .hero,
body .audience-section,
body .founder-section,
body .categories-section,
body .how-we-work-section,
body .faq-section,
body .cta-emotion-section,
body .audit-cta-section,
body .footer.footer-modern {
  background: transparent !important;
}

body .hero + .audience-section,
body .audience-section + .founder-section,
body .founder-section + .categories-section,
body .categories-section + .how-we-work-section,
body .how-we-work-section + .faq-section,
body .faq-section + .cta-emotion-section,
body .cta-emotion-section + .audit-cta-section,
body .audit-cta-section + .footer.footer-modern {
  border-top: none !important;
}

/* Typography refresh: premium editorial tone */
body .logo {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
  font-size: clamp(17px, 1.08vw, 21px) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

body .nav-links a {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-weight: 500 !important;
  font-size: clamp(13px, 0.82vw, 15px) !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

body .btn.btn-header-write {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
  font-size: clamp(12px, 0.74vw, 13px) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

body .hero-brand-line {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-size: clamp(22px, 1.4vw, 26px) !important;
  letter-spacing: 0.04em !important;
  font-weight: 600 !important;
}

body .hero-title,
body .section-title,
body .categories-section-title {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.015em !important;
  text-transform: none !important;
}

body .footer-modern .footer-kicker,
body .footer-modern .footer-tagline,
body .footer-modern .footer-title {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  letter-spacing: 0.03em !important;
  font-weight: 600 !important;
}

@media (max-width: 980px) {
  body .logo {
    font-size: clamp(13px, 3.8vw, 16px) !important;
    letter-spacing: 0.03em !important;
  }

  body .nav-links a {
    font-size: clamp(12px, 3.2vw, 14px) !important;
  }

  body .btn.btn-header-write {
    font-size: clamp(11px, 2.8vw, 12px) !important;
  }

  body .hero-brand-line {
    font-size: clamp(16px, 4.8vw, 20px) !important;
  }
}

/* Benefits section (after hero) */
body .benefits-section {
  padding-top: clamp(34px, 4.2vw, 56px) !important;
  padding-bottom: clamp(34px, 4.4vw, 60px) !important;
}

body .benefits-head {
  display: grid !important;
  gap: 8px !important;
  margin-bottom: clamp(14px, 2.2vw, 24px) !important;
  justify-items: center !important;
  text-align: center !important;
}

body .benefits-title {
  margin: 0 !important;
  max-width: 22ch !important;
}

body .benefits-subtitle {
  margin: 0 !important;
  color: rgba(212, 207, 226, 0.8) !important;
  font-size: clamp(14px, 1.02vw, 17px) !important;
  line-height: 1.5 !important;
  max-width: 54ch !important;
}

body .benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px 22px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

body .benefit-item {
  margin: 0 !important;
  padding: 12px 8px 12px 20px !important;
  position: relative !important;
  min-height: 86px !important;
  display: grid !important;
  align-content: start !important;
  opacity: 0 !important;
  filter: blur(4px) !important;
  transform: translateY(16px) scale(0.985) !important;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease !important;
}

body .benefit-item::before {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  top: 0 !important;
  width: 1px !important;
  height: calc(100% - 1px) !important;
  background: linear-gradient(
    180deg,
    rgba(130, 109, 170, 0.24) 0%,
    rgba(186, 140, 255, 0.66) 48%,
    rgba(130, 109, 170, 0.22) 100%
  ) !important;
  background-size: 100% 240% !important;
  animation: benefits-l-vertical 4.8s linear infinite !important;
}

body .benefits-section.visible .benefit-item {
  opacity: 1 !important;
  filter: blur(0) !important;
  transform: translateY(0) scale(1) !important;
}

body .benefits-section.visible .benefit-item:nth-child(1) { transition-delay: 40ms !important; }
body .benefits-section.visible .benefit-item:nth-child(2) { transition-delay: 110ms !important; }
body .benefits-section.visible .benefit-item:nth-child(3) { transition-delay: 180ms !important; }
body .benefits-section.visible .benefit-item:nth-child(4) { transition-delay: 250ms !important; }
body .benefits-section.visible .benefit-item:nth-child(5) { transition-delay: 320ms !important; }
body .benefits-section.visible .benefit-item:nth-child(6) { transition-delay: 390ms !important; }

@media (prefers-reduced-motion: reduce) {
  body .benefit-item,
  body .benefits-section.visible .benefit-item {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  body .benefit-item::before,
  body .benefit-item::after {
    animation: none !important;
  }
}

body .benefit-item::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: 0 !important;
  width: clamp(120px, 68%, 220px) !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    rgba(130, 109, 170, 0.2) 0%,
    rgba(186, 140, 255, 0.6) 44%,
    rgba(130, 109, 170, 0.16) 100%
  ) !important;
  background-size: 240% 100% !important;
  animation: benefits-l-horizontal 4.8s linear infinite !important;
}

body .benefit-item p {
  margin: 0 !important;
  color: rgba(224, 219, 235, 0.9) !important;
  font-size: clamp(14px, 0.94vw, 16px) !important;
  line-height: 1.48 !important;
}

body .benefits-actions {
  margin-top: clamp(12px, 1.8vw, 20px) !important;
}

body .benefits-cta {
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(176, 164, 201, 0.24) !important;
  color: rgba(228, 224, 238, 0.9) !important;
  text-decoration: none !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 170ms ease, border-color 170ms ease, color 170ms ease !important;
}

body .benefits-cta:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(202, 192, 224, 0.4) !important;
  color: rgba(245, 244, 250, 0.98) !important;
}

@media (max-width: 980px) {
  body .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body .benefits-subtitle {
    max-width: 48ch !important;
  }

  body .benefits-actions {
    text-align: center !important;
  }
}

@keyframes benefits-l-vertical {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

@keyframes benefits-l-horizontal {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

@media (max-width: 640px) {
  body .benefits-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Final UX polish: no button jitter + tighter CTA + footer nav position */
body .benefits-cta {
  will-change: box-shadow, border-color, color !important;
}

body .benefits-cta:hover {
  transform: none !important;
  box-shadow: 0 0 0 1px rgba(198, 181, 229, 0.15), 0 8px 20px rgba(12, 9, 22, 0.3) !important;
}

body .btn-audit-submit,
body .btn-audit-submit:hover,
body .btn-audit-submit:focus-visible {
  transform: none !important;
}

body .cta-emotion-linked {
  padding-top: clamp(24px, 3.2vw, 38px) !important;
  padding-bottom: clamp(4px, 0.8vw, 10px) !important;
}

body .cta-emotion-section .section-title {
  margin-bottom: 10px !important;
}

body .cta-emotion-text {
  margin-bottom: 0 !important;
}

body .contact-linked {
  margin-top: 0 !important;
  padding-top: clamp(2px, 0.6vw, 8px) !important;
}

body .footer-modern .footer-topline {
  justify-content: center !important;
}

body .footer-modern .footer-bottom {
  margin-top: 16px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(167, 140, 214, 0.22) !important;
  display: grid !important;
  gap: 10px !important;
  justify-items: center !important;
}

body .footer-modern .footer-bottom-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(14px, 2.4vw, 30px) !important;
  flex-wrap: wrap !important;
}

body .footer-modern .footer-bottom-nav .footer-link {
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Timeline: collapsed checkpoints by default + explicit toggle */
body .step-checkpoints-toggle {
  margin-top: 12px !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(176, 164, 201, 0.34) !important;
  background: rgba(16, 16, 24, 0.46) !important;
  color: rgba(229, 224, 240, 0.9) !important;
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease !important;
}

body .step-checkpoints-toggle:hover {
  border-color: rgba(208, 190, 240, 0.54) !important;
  color: rgba(246, 243, 252, 0.98) !important;
  box-shadow: 0 6px 18px rgba(12, 9, 22, 0.3) !important;
}

/* Accent buttons in requested blocks */
body .founder-cta,
body .benefits-cta {
  border: 1px solid rgba(198, 174, 247, 0.55) !important;
  color: #fbf9ff !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
  box-shadow:
    0 0 0 1px rgba(174, 143, 238, 0.24),
    0 12px 26px rgba(110, 70, 255, 0.28) !important;
}

body .founder-cta:hover,
body .benefits-cta:hover {
  border-color: rgba(226, 206, 255, 0.82) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 0 1px rgba(208, 184, 255, 0.35),
    0 16px 30px rgba(116, 75, 162, 0.36) !important;
}

/* Audience cards: heading above card + "РЈРЎР›РЈР“Р" inside card */
body .audience-panel-col {
  display: grid !important;
  grid-template-rows: auto 1fr !important;
  gap: 10px !important;
}

body .audience-panel-heading {
  display: grid !important;
  gap: 4px !important;
  padding: 0 8px !important;
}

body .audience-panel-heading .audience-panel-title {
  margin: 0 !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

body .audience-panel-heading .audience-panel-lead {
  margin: 0 !important;
  font-size: clamp(13px, 0.95vw, 15px) !important;
  line-height: 1.45 !important;
  color: rgba(215, 211, 229, 0.82) !important;
}

body .audience-panel .audience-panel-services-title {
  font-size: clamp(18px, 1.45vw, 24px) !important;
  letter-spacing: 0.08em !important;
  color: rgba(240, 236, 249, 0.96) !important;
  margin: 0 0 14px !important;
}

@media (max-width: 980px) {
  body .audience-panel-heading {
    text-align: center !important;
    justify-items: center !important;
  }

  body .audience-panel-heading .audience-panel-title {
    font-size: clamp(20px, 7vw, 28px) !important;
  }

  body .audience-panel-heading .audience-panel-lead {
    font-size: clamp(12px, 3.6vw, 14px) !important;
    max-width: 34ch !important;
  }

  body .audience-panel .audience-panel-services-title {
    font-size: clamp(17px, 5.6vw, 22px) !important;
    text-align: center !important;
  }
}

/* ===== Local iteration: hero, about mobile clamp, brands loop ===== */
body .hero::after {
  background: linear-gradient(
    180deg,
    rgba(5, 6, 11, 0.18) 0%,
    rgba(5, 6, 11, 0.34) 46%,
    rgba(5, 6, 11, 0.7) 100%
  ) !important;
}

body .hero-content {
  min-height: clamp(560px, 90vh, 860px) !important;
  justify-content: flex-end !important;
  padding-top: clamp(96px, 10vh, 160px) !important;
  padding-bottom: clamp(60px, 10vh, 128px) !important;
}

body .hero-title {
  font-size: clamp(34px, 5.6vw, 72px) !important;
  line-height: 1.02 !important;
  max-width: 15ch !important;
}

body .hero-video {
  background-position: center center !important;
}

body .founder-bio-toggle {
  display: none !important;
}

body .brands-track-section {
  padding-block: clamp(18px, 2.8vw, 36px) !important;
}

body .brands-track-container {
  overflow: hidden !important;
}

body .brands-track {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  overflow: hidden !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%) !important;
}

body .brands-track-row {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: max-content !important;
  animation: brands-loop 24s linear infinite !important;
}

body .brands-track-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(146, 126, 184, 0.32) !important;
  background: linear-gradient(160deg, rgba(24, 26, 42, 0.82), rgba(14, 16, 26, 0.72)) !important;
  color: rgba(230, 224, 241, 0.92) !important;
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

@keyframes brands-loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 12px)); }
}

@media (min-width: 1025px) {
  body .hero-video {
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }
}

@media (max-width: 900px) {
  body .hero-content {
    min-height: clamp(520px, 88vh, 780px) !important;
    padding-top: clamp(86px, 14vh, 124px) !important;
    padding-bottom: clamp(48px, 8vh, 88px) !important;
  }

  body .hero-title {
    font-size: clamp(30px, 11.5vw, 52px) !important;
    max-width: 12ch !important;
  }
}

/* Final hero hierarchy + founder mobile toggle cleanup */
body .founder-bio-toggle {
  display: none !important;
}

body .hero-title {
  text-transform: uppercase !important;
  font-size: clamp(26px, 3.2vw, 44px) !important;
  letter-spacing: 0.055em !important;
  line-height: 1.1 !important;
  font-weight: 640 !important;
  max-width: 18ch !important;
  color: rgba(244, 246, 250, 0.95) !important;
}

body .hero-subtitle {
  display: block !important;
  margin: 6px auto 0 !important;
  max-width: 42ch !important;
  font-size: clamp(13px, 1.05vw, 16px) !important;
  line-height: 1.45 !important;
  letter-spacing: 0.035em !important;
  font-weight: 500 !important;
  color: rgba(224, 227, 236, 0.72) !important;
  text-transform: none !important;
}

@media (max-width: 900px) {
  body .hero-title {
    font-size: clamp(21px, 7.1vw, 31px) !important;
    max-width: 12.8ch !important;
    letter-spacing: 0.042em !important;
  }

  body .hero-subtitle {
    max-width: 24ch !important;
    font-size: clamp(11.5px, 3.5vw, 14px) !important;
    margin-top: 4px !important;
  }
}

/* Audience services: smooth accordion + no layout jumps */
body .audience-panel-services {
  overflow: hidden !important;
}

body .audience-services-list {
  overflow-y: auto !important;
  scrollbar-gutter: stable both-edges !important;
  -webkit-overflow-scrolling: touch !important;
}

body .audience-service-item {
  contain: layout paint !important;
}

body .audience-service-desc {
  margin: 0 0 0 46px !important;
  max-height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  transform: translateY(-2px) !important;
  pointer-events: none !important;
  transition:
    max-height 280ms cubic-bezier(0.2, 0.86, 0.2, 1),
    opacity 220ms ease,
    transform 240ms ease,
    margin-top 220ms ease !important;
}

body .audience-service-item.is-open .audience-service-desc {
  margin: 8px 0 2px 46px !important;
  max-height: 132px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

body .audience-service-toggle {
  transition: color 180ms ease !important;
}

@media (max-width: 900px) {
  body .audience-service-desc {
    margin-left: 40px !important;
  }

  body .audience-service-item.is-open .audience-service-desc {
    margin: 7px 0 2px 40px !important;
    max-height: 120px !important;
  }
}

/* Contact chooser + MAX social icon */
body .nav-container {
  position: relative !important;
}

body .contact-chooser-wrap {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: column !important;
}

body .contact-form-modern .contact-chooser-wrap {
  width: 100% !important;
}

body .contact-form-modern .contact-chooser-wrap .btn-audit-submit {
  width: 100% !important;
}

body .contact-chooser-menu {
  position: absolute !important;
  right: 0 !important;
  top: calc(100% + 10px) !important;
  z-index: 40 !important;
  display: grid !important;
  gap: 6px !important;
  min-width: 168px !important;
  padding: 8px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(176, 151, 222, 0.36) !important;
  background: linear-gradient(165deg, rgba(22, 19, 34, 0.94) 0%, rgba(10, 10, 17, 0.94) 100%) !important;
  box-shadow: 0 12px 28px rgba(8, 7, 14, 0.42) !important;
  backdrop-filter: blur(6px) !important;
}

body .contact-chooser-menu[hidden] {
  display: none !important;
}

body .contact-form-modern .contact-chooser-menu {
  left: 0 !important;
  right: 0 !important;
  top: calc(100% + 8px) !important;
}

body .contact-chooser-option {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(176, 151, 222, 0.28) !important;
  color: rgba(236, 231, 248, 0.94) !important;
  text-decoration: none !important;
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  background: linear-gradient(160deg, rgba(35, 29, 52, 0.62) 0%, rgba(18, 16, 28, 0.62) 100%) !important;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease !important;
}

body .contact-chooser-option:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(203, 178, 244, 0.7) !important;
  background: linear-gradient(160deg, rgba(66, 52, 102, 0.7) 0%, rgba(27, 22, 43, 0.7) 100%) !important;
}

body .contact-chooser-option.is-disabled {
  opacity: 0.45 !important;
  pointer-events: none !important;
}

body .footer-social-icon-max {
  background: linear-gradient(145deg, rgba(168, 141, 216, 0.24) 0%, rgba(78, 58, 120, 0.2) 100%) !important;
}

/* Hero heading: higher position + two lines on desktop */
body .hero-content {
  padding-top: clamp(126px, 14vh, 188px) !important;
  padding-bottom: clamp(54px, 8.2vh, 104px) !important;
}

body .hero-title {
  max-width: 28ch !important;
  line-height: 1.08 !important;
  margin-bottom: 12px !important;
  transform: translateY(-18px) !important;
}

@media (max-width: 900px) {
  body .hero-title {
    max-width: 17ch !important;
    transform: translateY(-8px) !important;
  }
}

/* ===== Final stabilization pass: no timeline plus/cross, centered footer nav, hero title higher ===== */
body .step-checkpoint-toggle,
body [data-step-checkpoint-toggle],
body .step-expand-indicator,
body .step-main-copy-head {
  display: none !important;
}

body .step-main-copy {
  cursor: default !important;
}

body .step-checkpoint-head {
  grid-template-columns: 12px 1fr !important;
}

body .step-checkpoint-points {
  display: grid !important;
  max-height: none !important;
  opacity: 1 !important;
  overflow: visible !important;
}

body .hero-content {
  padding-top: clamp(120px, 13vh, 176px) !important;
  padding-bottom: clamp(56px, 8.6vh, 110px) !important;
}

body .hero-title {
  max-width: 21ch !important;
  transform: translateY(-26px) !important;
  margin-bottom: 16px !important;
}

body .hero-cta-wrap {
  margin-top: 0 !important;
}

body .footer-modern .footer-grid {
  grid-template-columns: minmax(280px, 1fr) minmax(200px, 260px) minmax(240px, 1fr) !important;
  grid-template-areas: "contact nav social" !important;
  align-items: start !important;
}

body .footer-modern .footer-col-contact {
  grid-area: contact !important;
  justify-self: start !important;
}

body .footer-modern .footer-col-nav {
  grid-area: nav !important;
  justify-self: center !important;
  text-align: center !important;
}

body .footer-modern .footer-col-nav .footer-bottom-nav {
  justify-items: center !important;
}

body .footer-modern .footer-col-social {
  grid-area: social !important;
  justify-self: end !important;
}

@media (max-width: 980px) {
  body .hero-title {
    max-width: 16ch !important;
    transform: translateY(-10px) !important;
    margin-bottom: 10px !important;
  }

  body .footer-modern .footer-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "contact"
      "social"
      "nav" !important;
  }

  body .footer-modern .footer-col-nav,
  body .footer-modern .footer-col-social,
  body .footer-modern .footer-col-contact {
    justify-self: start !important;
    text-align: left !important;
  }

  body .footer-modern .footer-col-nav .footer-bottom-nav {
    justify-items: start !important;
  }
}

/* --- Refinements: timeline click, premium audience cards, footer nav column --- */
body .step-main-copy {
  cursor: pointer !important;
}

body .step-checkpoints-inline {
  margin-top: 10px !important;
}

body .step-main-copy:hover h3 {
  color: rgba(246, 242, 255, 0.98) !important;
}

body .audience-panel-heading {
  align-items: center !important;
  justify-items: center !important;
  margin-bottom: 2px !important;
}

body .audience-panel-title {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-weight: 650 !important;
  letter-spacing: 0.08em !important;
}

body .audience-panel-lead {
  display: none !important;
}

body .audience-panel-services {
  display: grid !important;
  align-content: start !important;
  justify-items: center !important;
}

body .audience-panel .audience-panel-services-title {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-size: clamp(19px, 1.6vw, 26px) !important;
  font-weight: 700 !important;
  text-align: center !important;
  letter-spacing: 0.12em !important;
  margin: 0 0 18px !important;
}

body .audience-services-list {
  gap: 14px !important;
}

body .audience-services-list .service-title {
  font-size: clamp(18px, 1.28vw, 23px) !important;
  font-weight: 620 !important;
  letter-spacing: 0.02em !important;
}

body .footer-modern .footer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px) minmax(0, auto) !important;
  gap: clamp(24px, 3.4vw, 46px) !important;
  align-items: start !important;
  grid-template-areas: "contact nav social" !important;
}

body .footer-modern .footer-col-contact {
  grid-area: contact !important;
}

body .footer-modern .footer-col-nav {
  grid-area: nav !important;
}

body .footer-modern .footer-col-social {
  grid-area: social !important;
}

body .footer-modern .footer-col-nav {
  justify-self: center !important;
  text-align: left !important;
}

body .footer-modern .footer-col-nav .footer-bottom-nav {
  display: grid !important;
  gap: 10px !important;
  justify-items: start !important;
}

body .footer-modern .footer-col-nav .footer-link {
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

body .footer-modern .footer-bottom {
  margin-top: 14px !important;
  padding-top: 10px !important;
}

@media (max-width: 980px) {
  body .footer-modern .footer-grid {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "contact"
      "social"
      "nav" !important;
  }

  body .footer-modern .footer-col-nav,
  body .footer-modern .footer-col-social,
  body .footer-modern .footer-col-contact {
    justify-self: start !important;
    text-align: left !important;
  }

  body .footer-modern .footer-col-nav .footer-bottom-nav {
    justify-items: start !important;
  }
}

/* Hero visual priority: render first, text/buttons nuanced */
body .hero::after {
  background: linear-gradient(
    180deg,
    rgba(4, 5, 9, 0.12) 0%,
    rgba(4, 5, 9, 0.2) 40%,
    rgba(4, 5, 9, 0.44) 78%,
    rgba(4, 5, 9, 0.72) 100%
  ) !important;
}

body .hero-content {
  justify-content: flex-end !important;
  padding-top: clamp(110px, 12vh, 170px) !important;
  padding-bottom: clamp(42px, 8.8vh, 112px) !important;
}

body .hero-title {
  font-family: "Sora", "Segoe UI", sans-serif !important;
  font-size: clamp(29px, 4.2vw, 56px) !important;
  line-height: 1.06 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  max-width: 13.5ch !important;
  color: rgba(244, 240, 250, 0.88) !important;
  text-shadow: 0 3px 18px rgba(8, 6, 14, 0.35) !important;
  margin-bottom: clamp(16px, 2.2vh, 24px) !important;
}

body .hero-cta-wrap {
  margin-top: clamp(12px, 2vh, 20px) !important;
  gap: clamp(10px, 1.3vw, 14px) !important;
}

body .hero-cta-wrap .btn {
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 11px !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  transform: none !important;
}

body .hero-cta-wrap .btn-primary {
  background: linear-gradient(135deg, rgba(103, 126, 234, 0.78) 0%, rgba(118, 75, 162, 0.78) 52%, rgba(240, 147, 251, 0.78) 100%) !important;
  border: 1px solid rgba(205, 182, 246, 0.4) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

body .hero-cta-wrap .btn-secondary {
  background: rgba(16, 18, 30, 0.44) !important;
  border: 1px solid rgba(183, 165, 216, 0.34) !important;
  color: rgba(236, 230, 246, 0.88) !important;
}

body .hero-cta-wrap .btn:hover {
  transform: none !important;
  filter: brightness(1.04) !important;
}

@media (min-width: 1025px) {
  body .hero-video {
    background-size: cover !important;
    background-position: center center !important;
  }
}

@media (max-width: 900px) {
  body .hero-title {
    font-size: clamp(26px, 8.2vw, 40px) !important;
    max-width: 11.5ch !important;
    margin-bottom: 14px !important;
  }

  body .hero-content {
    padding-top: clamp(96px, 13vh, 132px) !important;
    padding-bottom: clamp(38px, 7.4vh, 72px) !important;
  }

  body .hero-cta-wrap .btn {
    min-height: 36px !important;
    font-size: 10.5px !important;
    padding: 0 12px !important;
  }
}

/* Hero clean pass: minimal premium look, focus on renders */
body .header {
  background: linear-gradient(180deg, rgba(8, 9, 14, 0.56) 0%, rgba(8, 9, 14, 0.22) 72%, rgba(8, 9, 14, 0) 100%) !important;
  backdrop-filter: blur(3px) saturate(112%) !important;
  -webkit-backdrop-filter: blur(3px) saturate(112%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body .nav-container {
  max-width: 1460px !important;
}

body .logo {
  font-weight: 560 !important;
  letter-spacing: 0.035em !important;
  font-size: clamp(15px, 0.95vw, 18px) !important;
  color: rgba(244, 246, 250, 0.92) !important;
}

body .nav-links a {
  font-weight: 500 !important;
  font-size: clamp(12px, 0.75vw, 14px) !important;
  letter-spacing: 0.05em !important;
  color: rgba(229, 233, 239, 0.9) !important;
}

body .btn.btn-header-write {
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 10px !important;
  font-size: 11px !important;
  letter-spacing: 0.05em !important;
  border-color: rgba(210, 196, 236, 0.42) !important;
  box-shadow: none !important;
}

body .hero::after {
  background: linear-gradient(
    180deg,
    rgba(6, 7, 10, 0.08) 0%,
    rgba(6, 7, 10, 0.15) 38%,
    rgba(6, 7, 10, 0.3) 72%,
    rgba(6, 7, 10, 0.56) 100%
  ) !important;
}

body .hero-content {
  justify-items: start !important;
  text-align: left !important;
  max-width: min(1320px, 100%) !important;
  padding-left: clamp(28px, 4.8vw, 84px) !important;
  padding-right: clamp(16px, 2.6vw, 36px) !important;
  padding-bottom: clamp(34px, 7.2vh, 96px) !important;
  gap: 10px !important;
}

body .hero-brand-line {
  font-size: clamp(12px, 0.74vw, 14px) !important;
  letter-spacing: 0.12em !important;
  font-weight: 520 !important;
  opacity: 0.84 !important;
  color: rgba(228, 232, 238, 0.88) !important;
}

body .hero-title {
  font-size: clamp(26px, 3.6vw, 46px) !important;
  font-weight: 560 !important;
  letter-spacing: 0.014em !important;
  line-height: 1.08 !important;
  max-width: 12.8ch !important;
  margin-inline: 0 !important;
  color: rgba(241, 244, 248, 0.9) !important;
  text-shadow: 0 2px 12px rgba(6, 7, 10, 0.2) !important;
}

body .hero-cta-wrap {
  margin-top: 14px !important;
  justify-content: flex-start !important;
  gap: 10px !important;
}

body .hero-cta-wrap .btn {
  min-height: 36px !important;
  padding: 0 13px !important;
  font-size: 10.5px !important;
  letter-spacing: 0.055em !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

body .hero-cta-wrap .btn-primary {
  background: linear-gradient(135deg, rgba(109, 129, 230, 0.66) 0%, rgba(121, 84, 171, 0.66) 52%, rgba(223, 140, 234, 0.66) 100%) !important;
  border-color: rgba(212, 196, 241, 0.36) !important;
}

body .hero-cta-wrap .btn-secondary {
  background: rgba(14, 16, 24, 0.32) !important;
  border-color: rgba(189, 176, 214, 0.24) !important;
}

@media (max-width: 900px) {
  body .hero-content {
    justify-items: center !important;
    text-align: center !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  body .hero-cta-wrap {
    justify-content: center !important;
  }

  body .hero-title {
    max-width: 11.2ch !important;
  }
}

/* Hero final alignment: centered title above buttons */
body .hero-content {
  justify-items: center !important;
  text-align: center !important;
  max-width: min(1200px, 100%) !important;
  padding-left: clamp(18px, 3.8vw, 48px) !important;
  padding-right: clamp(18px, 3.8vw, 48px) !important;
}

body .hero-title {
  margin-inline: auto !important;
  max-width: 12.5ch !important;
}

body .hero-cta-wrap {
  justify-content: center !important;
  align-items: center !important;
}


/* Hero typography pass: nuanced title, lower composition, bigger CTA text */
body .hero-content {
  padding-top: clamp(132px, 14.5vh, 196px) !important;
  padding-bottom: clamp(30px, 6vh, 78px) !important;
}

body .hero-title {
  font-size: clamp(24px, 3.2vw, 40px) !important;
  font-weight: 520 !important;
  letter-spacing: 0.01em !important;
  line-height: 1.1 !important;
  color: rgba(240, 243, 248, 0.86) !important;
  text-shadow: 0 1px 10px rgba(8, 8, 12, 0.18) !important;
  margin-bottom: 8px !important;
}

body .hero-cta-wrap {
  margin-top: 8px !important;
  transform: translateY(10px) !important;
}

body .hero-cta-wrap .btn {
  min-height: 40px !important;
  padding: 0 16px !important;
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
  font-weight: 620 !important;
}

@media (max-width: 900px) {
  body .hero-content {
    padding-top: clamp(114px, 15.8vh, 154px) !important;
    padding-bottom: clamp(26px, 5vh, 56px) !important;
  }

  body .hero-title {
    font-size: clamp(23px, 7.2vw, 34px) !important;
    margin-bottom: 6px !important;
  }

  body .hero-cta-wrap {
    transform: translateY(8px) !important;
  }

  body .hero-cta-wrap .btn {
    min-height: 39px !important;
    font-size: 11.5px !important;
  }
}

/* Hero strict layout fix: title + buttons as one compact bottom group */
body .hero {
  display: flex !important;
  align-items: flex-end !important;
}

body .hero-content {
  width: 100% !important;
  min-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  text-align: center !important;
  gap: 8px !important;
  padding-top: clamp(150px, 16vh, 220px) !important;
  padding-bottom: clamp(44px, 7.5vh, 92px) !important;
}

body .hero-title {
  margin: 0 !important;
  max-width: 11.6ch !important;
  font-size: clamp(22px, 3vw, 38px) !important;
  line-height: 1.12 !important;
  font-weight: 540 !important;
  letter-spacing: 0.01em !important;
  color: rgba(242, 245, 249, 0.9) !important;
}

body .hero-cta-wrap {
  margin-top: 6px !important;
  transform: none !important;
  gap: 10px !important;
}

body .hero-cta-wrap .btn {
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 12.5px !important;
  font-weight: 620 !important;
  letter-spacing: 0.045em !important;
}

@media (max-width: 900px) {
  body .hero-content {
    padding-top: clamp(124px, 17vh, 162px) !important;
    padding-bottom: clamp(32px, 6.2vh, 64px) !important;
    gap: 7px !important;
  }

  body .hero-title {
    font-size: clamp(21px, 7vw, 32px) !important;
    max-width: 11.2ch !important;
  }

  body .hero-cta-wrap .btn {
    min-height: 40px !important;
    font-size: 12px !important;
    padding: 0 14px !important;
  }

  body .audience-panel-top {
    justify-items: center !important;
    text-align: center !important;
    padding-inline: 10px !important;
  }

  body .audience-panel-title {
    width: 100% !important;
    margin-inline: auto !important;
    text-align: center !important;
    line-height: 1.08 !important;
  }

  body .audience-panel-lead {
    margin-inline: auto !important;
    max-width: 28ch !important;
    text-align: center !important;
  }
}

/* Designers + Manufacturers cards: normalize service spacing for mixed 1/2-line items */
body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-services-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-item {
  display: block !important;
  margin: 0 !important;
}

body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-toggle {
  min-height: 0 !important;
  align-items: start !important;
}

body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-title {
  margin: 0 !important;
  line-height: 1.24 !important;
}

@media (max-width: 760px) {
  body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-services-list {
    gap: 8px !important;
  }

  body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-title {
    line-height: 1.22 !important;
  }
}

/* Final sync for designers/manufacturers: equal spacing and clean expand rhythm */
body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-services-list {
  display: block !important;
  padding-top: 2px !important;
}

body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-item + .audience-service-item {
  margin-top: 10px !important;
}

body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-toggle {
  align-items: start !important;
}

body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-item.is-open .audience-service-desc {
  margin: 5px 0 0 46px !important;
}

@media (max-width: 760px) {
  body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-item + .audience-service-item {
    margin-top: 8px !important;
  }

  body .audience-panel:is([data-audience-segment="designers"], [data-audience-segment="manufacturers"]) .audience-service-item.is-open .audience-service-desc {
    margin: 4px 0 0 40px !important;
  }
}







