:root {
  color-scheme: light;
  --ink: #f4fff8;
  --muted: #9fb2a7;
  --paper: #000000;
  --surface: #000000;
  --line: rgba(0, 147, 255, 0.3);
  --forest: #000000;
  --teal: #0093ff;
  --copper: #0077d9;
  --gold: #0093ff;
  --white: #ffffff;
  --dollar: #0093ff;
  --dollar-soft: rgba(0, 147, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 147, 255, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 147, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 147, 255, 0.025) 1px, transparent 1px),
    #000;
  background-size: 54px 54px;
}

a {
  color: inherit;
  text-decoration: none;
}

.theme-switch {
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  left: auto !important;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(0, 147, 255, 0.5);
  background: rgba(0, 0, 0, 0.72);
  color: var(--dollar);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 0;
  box-shadow: 0 0 24px rgba(0, 147, 255, 0.18);
  backdrop-filter: blur(10px);
}

.footer a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: clamp(92px, 13vh, 150px);
  padding-bottom: clamp(28px, 6vh, 72px);
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-joao-vendas-bg-blue.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 34%, rgba(0, 147, 255, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.18) 56%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 0;
}

.hero-copy-block {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(0, 147, 255, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 690px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: #001a33;
  box-shadow: 0 0 24px rgba(0, 147, 255, 0.38);
  animation: button-pulse 1.9s ease-in-out infinite;
}

.primary:hover {
  background: #55b9ff;
}

.primary::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  background: radial-gradient(circle, rgba(0, 147, 255, 0.72), rgba(0, 147, 255, 0.18) 42%, transparent 70%);
  filter: blur(12px);
  opacity: 0.6;
  animation: button-glow 1.9s ease-in-out infinite;
}

@keyframes button-pulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(0, 147, 255, 0.34), 0 0 0 rgba(0, 147, 255, 0);
  }

  50% {
    box-shadow: 0 0 34px rgba(0, 147, 255, 0.76), 0 0 52px rgba(0, 147, 255, 0.24);
  }
}

@keyframes button-glow {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.38;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.86;
  }
}

.secondary {
  border-color: rgba(0, 147, 255, 0.5);
  background: rgba(0, 147, 255, 0.04);
  color: var(--white);
}

.secondary:hover {
  border-color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 56px 0 0;
  background: rgba(0, 147, 255, 0.22);
  border: 1px solid rgba(0, 147, 255, 0.34);
  box-shadow: 0 0 34px rgba(0, 147, 255, 0.12);
}

.hero-stats div {
  padding: 22px;
  background: rgba(0, 12, 5, 0.78);
}

.hero-stats dt {
  color: var(--dollar);
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(0, 147, 255, 0.62);
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 6vw, 80px);
}

.intro {
  background: #000;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.deliverables h2,
.investment h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p,
.guide-copy p,
.investment-copy p,
.faq-list p,
.deliverables-list p,
.step p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.guide {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: #000;
  color: var(--white);
}

.guide .section-kicker {
  color: var(--gold);
}

.guide-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(0, 147, 255, 0.28);
  background: #050505;
  box-shadow: 0 0 52px rgba(0, 147, 255, 0.14);
}

.guide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 42%);
}

.guide-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 20%;
  filter: contrast(1.04);
}

.guide-copy {
  max-width: 740px;
}

.guide-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.02;
}

.guide-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.method {
  background: #000;
}

.ticker {
  overflow: hidden;
  background: #001a33;
  color: var(--dollar);
  border-block: 1px solid rgba(0, 147, 255, 0.5);
  box-shadow: inset 0 0 36px rgba(0, 147, 255, 0.18);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 26s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  padding-inline: 34px;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step,
.deliverables-list article,
.price-box {
  background:
    linear-gradient(145deg, rgba(0, 147, 255, 0.13), rgba(0, 0, 0, 0.88) 46%),
    rgba(0, 0, 0, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 0 32px rgba(0, 147, 255, 0.12), inset 0 0 22px rgba(0, 147, 255, 0.04);
}

.step {
  min-height: 310px;
  padding: 30px;
}

.step-number {
  display: block;
  margin-bottom: 58px;
  color: var(--dollar);
  font-size: 13px;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  justify-items: center;
  background: #000;
}

.deliverables > div:first-child {
  width: min(900px, 100%);
  text-align: center;
}

.deliverables-list {
  display: flex;
  gap: 18px;
  width: min(1120px, 100%);
  margin-inline: auto;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px calc((100% - min(340px, 78vw)) / 2) 8px;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100% - min(340px, 78vw)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.deliverables-list::-webkit-scrollbar {
  display: none;
}

.deliverables-list article {
  display: flex;
  flex: 0 0 min(340px, 78vw);
  aspect-ratio: 1 / 1;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: center;
  padding: 28px;
}

.deliverables-list h3 {
  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.08;
}

.deliverables-list p {
  max-width: 28ch;
  margin-bottom: 0;
  font-size: clamp(15px, 2.6vw, 17px);
  line-height: 1.55;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.carousel-dot.is-active {
  width: 26px;
  background: var(--dollar);
  box-shadow: 0 0 16px rgba(0, 147, 255, 0.56);
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--dollar);
  font-size: 28px;
  font-weight: 950;
  border: 1px solid rgba(0, 147, 255, 0.56);
  background: rgba(0, 147, 255, 0.1);
  box-shadow: 0 0 26px rgba(0, 147, 255, 0.28);
}

.investment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  background: #000;
  color: var(--white);
}

.faq {
  background: #000;
}

.testimonials {
  background: #000;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 147, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(0, 147, 255, 0.1), rgba(0, 0, 0, 0.94) 46%),
    #000;
  box-shadow: 0 0 30px rgba(0, 147, 255, 0.11), inset 0 0 20px rgba(0, 147, 255, 0.04);
}

.testimonial-card p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.testimonial-person {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 147, 255, 0.58);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #111;
  box-shadow: 0 0 24px rgba(0, 147, 255, 0.28);
}

.testimonial-person strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.testimonial-person span:not(.avatar) {
  display: block;
  margin-top: 5px;
  color: var(--dollar);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

.faq-list details {
  background:
    linear-gradient(145deg, rgba(0, 147, 255, 0.1), rgba(0, 0, 0, 0.94) 42%),
    #000;
  border: 1px solid var(--line);
  box-shadow: 0 0 24px rgba(0, 147, 255, 0.1);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 19px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
}

.fit {
  background: #000;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-box {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 147, 255, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(0, 147, 255, 0.1), rgba(0, 0, 0, 0.94) 44%),
    #000;
  box-shadow: 0 0 34px rgba(0, 147, 255, 0.12), inset 0 0 24px rgba(0, 147, 255, 0.04);
}

.fit-no {
  border-color: rgba(255, 42, 42, 0.52);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 42, 42, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 42, 42, 0.08), rgba(0, 0, 0, 0.96) 44%),
    #000;
  box-shadow: 0 0 34px rgba(255, 42, 42, 0.12), inset 0 0 24px rgba(255, 42, 42, 0.04);
}

.fit-no .fit-icon {
  color: #ff3b3b;
  border-color: rgba(255, 42, 42, 0.62);
  background: rgba(255, 42, 42, 0.1);
  box-shadow: 0 0 26px rgba(255, 42, 42, 0.32);
}

.fit-no li::before {
  color: #ff3b3b;
  text-shadow: 0 0 16px rgba(255, 42, 42, 0.62);
}

.fit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--dollar);
  font-size: 34px;
  font-weight: 950;
  border: 1px solid rgba(0, 147, 255, 0.56);
  background: rgba(0, 147, 255, 0.1);
  box-shadow: 0 0 26px rgba(0, 147, 255, 0.28);
}

.fit-box h3 {
  margin-bottom: 24px;
}

.fit-box ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-box li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.fit-box li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--dollar);
  font-weight: 950;
  text-shadow: 0 0 16px rgba(0, 147, 255, 0.62);
}

.fit-box.fit-no li::before {
  color: #ff3b3b;
  text-shadow: 0 0 16px rgba(255, 42, 42, 0.62);
}

.investment .section-kicker {
  color: var(--gold);
}

.investment-copy {
  max-width: 760px;
}

.investment-copy p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
}

.price-box {
  padding: 34px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.price-label {
  color: var(--dollar);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-box strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--dollar);
  text-shadow: 0 0 26px rgba(0, 147, 255, 0.45);
}

.price-box p {
  color: var(--muted);
  line-height: 1.6;
}

.price-box b {
  color: var(--white);
  font-weight: 900;
}

.full {
  width: 100%;
  margin: 16px 0 14px;
}

.price-box small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 80px);
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(0, 147, 255, 0.22);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(680px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(0, 147, 255, 0.45);
  background:
    linear-gradient(145deg, rgba(0, 147, 255, 0.14), rgba(0, 0, 0, 0.96) 48%),
    #000;
  box-shadow: 0 0 34px rgba(0, 147, 255, 0.18);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent a {
  color: var(--dollar);
  font-weight: 800;
}

.cookie-consent .button {
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 80px);
  background: #000;
}

.legal-content {
  width: min(900px, 100%);
}

.legal-content h1 {
  max-width: 860px;
  font-size: clamp(38px, 5vw, 64px);
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.legal-content .button {
  margin-top: 28px;
}

.white-theme {
  --ink: #0b1410;
  --muted: #4b5d53;
  --paper: #f7faf7;
  --surface: #ffffff;
  --line: rgba(0, 112, 207, 0.26);
  --white: #0b1410;
  --dollar: #006fcf;
  --dollar-soft: rgba(0, 112, 207, 0.09);
  --shadow: 0 24px 70px rgba(7, 48, 28, 0.12);
  background: var(--paper);
  color: var(--ink);
}

.white-theme::before {
  background:
    linear-gradient(rgba(0, 112, 207, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 112, 207, 0.04) 1px, transparent 1px),
    #f7faf7;
}

.white-theme .theme-switch {
  background: rgba(255, 255, 255, 0.86);
  color: #0b1410;
  border-color: rgba(0, 112, 207, 0.35);
}

.white-theme .hero,
.white-theme .guide,
.white-theme .investment {
  color: #0b1410;
}

.white-theme .hero-media {
  opacity: 0.5;
  filter: grayscale(1) contrast(1.22) brightness(0.86);
}

.white-theme .hero-overlay {
  background:
    radial-gradient(circle at 73% 38%, rgba(0, 125, 255, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(247, 250, 247, 0.98) 0%, rgba(247, 250, 247, 0.88) 43%, rgba(247, 250, 247, 0.28) 100%),
    linear-gradient(0deg, #f7faf7 0%, rgba(247, 250, 247, 0.16) 56%);
}

.white-theme .hero .eyebrow,
.white-theme .section-kicker,
.white-theme .guide .section-kicker,
.white-theme .investment .section-kicker {
  color: #006fcf;
  text-shadow: none;
}

.white-theme .hero-copy,
.white-theme .guide-copy p,
.white-theme .investment-copy p {
  color: #34453b;
}

.white-theme .secondary {
  border-color: rgba(0, 112, 207, 0.34);
  background: rgba(0, 112, 207, 0.05);
  color: #0b1410;
}

.white-theme .intro,
.white-theme .guide,
.white-theme .method,
.white-theme .deliverables,
.white-theme .testimonials,
.white-theme .faq,
.white-theme .fit,
.white-theme .investment,
.white-theme .footer,
.white-theme .legal-page {
  background: #f7faf7;
}

.white-theme .hero-stats {
  background: rgba(0, 112, 207, 0.14);
  border-color: rgba(0, 112, 207, 0.26);
}

.white-theme .hero-stats div,
.white-theme .step,
.white-theme .deliverables-list article,
.white-theme .price-box,
.white-theme .testimonial-card,
.white-theme .faq-list details,
.white-theme .fit-box,
.white-theme .cookie-consent {
  background:
    linear-gradient(145deg, rgba(0, 112, 207, 0.08), rgba(255, 255, 255, 0.96) 46%),
    #fff;
  border-color: rgba(0, 112, 207, 0.24);
  box-shadow: 0 18px 42px rgba(9, 50, 29, 0.1);
}

.white-theme .hero-stats dd,
.white-theme .intro p,
.white-theme .faq-list p,
.white-theme .deliverables-list p,
.white-theme .step p,
.white-theme .testimonial-card p,
.white-theme .fit-box li,
.white-theme .price-box p,
.white-theme .price-box small,
.white-theme .cookie-consent p,
.white-theme .legal-content p,
.white-theme .legal-content li {
  color: #4b5d53;
}

.white-theme .guide-photo {
  background: #fff;
  border-color: rgba(0, 112, 207, 0.24);
}

.white-theme .guide-photo img {
  filter: grayscale(1) contrast(1.04);
}

.white-theme .ticker {
  background: #e9f7ee;
  color: #006fcf;
  border-block-color: rgba(0, 112, 207, 0.24);
}

.white-theme .fit-no {
  background:
    linear-gradient(145deg, rgba(255, 42, 42, 0.08), rgba(255, 255, 255, 0.96) 46%),
    #fff;
  border-color: rgba(255, 42, 42, 0.36);
}

.white-theme .footer {
  color: #4b5d53;
  border-top-color: rgba(0, 112, 207, 0.22);
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    padding-top: 112px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 72% 32%, rgba(0, 147, 255, 0.14), transparent 26%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 58%, rgba(0, 0, 0, 0.52) 100%),
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.24) 58%);
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-stats,
  .steps,
  .intro-grid,
  .guide,
  .deliverables,
  .testimonial-grid,
  .fit-grid,
  .investment {
    grid-template-columns: 1fr;
  }

  .guide-photo {
    min-height: 420px;
    max-width: 420px;
  }

  .guide-photo img {
    min-height: 420px;
  }

}

@media (max-width: 560px) {
  .hero-content {
    width: calc(100% - 28px);
    padding-top: 0;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-stats div,
  .step,
  .deliverables-list article,
  .testimonial-card,
  .fit-box,
  .price-box,
  .faq-list summary {
    padding: 22px;
  }

  .guide-photo {
    min-height: 360px;
  }

  .guide-photo img {
    min-height: 360px;
  }

  .step {
    min-height: auto;
  }

  .step-number {
    margin-bottom: 34px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-consent .button {
    width: 100%;
  }
}
