:root {
  --color-bg: #F7F3EC;
  --color-primary: #111416;
  --color-black: #070809;
  --color-gold: #B99A4A;
  --color-gold-light: #D6BE73;
  --color-muted: #73777A;
  --color-border: #D8D2C8;
  --color-panel: rgba(255, 252, 246, 0.68);
  --font-title: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-soft: 0 24px 70px rgba(17, 20, 22, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 190, 115, 0.24), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(185, 154, 74, 0.13), transparent 24rem),
    linear-gradient(180deg, #fbf8f1 0%, var(--color-bg) 42%, #f3eee4 100%);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(185, 154, 74, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 154, 74, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.section-pad {
  padding: 112px 0;
  position: relative;
}

.compact {
  padding: 86px 0;
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-bg);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-bg);
}

.section-dark p {
  color: rgba(247, 243, 236, 0.8);
}

.section-dark .eyebrow,
.section-dark .strategy-note > span,
.section-dark .method-step span,
.section-dark .problem-card span {
  color: var(--color-gold-light);
}

.section-dark .btn {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: rgba(214, 190, 115, 0.8);
  box-shadow: 0 18px 36px rgba(7, 8, 9, 0.28);
}

.section-dark .btn:hover {
  border-color: var(--color-gold-light);
  box-shadow: 0 20px 42px rgba(214, 190, 115, 0.16);
}

.section-dark .btn-outline {
  background: transparent;
  color: var(--color-bg);
  border-color: rgba(216, 210, 200, 0.36);
  box-shadow: none;
}

.section-dark .btn-outline:hover {
  color: var(--color-primary);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(216, 210, 200, 0.72);
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 236, 0.94);
  box-shadow: 0 14px 40px rgba(17, 20, 22, 0.07);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 236px;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand span {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(17, 20, 22, 0.76);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:not(.btn) {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--color-gold);
  transition: transform 0.2s ease;
}

.main-nav a:not(.btn):hover {
  color: var(--color-black);
}

.main-nav a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .btn:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(17, 20, 22, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(214, 190, 115, 0.36), transparent);
  transition: transform 0.45s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  box-shadow: 0 16px 34px rgba(17, 20, 22, 0.17);
}

.btn:hover::before {
  transform: translateX(115%);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.28);
  color: var(--color-primary);
  border-color: var(--color-border);
  box-shadow: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  color: var(--color-black);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  max-width: 980px;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(2.8rem, 4.1vw, 4.6rem);
  line-height: 1.04;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--color-muted);
}

.hero-text {
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.06rem;
  color: #5f6366;
}

.hero-proof {
  max-width: 560px;
  margin-top: 16px;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-actions,
.center-actions,
.post-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 24px;
}

.microcopy {
  margin-top: 22px;
  color: var(--color-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(185, 154, 74, 0.42);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.24)),
    radial-gradient(circle at center, rgba(214, 190, 115, 0.27), transparent 42%),
    radial-gradient(circle at 72% 24%, rgba(185, 154, 74, 0.16), transparent 30%);
  box-shadow: 0 30px 90px rgba(17, 20, 22, 0.1), 0 0 70px rgba(185, 154, 74, 0.09);
}

.growth-dashboard {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 190, 115, 0.22), transparent 24%),
    linear-gradient(rgba(185, 154, 74, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 154, 74, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 252, 246, 0.48));
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.growth-dashboard::before {
  content: "";
  position: absolute;
  inset: -80px 40px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(214, 190, 115, 0.2);
  filter: blur(60px);
  pointer-events: none;
}

.growth-dashboard::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 14px;
  pointer-events: none;
}

.dashboard-top,
.metrics-grid,
.chart-panel,
.pipeline-panel {
  position: relative;
  z-index: 1;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(216, 210, 200, 0.76);
}

.dashboard-top p {
  margin-bottom: 5px;
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
}

.dashboard-top span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.status-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(185, 154, 74, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.72);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 14px rgba(185, 154, 74, 0.7);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-card {
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(216, 210, 200, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.68);
  box-shadow: 0 16px 34px rgba(17, 20, 22, 0.055);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 154, 74, 0.48);
}

.metric-card span,
.chart-head span {
  display: block;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin: 12px 0 4px;
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.metric-card small {
  color: var(--color-muted);
  font-size: 0.86rem;
}

.chart-panel {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(216, 210, 200, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.58);
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.chart-head strong {
  color: var(--color-gold);
  font-family: var(--font-title);
}

.growth-chart {
  width: 100%;
  height: 150px;
  overflow: visible;
}

.growth-chart .chart-grid-line {
  fill: none;
  stroke: rgba(216, 210, 200, 0.7);
  stroke-width: 1;
}

.growth-chart .chart-shadow {
  fill: none;
  stroke: rgba(185, 154, 74, 0.14);
  stroke-width: 12;
  stroke-linecap: round;
}

.growth-chart .chart-line {
  fill: none;
  stroke: url(#chartGold);
  stroke-width: 3;
  stroke-linecap: round;
}

.growth-chart circle {
  fill: #F7F3EC;
  stroke: var(--color-gold);
  stroke-width: 3;
}

.pipeline-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(216, 210, 200, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.58);
}

.pipeline-panel span {
  position: relative;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(185, 154, 74, 0.22);
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.8);
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.pipeline-panel span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  width: 9px;
  height: 1px;
  background: rgba(185, 154, 74, 0.48);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.04rem;
}

.method-section .section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.method-banner-wrap {
  position: relative;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(247, 243, 236, 0.72);
  box-shadow: 0 24px 70px rgba(17, 20, 22, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.method-banner-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(185, 154, 74, 0.14), transparent 58%);
  pointer-events: none;
}

.method-banner {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.method-banner-wrap:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 154, 74, 0.45);
  box-shadow: 0 32px 90px rgba(17, 20, 22, 0.12);
}

.method-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.method-step {
  position: relative;
  min-height: 286px;
  padding: 28px 22px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.62);
  box-shadow: 0 18px 46px rgba(17, 20, 22, 0.045);
}

.method-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 74, 0.82), transparent);
}

.method-step span {
  display: block;
  margin-bottom: 52px;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.method-step h3 {
  color: var(--color-black);
}

.method-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.platform-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.56);
  box-shadow: 0 18px 46px rgba(17, 20, 22, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 74, 0.76), transparent);
}

.platform-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.platform-card h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
}

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

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 154, 74, 0.48);
  box-shadow: 0 26px 66px rgba(17, 20, 22, 0.075);
}

.platform-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.problem-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.36fr);
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 38px;
}

.problem-head h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 3.35vw, 3.55rem);
  line-height: 1.06;
}

.problem-head p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.04rem;
}

.strategy-note {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.72), rgba(255, 252, 246, 0.42)),
    radial-gradient(circle at 100% 0%, rgba(214, 190, 115, 0.16), transparent 44%);
  box-shadow: 0 18px 46px rgba(17, 20, 22, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.strategy-note:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 154, 74, 0.42);
  box-shadow: 0 24px 58px rgba(17, 20, 22, 0.07);
}

.strategy-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.strategy-note::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(185, 154, 74, 0.86), transparent);
}

.strategy-note > span {
  display: block;
  margin-bottom: 16px;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strategy-note p {
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.28;
}

.diagnostic-status {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid rgba(216, 210, 200, 0.72);
}

.diagnostic-status div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 38px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(216, 210, 200, 0.62);
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.diagnostic-status strong {
  color: var(--color-gold);
  font-weight: 800;
}

.card-grid,
.post-grid {
  display: grid;
  gap: 18px;
}

.problem-flow {
  position: relative;
  padding-top: 34px;
}

.problem-flow::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 74, 0.28), transparent);
  pointer-events: none;
}

.problem-flow::after {
  display: none;
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card,
.post-card,
.article-cta,
.cta-panel {
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: var(--radius);
  background: var(--color-panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(17, 20, 22, 0.055);
}

.glass-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.problem-card {
  min-height: 238px;
  padding: 34px 28px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 74, 0.92), transparent);
  opacity: 0.72;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.problem-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 32px;
  color: #9d7c2f;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.problem-card span i {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(185, 154, 74, 0.86);
  border-radius: 50%;
  background: var(--color-bg);
  box-shadow: 0 0 18px rgba(185, 154, 74, 0.28);
}

.problem-card span i::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  box-shadow: 0 0 18px rgba(185, 154, 74, 0.34);
  opacity: 0.62;
}

.problem-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 22px rgba(185, 154, 74, 0.18);
}

.problem-card h3 {
  color: var(--color-black);
  font-size: 1.22rem;
}

.problem-card p {
  max-width: 340px;
}

.problem-transition {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 26px 30px;
  border: 1px solid rgba(185, 154, 74, 0.32);
  border-radius: 18px;
  background: rgba(216, 210, 200, 0.2);
}

.problem-transition p {
  max-width: 780px;
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

.glass-card a {
  color: var(--color-black);
  font-weight: 700;
}

.post-card:hover,
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 154, 74, 0.56);
  box-shadow: 0 22px 58px rgba(17, 20, 22, 0.075);
}

.solutions-section .section-head {
  max-width: 820px;
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.solutions-strategy-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 10%, rgba(214, 190, 115, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 252, 246, 0.74), rgba(255, 252, 246, 0.42));
  box-shadow: 0 24px 70px rgba(17, 20, 22, 0.07);
}

.solutions-strategy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 82px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.strategy-label,
.solution-number {
  display: block;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.solutions-strategy-card h3 {
  max-width: 320px;
  margin: 24px 0 44px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.strategy-flow {
  position: relative;
  display: grid;
  gap: 18px;
}

.strategy-flow::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 7px;
  width: 1px;
  background: linear-gradient(180deg, rgba(185, 154, 74, 0.1), rgba(185, 154, 74, 0.55), rgba(185, 154, 74, 0.1));
}

.strategy-flow span {
  position: relative;
  padding-left: 28px;
  color: var(--color-primary);
  font-weight: 800;
}

.strategy-flow span::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 3px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(185, 154, 74, 0.82);
  border-radius: 50%;
  background: var(--color-bg);
  box-shadow: 0 0 18px rgba(185, 154, 74, 0.2);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-layer {
  position: relative;
  min-height: 238px;
  padding: 30px 28px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 252, 246, 0.62);
  box-shadow: 0 18px 46px rgba(17, 20, 22, 0.045);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.solution-layer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(185, 154, 74, 0.76), transparent);
  opacity: 0.72;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.solution-layer h3 {
  margin: 34px 0 14px;
  color: var(--color-black);
  font-size: 1.26rem;
  line-height: 1.18;
}

.solution-layer p {
  max-width: 360px;
}

.solution-layer:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 154, 74, 0.48);
  box-shadow: 0 26px 66px rgba(17, 20, 22, 0.075);
}

.solution-layer:hover::before {
  opacity: 1;
  box-shadow: 0 0 24px rgba(185, 154, 74, 0.16);
}

.solutions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(216, 210, 200, 0.82);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.5);
}

.solutions-cta p {
  max-width: 640px;
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.26;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 46px;
  align-items: center;
  padding: 52px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.split-band p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 20px;
}

.statement-box {
  min-height: 220px;
  display: flex;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(185, 154, 74, 0.38);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 20, 22, 0.94), rgba(7, 8, 9, 0.9));
  color: #fff;
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
}

.manifesto-block {
  max-width: 820px;
  margin-top: 40px;
  text-align: center;
}

.manifesto-block p {
  color: var(--color-muted);
  font-size: 1.06rem;
}

.manifesto-block .exclusive-proof {
  margin-top: 18px;
  color: var(--color-black);
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 800;
}

.manifesto-block .btn {
  margin-top: 26px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-card {
  padding: 34px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.54);
  box-shadow: 0 18px 46px rgba(17, 20, 22, 0.045);
}

.fit-card h2 {
  margin-bottom: 26px;
  color: var(--color-gold);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.fit-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 22px;
  color: var(--color-primary);
  font-weight: 650;
}

.fit-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--color-gold);
}

.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-pill {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(216, 210, 200, 0.9);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.56);
  color: var(--color-primary);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.filter-pill:hover,
.filter-pill.is-active {
  transform: translateY(-1px);
  border-color: rgba(185, 154, 74, 0.6);
  background: var(--color-primary);
  color: var(--color-bg);
}

.post-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.post-image {
  display: block;
  margin: -8px -8px 20px;
  overflow: hidden;
  border: 1px solid rgba(216, 210, 200, 0.78);
  border-radius: 8px;
  background: rgba(17, 20, 22, 0.04);
}

.post-image img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.025);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-meta span {
  color: var(--color-gold);
}

.post-card h2 {
  font-size: 1.25rem;
  line-height: 1.08;
  margin-bottom: 16px;
}

.post-card h2 a {
  color: var(--color-black);
}

.post-card p {
  margin-bottom: 22px;
}

.post-actions {
  margin-top: auto;
}

.text-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-black);
  font-weight: 800;
  cursor: pointer;
}

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

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.final-cta {
  padding-top: 60px;
}

.cta-panel {
  padding: 56px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 252, 246, 0.68)),
    radial-gradient(circle at 50% 0%, rgba(214, 190, 115, 0.23), transparent 60%);
}

.cta-copy {
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: center;
}

.cta-panel p {
  max-width: 720px;
  margin: 18px auto 30px;
}

.contact-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.58);
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form small,
.form-note {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 210, 200, 0.95);
  border-radius: 10px;
  background: rgba(247, 243, 236, 0.62);
  color: var(--color-black);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form select {
  height: 48px;
  padding: 0 42px 0 14px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-gold) 50%),
    linear-gradient(135deg, var(--color-gold) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-form textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(185, 154, 74, 0.62);
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 0 0 3px rgba(185, 154, 74, 0.11);
}

.form-full {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form .checkbox-field {
  display: flex;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold);
  flex: 0 0 auto;
}

.checkbox-field span {
  font-size: 0.92rem;
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  max-width: none;
  margin: 12px 0 0;
  text-align: center;
}

.section-dark .glass-card,
.section-dark .method-step,
.section-dark .strategy-note,
.section-dark .problem-transition,
.section-dark .cta-panel,
.section-dark .contact-form {
  border-color: rgba(216, 210, 200, 0.3);
  background: rgba(7, 8, 9, 0.72);
  box-shadow: 0 24px 70px rgba(7, 8, 9, 0.28);
}

.section-dark .glass-card:hover,
.section-dark .method-step:hover,
.section-dark .strategy-note:hover,
.section-dark .cta-panel:hover {
  border-color: rgba(214, 190, 115, 0.58);
  box-shadow: 0 28px 78px rgba(214, 190, 115, 0.1);
}

.section-dark .problem-flow::before {
  background: linear-gradient(90deg, transparent, rgba(214, 190, 115, 0.34), transparent);
}

.section-dark .problem-card::before,
.section-dark .method-step::before {
  background: linear-gradient(90deg, transparent, rgba(214, 190, 115, 0.95), transparent);
}

.section-dark .problem-card span i {
  border-color: rgba(214, 190, 115, 0.9);
  background: var(--color-primary);
}

.section-dark .problem-card span i::before {
  background: var(--color-gold-light);
}

.section-dark .problem-card h3,
.section-dark .method-step h3,
.section-dark .strategy-note p,
.section-dark .problem-transition p,
.section-dark .manifesto-block .exclusive-proof,
.section-dark .contact-form span {
  color: var(--color-bg);
}

.section-dark .problem-card p,
.section-dark .method-step p,
.section-dark .manifesto-block p,
.section-dark .contact-form small,
.section-dark .form-note,
.section-dark .diagnostic-status div {
  color: rgba(247, 243, 236, 0.78);
}

.section-dark .diagnostic-status,
.section-dark .diagnostic-status div {
  border-color: rgba(216, 210, 200, 0.24);
}

.section-dark .diagnostic-status strong {
  color: var(--color-gold-light);
}

.section-dark .split-band {
  border-color: rgba(216, 210, 200, 0.28);
}

.section-dark .statement-box {
  border-color: rgba(214, 190, 115, 0.46);
  background: linear-gradient(145deg, rgba(7, 8, 9, 0.96), rgba(17, 20, 22, 0.9));
  color: var(--color-bg);
}

.section-dark .contact-form input,
.section-dark .contact-form select,
.section-dark .contact-form textarea {
  border-color: rgba(216, 210, 200, 0.42);
  background-color: var(--color-black);
  color: var(--color-bg);
}

.section-dark .contact-form input::placeholder,
.section-dark .contact-form textarea::placeholder {
  color: rgba(115, 119, 122, 0.92);
}

.section-dark .contact-form input:focus,
.section-dark .contact-form select:focus,
.section-dark .contact-form textarea:focus {
  border-color: rgba(214, 190, 115, 0.78);
  background-color: rgba(7, 8, 9, 0.92);
  box-shadow: 0 0 0 3px rgba(214, 190, 115, 0.12);
}

.section-dark .contact-form select option {
  background: var(--color-black);
  color: var(--color-bg);
}

.section-dark .checkbox-field input {
  accent-color: var(--color-gold-light);
}

.page-hero {
  padding-top: 170px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(216, 210, 200, 0.72);
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  font-size: 1.1rem;
}

.blog-hero-simple {
  padding-top: 158px;
  padding-bottom: 54px;
}

.blog-hero-simple .narrow {
  margin-left: max(20px, calc((100vw - 1160px) / 2));
}

.blog-hero-simple h1 {
  max-width: 760px;
  color: var(--color-primary);
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.blog-hero-simple p {
  max-width: 600px;
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.post-page {
  padding-top: 160px;
}

.article-header {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--color-border);
}

.article-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.article-header p {
  margin-top: 20px;
  font-size: 1.12rem;
}

.article-featured-image {
  width: 100%;
  margin-top: 34px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.article-body {
  padding: 44px 0;
}

.article-body p {
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.article-body section {
  margin-bottom: 34px;
}

.article-body h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
  padding-left: 22px;
  color: var(--color-primary);
}

.article-body li {
  padding-left: 4px;
}

.article-links {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(216, 210, 200, 0.86);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.52);
}

.article-links a {
  color: var(--color-primary);
  font-weight: 800;
}

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

.muted {
  color: var(--color-muted);
}

.article-cta {
  padding: 34px;
}

.article-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.empty-state {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
}

.site-footer {
  padding: 58px 0 26px;
  border-top: 1px solid rgba(216, 210, 200, 0.18);
  background: var(--color-black);
  color: var(--color-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.6fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand img {
  width: 168px;
  height: 52px;
  max-height: 52px;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--color-bg);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: var(--color-bg);
  font-weight: 600;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 8px;
  color: rgba(247, 243, 236, 0.78);
  font-size: 0.95rem;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.site-footer .footer-contact-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
}

.footer-contact-list svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(216, 210, 200, 0.28);
  border-radius: 50%;
  background: rgba(17, 20, 22, 0.72);
  fill: var(--color-gold-light);
}

.footer-contact-list span {
  display: grid;
  gap: 2px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-contact-list small {
  color: rgba(247, 243, 236, 0.66);
  font-size: 0.88rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.site-footer .social-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(216, 210, 200, 0.28);
  border-radius: 50%;
  background: rgba(17, 20, 22, 0.72);
  color: var(--color-bg);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer .social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 190, 115, 0.6);
  color: var(--color-gold-light);
  box-shadow: 0 14px 28px rgba(214, 190, 115, 0.08);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.copyright {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 210, 200, 0.18);
  color: rgba(247, 243, 236, 0.66);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(214, 190, 115, 0.55);
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-gold-light);
  box-shadow: 0 18px 38px rgba(17, 20, 22, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(17, 20, 22, 0.28);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .split-band,
  .problem-head,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-layout {
    grid-template-columns: 1fr;
  }

  .method-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-strategy-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .three,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem-flow::before,
  .problem-flow::after {
    display: none;
  }

  .problem-flow {
    padding-top: 0;
  }

  .problem-card::before {
    top: 24px;
    bottom: 24px;
    left: 0;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(185, 154, 74, 0.82), transparent);
  }

  .problem-card span i::before {
    display: none;
  }

  .problem-head {
    gap: 30px;
  }

  .strategy-note {
    max-width: 680px;
    align-self: auto;
  }
}

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 184px;
    height: 48px;
    max-height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: rgba(247, 243, 236, 0.98);
    box-shadow: var(--shadow-soft);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .main-nav .btn {
    margin-top: 10px;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .section-pad {
    padding: 78px 0;
  }

  .compact {
    padding: 62px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    gap: 44px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 3.45rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .method-section .section-head {
    margin-bottom: 32px;
  }

  .method-banner-wrap {
    border-radius: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .method-banner-wrap::-webkit-scrollbar {
    display: none;
  }

  .method-banner {
    width: 980px;
    max-width: none;
  }

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

  .problem-card {
    min-height: auto;
    padding: 30px 24px 26px;
  }

  .problem-card span {
    margin-bottom: 24px;
  }

  .hero-visual {
    min-height: auto;
    border-radius: 12px;
  }

  .growth-dashboard {
    padding: 20px;
  }

  .dashboard-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .pipeline-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .pipeline-panel span {
    justify-content: flex-start;
    width: 100%;
    min-height: 38px;
  }

  .pipeline-panel span:not(:last-child)::after {
    right: auto;
    bottom: -9px;
    left: 18px;
    width: 1px;
    height: 9px;
  }

  .post-grid,
  .solutions-grid,
  .method-process,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .method-step {
    min-height: auto;
    padding: 30px 24px;
  }

  .method-step span {
    margin-bottom: 28px;
  }

  .problem-transition,
  .solutions-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .solutions-strategy-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .solutions-strategy-card h3 {
    margin-bottom: 34px;
  }

  .solution-layer {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .platform-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .solutions-cta,
  .problem-transition,
  .fit-card {
    padding: 24px;
    border-radius: 20px;
  }

  .split-band,
  .cta-panel {
    padding: 30px 22px;
  }

  .cta-copy {
    margin-bottom: 28px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 18px;
  }

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

  .statement-box {
    min-height: 160px;
    padding: 26px;
  }

  .page-hero,
  .post-page {
    padding-top: 124px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

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

  .metric-card {
    min-height: 108px;
    padding: 16px;
  }

  .chart-panel,
  .pipeline-panel {
    padding: 14px;
  }

  .growth-chart {
    height: 128px;
  }

  .hero-actions,
  .center-actions,
  .post-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .post-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .site-footer {
    padding-bottom: 88px;
  }
}

/* Alternancia visual principal da home. Mantem a hierarquia escura mesmo se regras anteriores mudarem. */
#diagnostico,
#metodo,
#diferencial,
#contato {
  background: var(--color-primary) !important;
  color: var(--color-bg);
}

#diagnostico h2,
#diagnostico h3,
#metodo h2,
#metodo h3,
#diferencial h2,
#diferencial h3,
#contato h2,
#contato h3 {
  color: var(--color-bg);
}

#diagnostico p,
#metodo p,
#diferencial p,
#contato p {
  color: rgba(247, 243, 236, 0.82);
}

#diagnostico .eyebrow,
#metodo .eyebrow,
#diferencial .eyebrow,
#contato .eyebrow,
#diagnostico .problem-card span,
#metodo .method-step span {
  color: var(--color-gold-light);
}

#plataforma,
#solucoes,
#para-quem-e {
  background: var(--color-bg);
  color: var(--color-primary);
}

#plataforma h2,
#plataforma h3,
#solucoes h2,
#solucoes h3,
#para-quem-e h2,
#para-quem-e h3 {
  color: var(--color-black);
}

#plataforma p,
#solucoes p,
#para-quem-e p {
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1160px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img {
    width: 158px;
    height: 42px;
    max-height: 42px;
  }

  .main-nav {
    top: 64px;
  }

  .section-pad {
    padding: 66px 0;
  }

  .compact {
    padding: 54px 0;
  }

  .hero {
    padding-top: 94px;
    padding-bottom: 56px;
  }

  .hero-grid {
    gap: 32px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 8.5vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.018em;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 1.02rem;
    line-height: 1.56;
  }

  .hero-proof {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.44;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .btn {
    min-height: 48px;
    padding: 13px 18px;
    font-size: 0.96rem;
  }

  h2,
  .problem-head h2 {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
    line-height: 1.1;
  }

  h3 {
    line-height: 1.14;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .hero-visual {
    min-height: auto;
  }

  .growth-dashboard {
    padding: 18px;
    border-radius: 16px;
  }

  .dashboard-top {
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }

  .metrics-grid {
    gap: 12px;
  }

  .metric-card {
    min-height: 104px;
    padding: 15px;
  }

  .metric-card span,
  .chart-head span {
    font-size: 0.72rem;
  }

  .metric-card strong {
    margin: 8px 0 2px;
    font-size: 1.35rem;
  }

  .chart-panel,
  .pipeline-panel {
    padding: 14px;
  }

  .glass-card,
  .platform-card,
  .method-step,
  .solution-layer,
  .fit-card,
  .strategy-note,
  .problem-transition,
  .solutions-cta {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .problem-card span,
  .method-step span {
    margin-bottom: 18px;
  }

  .split-band,
  .cta-panel {
    padding: 26px 20px;
  }

  .statement-box {
    min-height: 140px;
    padding: 24px;
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }
}

@media (max-width: 480px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 58px 0;
  }

  .compact {
    padding: 48px 0;
  }

  .hero {
    padding-top: 84px;
    padding-bottom: 48px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 9vw, 2.58rem);
    line-height: 1.07;
  }

  .hero-text {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-proof {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .btn,
  .btn-small {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.94rem;
  }

  .brand img {
    width: 144px;
    height: 38px;
    max-height: 38px;
  }

  h2,
  .problem-head h2 {
    font-size: clamp(1.72rem, 7.4vw, 2.2rem);
  }

  .section-head p,
  .problem-head p,
  .split-band p,
  .manifesto-block p,
  .fit-card li,
  .solution-layer p,
  .platform-card p,
  .method-step p,
  .problem-card p {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .growth-dashboard {
    padding: 16px;
  }

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

  .metric-card {
    min-height: 96px;
    padding: 13px;
  }

  .metric-card strong {
    font-size: 1.2rem;
  }

  .metric-card small {
    font-size: 0.78rem;
  }

  .growth-chart {
    height: 112px;
  }

  .pipeline-panel span {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .glass-card,
  .platform-card,
  .method-step,
  .solution-layer,
  .fit-card,
  .strategy-note,
  .problem-transition,
  .solutions-cta,
  .contact-form {
    padding: 22px 18px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-proof {
    font-size: 0.9rem;
  }

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

  .metric-card {
    min-height: 88px;
  }

  h2,
  .problem-head h2 {
    font-size: 1.66rem;
  }
}

@media (min-width: 821px) {
  .container {
    width: min(1240px, calc(100% - 64px));
  }

  .section-pad {
    padding: 96px 0;
  }

  .compact {
    padding: 78px 0;
  }

  .hero.section-pad {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.85fr);
    gap: 68px;
    align-items: center;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.78rem;
    letter-spacing: 0.19em;
  }

  .hero h1 {
    max-width: 690px;
    font-size: clamp(3.3rem, 3.6vw, 4.45rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .hero-text {
    max-width: 620px;
    margin-top: 24px;
    font-size: 1.12rem;
    line-height: 1.6;
  }

  .hero-proof {
    max-width: 600px;
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .btn {
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.96rem;
  }

  .btn-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .hero-visual,
  .growth-dashboard {
    width: 100%;
    max-width: 550px;
    min-height: 520px;
    justify-self: end;
    align-self: center;
  }

  .growth-dashboard {
    padding: 30px;
    border-radius: 22px;
  }

  .dashboard-top {
    padding-bottom: 18px;
  }

  .dashboard-top p {
    font-size: 1.45rem;
  }

  .dashboard-top span {
    font-size: 0.86rem;
  }

  .metrics-grid {
    gap: 13px;
    margin-top: 20px;
  }

  .metric-card {
    min-height: 112px;
    padding: 18px;
  }

  .metric-card strong {
    margin-top: 10px;
    font-size: 1.5rem;
  }

  .chart-panel {
    margin-top: 14px;
    padding: 16px;
  }

  .growth-chart {
    height: 128px;
  }

  h2,
  .problem-head h2,
  .split-band h2,
  .cta-copy h2,
  .section-head h2 {
    font-size: clamp(2.35rem, 3vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .problem-head {
    gap: 52px;
    margin-bottom: 34px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .glass-card,
  .platform-card,
  .method-step,
  .solution-layer,
  .fit-card,
  .strategy-note {
    padding: 30px;
  }

  .problem-card,
  .solution-layer {
    min-height: 220px;
  }

  .problem-card h3,
  .platform-card h3,
  .method-step h3,
  .solution-layer h3 {
    font-size: 1.22rem;
  }

  .problem-card p,
  .platform-card p,
  .method-step p,
  .solution-layer p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}

@media (min-width: 1440px) {
  .container {
    width: min(1280px, calc(100% - 80px));
  }

  .hero h1 {
    max-width: 700px;
    font-size: 4.45rem;
  }

  .hero-grid {
    gap: 76px;
  }

  .hero-visual,
  .growth-dashboard {
    max-width: 560px;
  }
}

@media (min-width: 821px) and (max-width: 1366px) {
  .container {
    width: min(1180px, calc(100% - 56px));
  }

  .hero.section-pad {
    padding-top: 108px;
    padding-bottom: 78px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
    gap: 52px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(3.05rem, 3.65vw, 4rem);
  }

  .hero-text {
    max-width: 600px;
    font-size: 1.06rem;
  }

  .hero-visual,
  .growth-dashboard {
    max-width: 510px;
    min-height: 500px;
  }

  .growth-dashboard {
    padding: 26px;
  }

  .metric-card {
    min-height: 106px;
    padding: 16px;
  }

  .growth-chart {
    height: 118px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual,
  .growth-dashboard {
    max-width: 720px;
    justify-self: center;
  }
}
