@font-face {
  font-family: "Helvetica Now Display Local";
  src:
    url("../fonts/helvetica-now-display/HelveticaNowDisplay-Light.woff2") format("woff2"),
    url("../fonts/helvetica-now-display/HelveticaNowDisplay-Light.woff") format("woff"),
    url("../fonts/helvetica-now-display/HelveticaNowDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Now Display Local";
  src:
    url("../fonts/helvetica-now-display/HelveticaNowDisplay-Regular.woff2") format("woff2"),
    url("../fonts/helvetica-now-display/HelveticaNowDisplay-Regular.woff") format("woff"),
    url("../fonts/helvetica-now-display/HelveticaNowDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display Local";
  src: url("../fonts/neue_haas_grotesk_display/NeueHaasGrotDisp-45Light-Trial.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #001324;
  --navy-deep: #07111b;
  --paper: #ebebeb;
  --charcoal: #1c1c1c;
  --white: #f7f8f4;
  --muted-light: rgba(247, 248, 244, 0.72);
  --muted-dark: rgba(0, 19, 36, 0.68);
  --line-light: rgba(247, 248, 244, 0.76);
  --line-dark: rgba(0, 19, 36, 0.32);
  --line-dark-header: rgba(0, 0, 0, 0.88);
  --line-soft: rgba(247, 248, 244, 0.25);
  --section-rule-weight: 0.5px;
  --radius-image: 0.75rem;
  --font-sans: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-lede: "Helvetica Now Display Local", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-accent-haas: "Neue Haas Grotesk Display Local", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --np-grid-columns: 12;
  --np-grid-gutter: 2rem;
  --np-outer-gutter: 3rem;
  --np-desktop-layout-width: 100vw;
  --np-shell-max: calc(var(--np-desktop-layout-width) - (var(--np-outer-gutter) * 2));
  --np-page-band-scale: 1;

  --np-space-0: 0;
  --np-space-1: 0.25rem;
  --np-space-2: 0.5rem;
  --np-space-3: 0.75rem;
  --np-space-4: 1rem;
  --np-space-5: 1.5rem;
  --np-space-6: 2rem;
  --np-space-7: 3rem;
  --np-space-8: 4rem;
  --np-space-9: 6rem;
  --np-space-10: 8rem;

  --np-section-y-sm: 4rem;
  --np-section-y-md: 6rem;
  --np-section-y-lg: 8rem;

  --measure-display-wide: 70rem;
  --measure-display: 60rem;
  --measure-display-narrow: 47.5rem;
  --measure-lede: 45rem;
  --measure-lede-narrow: 35rem;
  --measure-body: 32.5rem;
  --measure-body-narrow: 23.75rem;
  --measure-body-tight: 20rem;

  --container-x: var(--np-outer-gutter);
  --grid-gap: var(--np-grid-gutter);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
  font-size: calc(16px * var(--np-page-band-scale));
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 5px 5px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-arrow-text {
  position: relative;
  z-index: 2;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-arrow-circle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-arrow-circle svg {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-arrow::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transform: translateY(-50%) scale(1);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.btn-arrow-light {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.btn-arrow-light .btn-arrow-circle,
.btn-arrow-light::before {
  background-color: #ffffff;
  color: #1a1a1a;
}

.btn-arrow-light:hover {
  border-color: #ffffff;
  color: #1a1a1a;
}

.btn-arrow-light:hover::before {
  transform: translateY(-50%) scale(20);
}

.btn-arrow-light:hover .btn-arrow-circle {
  background-color: #1a1a1a;
  color: #ffffff;
}

.btn-arrow-dark {
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
}

.btn-arrow-dark .btn-arrow-circle,
.btn-arrow-dark::before {
  background-color: #1a1a1a;
  color: #ffffff;
}

.btn-arrow-dark:hover {
  border-color: #1a1a1a;
  color: #ffffff;
}

.btn-arrow-dark:hover::before {
  transform: translateY(-50%) scale(20);
}

.btn-arrow-dark:hover .btn-arrow-circle {
  background-color: #ffffff;
  color: #1a1a1a;
}

.services-label,
.reach-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.services-label-icon,
.reach-label-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.services-label span,
.reach-label span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  text-transform: uppercase;
}

.services-title,
.reach-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
}

.team-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.team-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.team-arrow svg {
  width: 18px;
  height: 18px;
}

.process-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.honeypot,
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width,
.form-group.contact-form-actions {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.4em;
}

.whatsapp-fab {
  position: fixed;
  right: max(var(--container-x), env(safe-area-inset-right));
  bottom: max(var(--np-space-5), env(safe-area-inset-bottom));
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.25rem, 4.2vw, 3.75rem);
  height: clamp(3.25rem, 4.2vw, 3.75rem);
  border: 1px solid rgba(247, 248, 244, 0.92);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 1rem 2.25rem rgba(0, 19, 36, 0.2);
  color: #ffffff;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: #1fbd5a;
  transform: translateY(-0.125rem);
  box-shadow: 0 1.2rem 2.6rem rgba(0, 19, 36, 0.26);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid rgba(247, 248, 244, 0.9);
  outline-offset: 3px;
}

.whatsapp-fab-icon {
  display: block;
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.whatsapp-fab-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 768px) {
  :root {
    --container-x: 0.95rem;
  }

  .btn-arrow {
    padding: 5px 5px 5px 20px;
    font-size: 14px;
    gap: 10px;
  }

  .btn-arrow-circle,
  .btn-arrow::before {
    width: 30px;
    height: 30px;
  }

  .btn-arrow-circle svg {
    width: 15px;
    height: 15px;
  }

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

@media (max-width: 480px) {
  .btn-arrow {
    padding: 4px 4px 4px 18px;
    font-size: 13px;
    gap: 9px;
  }

  .btn-arrow-circle,
  .btn-arrow::before {
    width: 28px;
    height: 28px;
  }

  .btn-arrow::before {
    right: 4px;
  }

  .btn-arrow-circle svg {
    width: 12px;
    height: 12px;
  }
}

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