:root {
  --ink: #151817;
  --ink-soft: #343a37;
  --paper: #f4f0e8;
  --white: #fffdf7;
  --blue: #1937ff;
  --blue-dark: #1020a8;
  --orange: #ff5a36;
  --lime: #dfff67;
  --line: rgba(21, 24, 23, .18);
  --line-light: rgba(255, 253, 247, .22);
  --display: "Newsreader", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", Consolas, monospace;
  --shell: min(1280px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 96px;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 82px;
  padding: 0 32px;
  align-items: center;
  background: rgba(244, 240, 232, .9);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto 1fr;
  backdrop-filter: blur(16px);
  transition: min-height 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  box-shadow: 0 8px 35px rgba(21, 24, 23, .08);
}

.brand {
  display: inline-flex;
  width: max-content;
  gap: 12px;
  align-items: center;
}

.brand > span {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  place-items: center;
}

.brand > strong {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.site-header nav {
  display: flex;
  gap: 30px;
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
  font-size: .74rem;
  font-weight: 600;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 12px 17px;
  color: var(--white);
  background: var(--ink);
  font-size: .7rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
}

.language-link-main {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 500;
  text-decoration: none;
}

.site-header > .button {
  grid-column: 3;
  justify-self: end;
}

.language-link-main:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  min-height: 760px;
  padding: 130px max(32px, calc((100vw - 1280px) / 2)) 68px;
  gap: 6vw;
  align-items: center;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(21,24,23,.055) 1px) 0 0 / 64px 64px,
    linear-gradient(0deg, transparent calc(100% - 1px), rgba(21,24,23,.055) 1px) 0 0 / 64px 64px,
    var(--paper);
  grid-template-columns: 1.1fr .9fr;
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  gap: 11px;
  align-items: center;
  color: var(--blue);
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 19px;
  height: 7px;
  background: var(--orange);
}

.eyebrow-light {
  color: var(--lime);
}

.hero h1,
.section-heading h2,
.gain-panel h2,
.portfolio-header h2,
.calculator-grid h2,
.pricing-header h2,
.process-grid h2,
.about-grid h2,
.faq-grid h2,
.contact-grid h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .94;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.7rem, 6.3vw, 6.4rem);
}

.hero h1 em {
  display: inline-block;
  color: var(--blue);
  font-weight: 500;
}

.hero-lede {
  max-width: 670px;
  margin: 32px 0 0;
  color: rgba(21,24,23,.72);
  font-size: 1rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  gap: 28px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 6px 6px 0 var(--orange);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 8px 8px 0 var(--orange);
}

.button-secondary {
  border-color: var(--ink);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.button-accent {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 6px 6px 0 var(--blue);
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid;
  font-size: .75rem;
  font-weight: 700;
}

.quick-access {
  display: grid;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, .52);
  grid-template-columns: repeat(4, 1fr);
}

.quick-access a {
  display: grid;
  min-width: 0;
  min-height: 122px;
  padding: 22px;
  border-right: 1px solid var(--line);
  align-content: center;
  transition: color 160ms ease, background 160ms ease;
}

.quick-access a:last-child {
  border-right: 0;
}

.quick-access a:hover,
.quick-access a:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.quick-access span,
.quick-access small {
  font-family: var(--mono);
  font-size: .58rem;
}

.quick-access span {
  margin-bottom: 10px;
  color: var(--orange);
}

.quick-access strong {
  font-size: .88rem;
}

.quick-access small {
  margin-top: 4px;
  opacity: .68;
}

.hero-points {
  display: flex;
  padding: 0;
  margin: 52px 0 0;
  gap: 28px;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 4px;
  flex-direction: column;
  color: rgba(21,24,23,.58);
  font-size: .68rem;
}

.hero-points strong {
  color: var(--ink);
  font-size: .82rem;
}

.hero-proof {
  position: relative;
  min-height: 590px;
}

.proof-card {
  position: absolute;
  top: 10px;
  right: 0;
  width: min(100%, 500px);
  min-height: 445px;
  padding: 45px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 18px 18px 0 var(--orange);
}

.proof-card::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  content: "";
}

.proof-card::after {
  position: absolute;
  top: 39px;
  right: 39px;
  width: 20px;
  height: 20px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.proof-label {
  display: block;
  margin-bottom: 90px;
  font-family: var(--mono);
  font-size: .64rem;
  text-transform: uppercase;
}

.proof-card > strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .93;
}

.proof-flow {
  display: flex;
  margin-top: 55px;
  align-items: center;
  justify-content: space-between;
}

.proof-flow span {
  font-family: var(--mono);
  font-size: .57rem;
  text-transform: uppercase;
}

.proof-flow i {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,.4);
}

.hero-proof aside {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: -35px;
  width: min(360px, 76%);
  padding: 25px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
}

.hero-proof aside > span {
  display: block;
  font-size: .78rem;
  font-weight: 700;
}

.hero-proof aside p {
  margin: 10px 0 0;
  font-size: .78rem;
}

.trust-strip {
  display: grid;
  color: var(--white);
  background: var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip > * {
  display: flex;
  min-height: 110px;
  padding: 25px 36px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-light);
}

.trust-strip > *:last-child {
  border-right: 0;
}

.trust-strip span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
}

.trust-strip strong {
  font-size: .9rem;
}

.section-heading {
  display: grid;
  gap: 65px;
  align-items: end;
  grid-template-columns: .45fr 1.55fr;
}

.section-heading h2 {
  max-width: 930px;
  font-size: clamp(3.7rem, 6vw, 6.4rem);
}

.pain-grid {
  display: grid;
  margin-top: 85px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  grid-template-columns: repeat(4, 1fr);
}

.pain-grid article {
  min-height: 350px;
  padding: 30px;
  background: rgba(255,253,247,.52);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.pain-grid article > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: .64rem;
}

.pain-grid h3 {
  margin: 105px 0 15px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.pain-grid p {
  margin: 0;
  color: rgba(21,24,23,.62);
  font-size: .82rem;
}

.gain-panel {
  display: grid;
  margin-top: 100px;
  padding: 70px;
  gap: 8vw;
  color: var(--white);
  background: var(--blue);
  grid-template-columns: 1fr 1fr;
}

.gain-panel h2 {
  font-size: clamp(3.4rem, 5.5vw, 5.7rem);
}

.gain-panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gain-panel li {
  display: grid;
  padding: 19px 0;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  grid-template-columns: 140px 1fr;
}

.gain-panel li strong {
  color: var(--lime);
  font-size: .8rem;
}

.gain-panel li span {
  color: rgba(255,255,255,.68);
  font-size: .78rem;
}

.portfolio-section {
  color: var(--white);
  background: var(--ink);
}

.portfolio-header {
  display: grid;
  gap: 70px;
  align-items: end;
  grid-template-columns: 1.3fr .7fr;
}

.portfolio-header h2 {
  max-width: 850px;
  font-size: clamp(4rem, 6.6vw, 6.8rem);
}

.portfolio-header > p {
  margin: 0;
  color: rgba(255,255,255,.58);
}

.portfolio-grid {
  display: grid;
  margin-top: 80px;
  gap: 28px;
  grid-template-columns: 1fr 1fr;
}

.project {
  background: #202422;
  border: 1px solid var(--line-light);
}

.project-large {
  grid-row: span 2;
}

.project figure {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

.project-large figure {
  aspect-ratio: 4 / 3;
}

.project figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21,24,23,.38), transparent 50%);
  content: "";
}

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.project:hover img {
  transform: scale(1.03);
}

.project > div {
  padding: 30px;
}

.project > div > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .57rem;
  text-transform: uppercase;
}

.project h3 {
  margin: 9px 0 9px;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}

.project p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: .82rem;
}

.project ul {
  display: flex;
  padding: 0;
  margin: 24px 0 0;
  gap: 8px;
  list-style: none;
}

.project-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.project-actions a {
  display: inline-flex;
  min-height: 38px;
  padding: 0 13px;
  align-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}

.project-actions a:first-child {
  color: var(--paper);
  background: var(--ink);
}

.project-actions a:hover,
.project-actions a:focus-visible {
  color: var(--paper);
  background: var(--blue);
}

.project li {
  padding: 6px 9px;
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: .52rem;
  text-transform: uppercase;
}

.social-project {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: .88fr 1.12fr;
}

.social-project-visual {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 360px;
  padding: 40px;
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  container-type: inline-size;
  background:
    radial-gradient(circle at 78% 18%, rgba(223,255,103,.82), transparent 19%),
    radial-gradient(circle at 18% 78%, rgba(255,90,54,.9), transparent 26%),
    linear-gradient(135deg, #31155d, #1937ff 48%, #151817);
}

.social-project-visual::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.34);
  content: "";
}

.social-project-visual span,
.social-project-visual small {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
}

.social-project-visual strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  margin: 10px 0;
  font-family: var(--display);
  font-size: clamp(2rem, 8.6cqi, 5.3rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .9;
  white-space: nowrap;
}

.calculator-section {
  color: var(--white);
  background: var(--blue);
}

.calculator-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: .8fr 1.2fr;
}

.calculator-grid h2 {
  font-size: clamp(4rem, 6.8vw, 6.8rem);
}

.calculator-grid header > p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.66);
}

.calculator {
  padding: 45px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--orange);
}

.calculator > label {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.calculator > label > span {
  display: block;
  margin-bottom: 13px;
  font-size: .75rem;
  font-weight: 700;
}

.calculator label > div {
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 1fr 70px;
}

.calculator input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}

.calculator output {
  font-family: var(--mono);
  font-size: .7rem;
  text-align: right;
}

.calculator-result {
  margin-top: 30px;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.calculator-result > span,
.calculator-result > small {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: .65rem;
}

.calculator-result > strong {
  display: block;
  margin: 7px 0 10px;
  color: var(--lime);
  font-family: var(--display);
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
}

.pricing-section {
  background: var(--paper);
}

.pricing-header {
  display: grid;
  gap: 55px;
  align-items: end;
  grid-template-columns: 1fr 1fr;
}

.pricing-header h2 {
  font-size: clamp(4rem, 6.6vw, 6.8rem);
}

.pricing-header > p {
  max-width: 570px;
  margin: 0 0 8px;
  color: rgba(21,24,23,.64);
}

.pricing-grid {
  display: grid;
  margin-top: 75px;
  gap: 18px;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid article {
  position: relative;
  display: flex;
  min-height: 590px;
  padding: 35px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink);
}

.pricing-grid article.featured-price {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 10px 10px 0 var(--orange);
}

.popular {
  position: absolute;
  top: -29px;
  right: -1px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: .53rem;
  text-transform: uppercase;
}

.pricing-grid article > div:first-of-type:not(.popular),
.featured-price > div:nth-of-type(2) {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.pricing-grid article > div span {
  font-family: var(--mono);
  font-size: .64rem;
  text-transform: uppercase;
}

.pricing-grid article > div strong {
  font-family: var(--display);
  font-size: 3.7rem;
  font-weight: 600;
  letter-spacing: -.05em;
}

.pricing-grid article > p {
  min-height: 82px;
  margin: 25px 0;
  color: rgba(21,24,23,.62);
  font-size: .8rem;
}

.featured-price > p {
  color: rgba(255,255,255,.7) !important;
}

.pricing-grid ul {
  padding: 22px 0 0;
  margin: 0 0 35px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured-price ul {
  border-top-color: rgba(255,255,255,.25);
}

.pricing-grid li {
  position: relative;
  padding: 8px 0 8px 20px;
  font-size: .76rem;
}

.pricing-grid li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  content: "";
}

.featured-price li::before {
  background: var(--lime);
}

.pricing-grid .button {
  width: 100%;
  margin-top: auto;
}

.featured-price .button {
  color: var(--ink);
  background: var(--lime);
}

.pricing-note {
  max-width: 900px;
  margin: 35px auto 0;
  color: rgba(21,24,23,.5);
  font-size: .7rem;
  text-align: center;
}

.pricing-brief {
  display: grid;
  margin-top: 72px;
  gap: 20px;
  grid-template-columns: 1.18fr .82fr;
}

.website-offer {
  display: flex;
  min-height: 520px;
  padding: 45px;
  flex-direction: column;
  color: var(--white);
  background: var(--blue);
  box-shadow: 12px 12px 0 var(--orange);
}

.website-offer > div:first-child,
.pricing-choices article > div {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.website-offer > div:first-child > span,
.pricing-choices article > div > span {
  font-family: var(--mono);
  font-size: .61rem;
  text-transform: uppercase;
}

.website-offer > div:first-child > strong {
  font-family: var(--display);
  font-size: clamp(3.3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .85;
  text-align: right;
}

.website-offer > div:first-child > strong small {
  display: block;
  color: var(--lime);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.website-offer h3 {
  max-width: 650px;
  margin: 85px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .95;
}

.website-offer > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.72);
}

.offer-tags {
  display: flex;
  margin: 30px 0;
  gap: 8px;
  flex-wrap: wrap;
}

.offer-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.3);
  font-family: var(--mono);
  font-size: .55rem;
  text-transform: uppercase;
}

.website-offer .button {
  width: max-content;
  margin-top: auto;
  color: var(--ink);
  background: var(--lime);
}

.pricing-choices {
  display: grid;
  gap: 20px;
  grid-template-rows: 1fr 1fr;
}

.pricing-choices article {
  display: flex;
  min-height: 250px;
  padding: 32px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink);
}

.pricing-choices article > div > strong {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .9;
  text-align: right;
}

.pricing-choices article > div > strong small {
  font-family: var(--body);
  font-size: .65rem;
}

.pricing-choices article p {
  color: rgba(21,24,23,.64);
}

.pricing-choices article > a {
  width: max-content;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid;
  font-size: .68rem;
  font-weight: 700;
}

.process-section {
  color: var(--white);
  background: var(--ink);
}

.process-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: .85fr 1.15fr;
}

.process-grid h2 {
  font-size: clamp(4rem, 6.6vw, 6.7rem);
}

.process-grid ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid li {
  display: grid;
  min-height: 175px;
  padding: 30px 0;
  gap: 35px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 55px 1fr;
}

.process-grid li > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .65rem;
}

.process-grid h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.process-grid li p {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}

.about-section {
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(21,24,23,.055) 1px) 0 0 / 64px 64px,
    var(--paper);
}

.about-grid {
  display: grid;
  gap: 8vw;
  align-items: center;
  grid-template-columns: .82fr 1.18fr;
}

.about-grid figure {
  position: relative;
  margin: 0;
}

.about-grid figure::before {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 72%;
  height: 72%;
  background: var(--blue);
  content: "";
}

.about-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--ink);
}

.about-grid figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 11px;
  background: var(--lime);
  font-family: var(--mono);
  font-size: .56rem;
  text-transform: uppercase;
}

.about-grid h2 {
  max-width: 770px;
  font-size: clamp(4rem, 6.6vw, 6.7rem);
}

.about-grid > div > p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(21,24,23,.67);
}

.about-links {
  display: flex;
  margin-top: 35px;
  gap: 13px;
  flex-wrap: wrap;
}

.about-links a {
  padding: 10px 13px;
  border: 1px solid var(--ink);
  font-size: .68rem;
  font-weight: 700;
}

.about-links a:hover {
  color: var(--white);
  background: var(--ink);
}

.faq-section {
  background: #e8e1d5;
}

.faq-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: .75fr 1.25fr;
}

.faq-grid header {
  position: sticky;
  top: 110px;
  height: max-content;
}

.faq-grid h2 {
  font-size: clamp(4rem, 6.4vw, 6.5rem);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  padding: 27px 45px 27px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.15;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 26px;
  right: 4px;
  color: var(--blue);
  content: "+";
  font-family: var(--mono);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "×";
}

.faq-list details p {
  max-width: 740px;
  padding: 0 45px 28px 0;
  margin: 0;
  color: rgba(21,24,23,.65);
  font-size: .86rem;
}

.contact-section {
  color: var(--white);
  background: var(--blue);
}

.contact-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: .82fr 1.18fr;
}

.contact-grid header {
  padding-top: 20px;
}

.contact-grid h2 {
  font-size: clamp(4.3rem, 7vw, 7.2rem);
}

.contact-grid header > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
}

.contact-promise {
  margin-top: 45px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.3);
}

.contact-promise strong,
.contact-promise span {
  display: block;
}

.contact-promise strong {
  color: var(--lime);
  font-size: .78rem;
}

.contact-promise span {
  margin-top: 5px;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
}

.lead-form {
  padding: 45px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--orange);
}

.lead-form > label,
.form-row label {
  display: flex;
  margin-bottom: 17px;
  gap: 7px;
  flex-direction: column;
}

.lead-form label > span {
  font-size: .68rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: var(--white);
}

.lead-form textarea {
  min-height: 125px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25,55,255,.12);
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.lead-form .consent {
  display: grid;
  margin-top: 5px;
  gap: 10px;
  align-items: start;
  grid-template-columns: 18px 1fr;
}

.consent input {
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
}

.consent span {
  color: rgba(21,24,23,.58);
  font-size: .64rem !important;
  font-weight: 500 !important;
}

.lead-form .button {
  width: 100%;
  margin-top: 14px;
  border: 0;
}

.form-note {
  margin: 17px 0 0;
  color: rgba(21,24,23,.5);
  font-size: .66rem;
  text-align: center;
}

.htmx-indicator {
  display: none;
  margin-top: 15px;
  font-family: var(--mono);
  font-size: .63rem;
  text-align: center;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
  display: block;
}

.form-message {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid;
}

.form-message strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
}

.form-message p {
  margin: 5px 0 0;
  font-size: .75rem;
}

.form-success {
  border-color: #477912;
  background: #eff9d7;
}

.form-error {
  color: #a51f25;
  border-color: #a51f25;
  background: #fff0ed;
}

.site-footer {
  padding: 70px max(32px, calc((100vw - 1280px) / 2)) 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: grid;
  min-height: 170px;
  gap: 40px;
  align-items: start;
  grid-template-columns: 1fr 1fr 1fr;
}

.brand-light > span {
  color: var(--ink);
  background: var(--lime);
}

.footer-main > p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

.footer-main > div {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-main > div a {
  font-size: .7rem;
}

.footer-main > div a:hover {
  color: var(--lime);
}

.footer-link-button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: .7rem;
  text-decoration: underline;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  color: rgba(255,255,255,.42);
  font-family: var(--mono);
  font-size: .55rem;
  text-transform: uppercase;
}

.mobile-sticky-cta {
  display: none;
}

/* Escala editorial mais contida para leitura rápida */
.section-heading h2,
.portfolio-header h2,
.calculator-grid h2,
.pricing-header h2,
.process-grid h2,
.about-grid h2,
.faq-grid h2,
.contact-grid h2 {
  font-size: clamp(3rem, 4.8vw, 4.85rem);
}

.gain-panel h2 {
  font-size: clamp(2.8rem, 4.35vw, 4.35rem);
}

.proof-card > strong {
  font-size: clamp(2.45rem, 3.6vw, 3.65rem);
}

.calculator-result > strong {
  font-size: 4rem;
}

.pricing-grid article > div strong {
  font-size: 3.15rem;
}

.project h3 {
  font-size: 2.4rem;
}

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 44px, 960px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    background: rgba(244, 240, 232, .98);
    backdrop-filter: none;
  }

  .site-header nav,
  .header-actions {
    display: none;
  }

  .site-header > .button {
    display: inline-flex;
    grid-column: auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    z-index: 990;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    max-height: calc(100dvh - 70px);
    padding: 28px 28px calc(32px + env(safe-area-inset-bottom));
    gap: 5px;
    flex-direction: column;
    background: var(--paper);
    opacity: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .mobile-menu a {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding: 7px 0;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.75rem, 6.3vw, 3rem);
    font-weight: 600;
    line-height: 1.05;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
  }

  .quick-access {
    grid-template-columns: 1fr 1fr;
  }

  .quick-access a:nth-child(2) {
    border-right: 0;
  }

  .quick-access a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
  }

  .proof-card {
    padding: 35px;
  }

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

  .gain-panel,
  .calculator-grid,
  .process-grid,
  .contact-grid {
    gap: 60px;
  }

  .pricing-grid article {
    padding: 27px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 34px);
  }

  .section {
    padding-block: 72px;
  }

  .site-header {
    min-height: 70px;
    padding-inline: 17px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 68px;
    grid-template-columns: 1fr;
  }

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

  .hero-proof {
    width: min(100%, 560px);
    min-height: 570px;
    margin-inline: auto;
  }

  .hero-proof aside {
    left: 0;
  }

  .trust-strip,
  .section-heading,
  .portfolio-header,
  .calculator-grid,
  .pricing-header,
  .process-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-strip > * {
    min-height: 85px;
    padding: 18px 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .section-heading,
  .portfolio-header,
  .pricing-header {
    gap: 25px;
  }

  .gain-panel {
    padding: 50px 35px;
    grid-template-columns: 1fr;
  }

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

  .social-project,
  .pricing-brief {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
  }

  .project-large figure {
    aspect-ratio: 16 / 9;
  }

  .pricing-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .pricing-grid article {
    min-height: 540px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-grid figure {
    width: min(100%, 560px);
  }

  .faq-grid header {
    position: static;
  }

  .footer-main {
    min-height: auto;
    padding-bottom: 55px;
  }

  .footer-main > div {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .section-heading h2,
  .gain-panel h2,
  .portfolio-header h2,
  .calculator-grid h2,
  .pricing-header h2,
  .process-grid h2,
  .about-grid h2,
  .faq-grid h2,
  .contact-grid h2 {
    font-size: clamp(2.65rem, 11.8vw, 3.65rem);
  }

  .quick-access {
    margin-top: 18px;
    grid-template-columns: 1fr;
  }

  .quick-access a {
    min-height: 94px;
    padding: 17px 19px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-access a:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .quick-access a:last-child {
    border-bottom: 0;
  }

  .hero-points {
    gap: 18px;
    flex-direction: column;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    min-height: 500px;
  }

  .proof-card {
    min-height: 390px;
    padding: 28px;
  }

  .proof-label {
    margin-bottom: 75px;
  }

  .proof-card > strong {
    font-size: 2.7rem;
  }

  .proof-flow {
    margin-top: 45px;
  }

  .proof-flow i {
    width: 16px;
  }

  .hero-proof aside {
    bottom: 5px;
    width: 85%;
  }

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

  .pain-grid article {
    min-height: 270px;
  }

  .pain-grid h3 {
    margin-top: 65px;
  }

  .gain-panel {
    padding: 40px 24px;
  }

  .gain-panel li {
    gap: 7px;
    grid-template-columns: 1fr;
  }

  .project figure,
  .project-large figure {
    aspect-ratio: 4 / 3;
  }

  .social-project-visual {
    min-height: 315px;
    padding: 28px;
  }

  .social-project-visual strong {
    font-size: clamp(2rem, 9.4cqi, 3.2rem);
  }

  .website-offer {
    min-height: 500px;
    padding: 30px 24px;
  }

  .website-offer > div:first-child,
  .pricing-choices article > div {
    gap: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .website-offer > div:first-child > strong,
  .pricing-choices article > div > strong {
    text-align: left;
  }

  .website-offer h3 {
    margin-top: 65px;
    font-size: 2.65rem;
  }

  .pricing-choices article {
    min-height: 260px;
    padding: 27px 24px;
  }

  .calculator,
  .lead-form {
    padding: 28px 20px;
    box-shadow: 8px 8px 0 var(--orange);
  }

  .calculator-result > strong {
    font-size: 3.8rem;
  }

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

  .about-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-list summary {
    font-size: 1.35rem;
  }

  .footer-bottom {
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 900;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 15px;
    color: var(--ink);
    background: var(--lime);
    border: 1px solid var(--ink);
    box-shadow: 5px 5px 0 var(--blue);
    font-size: .72rem;
    font-weight: 700;
    text-align: center;
  }

  .menu-open .mobile-sticky-cta {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

.legal-page {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding: 150px 0 100px;
}

.legal-page h1 {
  margin: 12px 0 24px;
  font: 600 clamp(3.6rem, 9vw, 6.5rem)/.9 var(--serif);
  letter-spacing: -.055em;
}

.legal-page h2 {
  margin: 48px 0 12px;
  font: 600 clamp(1.65rem, 4vw, 2.25rem)/1 var(--serif);
}

.legal-page p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-page .legal-intro {
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.legal-page .button {
  margin-top: 40px;
}

.legal-page ul {
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-meta {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}

.legal-meta strong,
.legal-meta span {
  display: block;
}

.legal-meta span {
  margin-top: 4px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  z-index: 1500;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  width: min(calc(100% - 36px), 860px);
  padding: 24px;
  margin-inline: auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--blue);
  grid-template-columns: 1fr auto;
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner h2,
.cookie-dialog h2 {
  margin: 0 0 8px;
  font: 600 1.65rem/1 var(--display);
}

.cookie-banner p,
.cookie-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

.cookie-banner p a,
.cookie-dialog a {
  color: var(--ink);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button-primary {
  color: var(--white);
  background: var(--blue);
}

.cookie-dialog {
  width: min(calc(100% - 32px), 620px);
  padding: 0;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--blue);
}

.cookie-dialog::backdrop {
  background: rgba(21,24,23,.68);
  backdrop-filter: blur(4px);
}

.cookie-dialog-inner {
  padding: 28px;
}

.cookie-dialog-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.cookie-close {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.cookie-options {
  display: grid;
  margin: 25px 0;
  gap: 10px;
}

.cookie-option {
  display: grid;
  padding: 15px;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  grid-template-columns: 1fr auto;
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 20px;
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1 1 145px;
  }
}

/* ==========================================================================
   HIMURA CREATIVE STUDIO
   Camada de conversao: barra de agenda, captura rapida, diagnostico,
   comparacao antes e depois, planos, garantias e formulario multi-passo.
   ========================================================================== */

:root {
  --announce-h: 42px;
}

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

/* --- Barra de agenda -------------------------------------------------- */

.announce-bar {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: var(--announce-h);
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}

.announce-bar p {
  display: flex;
  margin: 0;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .78rem;
  line-height: 1.3;
}

.announce-bar strong {
  font-weight: 700;
}

.announce-bar b {
  color: var(--lime);
  font-family: var(--mono);
}

.announce-bar a {
  padding-bottom: 1px;
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
  font-weight: 600;
}

.announce-bar a:hover {
  border-bottom-color: transparent;
}

.announce-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(223, 255, 103, .7);
  animation: himura-pulse 2.4s infinite;
}

@keyframes himura-pulse {
  70% { box-shadow: 0 0 0 9px rgba(223, 255, 103, 0); }
  100% { box-shadow: 0 0 0 0 rgba(223, 255, 103, 0); }
}

/* O desvio só se aplica às páginas que têm mesmo a barra de agenda.
   As páginas legais e o erro 404 não a têm e o cabeçalho fica colado ao topo. */
.announce-bar + .site-header {
  top: var(--announce-h);
}

.announce-bar ~ main .hero {
  padding-top: calc(130px + var(--announce-h));
}

/* --- Marca ------------------------------------------------------------ */

.brand > strong {
  display: flex;
  flex-direction: column;
  font-size: .95rem;
  line-height: 1.05;
}

.brand > strong em {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .5rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-light > strong em {
  color: rgba(255, 253, 247, .55);
}

/* --- Captura rapida no hero ------------------------------------------- */

.hero-capture {
  max-width: 560px;
  margin: 30px 0 26px;
}

.capture-row {
  display: flex;
  padding: 6px;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(21, 24, 23, .07);
}

.capture-row input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  font-size: .95rem;
}

.capture-row input:focus {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.capture-row .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.capture-row.has-error {
  border-color: var(--orange);
}

.capture-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: .82rem;
}

/* --- Metricas do cartao de prova --------------------------------------- */

.proof-metrics {
  display: grid;
  margin: 26px 0 0;
  padding: 22px 0 0;
  gap: 14px;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.proof-metrics li {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.proof-metrics b {
  min-width: 74px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 500;
}

.proof-metrics span {
  color: rgba(255, 253, 247, .72);
  font-size: .82rem;
  line-height: 1.45;
}

/* --- Antes e depois ---------------------------------------------------- */

.compare-panel {
  display: grid;
  margin-top: 64px;
  align-items: stretch;
  gap: 0;
  grid-template-columns: 1fr auto 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.compare-column {
  padding: 34px 32px;
}

.compare-before {
  background: rgba(21, 24, 23, .035);
}

.compare-after {
  background: var(--white);
}

.compare-tag {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.compare-before .compare-tag {
  color: var(--ink-soft);
}

.compare-after .compare-tag {
  color: var(--blue);
}

.compare-column ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.compare-column li {
  position: relative;
  padding-left: 26px;
  font-size: .93rem;
  line-height: 1.5;
}

.compare-column li::before {
  position: absolute;
  top: .1em;
  left: 0;
  font-family: var(--mono);
  font-size: .95rem;
}

.compare-before li {
  color: var(--ink-soft);
}

.compare-before li::before {
  content: "x";
  color: var(--orange);
}

.compare-after li::before {
  content: "+";
  color: var(--blue);
}

.compare-arrow {
  display: grid;
  padding: 0 20px;
  border-inline: 1px solid var(--line);
  color: var(--blue);
  font-size: 1.5rem;
  place-items: center;
}

/* --- Diagnostico interativo -------------------------------------------- */

.diagnostic-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.diagnostic-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
}

.diagnostic-grid h2 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 3.9vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .96;
}

.diagnostic-grid header > p:last-child {
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: 1rem;
}

.diagnostic {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
}

.diagnostic fieldset {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 8px;
  border: 0;
}

.symptom {
  display: flex;
  padding: 14px 16px;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.symptom:hover {
  border-color: var(--ink);
}

.symptom input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.symptom span {
  display: grid;
  gap: 3px;
}

.symptom strong {
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.3;
}

.symptom small {
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.4;
}

.symptom.is-checked {
  border-color: var(--blue);
  background: rgba(25, 55, 255, .05);
}

.symptom:focus-within {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.diagnostic-panel {
  position: sticky;
  top: calc(var(--announce-h) + 100px);
  display: grid;
  padding: 30px;
  gap: 14px;
  color: var(--white);
  background: var(--ink);
}

.diag-label {
  color: rgba(255, 253, 247, .6);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.diag-score {
  font-family: var(--display);
  font-size: 4.1rem;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .85;
}

.diag-score small {
  font-size: 1.6rem;
}

.diag-meter {
  height: 6px;
  background: rgba(255, 253, 247, .16);
}

.diag-meter i {
  display: block;
  height: 100%;
  background: var(--lime);
  transition: width 320ms ease, background 320ms ease;
}

.diag-meter i.is-high {
  background: var(--orange);
}

.diag-advice {
  margin: 0;
  color: rgba(255, 253, 247, .82);
  font-size: .92rem;
  line-height: 1.5;
}

.diag-actions {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.diag-actions li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 253, 247, .78);
  font-size: .84rem;
  line-height: 1.45;
}

.diag-actions li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "+";
  font-family: var(--mono);
}

.diagnostic-panel .button {
  margin-top: 6px;
  justify-content: center;
}

.diag-note {
  color: rgba(255, 253, 247, .48);
  font-size: .72rem;
  line-height: 1.4;
}

/* --- Portefolio -------------------------------------------------------- */

.project-outcome {
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 2px solid var(--blue);
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.5;
}

.project-actions a.project-cta {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.project-actions a.project-cta:hover,
.project-actions a.project-cta:focus-visible {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* --- Calculadora -------------------------------------------------------- */

.calculator-hints {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.calculator-hints li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 253, 247, .7);
  font-size: .86rem;
  line-height: 1.5;
}

.calculator-hints li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "+";
  font-family: var(--mono);
}

.calculator-payback {
  margin: 12px 0 0;
  color: var(--lime);
  font-family: var(--mono);
  font-size: .74rem;
  line-height: 1.4;
}

.calculator-cta {
  justify-content: center;
  margin-top: 4px;
}

/* --- Planos -------------------------------------------------------------- */

.pricing-tiers {
  display: grid;
  margin-top: 58px;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.tier {
  position: relative;
  display: flex;
  padding: 34px 30px;
  gap: 22px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.tier-featured {
  padding: 44px 34px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 26px 60px rgba(21, 24, 23, .18);
}

.tier-badge {
  position: absolute;
  top: -13px;
  left: 34px;
  padding: 6px 14px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tier header {
  display: grid;
  gap: 10px;
}

.tier-name {
  color: var(--blue);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tier-featured .tier-name {
  color: var(--lime);
}

.tier-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--display);
  font-size: 3.1rem;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
}

.tier-price small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tier-featured .tier-price small {
  color: rgba(255, 253, 247, .6);
}

.tier-price i {
  font-family: var(--body);
  font-size: .95rem;
  font-style: normal;
  font-weight: 500;
}

.tier-line {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.45;
}

.tier-featured .tier-line {
  color: rgba(255, 253, 247, .72);
}

.tier-list {
  display: grid;
  margin: 0;
  padding: 22px 0 0;
  gap: 11px;
  flex: 1;
  border-top: 1px solid var(--line);
  list-style: none;
}

.tier-featured .tier-list {
  border-top-color: var(--line-light);
}

.tier-list li {
  position: relative;
  padding-left: 24px;
  font-size: .9rem;
  line-height: 1.45;
}

.tier-list li::before {
  position: absolute;
  top: .05em;
  left: 0;
  color: var(--blue);
  content: "+";
  font-family: var(--mono);
}

.tier-featured .tier-list li::before {
  color: var(--lime);
}

.tier-list b {
  font-weight: 700;
}

.tier .button {
  justify-content: center;
}

.tier-foot {
  margin: 0;
  color: rgba(255, 253, 247, .5);
  font-family: var(--mono);
  font-size: .68rem;
  text-align: center;
}

/* --- Serviços adicionais ---------------------------------------------- */

.addons-section {
  background: var(--white);
}

.addons-header {
  display: grid;
  gap: 55px;
  align-items: end;
  grid-template-columns: 1fr 1fr;
}

.addons-header h2 {
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.02;
  margin: 0;
}

.addons-header > p {
  max-width: 570px;
  margin: 0 0 8px;
  color: var(--ink-soft);
}

.addon-feature {
  display: grid;
  margin-top: 58px;
  gap: 0;
  grid-template-columns: 1.12fr .88fr;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.addon-feature-copy {
  display: flex;
  padding: 40px 38px;
  gap: 14px;
  flex-direction: column;
}

.addon-feature-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.addon-feature-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
}

.addon-tag {
  align-self: flex-start;
  padding: 6px 14px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.addon-foot {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .82rem !important;
  color: rgba(21, 24, 23, .55) !important;
}

.addon-feature-panel {
  display: flex;
  padding: 40px 38px;
  gap: 22px;
  flex-direction: column;
  background: var(--white);
  border-left: 1px solid var(--ink);
}

.addon-list-title {
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.addon-feature-panel .tier-list {
  padding-top: 0;
  border-top: 0;
}

.addon-feature-panel .button {
  justify-content: center;
}

.addons-grid {
  display: grid;
  margin-top: 18px;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.addon {
  position: relative;
}

.addons-grid .addon {
  display: flex;
  padding: 28px 26px;
  gap: 12px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.addons-grid .addon h3 {
  margin: 0;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.addons-grid .addon p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.5;
}

.addon-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
}

.addon-price small {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.addon-price i {
  font-family: var(--body);
  font-size: .9rem;
  font-style: normal;
  font-weight: 500;
}

.addon-price-quote {
  color: var(--blue);
  font-size: 2.3rem;
}

.addons-section .pricing-note {
  color: rgba(21, 24, 23, .5);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
}

.button-ghost:hover {
  color: var(--white);
  background: var(--ink);
}

/* --- Garantias ------------------------------------------------------------ */

.guarantee-section {
  color: var(--white);
  background: var(--blue);
}

.section-heading-center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.guarantee-grid {
  display: grid;
  margin-top: 54px;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 253, 247, .22);
}

.guarantee-grid article {
  display: grid;
  padding: 36px 30px;
  gap: 14px;
  align-content: start;
  background: var(--blue);
}

.guarantee-grid span {
  color: rgba(255, 253, 247, .5);
  font-family: var(--mono);
  font-size: .68rem;
}

.guarantee-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.guarantee-grid p {
  margin: 0;
  color: rgba(255, 253, 247, .82);
  font-size: .92rem;
  line-height: 1.55;
}

/* --- Processo e FAQ -------------------------------------------------------- */

.process-lede {
  margin: 20px 0 0;
  color: rgba(255, 253, 247, .68);
  font-size: .95rem;
}

.faq-lede {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* --- Depoimentos ----------------------------------------------------------- */

.testimonial-grid {
  display: grid;
  margin-top: 54px;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial {
  display: grid;
  margin: 0;
  padding: 32px 28px;
  gap: 20px;
  align-content: space-between;
  border: 1px solid var(--line);
  background: var(--white);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.4;
}

.testimonial figcaption {
  display: grid;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial figcaption strong {
  font-size: .9rem;
}

.testimonial figcaption span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .68rem;
}

/* --- Contacto e formulario multi-passo -------------------------------------- */

.contact-assurances {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.contact-assurances li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 253, 247, .74);
  font-size: .88rem;
  line-height: 1.45;
}

.contact-assurances li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "+";
  font-family: var(--mono);
}

.form-progress {
  display: flex;
  gap: 6px;
}

.form-progress span {
  height: 4px;
  flex: 1;
  background: var(--line);
  transition: background 220ms ease;
}

.form-progress span.is-active {
  background: var(--blue);
}

.form-step-label {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lead-form-steps .form-step {
  display: none;
  padding: 0;
  margin: 0;
  border: 0;
}

.lead-form-steps .form-step.is-active {
  display: grid;
  gap: 16px;
  animation: himura-fade 260ms ease;
}

@keyframes himura-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-nav {
  display: flex;
  margin-top: 4px;
  gap: 10px;
  flex-wrap: wrap;
}

.step-nav .button {
  justify-content: center;
}

.step-hint {
  margin: -6px 0 0;
  color: var(--ink-soft);
  font-size: .8rem;
}

.lead-form .field-error {
  margin: 0;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 600;
}

.lead-form input.is-invalid,
.lead-form textarea.is-invalid,
.lead-form select.is-invalid {
  border-color: var(--orange);
}

.form-feedback {
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 3px solid var(--blue);
  background: var(--white);
}

.form-feedback strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.02em;
}

.form-feedback p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}

.form-feedback.error {
  border-left-color: var(--orange);
}

/* --- Revelacao ao scroll ----------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Modal de saida ---------------------------------------------------------- */

.exit-modal {
  position: fixed;
  z-index: 2600;
  inset: 0;
  display: none;
  padding: 24px;
  align-items: center;
  justify-content: center;
  background: rgba(21, 24, 23, .62);
}

.exit-modal.is-open {
  display: flex;
}

.exit-modal-inner {
  position: relative;
  width: min(520px, 100%);
  padding: 42px 38px;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 30px 90px rgba(21, 24, 23, .3);
}

.exit-modal h2 {
  margin: 14px 0 12px;
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
}

.exit-modal p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.55;
}

.exit-modal .button {
  justify-content: center;
  width: 100%;
}

.exit-modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 6px;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font-size: .8rem;
  text-decoration: underline;
}

.exit-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  font-size: 1.4rem;
  line-height: 1;
}

/* --- Responsivo ---------------------------------------------------------------- */

@media (max-width: 1060px) {
  .diagnostic-grid,
  .diagnostic {
    grid-template-columns: 1fr;
  }

  .diagnostic-panel {
    position: static;
  }

  .pricing-tiers,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .tier-featured {
    order: -1;
  }

  .addons-header,
  .addon-feature {
    grid-template-columns: 1fr;
  }

  .addon-feature-panel {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

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

@media (max-width: 820px) {
  :root {
    --announce-h: 54px;
  }

  .announce-bar {
    padding: 6px 16px;
  }

  .announce-bar p {
    font-size: .72rem;
  }

  .compare-panel {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    padding: 12px 0;
    border-inline: 0;
    border-block: 1px solid var(--line);
    transform: rotate(90deg);
  }

  .diagnostic-grid {
    gap: 34px;
  }

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

@media (max-width: 560px) {
  .capture-row {
    flex-direction: column;
  }

  .capture-row .button {
    width: 100%;
    justify-content: center;
  }

  .tier {
    padding: 28px 22px;
  }

  .tier-featured {
    padding: 36px 24px;
  }

  .addon-feature-copy,
  .addon-feature-panel {
    padding: 30px 22px;
  }

  .diag-score {
    font-size: 3.3rem;
  }

  .exit-modal-inner {
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .announce-dot {
    animation: none;
  }

  .lead-form-steps .form-step.is-active {
    animation: none;
  }
}

/* ==========================================================================
   HIMURA, CORRECOES DE SOBREPOSICAO E RITMO
   ========================================================================== */

/* O aviso de cookies ocupa o fundo do ecra no telemovel e tapava o CTA fixo.
   Enquanto o aviso estiver aberto, o CTA sai de cena. */
body.cookie-visible .mobile-sticky-cta {
  display: none;
}

/* A seccao de garantias passa a clara, para o azul ficar reservado
   a calculadora e ao contacto. */
.guarantee-section {
  color: var(--ink);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.guarantee-section .eyebrow-light {
  color: var(--blue);
}

.guarantee-grid {
  background: var(--line);
}

.guarantee-grid article {
  background: var(--white);
}

.guarantee-grid span {
  color: var(--blue);
}

.guarantee-grid p {
  color: var(--ink-soft);
}

/* --- Escada de servico, INARI ------------------------------------------ */

.ladder-section {
  color: var(--white);
  background: var(--ink);
}

.ladder-head {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.ladder-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 3.9vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .96;
}

.ladder-head > div > p {
  margin: 20px 0 0;
  color: rgba(255, 253, 247, .72);
  font-size: 1rem;
  line-height: 1.6;
}

.ladder-scale {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line-light);
}

.ladder-scale div {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-light);
}

.ladder-scale div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ladder-scale strong {
  font-size: .88rem;
}

.ladder-scale span {
  color: rgba(255, 253, 247, .62);
  font-size: .78rem;
}

.ladder-scale b {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
}

.ladder-grid {
  display: grid;
  margin-top: 48px;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.ladder-card {
  display: flex;
  padding: 34px 30px;
  gap: 16px;
  flex-direction: column;
  border: 1px solid var(--line-light);
  background: rgba(255, 253, 247, .04);
  transition: background 200ms ease, border-color 200ms ease;
}

.ladder-card:hover {
  border-color: var(--lime);
  background: rgba(255, 253, 247, .07);
}

.ladder-card > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ladder-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.ladder-card p {
  margin: 0;
  flex: 1;
  color: rgba(255, 253, 247, .74);
  font-size: .92rem;
  line-height: 1.55;
}

.ladder-card ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 7px;
  flex-wrap: wrap;
  list-style: none;
}

.ladder-card li {
  padding: 5px 10px;
  border: 1px solid var(--line-light);
  color: rgba(255, 253, 247, .72);
  font-family: var(--mono);
  font-size: .6rem;
  text-transform: uppercase;
}

.ladder-card a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  align-self: start;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
  font-size: .82rem;
  font-weight: 700;
}

.ladder-card a:hover {
  border-bottom-color: transparent;
}

.ladder-note {
  margin: 34px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 247, .6);
  font-size: .86rem;
  line-height: 1.6;
}

.ladder-note a {
  border-bottom: 1px solid rgba(255, 253, 247, .4);
  color: var(--white);
}

/* --- Etiqueta de projeto de demonstracao -------------------------------- */

.demo-flag {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 12px;
  gap: 7px;
  align-items: center;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project figure .demo-flag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  margin: 0;
  background: rgba(21, 24, 23, .84);
}

.portfolio-note {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--lime);
  color: rgba(255, 253, 247, .78);
  font-size: .9rem;
  line-height: 1.6;
}

/* --- Equipa do estudio --------------------------------------------------- */

.team-grid {
  display: grid;
  margin: 34px 0 0;
  padding-top: 30px;
  gap: 18px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.team-member {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.team-member > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: .74rem;
  place-items: center;
}

.team-member:nth-child(2) > span {
  background: var(--blue);
}

.team-member strong {
  display: block;
  font-size: .95rem;
}

.team-member small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.45;
}

/* --- Calculadora, resultado com tres numeros ----------------------------- */

.calculator-figures {
  display: grid;
  margin-top: 16px;
  padding-top: 16px;
  gap: 12px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr;
}

.calculator-figures div {
  display: grid;
  gap: 3px;
}

.calculator-figures span {
  color: rgba(255, 253, 247, .6);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.calculator-figures strong {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.03em;
}

.calculator-assumption {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line-light);
  color: rgba(255, 253, 247, .72);
  font-size: .8rem;
  line-height: 1.5;
}

@media (max-width: 1060px) {
  .ladder-head,
  .ladder-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .team-grid,
  .calculator-figures {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Preços geridos pelo painel, limites de âmbito, extras secundários
   e faixa curta da INARI.
   ========================================================================== */

/* --- Promoções vindas do painel --------------------------------------- */

.tier-badge-promo {
  left: auto;
  right: 34px;
  background: var(--orange);
  color: var(--white);
}

.addon-chip {
  align-self: flex-start;
  padding: 5px 11px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: .56rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tier-price s,
.addon-price s {
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 500;
  opacity: .7;
}

.tier-featured .tier-price s {
  color: rgba(255, 253, 247, .6);
}

/* --- Limites de âmbito nos planos -------------------------------------- */

.tier-limits {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tier-featured .tier-limits {
  border-top-color: var(--line-light);
}

.tier-limits > p {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.tier-featured .tier-limits > p {
  color: var(--lime);
}

.tier-limits ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.tier-limits li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.5;
}

.tier-featured .tier-limits li {
  color: rgba(255, 253, 247, .74);
}

.tier-limits li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 8px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .55;
}

/* --- Extras secundários ------------------------------------------------- */

.addons-minor {
  margin-top: 34px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.addons-minor ul {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.addons-minor li {
  display: grid;
  gap: 4px 22px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 15rem) minmax(0, 9rem) minmax(0, 1fr);
}

.addons-minor li:last-child {
  border-bottom: 0;
}

.addons-minor strong {
  font-size: .95rem;
  font-weight: 700;
}

.addons-minor em {
  color: var(--ink-soft);
  font-size: .9rem;
  font-style: normal;
  line-height: 1.5;
}

.addons-minor .addon-price {
  font-size: 1.15rem;
}

.addons-minor .addon-price small {
  font-size: .55rem;
}

.addons-minor .addon-price i {
  font-size: .8rem;
}

/* --- Escolha do cenário na calculadora ---------------------------------- */

.calculator select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 253, 247, .06);
  border: 1px solid var(--line-light);
  font-family: var(--body);
  font-size: .95rem;
}

.calculator select option {
  color: var(--ink);
  background: var(--white);
}

/* --- Faixa curta da INARI ----------------------------------------------- */

.ladder-band {
  display: grid;
  gap: 34px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.ladder-band h2 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.4vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.ladder-band > div > p {
  margin: 18px 0 0;
  max-width: 62ch;
  color: rgba(255, 253, 247, .8);
  font-size: 1rem;
  line-height: 1.6;
}

.ladder-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: baseline;
  color: rgba(255, 253, 247, .62) !important;
  font-size: .9rem !important;
}

.ladder-links a {
  color: var(--lime);
  border-bottom: 1px solid rgba(223, 255, 103, .4);
}

.ladder-links a span {
  margin-left: 4px;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
  white-space: nowrap;
}

.button-lime:hover {
  background: var(--white);
}

/* --- Nota do portefólio -------------------------------------------------- */

.portfolio-aside {
  max-width: 68ch;
  margin: 34px 0 0;
  color: rgba(255, 253, 247, .68);
  font-size: .95rem;
  line-height: 1.6;
}

.portfolio-aside a {
  color: var(--lime);
  border-bottom: 1px solid rgba(223, 255, 103, .4);
}

/* ==========================================================================
   Legibilidade: nada de texto de corpo abaixo de 15 px e cinzentos
   com mais contraste. Os rótulos em maiúsculas ficam como estão.
   ========================================================================== */

.project p {
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
  line-height: 1.6;
}

.project-outcome {
  font-size: .95rem;
  line-height: 1.6;
}

.calculator-result > small {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  line-height: 1.55;
}

.calculator-payback {
  font-size: .84rem;
  line-height: 1.55;
}

.calculator-hints li,
.calculator-assumption {
  font-size: .92rem;
  line-height: 1.6;
}

.pricing-note {
  max-width: 74ch;
  color: rgba(21, 24, 23, .68);
  font-size: .88rem;
  line-height: 1.6;
}

.addons-section .pricing-note {
  color: rgba(21, 24, 23, .68);
}

.tier-list li,
.tier-line {
  font-size: .95rem;
  line-height: 1.55;
}

.tier-line {
  color: rgba(21, 24, 23, .74);
}

.tier-featured .tier-line {
  color: rgba(255, 253, 247, .82);
}

.addons-grid .addon p,
.addon-feature-copy p {
  color: rgba(21, 24, 23, .74);
  font-size: .95rem;
  line-height: 1.6;
}

.addon-foot {
  color: rgba(21, 24, 23, .62) !important;
  font-size: .88rem !important;
  line-height: 1.6;
}

.pricing-header > p,
.addons-header > p {
  color: rgba(21, 24, 23, .74);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* O título do cartão de fotografia não pode partir a caixa. */
.addon-feature-copy h3 {
  font-size: clamp(1.9rem, 3.1vw, 2.5rem);
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1060px) {
  .ladder-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .addons-minor li {
    grid-template-columns: minmax(0, 1fr) minmax(0, 8rem);
  }

  .addons-minor em {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .addons-minor {
    padding: 20px 18px;
  }

  .addons-minor li {
    grid-template-columns: 1fr;
  }

  .tier-badge-promo {
    right: 22px;
  }
}
