:root {
  --navy: #094c8a;
  --blue: #1479bd;
  --coral: #ff6560;
  --ink: #05244d;
  --muted: #5c6f83;
  --paper: #f5f8fb;
  --white: #ffffff;
  --line: #dbe4ec;
  --green: #22a86b;
  --shadow: 0 22px 60px rgba(5, 36, 77, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.section-pad {
  padding: 112px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

h2 {
  margin: 22px 0 0;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem);
  font-weight: 750;
  line-height: 0.98;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(255, 101, 96, 0.38);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 26px rgba(9, 76, 138, 0.18);
}

.button-primary:hover {
  background: #073e72;
}

.button-coral {
  color: var(--ink);
  background: var(--coral);
  box-shadow: 0 14px 34px rgba(255, 101, 96, 0.26);
}

.button-coral:hover {
  background: #ff7873;
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.88rem;
}

.button-full {
  width: 100%;
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button .whatsapp-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 236, 0.72);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 174px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.06em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 680;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-picker {
  position: relative;
}

.language-current {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-current svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.2s ease;
}

.language-picker.open .language-current svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 176px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-picker.open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 11px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: inherit;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
}

.language-menu a span {
  color: var(--muted);
  font-weight: 600;
}

.language-menu a:hover,
.language-menu a.active {
  background: var(--paper);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(92vh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 55%);
}

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

.hero-shape-one {
  top: -290px;
  right: -270px;
  width: 780px;
  height: 780px;
}

.hero-shape-two {
  right: 30%;
  bottom: -430px;
  width: 650px;
  height: 650px;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: calc(92vh - var(--header-height) - 224px);
  align-items: center;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(42px, 6vw, 80px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 36px 0;
}

.hero h1 {
  max-width: 780px;
  margin: 24px 0 28px;
  font-size: clamp(3.25rem, 6.5vw, 6.8rem);
  font-weight: 760;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--coral);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.03rem, 1.55vw, 1.23rem);
  line-height: 1.7;
}

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

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

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.hero-proof strong {
  color: var(--coral);
  font-size: 1.3rem;
}

.hero-proof span {
  max-width: 130px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.88;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 220px 220px 32px 32px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32);
}

.hero-photo-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 36, 77, 0.72), transparent 48%);
  content: "";
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 680;
}

.label-dot {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 101, 96, 0.2);
}

.floating-card {
  position: absolute;
  right: -34px;
  bottom: 90px;
  display: flex;
  width: 255px;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-icon {
  display: grid;
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 13px;
}

.floating-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.floating-card div {
  display: grid;
  gap: 3px;
}

.floating-card strong {
  font-size: 0.92rem;
}

.floating-card div span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

/* Trust */
.trust-strip {
  padding: 26px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-row {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 34px;
}

.trust-title {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.logo-cloud span {
  color: #66788c;
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Intro and benefits */
.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 14px;
}

.coral-line {
  width: 75px;
  height: 1px;
  margin-top: 7px;
  background: var(--coral);
}

.intro-copy h2 {
  margin-top: 0;
}

.intro-copy p {
  max-width: 680px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

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

.benefit-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: #afbdc9;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.benefit-icon {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  color: var(--white);
  border-radius: 17px;
}

.benefit-icon.coral { background: var(--coral); }
.benefit-icon.blue { background: var(--blue); }
.benefit-icon.navy { background: var(--navy); }

.benefit-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.benefit-card h3 {
  margin: 52px 0 13px;
  font-size: 1.26rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Section heading */
.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 70px;
  margin-bottom: 60px;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-head.light p {
  color: rgba(255, 255, 255, 0.62);
}

/* Solutions */
.solutions {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.solutions::before {
  position: absolute;
  top: -200px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: rgba(20, 121, 189, 0.18);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.solutions .container {
  position: relative;
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 435px;
  padding: 34px;
  background: #093c6b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.solution-card:hover {
  color: var(--ink);
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-6px);
}

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.solution-card:hover .solution-top {
  color: rgba(5, 36, 77, 0.65);
}

.solution-card h3 {
  max-width: 290px;
  margin: 78px 0 18px;
  font-size: 1.55rem;
  line-height: 1.12;
}

.solution-card p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.91rem;
  line-height: 1.65;
}

.solution-card:hover p {
  color: rgba(5, 36, 77, 0.72);
}

.solution-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.69rem;
}

.solution-card:hover li {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.audiences {
  margin-top: 100px;
  padding-top: 94px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.audiences-head {
  margin-bottom: 44px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.audience-card {
  display: grid;
  min-height: 106px;
  align-content: space-between;
  gap: 14px;
  padding: 19px 21px;
  color: var(--white);
  background: #093c6b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.audience-card:hover,
.audience-card.selected {
  color: var(--ink);
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-3px);
}

.audience-card > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.audience-card:hover > span,
.audience-card.selected > span {
  color: rgba(5, 36, 77, 0.58);
}

.audience-card strong {
  max-width: 290px;
  font-size: 0.94rem;
  line-height: 1.35;
}

/* Projects */
.projects {
  background: var(--paper);
}

.project-mosaic {
  display: grid;
  grid-auto-rows: 310px;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.project-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  border-radius: var(--radius-md);
}

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

.project-tall {
  grid-column: span 5;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 36, 77, 0.88), transparent 58%);
  content: "";
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.project-overlay {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--white);
}

.project-overlay span {
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-overlay h3 {
  margin: 0;
  font-size: 1.35rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-weight: 800;
}

.text-link svg {
  width: 29px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

/* Process */
.process {
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
}

.process-sticky {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.process-sticky p {
  max-width: 460px;
  margin: 30px 0;
  color: var(--muted);
  line-height: 1.75;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  min-height: 185px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 72px 1fr;
  gap: 24px;
}

.step > span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.step p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Brief */
.brief {
  background: var(--paper);
}

.brief-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 74px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr 0.82fr;
  gap: 80px;
}

.brief-card::before {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 460px;
  height: 460px;
  background: rgba(20, 121, 189, 0.35);
  border-radius: 50%;
  content: "";
}

.brief-copy,
.whatsapp-brief {
  position: relative;
  z-index: 2;
}

.brief-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.brief-copy p {
  max-width: 560px;
  margin: 30px 0 42px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.brief-contact {
  display: grid;
  gap: 7px;
}

.brief-contact span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.brief-contact a {
  font-size: 1.35rem;
  font-weight: 780;
}

.whatsapp-brief {
  display: grid;
  align-self: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(5, 36, 77, 0.25);
  gap: 18px;
}

.whatsapp-brief label {
  display: grid;
  gap: 8px;
}

.whatsapp-brief label > span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.whatsapp-brief input,
.whatsapp-brief select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  appearance: none;
}

.whatsapp-brief select {
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.5;
  text-align: center;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-heading p {
  max-width: 330px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.plus {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.plus::before,
.plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--navy);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -8px 52px 26px 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Final CTA and footer */
.final-cta {
  padding: 86px 0;
  color: var(--white);
  background: var(--ink);
}

.final-cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 110px 1fr auto;
  gap: 42px;
}

.final-cta-inner > img {
  width: 110px;
  max-height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.15));
}

.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
}

.site-footer {
  padding: 68px 0 26px;
  color: rgba(255, 255, 255, 0.64);
  background: #031a35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1.2fr 0.75fr 0.75fr;
  gap: 58px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid > div:first-child p {
  max-width: 300px;
  margin: 17px 0 0;
  line-height: 1.65;
}

.footer-label {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  transition: color 0.2s ease;
}

.footer-grid a:not(.brand):hover {
  color: var(--coral);
}

.footer-grid p {
  margin: 0;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp .whatsapp-icon,
.mobile-whatsapp .whatsapp-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.floating-whatsapp .whatsapp-icon {
  width: 64px;
  height: 64px;
}

.mobile-whatsapp {
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-two {
  transition-delay: 0.2s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 45;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    min-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 32px 20px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .mobile-menu nav {
    display: grid;
    max-width: 560px;
    margin: 0 auto;
    gap: 4px;
  }

  .mobile-menu nav > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.35rem;
    font-weight: 750;
  }

  .mobile-menu .button {
    margin-top: 22px;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.6rem);
  }

  .floating-card {
    right: -8px;
    bottom: 65px;
  }

  .brief-card {
    padding: 58px;
    gap: 45px;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .section-pad {
    padding: 82px 0;
  }

  .desktop-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 700px;
  }

  .hero-lead {
    max-width: 650px;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto -24px;
  }

  .hero-photo-wrap {
    aspect-ratio: 1.2;
    border-radius: 200px 200px 24px 24px;
  }

  .hero-photo-wrap img {
    object-position: center 45%;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .logo-cloud {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .intro-grid,
  .section-head,
  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-kicker {
    padding-top: 0;
  }

  .benefit-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 260px;
  }

  .solution-card {
    min-height: 370px;
  }

  .solution-card h3 {
    margin-top: 54px;
  }

  .project-mosaic {
    grid-auto-rows: 330px;
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card,
  .project-large,
  .project-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .process-sticky {
    position: static;
  }

  .brief-card {
    padding: 48px 34px;
    grid-template-columns: 1fr;
  }

  .faq-heading p {
    max-width: 520px;
  }

  .final-cta-inner {
    grid-template-columns: 80px 1fr;
  }

  .final-cta-inner > img {
    width: 80px;
  }

  .final-cta-inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 70px;
  }

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

  .section-pad {
    padding: 68px 0;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .brand img {
    width: 138px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.28rem;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-current {
    height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.91;
  }

  .hero-lead {
    font-size: 0.97rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    gap: 18px;
    margin-top: 34px;
  }

  .hero-proof div {
    display: block;
  }

  .hero-proof strong,
  .hero-proof span {
    display: block;
  }

  .hero-proof span {
    margin-top: 4px;
  }

  .hero-photo-wrap {
    aspect-ratio: 0.95;
    border-width: 5px;
  }

  .floating-card {
    right: 10px;
    bottom: 24px;
    width: 220px;
  }

  .intro-grid {
    gap: 28px;
  }

  .intro-copy p {
    margin-top: 25px;
    font-size: 0.98rem;
  }

  .benefit-grid {
    margin-top: 46px;
  }

  .benefit-card,
  .solution-card {
    padding: 28px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .audiences {
    margin-top: 72px;
    padding-top: 66px;
  }

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

  .project-mosaic {
    grid-auto-rows: 360px;
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-large,
  .project-tall {
    grid-column: 1;
  }

  .step {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .brief-card {
    width: calc(100% - 20px);
    padding: 42px 20px 20px;
    border-radius: 26px;
    gap: 35px;
  }

  .whatsapp-brief {
    padding: 22px 18px;
  }

  .whatsapp-brief #business-type {
    font-size: 0.76rem;
    letter-spacing: -0.01em;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 0.94rem;
  }

  .final-cta {
    padding: 64px 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .final-cta-inner > img {
    width: 72px;
  }

  .final-cta-inner .button {
    grid-column: 1;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-whatsapp {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 68px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: var(--green);
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 -10px 35px rgba(5, 36, 77, 0.16);
  }

  .mobile-whatsapp .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

@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;
  }
}