﻿@font-face {
  font-family: "Visby CF";
  src: url("assets/VisbyCF-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Visby CF";
  src: url("assets/VisbyCF-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: var(--color-surface-base);
  overflow-x: hidden;
}

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

strong {
  font-weight: 800;
}

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

.site-header,
.section,
.quick-proof,
.footer,
.final-inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  min-height: 72px;
  margin-top: var(--space-sm);
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-card);
  background: rgba(251, 250, 245, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(23, 25, 29, .09);
}

.brand img {
  width: 86px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  color: var(--color-text-secondary);
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: var(--button-height-md);
  padding: 0 var(--button-padding-x);
  border: 0;
  border-radius: var(--button-radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--button-font-weight);
  line-height: 1;
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(23, 25, 29, .16);
}

.btn-primary {
  color: var(--button-primary-fg);
  background: var(--button-primary-bg);
}

.btn-primary:hover {
  background: var(--button-primary-hover-bg);
}

.btn-secondary {
  color: var(--color-accent-on);
  background: var(--color-accent);
}

.btn-hero {
  animation: pulse-whatsapp 1.45s var(--ease-in-out) infinite;
}

.wa-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.37 0 0 5.37 0 12c0 2.12.55 4.1 1.52 5.83L0 24l6.34-1.49A11.96 11.96 0 0 0 12 24c6.63 0 12-5.37 12-12S18.63 0 12 0Zm0 21.82a9.82 9.82 0 0 1-5-1.37l-.36-.21-3.76.88.93-3.67-.24-.38A9.82 9.82 0 0 1 2.18 12 9.81 9.81 0 0 1 12 2.18 9.81 9.81 0 0 1 21.82 12 9.81 9.81 0 0 1 12 21.82Zm5.47-7.44c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.16-.17.2-.35.22-.64.08-.3-.15-1.26-.46-2.39-1.48-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.07 2.88 1.21 3.07.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.09 1.76-.72 2.01-1.41.25-.69.25-1.29.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: var(--badge-padding-y) var(--badge-padding-x);
  border-radius: var(--badge-radius);
  font-size: var(--badge-font-size);
  font-weight: var(--badge-font-weight);
  letter-spacing: var(--badge-letter-spacing);
  text-transform: uppercase;
}

.badge-action {
  color: var(--color-action-on);
  background: var(--color-action);
}

.badge-outline {
  color: var(--color-text-primary);
  border: 1px solid var(--color-border-strong);
  background: transparent;
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: var(--space-lg);
  align-items: center;
  margin: 0 auto;
  padding: var(--space-lg);
  overflow: hidden;
  border-radius: var(--radius-card);
  color: var(--p-white);
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(23, 25, 29, .14);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(23, 25, 29, .86) 0%, rgba(23, 25, 29, .7) 52%, rgba(23, 25, 29, .82) 100%);
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  max-width: 820px;
  margin: var(--space-md) 0 0;
  color: var(--p-white);
  font-size: var(--text-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 strong {
  color: var(--color-action);
  font-weight: 800;
}

.hero p {
  max-width: 650px;
  margin: var(--space-md) 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.48;
}

.hero p strong,
.company-card p strong,
.final-inner p strong {
  color: var(--p-white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}

.hero-actions small {
  color: rgba(255, 255, 255, .72);
  font-size: var(--text-small);
}

.company-card {
  align-self: center;
  overflow: hidden;
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--p-ink-900);
  box-shadow: 0 24px 60px rgba(23, 25, 29, .18);
}

.company-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: 43% 45%;
  background: var(--p-ink-900);
  filter: saturate(1.02) contrast(1.02);
}

.company-card div {
  display: none;
}

.company-card h2 {
  margin: 0;
  color: var(--color-action);
  font-size: var(--text-h2);
  line-height: 1.15;
}

.company-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.45;
}

.section {
  padding-block: var(--space-2xl);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.local-copy h2,
.final-inner h2 {
  margin: var(--space-sm) 0 0;
  color: var(--color-text-primary);
  font-size: var(--text-h1);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.local-copy p,
.final-inner p {
  margin: var(--space-sm) 0 0;
  color: var(--color-text-secondary);
  font-size: 16.5px;
  line-height: 1.55;
}

.section-heading h2 strong,
.local-copy h2 strong,
.final-inner h2 strong,
.steps-copy h2 strong {
  color: inherit;
}

.section-heading p strong,
.local-copy p strong,
.steps-copy p strong,
.proof-item p strong,
.benefit-card p strong,
.step p strong {
  color: var(--color-text-primary);
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-md);
  border: 1px solid rgba(251, 250, 245, .12);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 197, 21, .18), transparent 28%),
    linear-gradient(135deg, var(--p-ink-900) 0%, var(--p-graphite-800) 100%);
  box-shadow: 0 24px 60px rgba(23, 25, 29, .14);
}

.proof-item {
  min-width: 0;
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border: 1px solid rgba(251, 250, 245, .12);
  border-radius: var(--radius-card);
  background: rgba(251, 250, 245, .06);
  color: var(--p-white);
  backdrop-filter: blur(10px);
  transition: transform var(--duration-base) var(--ease-out), background var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
}

.proof-item:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 197, 21, .42);
  background: rgba(251, 250, 245, .1);
}

.proof-number {
  font-family: var(--font-mono);
  color: var(--color-action);
  font-size: var(--text-mono);
  font-weight: 700;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-card);
  color: var(--color-action-on);
  background: var(--color-action);
}

.proof-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.proof-item strong {
  font-size: var(--text-h3);
  overflow-wrap: anywhere;
}

.proof-item p {
  margin: 0;
  color: rgba(251, 250, 245, .76);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.proof-item p strong {
  color: var(--p-white);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.segment-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-content: start;
  perspective: 900px;
}

.segment-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  min-height: 44px;
  padding: 0 var(--space-md);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-pill);
  background: var(--color-surface-raised);
  color: var(--color-text-primary);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(23, 25, 29, .06);
  animation: segmentFloat 5.2s var(--ease-in-out) infinite;
  transition: border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
  will-change: transform;
}

.segment-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--color-action);
  box-shadow: 0 0 0 5px rgba(243, 197, 21, .14);
}

.segment-list span:hover {
  animation-play-state: paused;
  transform: translateY(-7px) rotate(-1.5deg) scale(1.04);
  border-color: var(--color-action);
  background: var(--color-action);
  color: var(--color-action-on);
  box-shadow: 0 16px 36px rgba(23, 25, 29, .14);
}

.segment-list span:hover::before {
  background: var(--color-action-on);
  box-shadow: 0 0 0 5px rgba(23, 25, 29, .12);
}

.segment-list span:nth-child(2n) {
  animation-delay: -.8s;
}

.segment-list span:nth-child(3n) {
  animation-delay: -1.6s;
}

.segment-list span:nth-child(4n) {
  animation-delay: -2.4s;
}

.segment-list span:nth-child(5n) {
  animation-delay: -3.2s;
}

.product-carousel {
  position: relative;
  width: 100%;
  margin-top: var(--space-lg);
  overflow: hidden;
  padding-block: var(--space-xs);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.product-track {
  display: flex;
  width: max-content;
  gap: var(--space-md);
  animation: productMarquee 42s linear infinite;
}

.product-carousel:hover .product-track {
  animation-play-state: paused;
}

.product-card,
.benefit-card,
.step {
  border: var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-bg);
}

.product-card {
  width: 250px;
  flex: 0 0 250px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 232px 88px;
}

.product-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-md) var(--space-md) var(--space-sm);
  background: var(--p-white);
  align-self: stretch;
}

.product-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: var(--space-md);
  border-top: 1px solid var(--color-border-subtle);
  background: var(--card-bg);
  color: var(--color-text-primary);
  font-size: var(--text-h3);
  line-height: 1.18;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.benefit-card {
  min-height: 250px;
  padding: var(--card-padding);
  box-shadow: 0 18px 42px rgba(23, 25, 29, .08);
}

.benefit-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

.benefit-card h3,
.step h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-text-primary);
  font-size: var(--text-h3);
}

.benefit-card p,
.step p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: var(--space-xl);
  align-items: start;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  perspective: 1000px;
  text-align: left;
}

.steps-copy {
  position: sticky;
  top: 116px;
  align-self: start;
  max-width: 460px;
}

.steps-copy h2 {
  margin: var(--space-sm) 0 0;
  color: var(--color-text-primary);
  font-size: var(--text-h1);
  line-height: 1.12;
}

.steps-copy p {
  margin: var(--space-sm) 0 0;
  color: var(--color-text-secondary);
  font-size: 16.5px;
  line-height: 1.55;
}

.step-stack {
  min-height: clamp(980px, 150vh, 1280px);
  display: grid;
  align-content: start;
  gap: var(--space-md);
  padding-block: var(--space-sm);
}

.step {
  padding: var(--card-padding);
  box-shadow: 0 18px 42px rgba(23, 25, 29, .08);
}

.step-sticky {
  position: sticky;
  min-height: 270px;
  display: grid;
  align-content: center;
  transform-style: preserve-3d;
  backdrop-filter: blur(8px);
}

.step-sticky:nth-child(1) {
  top: 116px;
  z-index: 1;
}

.step-sticky:nth-child(2) {
  top: 136px;
  z-index: 2;
  transform: translateZ(8px);
}

.step-sticky:nth-child(3) {
  top: 156px;
  z-index: 3;
  transform: translateZ(16px);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-pill);
  color: var(--color-action-on);
  background: var(--color-action);
  font-weight: 700;
}

.local {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: var(--space-xl);
  align-items: center;
}

.local-copy .btn {
  margin-top: var(--space-md);
}

.map-img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(23, 25, 29, .14);
}

.final-cta {
  padding: var(--space-2xl) 0;
  background: var(--p-graphite-800);
  color: var(--p-white);
  text-align: center;
}

.final-inner {
  display: grid;
  justify-items: center;
}

.final-inner h2 {
  color: var(--p-white);
}

.final-inner p {
  max-width: 700px;
  color: rgba(255, 255, 255, .78);
}

.final-inner .btn {
  margin-top: var(--space-md);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-md);
  color: var(--color-text-secondary);
  font-size: var(--text-small);
}

.footer img {
  width: 90px;
}

.footer address {
  font-style: normal;
  text-align: center;
}

.footer a {
  color: var(--color-accent);
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-pill);
  color: var(--p-white);
  background: var(--p-whatsapp);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
}

.floating-wa .wa-icon {
  width: 25px;
  height: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

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

@keyframes pulse-whatsapp {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(32, 136, 91, .5), 0 12px 30px rgba(32, 136, 91, .16);
  }

  50% {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 0 0 14px rgba(32, 136, 91, 0), 0 18px 38px rgba(32, 136, 91, .34);
  }
}

@keyframes segmentFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  35% {
    transform: translateY(-7px) rotate(.8deg);
  }

  70% {
    transform: translateY(3px) rotate(-.6deg);
  }
}

@keyframes productMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--space-md) / 2)));
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .split,
  .local,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero {
    justify-items: center;
    text-align: center;
  }

  .hero-copy,
  .company-card {
    width: min(342px, calc(100vw - 32px));
    max-width: min(342px, calc(100vw - 32px));
    margin-inline: auto;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-copy .badge {
    justify-content: center;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 9px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .hero h1 {
    text-align: center;
  }

  .hero p {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions small {
    width: 100%;
    text-align: center;
  }

  .company-card {
    background: var(--p-ink-900);
  }

  .company-card img {
    border-radius: var(--radius-card);
  }

  .company-card div {
    display: none;
  }

  .steps-copy {
    position: relative;
    top: auto;
    max-width: 680px;
  }

  .step-stack {
    min-height: auto;
  }

  .step-sticky,
  .step-sticky:nth-child(1),
  .step-sticky:nth-child(2),
  .step-sticky:nth-child(3) {
    position: relative;
    top: auto;
    transform: none;
  }

  .company-card {
    max-width: 520px;
  }

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

@media (max-width: 700px) {
  .quick-proof {
    width: min(342px, calc(100vw - 32px));
    max-width: min(342px, calc(100vw - 32px));
    padding: var(--space-md);
  }

  .site-header {
    top: 0;
    width: 100%;
    min-height: 64px;
    margin-top: 0;
    border-radius: 0;
    padding: var(--space-xs) var(--space-sm);
  }

  .brand img {
    width: 70px;
  }

  .header-cta {
    width: 100%;
    padding-inline: var(--space-sm);
    font-size: 13px;
  }

  .hero {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    gap: var(--space-md);
    justify-items: center;
    padding: 82px var(--space-md) var(--space-md);
    border-radius: 0;
    text-align: center;
  }

  .hero-copy,
  .company-card {
    width: min(342px, calc(100vw - 32px));
    max-width: min(342px, calc(100vw - 32px));
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-copy .badge {
    justify-content: center;
    max-width: 100%;
    padding: 6px 10px;
    font-size: 9px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 15.5px;
    line-height: 1.48;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-actions .btn {
    width: auto;
  }

  .hero-actions {
    justify-content: center;
    margin-top: var(--space-sm);
  }

  .hero-actions small {
    width: 100%;
    text-align: center;
  }

  .company-card {
    border-radius: var(--radius-card);
    background: var(--p-ink-900);
  }

  .company-card img {
    aspect-ratio: 1.08 / 1;
    object-position: 43% 45%;
    border-radius: var(--radius-card);
  }

  .company-card div {
    display: none;
  }

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

  .section {
    padding-block: var(--space-xl);
  }

  .section-heading h2,
  .local-copy h2,
  .final-inner h2 {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .section-heading p,
  .local-copy p,
  .final-inner p,
  .steps-copy p {
    font-size: 15px;
    line-height: 1.52;
  }

  .product-card img {
    height: 100%;
    padding: var(--space-md) var(--space-md) var(--space-sm);
  }

  .product-card {
    width: 222px;
    flex-basis: 222px;
    grid-template-rows: 214px 88px;
  }

  .product-card h3 {
    min-height: 88px;
    font-size: 16px;
    line-height: 1.16;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}



