/* ================================================================
   AIShift — Homepage Sections
   Hero, Proof, Manifesto, Services, Sectors, Diff, Cases,
   Methodology, Insights, CEO, Awards, Newsletter, CTA
   ================================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh clamp(1.5rem, 5vw, 5vw) 8vh;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, rgba(201, 168, 76, .08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 75%, rgba(201, 168, 76, .04) 0%, transparent 60%),
    linear-gradient(160deg, #0B0B0F 0%, #11111A 60%, #0D0D14 100%);
}
.hero-vline {
  position: absolute;
  top: 0;
  right: 24vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim) 25%, var(--gold-dim) 75%, transparent);
  opacity: .15;
}
.hero-content { position: relative; z-index: var(--z-base); }
.hero-content::before {
  content: '';
  position: absolute;
  top: -.6rem;
  left: -1.2rem;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 2px solid var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
  opacity: .5;
  pointer-events: none;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp .8s var(--ease-out) both;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 1.06;
  max-width: 850px;
  animation: fadeUp .9s .1s var(--ease-out) both;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  margin-top: 2rem;
  max-width: 500px;
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.85;
  animation: fadeUp .9s .2s var(--ease-out) both;
}
.hero-actions {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .3s var(--ease-out) both;
}

/* Hero metrics */
.hero-metrics {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5vw);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: right;
  animation: fadeIn 1.2s .5s var(--ease-out) both;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.metric-label {
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: .2rem;
}
.metric-src {
  font-family: var(--font-mono);
  font-size: .56rem;
  color: var(--mist-text);
  letter-spacing: .08em;
  margin-top: .2rem;
}

/* Hero Canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .2;
  pointer-events: none;
}

/* ── SECTION DIVIDER ORNAMENTS ── */
.hero + .proof::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.proof { position: relative; }

/* ── Diamond ornament between diff and cases ── */
.diff::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold-dim);
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}
.diff { position: relative; }

/* ── SOCIAL PROOF ── */
.proof {
  background: var(--ink-mid);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  padding: 3rem clamp(1.5rem, 5vw, 5vw);
}
.proof-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mist-text);
  white-space: nowrap;
}
.proof-divider { width: 1px; height: 28px; background: var(--mist); }
.proof-items { display: flex; gap: 3rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.proof-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: var(--silver);
  opacity: .6;
  white-space: nowrap;
  transition: opacity .3s;
}
.proof-item:hover { opacity: 1; }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--ink-mid);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
}
.big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  font-weight: 300;
  line-height: 1.35;
}
.big-quote em { font-style: italic; color: var(--gold); }
.quote-attr {
  font-size: .8rem;
  color: var(--silver);
  letter-spacing: .06em;
}
.manifesto-text {
  font-size: .97rem;
  color: var(--white-dim);
  margin-bottom: 1.4rem;
  line-height: 1.9;
}
.manifesto-text strong { color: var(--white); font-weight: 400; }

/* ── HOW / SERVICES ── */
.how {
  max-width: var(--container);
  margin: 0 auto;
}
.how-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 6rem;
}
.how-intro {
  font-size: .97rem;
  color: var(--white-dim);
  max-width: 440px;
  line-height: 1.9;
}
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.step {
  background: var(--ink-soft);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease-out);
}
.step:hover {
  background: var(--mist);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s var(--ease-out);
}
.step:hover::before { background: var(--gold); }
.step-num {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.step p {
  font-size: .88rem;
  color: var(--white-dim);
  line-height: 1.85;
}

/* ── SECTORS ── */
.sectors {
  max-width: var(--container);
  margin: 0 auto;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
}
.sector-card {
  background: var(--ink-soft);
  padding: 2.8rem 2.2rem;
  transition: background .3s var(--ease-out), border-color .3s, border-left-color .3s;
  border-bottom: 2px solid transparent;
  border-left: 3px solid transparent;
  cursor: default;
}
.sector-card:hover { background: var(--mist); border-bottom-color: var(--gold); border-left-color: var(--gold); }
.sector-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: transform .3s var(--ease-out);
}
.sector-card:hover .sector-icon { transform: scale(1.15); }
.sector-icon svg { width: 100%; height: 100%; }
.sector-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .6rem;
}
.sector-card p {
  font-size: .84rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.sector-link {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color .25s;
}
.sector-link:hover { color: var(--gold); }

/* ── DIFERENCIAIS ── */
.diff { background: var(--ink-mid); }
.diff-inner { max-width: var(--container); margin: 0 auto; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
}
.diff-card {
  background: var(--ink-soft);
  padding: 3rem 2.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.diff-card:hover { background: var(--mist); border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.25); }
.diff-icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.8rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  transition: transform .3s var(--ease-out);
}
.diff-card:hover .diff-icon { transform: rotate(6deg); }
.diff-icon svg { width: 100%; height: 100%; }
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.diff-card p {
  font-size: .87rem;
  color: var(--white-dim);
  line-height: 1.9;
}

/* ── VERSUS TABLE ── */
.versus {
  max-width: 1100px;
  margin: 0 auto;
}
.versus-title-wrap { max-width: 600px; }
.versus-table {
  margin-top: 4rem;
  width: 100%;
  border-collapse: collapse;
}
.versus-table th {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
  background: var(--ink-soft);
  color: var(--silver);
  border-bottom: 1px solid var(--mist);
}
.versus-table th.hl { color: var(--gold); }
.versus-table td {
  padding: 1.1rem 1.5rem;
  font-size: .87rem;
  color: var(--white-dim);
  border-bottom: 1px solid rgba(42, 42, 56, .6);
  vertical-align: middle;
}
.versus-table tr:hover td { background: rgba(201, 168, 76, .04); }
.yes { color: var(--gold); font-weight: 500; }
.no { color: var(--mist-text); }

/* ── METHODOLOGY ── */
.method { max-width: var(--container); margin: 0 auto; }
.method-header { max-width: 680px; margin-bottom: 5rem; }
.method-desc {
  color: var(--white-dim);
  font-size: .95rem;
  line-height: 1.9;
}
.method-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 2px;
}
.method-phases::before {
  content: '';
  position: absolute;
  top: 2.4rem;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dim), var(--gold), var(--gold-dim));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-out);
}
.method-phases.line-visible::before { transform: scaleX(1); }
.phase {
  background: var(--ink-soft);
  padding: 5rem 2rem 2.5rem;
  position: relative;
  z-index: var(--z-base);
  transition: background .3s var(--ease-out);
}
.phase:hover { background: var(--mist); }
.phase-dot {
  position: absolute;
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--ink);
  transition: transform .4s var(--ease-out), background .3s;
}
.method-phases.line-visible .phase-dot { transform: translateX(-50%) scale(1); }
.method-phases.line-visible .phase:nth-child(1) .phase-dot { transition-delay: .3s; }
.method-phases.line-visible .phase:nth-child(2) .phase-dot { transition-delay: .5s; }
.method-phases.line-visible .phase:nth-child(3) .phase-dot { transition-delay: .7s; }
.method-phases.line-visible .phase:nth-child(4) .phase-dot { transition-delay: .9s; }
.phase:hover .phase-dot { background: var(--gold); }
.phase-num {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.phase h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .8rem;
}
.phase p {
  font-size: .82rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ── CASES & RESULTS ── */
.cases {
  max-width: var(--container);
  margin: 0 auto;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
}
.case-card {
  background: var(--ink-soft);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.case-card:hover { background: var(--mist); }
.case-badge {
  display: inline-block;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, .1);
  padding: .3rem .8rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  transition: background .3s;
}
.case-card:hover .case-badge { background: rgba(201, 168, 76, .2); }
.case-metric {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .6rem;
  transition: text-shadow .3s;
}
.case-card:hover .case-metric { text-shadow: 0 0 20px rgba(201, 168, 76, .3); }
.case-metric-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.5rem;
}
.case-desc {
  font-size: .87rem;
  color: var(--white-dim);
  line-height: 1.85;
  flex: 1;
}
.case-separator {
  width: 2rem;
  height: 1px;
  background: var(--gold-dim);
  margin: 1.2rem 0;
}
.case-challenge {
  font-size: .8rem;
  color: var(--silver);
  line-height: 1.7;
  font-style: italic;
}

/* ── INSIGHTS ── */
.insights {
  background: var(--ink-mid);
  position: relative;
  overflow: hidden;
}
.insights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, .03) 0%, transparent 50%);
  pointer-events: none;
}
.insights-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 5rem;
}
.insight-card {
  background: var(--ink-soft);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background .3s var(--ease-out);
  text-decoration: none;
  position: relative;
}
.insight-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .4s var(--ease-out), left .4s var(--ease-out);
}
.insight-card:hover { background: var(--mist); }
.insight-card:hover::after { width: 100%; left: 0; }
.insight-tag {
  display: inline-block;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .25rem .7rem;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}
.insight-tag.guia { background: rgba(201, 168, 76, .15); color: var(--gold); }
.insight-tag.pesquisa { background: rgba(100, 149, 237, .15); color: #6495ED; }
.insight-tag.perspectiva { background: rgba(152, 195, 121, .15); color: #98C379; }
.insight-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  flex: 0;
}
.insight-card p {
  font-size: .85rem;
  color: var(--white-dim);
  line-height: 1.85;
  flex: 1;
}
.insight-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--mist);
}
.insight-date {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--mist-text);
  letter-spacing: .08em;
}
.insight-link {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color .25s;
}
.insight-link:hover { color: var(--gold); }

/* ── CEO ── */
.ceo-section {
  background: var(--ink-mid);
  border-top: 1px solid var(--mist);
}
.ceo-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 7rem;
  align-items: center;
}
.ceo-left { position: relative; }
.ceo-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}
.ceo-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}
.ceo-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 15, .5) 0%, transparent 40%);
}
.ceo-gold-accent {
  position: absolute;
  top: 2.5rem;
  right: -1.5rem;
  width: 4px;
  height: 45%;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.ceo-gold-bot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.ceo-name-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: var(--z-base);
}
.ceo-name-tag .name-en {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .06em;
}
.ceo-name-tag .name-role {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.ceo-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: .4rem;
}
.ceo-title {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2.5rem;
}
.ceo-body {
  font-size: .97rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 1.3rem;
}
.ceo-body strong { color: var(--white); font-weight: 400; }
.ceo-pull {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201, 168, 76, .04);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--white);
}
.ceo-credentials {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.credential { display: flex; flex-direction: column; gap: .3rem; }
.credential-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
}
.credential-label {
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ── AWARDS ── */
.awards {
  max-width: var(--container);
  margin: 0 auto;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.award-badge {
  background: var(--ink-soft);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--mist);
  transition: border-color .3s var(--ease-out), background .3s, box-shadow .3s;
}
.award-badge:hover { border-color: var(--gold); background: var(--mist); box-shadow: 0 0 24px rgba(201, 168, 76, .1); }
.award-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}
.award-icon svg { width: 100%; height: 100%; }
.award-badge h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.award-badge p {
  font-size: .78rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, rgba(201, 168, 76, .08) 0%, transparent 55%), var(--ink-soft);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  text-align: center;
  padding: 6rem clamp(1.5rem, 5vw, 5vw);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: .8rem;
}
.newsletter h2 em { font-style: italic; color: var(--gold); }
.newsletter-sub {
  font-size: .92rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.newsletter-form {
  display: flex;
  gap: .6rem;
  margin-bottom: 1rem;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--mist);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
  padding: .9rem 1.2rem;
  outline: none;
  transition: border-color .3s;
}
.newsletter-form input::placeholder { color: var(--mist-text); }
.newsletter-form input:focus { border-color: var(--gold-dim); }
.newsletter-form button {
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background .25s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-privacy {
  font-size: .7rem;
  color: var(--mist-text);
  line-height: 1.7;
}

/* ── CTA ── */
.cta-strip {
  background: linear-gradient(135deg, rgba(201, 168, 76, .07) 0%, transparent 55%), var(--ink-soft);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  text-align: center;
  padding: 8rem clamp(1.5rem, 5vw, 5vw);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, .06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-sub {
  font-size: .97rem;
  color: var(--white-dim);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.9;
}
.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cta-nda {
  margin-top: 2.8rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--silver);
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.cta-nda::before,
.cta-nda::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gold-dim);
}

/* ── RESPONSIVE — SECTIONS ── */
@media (max-width: 1024px) {
  .versus-table { font-size: .8rem; }
  .versus-table th, .versus-table td { padding: .8rem 1rem; }
  .ceo-inner { gap: 4rem; }
}
@media (max-width: 900px) {
  .manifesto-grid, .how-header, .ceo-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diff-grid, .steps { grid-template-columns: 1fr; }
  .method-phases { grid-template-columns: 1fr 1fr; }
  .method-phases::before { display: none; }
  .hero-metrics { display: none; }
  .versus-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .sectors-grid, .cases-grid, .insights-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .cta-actions { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}
@media (max-width: 540px) {
  .method-phases { grid-template-columns: 1fr; }
  .big-quote { font-size: 1.5rem; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .proof-items { gap: 1.5rem; justify-content: center; }
  .proof-divider { display: none; }
  .awards-grid { grid-template-columns: 1fr; }
}
