:root {
  --navy: #0b1f3a;
  --navy-medium: #112849;
  --navy-soft: #1a3a5c;
  --amber: #d4922a;
  --amber-light: #e8a940;
  --background: #f7f9fc;
  --background-alt: #edf1f7;
  --text: #1e2a3a;
  --muted: #5a6e8a;
  --border: #d0d8e8;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(11, 31, 58, 0.07);
  --shadow-lg: 0 32px 80px rgba(11, 31, 58, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(11, 31, 58, 0.045) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  pointer-events: none;
}

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

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

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Cabinet Grotesk", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  margin-bottom: 25px;
  color: var(--navy);
  font-size: clamp(2.65rem, 4.9vw, 4.55rem);
  font-weight: 800;
}

h1 em {
  position: relative;
  color: var(--navy-soft);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 82px;
  height: 4px;
  border-radius: 99px;
  background: var(--amber);
  content: "";
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(3rem, 5.7vw, 5.65rem);
  font-weight: 800;
  line-height: 0.94;
}

h3 {
  color: var(--navy);
  font-size: 1.45rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 12, 23, 0.96);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 34px), 1440px);
  min-height: 72px;
}

.brand {
  width: max-content;
  color: var(--white);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand span {
  color: var(--amber);
}

.desktop-nav {
  display: flex;
  gap: 44px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--amber);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--white);
}

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

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

.nav-social {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-social:hover {
  border-color: var(--amber);
  color: #07162a;
  background: var(--amber-light);
  transform: translateY(-2px);
}

.nav-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nav-social .social-dot {
  fill: currentColor;
  stroke: none;
}

.nav-social-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.nav-contact {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 13px;
  margin-left: 3px;
  padding: 4px 5px 4px 16px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--navy);
  background: var(--amber-light);
  transform: translateY(-2px);
}

.nav-contact i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #201504;
  background: var(--amber-light);
  font-size: 0.78rem;
  font-style: normal;
}

.nav-wrap > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(212, 146, 42, 0.38);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--navy);
  background: var(--amber-light);
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.24);
}

.button-primary svg {
  fill: currentColor;
}

.hero-actions .button-primary svg,
.button-amber svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-secondary {
  border-color: var(--border);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 10px;
  font-size: 0.82rem;
}

.button-small svg {
  width: 15px;
  height: 15px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 0;
  background:
    linear-gradient(rgba(247, 249, 252, 0.18), rgba(247, 249, 252, 0.18)),
    url("assets/background-hero.png") center top / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 249, 252, 0.05),
    rgba(247, 249, 252, 0.16) 60%,
    rgba(247, 249, 252, 0.42)
  );
  content: "";
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 920px;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--navy-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero .eyebrow,
.center-heading .eyebrow,
.final-cta .eyebrow {
  justify-content: center;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--amber);
}

.hero-copy {
  max-width: 730px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-support {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-support strong {
  color: #8a5912;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.microcopy {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 19px 0 0;
  color: #71839c;
  font-size: 0.74rem;
  font-weight: 600;
}

.microcopy span::first-letter {
  color: var(--amber);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  padding: 35px 0;
  border-top: 1px solid var(--border);
}

.trust-strip p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0 34px;
  border-right: 1px solid var(--border);
  text-align: center;
}

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

.trust-strip strong {
  color: var(--navy);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 0.95rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.75rem;
}

.section {
  padding: 96px 0;
}

.local-presence {
  background: var(--background);
}

.local-presence-grid,
.ecosystem-wrap {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 56px;
  align-items: center;
}

.local-presence-copy h2,
.ecosystem-copy h2,
.about-card h2,
.local-seo-card h2 {
  font-size: clamp(2.75rem, 4.7vw, 4.75rem);
}

.local-presence-copy p:not(.eyebrow),
.ecosystem-copy p,
.about-card p:not(.eyebrow),
.local-seo-card p {
  max-width: 660px;
  color: var(--muted);
}

.search-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(232, 169, 64, 0.18), transparent 34%),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.search-label {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.search-card li {
  padding: 13px 15px;
  border: 1px solid rgba(208, 216, 232, 0.75);
  border-radius: 12px;
  color: var(--navy);
  background: rgba(247, 249, 252, 0.78);
  font-weight: 700;
}

.search-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.6;
}

.audience-section,
.ecosystem-section,
.faq-section {
  background: var(--white);
}

.audience-grid,
.decision-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-card,
.decision-card,
.faq-item {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.055);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.audience-card:hover,
.decision-card:hover,
.faq-item:hover {
  border-color: #b9c4d5;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.09);
}

.audience-card span,
.decision-card span {
  display: inline-flex;
  margin-bottom: 45px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
}

.audience-card h3,
.decision-card h3,
.faq-item h3 {
  margin-bottom: 13px;
}

.audience-card p,
.decision-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.decision-section {
  background: var(--background);
}

.decision-grid {
  grid-template-columns: repeat(4, 1fr);
}

.decision-card {
  min-height: 235px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    var(--white);
}

.projects {
  position: relative;
  z-index: 2;
  margin-top: 46px;
  padding-top: 142px;
  border: 1px solid rgba(208, 216, 232, 0.74);
  border-bottom: 0;
  border-radius: 68px 68px 0 0;
  background: var(--white);
}

.projects-entry {
  position: absolute;
  top: -56px;
  left: 50%;
  display: flex;
  width: 260px;
  height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(208, 216, 232, 0.74);
  border-bottom: 0;
  border-radius: 58px 58px 0 0;
  color: var(--navy);
  background: var(--white);
  transform: translateX(-50%);
}

.projects-entry::before,
.projects-entry::after {
  position: absolute;
  bottom: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  content: "";
}

.projects-entry::before {
  left: -54px;
  box-shadow: 27px 27px 0 var(--white);
}

.projects-entry::after {
  right: -54px;
  box-shadow: -27px 27px 0 var(--white);
}

.projects-entry span {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-entry i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #f3d292;
}

.projects-entry svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.projects-content {
  position: relative;
}

.section-heading {
  margin-bottom: 56px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.48fr 0.52fr;
  gap: 46px;
  align-items: end;
}

.split-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.25vw, 5.15rem);
}

.split-heading > p {
  max-width: 460px;
  margin-bottom: 5px;
  color: var(--muted);
}

.process-section .split-heading > p {
  padding: 22px 24px;
  border: 1px solid rgba(208, 216, 232, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 14px 32px rgba(11, 31, 58, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(11, 31, 58, 0.12);
}

.project-image {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 14px;
  background: var(--background-alt);
}

.project-image img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  object-position: top;
  transition: transform 500ms ease;
}

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

.open-project {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(11, 31, 58, 0.9);
  backdrop-filter: blur(8px);
}

.project-body {
  padding: 28px 30px 30px;
}

.card-label,
.format-label {
  margin-bottom: 10px;
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-body h3 {
  margin-bottom: 13px;
  font-size: 1.75rem;
}

.project-body > p:not(.card-label) {
  min-height: 78px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.91rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.text-link span {
  color: var(--amber);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.author-projects {
  margin-top: 82px;
  padding-top: 58px;
  border-top: 1px solid var(--border);
}

.author-projects-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 34px;
}

.author-projects-heading .eyebrow {
  margin-bottom: 15px;
}

.author-projects-heading h3 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
  line-height: 0.96;
}

.author-projects-heading > p {
  max-width: 450px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.88rem;
}

.author-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.author-project-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: 25px;
  background: var(--navy);
  box-shadow:
    0 16px 34px rgba(11, 31, 58, 0.13),
    0 3px 9px rgba(11, 31, 58, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.author-project-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 42px rgba(11, 31, 58, 0.17),
    0 5px 12px rgba(11, 31, 58, 0.07);
}

.author-project-link {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border-radius: inherit;
  color: var(--white);
  isolation: isolate;
}

.author-project-link img {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: var(--white);
  filter: saturate(0.9);
  transition: filter 300ms ease;
}

.author-project-card:hover .author-project-link img {
  filter: saturate(1);
}

.author-project-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 14, 28, 0) 38%,
      rgba(4, 14, 28, 0.82) 58%,
      rgba(4, 14, 28, 0.98) 100%
    ),
    linear-gradient(90deg, rgba(4, 14, 28, 0.08), transparent 58%);
  transition: background 250ms ease;
}

.author-project-card:hover .author-project-shade {
  background:
    linear-gradient(
      180deg,
      rgba(4, 14, 28, 0) 36%,
      rgba(4, 14, 28, 0.86) 57%,
      rgba(4, 14, 28, 1) 100%
    ),
    linear-gradient(90deg, rgba(4, 14, 28, 0.1), transparent 60%);
}

.author-project-category {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(7, 22, 42, 0.35);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.author-project-copy {
  display: grid;
  gap: 8px;
  max-width: 300px;
  margin-bottom: 23px;
}

.author-project-copy strong {
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.author-project-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
}

.author-project-action {
  display: flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  font-size: 0.76rem;
  font-weight: 600;
}

.author-project-action i {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.author-project-card:hover .author-project-action i {
  color: var(--navy);
  background: var(--white);
  transform: rotate(90deg);
}

.problem-section {
  border-top: 1px solid rgba(208, 216, 232, 0.6);
  background: var(--background-alt);
}

.center-heading {
  max-width: 1120px;
  margin: 0 auto 60px;
  text-align: center;
}

.center-heading h2 {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}

.center-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.problem-card {
  --icon-accent: #d7ff63;
  --icon-glow: rgba(183, 255, 59, 0.34);
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(208, 216, 232, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.problem-card:nth-child(2) {
  --icon-accent: #75dcff;
  --icon-glow: rgba(64, 196, 255, 0.34);
}

.problem-card:nth-child(3) {
  --icon-accent: #f5bd55;
  --icon-glow: rgba(245, 189, 85, 0.34);
}

.problem-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(11, 31, 58, 0.09);
}

.problem-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #a7b3c5;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.line-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  color: var(--icon-accent);
  background:
    radial-gradient(circle at 50% 44%, var(--icon-glow), transparent 43%),
    linear-gradient(145deg, #16243a, #07111f 72%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 22px rgba(0, 0, 0, 0.25),
    0 10px 22px rgba(11, 31, 58, 0.16);
  animation: icon-float 4.2s ease-in-out infinite;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.problem-card:nth-child(2) .line-icon {
  animation-delay: -1.35s;
}

.problem-card:nth-child(3) .line-icon {
  animation-delay: -2.7s;
}

.line-icon::before {
  position: absolute;
  top: 5px;
  right: 9px;
  left: 9px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent);
  content: "";
  filter: blur(2px);
}

.line-icon::after {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--icon-accent) 32%, transparent);
  border-radius: 50%;
  content: "";
  opacity: 0.62;
  transition:
    opacity 220ms ease,
    transform 400ms ease;
}

.line-icon svg {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 5px var(--icon-glow));
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.problem-card:hover .line-icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -10px 22px rgba(0, 0, 0, 0.2),
    0 15px 30px var(--icon-glow);
  transform: translateY(-4px) rotate(-3deg) scale(1.05);
}

.problem-card:hover .line-icon::after {
  opacity: 1;
  transform: scale(1.18);
}

.problem-card:hover .line-icon svg {
  transform: scale(1.12) rotate(4deg);
}

@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

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

.problem-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.deliverables-section {
  color: var(--white);
  background: var(--navy);
}

.deliverables-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.eyebrow-light {
  color: #a9bad1;
}

.deliverables-intro h2 {
  color: var(--white);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
}

.deliverables-intro > p:not(.eyebrow) {
  max-width: 460px;
  color: #afbdd0;
}

.quote-card {
  position: relative;
  margin-top: 38px;
  padding: 25px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.quote-card span {
  position: absolute;
  top: 6px;
  right: 20px;
  color: rgba(232, 169, 64, 0.3);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.quote-card p {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 0;
  color: #dbe3ee;
  font-size: 0.88rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.deliverables-grid div {
  min-height: 120px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 200ms ease;
}

.deliverables-grid div:hover {
  background: rgba(255, 255, 255, 0.05);
}

.deliverables-grid span {
  color: var(--amber-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 500;
}

.deliverables-grid p {
  max-width: 200px;
  margin: 18px 0 0;
  color: #edf2f8;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.deliverables-grid .deliverable-wide {
  grid-column: span 2;
  min-height: 98px;
}

.deliverables-grid .deliverable-wide p {
  max-width: none;
  margin-top: 9px;
}

.ecosystem-wrap {
  padding: 58px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 146, 42, 0.13), transparent 30%),
    var(--background);
  box-shadow: var(--shadow-sm);
}

.ecosystem-flow {
  display: grid;
  gap: 14px;
}

.ecosystem-flow div {
  padding: 20px 22px;
  border: 1px solid rgba(208, 216, 232, 0.92);
  border-radius: 17px;
  background: var(--white);
}

.ecosystem-flow strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.ecosystem-flow span {
  color: var(--muted);
  font-size: 0.84rem;
}

.ecosystem-flow i {
  display: grid;
  width: 34px;
  height: 34px;
  margin-inline: auto;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #f3d292;
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
}

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

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.format-card {
  position: relative;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
}

.format-card-featured {
  border-color: var(--navy-soft);
  box-shadow: 0 24px 55px rgba(11, 31, 58, 0.12);
}

.format-card h3 {
  margin-bottom: 16px;
  font-size: 1.9rem;
}

.format-description {
  min-height: 80px;
  color: var(--muted);
  font-size: 0.89rem;
}

.format-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 27px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.format-card li {
  position: relative;
  padding-left: 25px;
  color: #465a75;
  font-size: 0.86rem;
}

.format-card li::before {
  position: absolute;
  top: 0.45em;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  content: "";
}

.format-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--navy);
  background: #e7edf5;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.format-card-featured .format-tag {
  color: #8a5912;
  background: #fff0d6;
}

.recommended {
  position: absolute;
  top: 0;
  right: 32px;
  padding: 9px 15px;
  border-radius: 0 0 9px 9px;
  color: var(--white);
  background: var(--navy);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-note {
  max-width: 850px;
  margin: 28px auto 0;
  padding: 17px 24px;
  border: 1px dashed #bbc7d9;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.landing-note span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-right: 7px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--amber);
  font-weight: 700;
}

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

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid::before {
  position: absolute;
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(90, 110, 138, 0.2),
    rgba(212, 146, 42, 0.22),
    rgba(90, 110, 138, 0.2),
    transparent
  );
  content: "";
  transform: translateY(-50%);
}

.process-grid-five {
  grid-template-columns: repeat(6, 1fr);
}

.process-grid-five .process-step {
  grid-column: span 2;
}

.process-grid-five .process-step:nth-child(4) {
  grid-column: 2 / span 2;
}

.process-step {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(11, 31, 58, 0.12);
}

.process-visual {
  position: relative;
  display: grid;
  height: 215px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(208, 216, 232, 0.35);
  background:
    linear-gradient(rgba(232, 169, 64, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 169, 64, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(232, 169, 64, 0.19), transparent 34%),
    #071526;
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.process-visual::after {
  position: absolute;
  inset: auto 10% 0;
  height: 42px;
  background: radial-gradient(ellipse, rgba(232, 169, 64, 0.22), transparent 65%);
  content: "";
  filter: blur(7px);
}

.visual-window {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 112px;
  padding-top: 20px;
  border: 1px solid rgba(232, 169, 64, 0.65);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(26, 58, 92, 0.94), rgba(7, 17, 31, 0.96));
  box-shadow:
    0 0 28px rgba(232, 169, 64, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: process-float 4.5s ease-in-out infinite;
}

.visual-window > i {
  position: absolute;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber-light);
}

.visual-window > i:nth-child(1) { left: 13px; }
.visual-window > i:nth-child(2) { left: 22px; background: #d9e2ee; }
.visual-window > i:nth-child(3) { left: 31px; background: #7d91ac; }

.visual-window svg {
  width: 70px;
  height: 70px;
  margin: 8px auto 0;
  fill: none;
  stroke: #f0b653;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(232, 169, 64, 0.46));
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(232, 169, 64, 0.22);
  border-radius: 50%;
  animation: orbit-spin 12s linear infinite;
}

.visual-orbit-one { width: 205px; height: 205px; }
.visual-orbit-two {
  width: 260px;
  height: 140px;
  transform: rotate(28deg);
  animation-direction: reverse;
}

.layout-screen {
  position: absolute;
  top: 34px;
  left: 55px;
  width: 152px;
  height: 112px;
  padding: 19px;
  border: 1px solid rgba(232, 169, 64, 0.55);
  border-radius: 15px;
  background: linear-gradient(145deg, #17314f, #081421);
  box-shadow: 0 0 26px rgba(232, 169, 64, 0.16);
  transform: rotate(-6deg);
  animation: panel-drift 5s ease-in-out infinite;
}

.layout-screen span {
  display: block;
  height: 8px;
  margin-bottom: 10px;
  border-radius: 99px;
  background: rgba(232, 169, 64, 0.88);
}

.layout-screen span:nth-child(2) { width: 74%; background: #d8e0eb; }
.layout-screen span:nth-child(3) { width: 48%; background: #71859f; }

.layout-panel {
  position: absolute;
  right: 52px;
  bottom: 30px;
  display: grid;
  width: 118px;
  height: 88px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(6, 18, 32, 0.9);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transform: rotate(7deg);
}

.layout-panel i {
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(232, 169, 64, 0.9), rgba(212, 146, 42, 0.32));
}

.layout-panel i:last-child {
  grid-column: span 2;
  background: rgba(213, 223, 235, 0.23);
}

.layout-cursor {
  position: absolute;
  z-index: 3;
  right: 43%;
  bottom: 32px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  color: #211505;
  background: var(--amber-light);
  box-shadow: 0 0 20px rgba(232, 169, 64, 0.5);
  animation: cursor-pulse 2.8s ease-in-out infinite;
}

.process-visual-launch svg {
  position: relative;
  z-index: 2;
  width: 115px;
  height: 115px;
  fill: rgba(232, 169, 64, 0.1);
  stroke: var(--amber-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  filter: drop-shadow(0 0 10px rgba(232, 169, 64, 0.45));
  animation: launch-hover 4s ease-in-out infinite;
}

.launch-ring {
  position: absolute;
  width: 175px;
  height: 175px;
  border: 1px solid rgba(232, 169, 64, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(232, 169, 64, 0.035),
    0 0 0 56px rgba(232, 169, 64, 0.02);
  animation: ring-pulse 3.6s ease-in-out infinite;
}

.process-body {
  min-height: 225px;
  padding: 29px 28px 31px;
}

.process-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
  color: #8d9db3;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}

.process-meta span {
  font-size: 1.05rem;
  font-style: italic;
}

.process-meta small {
  color: var(--amber);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.about-wrap {
  display: grid;
  justify-items: center;
}

.about-card,
.local-seo-card {
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 241, 247, 0.76)),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.about-card {
  width: 100%;
  max-width: 920px;
}

.local-seo-section {
  background: var(--background);
}

.local-seo-card {
  max-width: 1040px;
  background:
    radial-gradient(circle at top right, rgba(26, 58, 92, 0.1), transparent 30%),
    var(--white);
}

.faq-section {
  border-top: 1px solid rgba(208, 216, 232, 0.6);
}

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

.faq-item {
  min-height: 0;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  text-align: center;
}

.section-cta p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.process-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid-four .process-step {
  min-height: auto;
}

.process-grid-four .process-body {
  min-height: 230px;
}

.process-about {
  margin: 34px auto 0;
}

.process-about .button {
  margin-top: 8px;
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  border-color: var(--amber-light);
  color: var(--navy);
  background: var(--amber-light);
}

.footer-main-simple {
  grid-template-columns: 0.9fr 0.55fr 1.45fr 0.72fr;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: #0f7f4f;
  box-shadow: 0 16px 34px rgba(9, 78, 50, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: #241707;
  background: var(--amber-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(232, 169, 64, 0.32);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-location {
  margin-top: 14px !important;
  color: #aebcd0 !important;
}

@keyframes process-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes panel-drift {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-6px) rotate(-3deg); }
}

@keyframes cursor-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes launch-hover {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  50% { transform: translate(5px, -7px) rotate(2deg); }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

.final-section {
  padding: 20px 0 100px;
  background: var(--background);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 40px;
  border-radius: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 45%),
    var(--navy);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(3rem, 5.5vw, 5.4rem);
}

.final-cta > p:not(.eyebrow, .final-microcopy) {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #b9c5d6;
}

.button-amber {
  color: #241707;
  background: var(--amber-light);
  box-shadow: 0 14px 35px rgba(232, 169, 64, 0.2);
}

.button-amber:hover,
.button-amber:focus-visible {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(232, 169, 64, 0.28);
}

.final-microcopy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #8fa1b9;
  font-size: 0.68rem;
}

.final-microcopy i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
}

.final-decoration {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.decoration-one {
  top: -190px;
  left: -110px;
  width: 430px;
  height: 430px;
}

.decoration-two {
  right: -85px;
  bottom: -230px;
  width: 520px;
  height: 520px;
}

.site-footer {
  position: relative;
  padding: 76px 0 24px;
  overflow: hidden;
  color: #aebcd0;
  background:
    radial-gradient(circle at 84% 50%, rgba(212, 146, 42, 0.12), transparent 30%),
    #040c17;
}

.footer-word {
  position: absolute;
  right: -24px;
  bottom: -92px;
  color: rgba(212, 146, 42, 0.09);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: clamp(12rem, 25vw, 25rem);
  font-weight: 800;
  line-height: 0.65;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.footer-brand {
  color: var(--white);
  font-size: 1.3rem;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 0.48fr 1.7fr 0.72fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
  padding-bottom: 68px;
}

.footer-identity > p {
  max-width: 250px;
  margin: 14px 0 0;
  color: #8292a8;
  font-size: 0.76rem;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 27px;
}

.footer-socials a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  color: #07101e;
  background: var(--white);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-socials a:hover {
  color: #1e1508;
  background: var(--amber-light);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials .social-dot {
  fill: currentColor;
  stroke: none;
}

.footer-socials .footer-whatsapp {
  fill: currentColor;
  stroke: none;
}

.footer-nav {
  display: grid;
  gap: 12px;
  padding-top: 3px;
  color: #8c9aae;
  font-size: 0.72rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--amber-light);
}

.footer-statement > p {
  max-width: 350px;
  margin-bottom: 9px;
  color: #8292a8;
  font-size: 0.72rem;
}

.footer-statement h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.25rem, 5vw, 5.15rem);
  line-height: 0.88;
}

.footer-statement h2 em {
  color: var(--amber-light);
  font-style: normal;
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.footer-cta {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 8px 7px 20px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: var(--navy);
  background: var(--amber-light);
  transform: translateY(-3px);
}

.footer-cta span {
  display: grid;
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #251804;
  background: var(--amber-light);
}

.footer-contact > p {
  margin: 2px 0 0;
  color: #65758b;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-handle {
  width: max-content;
  color: #c7d1df;
  font-size: 0.72rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 78px;
  }

  .trust-strip p {
    padding-inline: 20px;
  }

  .section {
    padding: 90px 0;
  }

  .projects {
    padding-top: 126px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .local-presence-grid,
  .ecosystem-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .audience-grid,
  .decision-grid,
  .problem-grid-four,
  .process-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-projects-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .split-heading > p {
    max-width: 620px;
  }

  .deliverables-wrap {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .deliverables-intro {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 0.7fr 0.3fr;
  }

  .footer-statement {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-contact {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: 340px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .nav-cta-full {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .button-small {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero {
    padding-top: 60px;
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1.02;
  }

  h1 br {
    display: none;
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-support {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .microcopy {
    flex-wrap: wrap;
    gap: 5px 12px;
    font-size: 0.67rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 45px;
    padding: 25px 0;
  }

  .trust-strip p {
    padding: 17px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  h2,
  .split-heading h2,
  .deliverables-intro h2,
  .final-cta h2 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .projects {
    margin-top: 34px;
    padding-top: 106px;
    border-radius: 34px 34px 0 0;
  }

  .projects-entry {
    top: -43px;
    width: 205px;
    height: 86px;
    gap: 9px;
    border-radius: 44px 44px 0 0;
  }

  .projects-entry::before,
  .projects-entry::after {
    width: 36px;
    height: 36px;
  }

  .projects-entry::before {
    left: -36px;
    box-shadow: 18px 18px 0 var(--white);
  }

  .projects-entry::after {
    right: -36px;
    box-shadow: -18px 18px 0 var(--white);
  }

  .projects-entry span {
    font-size: 0.57rem;
  }

  .projects-entry i {
    width: 31px;
    height: 31px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .split-heading br {
    display: none;
  }

  .project-grid,
  .problem-grid,
  .problem-grid-four,
  .audience-grid,
  .decision-grid,
  .format-grid,
  .process-grid,
  .process-grid-four,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .section-cta .button {
    width: 100%;
  }

  .local-presence-copy h2,
  .ecosystem-copy h2,
  .about-card h2,
  .local-seo-card h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .search-card,
  .ecosystem-wrap,
  .about-card,
  .local-seo-card {
    padding: 26px;
    border-radius: 22px;
  }

  .audience-card,
  .decision-card {
    min-height: 0;
  }

  .audience-card span,
  .decision-card span {
    margin-bottom: 28px;
  }

  .author-projects {
    margin-top: 58px;
    padding-top: 44px;
  }

  .author-project-grid {
    display: flex;
    width: calc(100% + 14px);
    padding-right: 14px;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .author-project-grid::-webkit-scrollbar {
    display: none;
  }

  .author-project-card {
    flex: 0 0 82%;
    min-height: 360px;
    scroll-snap-align: center;
  }

  .author-project-link {
    min-height: 360px;
    padding: 23px;
  }

  .project-body {
    padding: 24px 22px 26px;
  }

  .project-body > p:not(.card-label),
  .format-description {
    min-height: 0;
  }

  .center-heading {
    margin-bottom: 38px;
  }

  .center-heading > p:last-child {
    font-size: 0.94rem;
  }

  .center-heading br {
    display: none;
  }

  .problem-grid {
    gap: 12px;
  }

  .problem-card {
    min-height: 0;
    padding: 25px;
  }

  .line-icon {
    margin-bottom: 30px;
  }

  .deliverables-grid div {
    min-height: 110px;
    padding: 18px;
  }

  .deliverables-grid p {
    font-size: 0.82rem;
  }

  .format-card {
    padding: 34px 25px;
  }

  .recommended {
    right: 22px;
  }

  .landing-note {
    text-align: left;
  }

  .process-grid {
    gap: 16px;
  }

  .process-grid-five .process-step,
  .process-grid-five .process-step:nth-child(4) {
    grid-column: auto;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    padding: 0;
  }

  .process-step > span {
    position: static;
  }

  .process-dot {
    display: none;
  }

  .process-step h3 {
    padding-top: 0;
  }

  .process-visual {
    height: 200px;
  }

  .process-body {
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .process-grid-four .process-body {
    min-height: 0;
  }

  .final-section {
    padding-bottom: 70px;
  }

  .final-cta {
    padding: 65px 22px;
    border-radius: 22px;
  }

  .final-cta br {
    display: none;
  }

  .final-cta .button {
    width: 100%;
  }

  .final-microcopy {
    flex-wrap: wrap;
  }

  .site-footer {
    padding-top: 62px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
  }

  .footer-nav,
  .footer-statement,
  .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-nav {
    grid-template-columns: repeat(2, max-content);
    gap: 12px 30px;
  }

  .footer-statement h2 {
    font-size: clamp(3.1rem, 15vw, 4.2rem);
  }

  .footer-contact {
    width: 100%;
    max-width: none;
  }

  .footer-word {
    right: -10px;
    bottom: 25px;
    font-size: 10rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 9px 12px;
  }

  .floating-whatsapp span {
    display: none;
  }
}
