/* Naume Tech — single-page site styles
   Warm cream palette, green accent used sparingly */

:root {
  --bg-page: #faf7f2;
  --bg-white: #ffffff;
  --bg-muted: #f0ebe3;
  --bg-card: #ebe6dd;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --accent: #1b5e20;
  --accent-hover: #154a19;
  --border: rgba(26, 26, 26, 0.08);
  --shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
  --shadow-hover: 0 12px 32px rgba(26, 26, 26, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:
    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  /* Header/bar height tracks the larger logo + vertical padding */
  --header-h: clamp(5.5rem, 9vw, 7.5rem);
  --header-logo-h: clamp(4.25rem, 8vw, 6.75rem); /* ~68px–108px */
  --header-logo-w: clamp(14rem, 38vw, 26rem);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.5rem);
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--bg-white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo-link:hover {
  color: var(--text);
}

.logo-img {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

/* Navbar logo — height-led sizing, cream background matches header */
.site-header .logo-link {
  flex: 0 1 auto;
  min-width: 0;
  background: var(--bg-page);
}

.site-header .logo-img {
  width: var(--header-logo-w);
  height: auto;
  max-height: var(--header-logo-h);
  max-width: min(26rem, 78vw);
  object-fit: contain;
  object-position: left center;
  image-rendering: high-quality;
}

.footer-brand .logo-img {
  height: 3.75rem;
  width: auto;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  white-space: nowrap;
}

.nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.nav-list a:hover::after,
.nav-list a[aria-current='page']::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

.btn-primary:focus-visible {
  outline-color: var(--accent);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text) !important;
  border: 1px solid var(--border);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text) !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin-inline: auto;
  transition:
    transform 0.2s var(--ease),
    opacity 0.2s;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.nav-mobile .nav-list li {
  border-bottom: 1px solid var(--border);
}

.nav-mobile .nav-list a {
  display: block;
  padding: 0.85rem 0;
}

.nav-mobile .btn-primary {
  margin-top: 1rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .site-header {
    --header-logo-w: clamp(12rem, 22vw, 26rem);
  }

  .nav-desktop {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-desktop .nav-list {
    flex-wrap: nowrap;
    gap: 1.35rem;
  }

  .nav-desktop .nav-list li {
    flex-shrink: 0;
  }

  .nav-desktop .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.7rem 1.15rem;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .site-header {
    --header-logo-w: clamp(14rem, 38vw, 26rem);
  }

  .nav-desktop {
    gap: 2rem;
  }

  .nav-desktop .nav-list {
    gap: 1.75rem;
  }

  .nav-desktop .btn-primary {
    padding: 0.75rem 1.35rem;
    font-size: 0.95rem;
  }
}

/* —— Typography —— */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 1rem;
  color: var(--text);
}

.section-intro {
  max-width: 42rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.section-intro.section-intro--tight {
  margin-top: -0.75rem;
  margin-bottom: 2rem;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

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

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding-block: 3rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-muted)
    url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=75')
    center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250, 247, 242, 0.94) 0%,
    rgba(250, 247, 242, 0.82) 42%,
    rgba(250, 247, 242, 0.35) 100%
  );
}

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

.hero-content {
  max-width: 36rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  margin: 0 0 1rem;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Sections —— */
section {
  padding-block: 4.5rem;
}

.section-alt {
  background: var(--bg-muted);
}

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

/* —— Cards grid —— */
.grid-services {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .grid-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .grid-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* —— Why us —— */
.grid-why {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .grid-why {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid-why {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.why-card:hover {
  border-color: rgba(27, 94, 32, 0.25);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.85rem;
  color: var(--accent);
}

.why-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* —— Apps in progress —— */
.app-showcase-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .app-showcase-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.app-showcase-card {
  display: grid;
  gap: 0;
  max-width: 920px;
  margin-inline: auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.app-showcase-grid .app-showcase-card {
  max-width: none;
  margin-inline: 0;
}

@media (min-width: 800px) {
  .app-showcase-card:not(.app-showcase-card--vhona):not(
      .app-showcase-card--brand
    ) {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
  }
}

/* Vhona & Mbokoto: full-width visual on top, title + copy + progress below */
.app-showcase-card--vhona,
.app-showcase-card--brand {
  grid-template-columns: 1fr;
}

.app-showcase-media {
  background: var(--bg-muted);
  min-height: 200px;
}

.app-showcase-media:not(.app-showcase-media--brand):not(
    .app-showcase-media--fullshot
  )
  img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.app-showcase-media--fullshot {
  min-height: 0;
}

.app-showcase-media--fullshot img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.app-showcase-media--brand {
  display: block;
  padding: clamp(1rem, 3vw, 1.75rem) clamp(1rem, 4vw, 2rem);
  min-height: 0;
  height: auto;
  background: linear-gradient(160deg, #f3efe8 0%, #ebe6dd 45%, #e8e2d8 100%);
  border-bottom: 1px solid var(--border);
}

.app-showcase-brand-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
}

.app-showcase-brand-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: min(220px, 32vh);
  object-fit: contain;
  object-position: center;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  filter: drop-shadow(0 2px 12px rgba(26, 26, 26, 0.06));
}

.app-showcase-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.app-showcase-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0;
  color: var(--text);
}

.app-showcase-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.app-progress-wrap {
  margin-top: 0.35rem;
}

.app-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.app-progress-pct {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.app-progress-track {
  height: 10px;
  background: var(--bg-muted);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.app-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.5s var(--ease);
}

/* —— Clients —— */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.client-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.85rem 0.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  filter: grayscale(1);
  transition:
    filter 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.client-slot .client-logo {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.client-logo[alt='Physiocare'] {
  max-height: 58px;
}

.client-slot:hover,
.client-slot:focus-within {
  filter: grayscale(0);
  border-color: rgba(27, 94, 32, 0.35);
}

/* —— CTA banner —— */
.cta-banner {
  background: linear-gradient(135deg, #ebe6dd 0%, #f5f0e8 50%, #ebe6dd 100%);
  border-block: 1px solid var(--border);
  padding-block: 3.5rem;
}

.cta-inner {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 0.75rem;
}

.cta-inner > p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn-phone {
  font-variant-numeric: tabular-nums;
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-details {
  background: var(--bg-muted);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.contact-details h3 {
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-list strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-list a {
  font-weight: 600;
}

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-page);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(27, 94, 32, 0.1);
  color: var(--accent-hover);
  border: 1px solid rgba(27, 94, 32, 0.25);
}

.form-status.is-error {
  display: block;
  background: rgba(180, 40, 40, 0.08);
  color: #8b1a1a;
  border: 1px solid rgba(180, 40, 40, 0.2);
}

/* —— Footer —— */
.site-footer {
  background: var(--text);
  color: #e8e4dc;
  padding-block: 3rem 2rem;
}

.site-footer a {
  color: #c8e6c9;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #b8b4ac;
  max-width: 22rem;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s var(--ease);
}

.social-row a:hover {
  background: var(--accent);
}

.social-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
  shape-rendering: geometricPrecision;
}

.social-row .social-icon--linkedin {
  width: 21px;
  height: 21px;
}

.social-row .social-icon--tiktok {
  width: 18px;
  height: 21px;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #9a9690;
  text-align: center;
}

/* —— Floating buttons —— */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 960px) {
  .whatsapp-float {
    bottom: 1.75rem;
    right: 1.75rem;
  }
  .scroll-top {
    bottom: 1.75rem;
    right: 5.5rem;
  }
}
