:root {
  --web5: #007490;
  --web5-strong: #005d73;
  --web5-dark: #063946;
  --web5-soft: #e8f6f9;
  --web5-ice: #f4fafb;
  --web5-cyan: #9ee8f3;
  --dark: #0e0e0e;
  --text: #111820;
  --muted: #65727c;
  --line: #dbe7ea;
  --white: #ffffff;
  --success: #16b85f;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(0, 40, 50, 0.1);
  --shadow-dark: 0 26px 70px rgba(0, 0, 0, 0.22);
  --font-base: "Open Sans", Arial, Helvetica, sans-serif;
  --font-display: "Montserrat", "Open Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-base);
  line-height: 1.55;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

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

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(0, 116, 144, 0.11);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(0, 40, 50, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

h1,
h2,
h3,
.hero-stats dt,
.brand,
.button,
.header-cta {
  font-family: var(--font-display);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  border-radius: 15px;
  padding: 12px 14px;
  color: #22303a;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover {
  background: var(--web5-soft);
  color: var(--web5);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--web5), var(--web5-strong));
  padding: 0 18px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0, 116, 144, 0.24);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  color: var(--white);
  background: var(--web5-dark);
}

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

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 57, 70, 0.98) 0%, rgba(6, 57, 70, 0.86) 34%, rgba(6, 57, 70, 0.28) 72%),
    radial-gradient(circle at 16% 32%, rgba(158, 232, 243, 0.22), transparent 34%),
    linear-gradient(0deg, rgba(6, 57, 70, 0.82), rgba(6, 57, 70, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 78px);
  width: min(1080px, calc(100% - 32px));
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 72px 0 52px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(158, 232, 243, 0.14);
  padding: 8px 13px;
  color: var(--web5-cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.45rem, 5.2vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  font-weight: 600;
}

.intro-copy,
.lead-form,
.feature p,
.timeline p,
.client-list,
.trust-strip,
.main-nav {
  font-family: var(--font-base);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--web5), var(--web5-strong));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 116, 144, 0.34);
}

.button.secondary {
  border: 1px solid rgba(158, 232, 243, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  width: min(720px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 52px 0 0;
  overflow: hidden;
  border: 1px solid rgba(158, 232, 243, 0.18);
  border-radius: 22px;
  background: rgba(158, 232, 243, 0.1);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.hero-stats div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  color: var(--web5-cyan);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(158, 232, 243, 0.18);
}

.clients-preview {
  background:
    radial-gradient(circle at 18% 20%, rgba(158, 232, 243, 0.22), transparent 30%),
    linear-gradient(135deg, #071011 0%, var(--web5-dark) 58%, #075267 100%);
  border-bottom: 1px solid rgba(158, 232, 243, 0.16);
}

.clients-preview p {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.trust-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-base);
  font-weight: 700;
  text-align: center;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  padding: 88px 0;
}

.intro {
  position: relative;
  background: var(--white);
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 76px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.95rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin: 0;
  color: #17242c;
  font-size: 1.12rem;
  letter-spacing: 0;
  font-weight: 700;
}

p {
  line-height: 1.65;
}

.intro-copy p,
.proof-content p,
.cta-panel > p,
.reason-stack p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.intro .section-kicker,
.operations .section-kicker,
.split .section-kicker,
.cta-panel .section-kicker {
  background: rgba(0, 116, 144, 0.1);
  color: var(--web5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.feature,
.timeline article,
.reason-stack div {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 40, 50, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover,
.timeline article:hover,
.reason-stack div:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature {
  min-height: 254px;
  padding: 26px;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 116, 144, 0.16);
  border-radius: 18px;
  background: var(--web5-soft);
  color: var(--web5);
  font-size: 1.04rem;
  font-weight: 700;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-icon.red {
  background: #edf7fa;
  color: var(--web5-strong);
}

.feature-icon.blue {
  background: #effcff;
  color: var(--web5);
}

.feature-icon.amber {
  background: var(--web5-soft);
  color: var(--web5);
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  padding: 88px max(16px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(158, 232, 243, 0.24), transparent 30%),
    linear-gradient(135deg, #071011 0%, var(--web5-dark) 56%, #075267 100%);
  color: var(--white);
}

.image-band {
  padding: 92px 16px;
}

.band-soft {
  background:
    radial-gradient(circle at 12% 18%, rgba(158, 232, 243, 0.18), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(0, 116, 144, 0.28), transparent 34%),
    linear-gradient(135deg, #071011 0%, var(--web5-dark) 58%, #075267 100%);
  color: var(--white);
}

.band-white {
  background: var(--white);
}

.band-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 116, 144, 0.46) 0 7px, transparent 7px),
    radial-gradient(circle at 82% 18%, rgba(158, 232, 243, 0.14), transparent 26%),
    linear-gradient(135deg, #101820 0%, #0b2028 48%, #081114 100%);
  color: var(--white);
}

.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(158, 232, 243, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 232, 243, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 82%, transparent);
  pointer-events: none;
}

.band-dark .band-inner {
  position: relative;
  z-index: 1;
}

.band-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.two-col.reverse .band-media {
  order: 2;
}

.two-col.reverse .band-copy {
  order: 1;
}

.band-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 116, 144, 0.12);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 76px rgba(0, 40, 50, 0.2);
}

.band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(6, 57, 70, 0.18));
  pointer-events: none;
}

.band-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.band-media.portrait {
  max-width: 520px;
  justify-self: end;
}

.band-media.portrait img {
  aspect-ratio: 4 / 5;
}

.band-copy h2 {
  max-width: 620px;
  color: inherit;
}

.band-white .section-kicker {
  background: rgba(0, 116, 144, 0.1);
  color: var(--web5);
}

.band-dark .section-kicker {
  background: rgba(158, 232, 243, 0.14);
  color: var(--web5-cyan);
}

.band-dark .band-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.band-dark .band-media {
  border-color: rgba(158, 232, 243, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.band-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 500;
}

.band-soft .band-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.band-soft .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: var(--web5-cyan);
}

.band-soft .premium-list span {
  color: rgba(255, 255, 255, 0.9);
}

.premium-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.premium-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #26323a;
  font-weight: 700;
}

.premium-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--web5);
  box-shadow: 0 0 0 6px rgba(0, 116, 144, 0.1);
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.metric-row strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(0, 116, 144, 0.14);
  border-radius: 999px;
  background: var(--web5-soft);
  padding: 0 14px;
  color: var(--web5);
  font-size: 0.92rem;
}

.service-strip {
  padding: 26px 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(158, 232, 243, 0.18), transparent 28%),
    linear-gradient(135deg, #071011 0%, var(--web5-dark) 58%, #075267 100%);
  color: var(--white);
}

.service-strip-inner {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(158, 232, 243, 0.18);
  border-radius: 22px;
  background: rgba(158, 232, 243, 0.14);
}

.service-strip-inner div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  padding: 18px;
}

.service-strip svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--web5-cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-strip span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-section {
  padding: 92px 16px;
  background:
    radial-gradient(circle at 16% 22%, rgba(22, 184, 95, 0.14), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(158, 232, 243, 0.32), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3fbf8 100%);
}

.whatsapp-inner {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  margin-inline: auto;
}

.whatsapp-copy .section-kicker {
  background: rgba(22, 184, 95, 0.12);
  color: #078d45;
}

.whatsapp-copy p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 500;
}

.whatsapp-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.whatsapp-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid rgba(22, 184, 95, 0.16);
  border-radius: 16px;
  background: var(--white);
  padding: 12px 14px;
  color: #1f3429;
  font-weight: 700;
  box-shadow: 0 14px 36px rgba(0, 40, 50, 0.06);
}

.whatsapp-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #16b85f;
  box-shadow: 0 0 0 6px rgba(22, 184, 95, 0.1);
}

.email-note {
  display: grid;
  gap: 6px;
  max-width: 680px;
  margin-top: 18px;
  border: 1px solid rgba(0, 116, 144, 0.16);
  border-radius: 18px;
  background: rgba(232, 246, 249, 0.74);
  padding: 18px;
}

.email-note strong {
  color: var(--web5);
  font-family: var(--font-display);
  font-size: 1rem;
}

.email-note span {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.whatsapp-visual {
  display: grid;
  justify-items: center;
}

.phone-shell {
  position: relative;
  width: min(100%, 360px);
  border: 11px solid #111d23;
  border-radius: 38px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.62), transparent 26%),
    radial-gradient(circle at 16% 10%, rgba(158, 232, 243, 0.32), transparent 28%),
    #e8f6f9;
  padding: 28px 18px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 30px 80px rgba(0, 40, 50, 0.24);
  animation: phoneFloat 5.6s ease-in-out infinite;
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 38%);
  pointer-events: none;
}

.phone-camera {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 10px;
  border-radius: 999px;
  background: #111d23;
  transform: translateX(-50%);
}

.phone-button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: #111d23;
}

.phone-button.power {
  top: 118px;
  right: -15px;
  height: 54px;
}

.phone-button.volume {
  top: 92px;
  left: -15px;
  height: 76px;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #16b85f, #078d45);
  padding: 12px;
  color: var(--white);
}

.phone-top span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.phone-top strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  margin-top: 10px;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(0, 40, 50, 0.08);
  animation: bubbleIn 0.55s ease both;
}

.chat-bubble:nth-of-type(3) {
  animation-delay: 0.18s;
}

.chat-bubble:nth-of-type(4) {
  animation-delay: 0.34s;
}

.chat-bubble:nth-of-type(5) {
  animation-delay: 0.5s;
}

.chat-bubble.incoming {
  background: var(--white);
  color: var(--text);
}

.chat-bubble.outgoing {
  margin-left: auto;
  background: #dff8ea;
  color: #075b32;
}

.chat-status {
  margin-top: 18px;
  color: #60727a;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.5deg);
  }
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proof-content {
  max-width: 710px;
}

.proof-content h2 {
  color: var(--white);
}

.proof-content p {
  color: rgba(255, 255, 255, 0.72);
}

.client-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 460px;
}

.client-list a {
  display: grid;
  min-height: 92px;
  place-items: center;
  align-items: center;
  border: 1px solid rgba(158, 232, 243, 0.2);
  border-radius: 18px;
  background: var(--white);
  padding: 18px;
  color: var(--text);
  font-family: var(--font-base);
  font-weight: 700;
}

.client-list img {
  width: 150px;
  max-height: 56px;
  object-fit: contain;
  object-position: center;
}

.client-list a:hover {
  border-color: rgba(158, 232, 243, 0.55);
  background: rgba(158, 232, 243, 0.12);
  color: var(--white);
}

.operations {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 116, 144, 0.14), transparent 30%),
    var(--web5-ice);
}

.operations h2 {
  max-width: 860px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.timeline article {
  min-height: 250px;
  padding: 26px;
}

.timeline span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 16px;
  background: var(--web5-soft);
  color: var(--web5);
  font-size: 0.84rem;
  font-weight: 700;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.why-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  background:
    radial-gradient(circle at 13% 18%, rgba(158, 232, 243, 0.34), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(0, 116, 144, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f2fafb 100%);
  color: var(--text);
}

.why-section .section-kicker {
  background: rgba(0, 116, 144, 0.1);
  color: var(--web5);
}

.why-copy p:not(.section-kicker) {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.why-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(158, 232, 243, 0.2);
  border-radius: 20px;
  background: rgba(0, 116, 144, 0.14);
}

.why-metrics span {
  display: grid;
  gap: 7px;
  min-height: 92px;
  align-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-weight: 700;
}

.why-metrics strong {
  color: var(--web5);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.reason-stack {
  display: grid;
  gap: 16px;
}

.reason-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(158, 232, 243, 0.22);
  border-radius: 22px;
  background: var(--white);
  padding: 24px 24px 24px 82px;
  box-shadow: 0 22px 60px rgba(0, 40, 50, 0.09);
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--web5), var(--web5-cyan));
  transform: none;
  pointer-events: none;
}

.reason-card span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: var(--web5);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
}

.reason-stack strong {
  display: block;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
}

.reason-stack p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-section {
  padding: 92px 16px;
  background:
    radial-gradient(circle at 16% 20%, rgba(158, 232, 243, 0.28), transparent 28%),
    linear-gradient(135deg, #071011 0%, var(--web5-dark) 54%, #075267 100%);
}

.cta-panel {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
  margin: 0 auto;
  border: 1px solid rgba(0, 116, 144, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 14%, rgba(158, 232, 243, 0.42), transparent 28%),
    var(--white);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: var(--text);
}

.cta-panel .section-kicker,
.cta-panel h2,
.cta-panel > p {
  grid-column: 1;
}

.lead-form {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #26323a;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--web5);
  box-shadow: 0 0 0 4px rgba(0, 116, 144, 0.14);
}

.lead-form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 116, 144, 0.22), transparent 28%),
    #070b0d;
  padding: 30px max(220px, clamp(18px, 4vw, 56px)) 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer img {
  width: 132px;
  height: auto;
}

.site-footer span {
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16b85f, #078d45);
  padding: 0 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(7, 141, 69, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(7, 141, 69, 0.38);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.back-to-top {
  position: fixed;
  z-index: 39;
  right: 22px;
  bottom: 88px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 116, 144, 0.18);
  border-radius: 999px;
  background: var(--white);
  padding: 0 15px;
  color: var(--web5);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 40, 50, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 760px) {
  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 980px) {
  .site-footer {
    padding-right: clamp(18px, 4vw, 56px);
    padding-bottom: 96px;
  }

  .floating-whatsapp {
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .back-to-top {
    right: 16px;
    bottom: 76px;
    width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .back-to-top span {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .section-grid,
  .split,
  .proof-band,
  .two-col,
  .whatsapp-inner,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .two-col.reverse .band-media,
  .two-col.reverse .band-copy {
    order: initial;
  }

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

  .trust-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-strip span {
    flex: 0 0 min(78vw, 310px);
    min-height: 72px;
    border: 1px solid rgba(158, 232, 243, 0.18);
    border-radius: 18px;
    scroll-snap-align: center;
  }

  .lead-form,
  .cta-panel .section-kicker,
  .cta-panel h2,
  .cta-panel > p {
    grid-column: auto;
    grid-row: auto;
  }

  .whatsapp-visual {
    order: -1;
  }

  .service-strip-inner {
    grid-template-columns: 1fr;
  }

  .service-strip-inner div {
    min-height: 76px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
    padding-inline: 14px;
  }

  .brand img {
    width: 106px;
  }

  .header-cta {
    min-height: 40px;
    max-width: 188px;
    padding-inline: 13px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding: 56px 0 34px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 1.12;
  }

  .hero-copy {
    font-size: 1rem;
    font-weight: 500;
  }

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

  .hero-stats,
  .feature-grid,
  .timeline,
  .why-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .feature,
  .timeline article {
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .operations,
  .why-section,
  .proof-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  .image-band,
  .whatsapp-section,
  .cta-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .clients-preview p {
    padding: 20px 16px 16px;
    font-size: 0.86rem;
  }

  .proof-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .image-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .whatsapp-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .whatsapp-points {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    border-width: 8px;
    border-radius: 28px;
    animation: none;
  }

  .band-media,
  .cta-panel {
    border-radius: 22px;
  }

  .band-media.portrait {
    max-width: none;
    justify-self: stretch;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 1.95rem);
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .section-kicker,
  .eyebrow {
    font-size: 0.68rem;
  }

  .reason-card {
    padding: 76px 20px 22px;
  }

  .reason-card span {
    top: 22px;
    left: 20px;
  }

  .why-metrics {
    border-radius: 18px;
  }

  .why-metrics span {
    min-height: auto;
    padding: 16px;
  }

  .why-metrics strong {
    font-size: 1.45rem;
  }

  .cta-panel {
    padding: 24px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 48px;
  }

  .band-copy p:not(.section-kicker),
  .why-copy p:not(.section-kicker),
  .intro-copy p,
  .proof-content p,
  .cta-panel > p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .band-dark {
    background:
      radial-gradient(circle at 78% 12%, rgba(158, 232, 243, 0.12), transparent 28%),
      linear-gradient(135deg, #101820 0%, #0b2028 54%, #081114 100%);
  }

  .band-dark::before {
    background-size: 34px 34px;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
    padding-bottom: 86px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    min-height: 50px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .client-list a {
    padding: 12px 14px;
  }

  .client-list img {
    width: 124px;
    max-height: 48px;
  }
}
