:root {
  --gold: #ffd700;
  --earth: #5d5340;
  --ink: #222222;
  --muted: #545454;
  --ice: #f2f2f2;
  --white: #ffffff;
  --line: rgba(34, 34, 34, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100% - 32px, 1220px);
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.brand,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  color: var(--ink);
}

.header-cta,
.button {
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(255, 215, 0, 0.25);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 43%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 38%);
}

.hero-content {
  position: relative;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 160px 0 76px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--earth);
}

h1,
h2,
h3 {
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 8vw, 5.9rem);
}

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

h3 {
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 68px;
  align-items: start;
}

.text-stack p,
.section-heading p,
.audience p,
.trust p,
.final-cta p {
  color: var(--muted);
  font-size: 1.03rem;
}

.text-stack p:first-child {
  margin-top: 0;
}

.method,
.process {
  background: var(--ice);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

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

.method-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.step {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--earth);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.method-card h3 {
  margin-bottom: 12px;
}

.method-card p,
.process article h3,
.audience-list span,
.check-list {
  color: var(--muted);
}

.audience {
  background: var(--earth);
  color: var(--white);
}

.audience h2,
.audience p {
  color: var(--white);
}

.audience p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: center;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.audience-list strong,
.audience-list span {
  display: block;
}

.audience-list span {
  color: rgba(255, 255, 255, 0.75);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-timeline article {
  position: relative;
  padding: 28px 24px 0 0;
}

.process-timeline article::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.process-timeline span {
  display: block;
  margin-bottom: 12px;
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.dashboard {
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dashboard-top span {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.dashboard-kpis {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-kpis div {
  padding: 22px;
  background: #2d2d2d;
}

.dashboard-kpis strong,
.dashboard-kpis span {
  display: block;
}

.dashboard-kpis span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.dashboard-bars {
  display: grid;
  gap: 14px;
  padding: 26px 22px 30px;
}

.dashboard-bars span {
  width: var(--w);
  height: 12px;
  background: linear-gradient(90deg, var(--gold), #ffffff);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.final-cta {
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta .button {
  display: inline-flex;
  margin-top: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 30px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .two-column,
  .audience-layout,
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.62) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 45%);
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 132px 0 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
    min-height: 54px;
    text-align: center;
  }

  .section {
    padding: 68px 0;
  }

  .section-inner {
    width: calc(100% - 28px);
  }

  .method-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: auto;
  }

  .process-timeline {
    gap: 22px;
  }

  .site-footer {
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: flex-start;
  }
}
