/* =====================================================================
   Finazir — Components: header, hero, footer, sections, forms, marquee
   ===================================================================== */

/* ---- Announcement bar ---------------------------------------------- */
.topbar {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  min-height: 38px;
}
.topbar a {
  color: #fff;
  font-weight: 600;
}
.topbar__meta {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
@media (max-width: 720px) {
  .topbar__meta span {
    display: none;
  }
}

/* ---- Header / nav --------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--c-surface) 82%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow 0.3s, background 0.3s;
}
.header.scrolled {
  box-shadow: var(--sh-md);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--sh-blue);
}
.brand__logo {
  height: 52px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
}
@media (max-width: 600px) {
  .brand__logo {
    height: 44px;
    max-width: 170px;
  }
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__link {
  position: relative;
  padding: 0.6rem 0.9rem;
  font-weight: 550;
  font-size: 0.96rem;
  color: var(--c-text-soft);
  border-radius: var(--r-sm);
  transition: color 0.25s, background 0.25s;
}
.nav__link:hover {
  color: var(--c-text);
  background: var(--c-surface-2);
}
.nav__item {
  position: relative;
}
.nav__item.has-mega > .nav__link::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.theme-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-line);
  color: var(--c-text);
  background: var(--c-surface);
  transition: background 0.25s, transform 0.3s;
}
.theme-toggle:hover {
  background: var(--c-surface-2);
  transform: translateY(-1px);
}
.theme-toggle svg {
  width: 20px;
  height: 20px;
}
.theme-toggle .ico-moon {
  display: none;
}
[data-theme="dark"] .theme-toggle .ico-sun {
  display: none;
}
[data-theme="dark"] .theme-toggle .ico-moon {
  display: block;
}

/* Mega menu */
.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: translateY(10px);
  width: min(920px, 92vw);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 120;
  max-height: calc(100vh - var(--nav-h) - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav__item.has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 1.5rem;
}
.mega__col h5 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-mute);
  margin: 0.5rem 0 0.4rem;
  font-family: var(--f-sans);
  font-weight: 700;
}
.mega__link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--c-text-soft);
  transition: background 0.2s, color 0.2s;
}
.mega__link:hover {
  background: var(--c-surface-2);
  color: var(--c-blue);
}
.mega__cta {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Mobile nav */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-line);
  color: var(--c-text);
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
}
.nav__toggle span::before {
  position: absolute;
  top: -6px;
}
.nav__toggle span::after {
  position: absolute;
  top: 6px;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-surface);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  overflow-y: auto;
}
.mobile-nav.open {
  transform: none;
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
}
.m-acc {
  border-bottom: 1px solid var(--c-line);
}
.m-acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0.25rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-text);
}
.m-acc__panel {
  display: none;
  padding-bottom: 0.75rem;
  padding-left: 0.5rem;
}
.m-acc.open .m-acc__panel {
  display: block;
}
.m-acc__panel a {
  display: block;
  padding: 0.55rem 0.25rem;
  color: var(--c-text-soft);
  font-size: 0.95rem;
}
@media (max-width: 1024px) {
  .nav__menu,
  .nav__actions .btn {
    display: none;
  }
  .nav__toggle {
    display: grid;
  }
}

/* ---- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-ink);
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1200px 600px at 75% -10%, rgba(var(--c-blue-rgb), 0.35), transparent 60%),
              linear-gradient(180deg, rgba(10, 10, 11, 0.5), rgba(10, 10, 11, 0.92));
}
.hero__inner {
  padding-block: clamp(4rem, 10vw, 7.5rem);
  max-width: 820px;
}
.hero .eyebrow {
  color: var(--c-blue-400);
}
.hero h1 {
  color: #fff;
  margin: 1.2rem 0 1.4rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero__stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__stat span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(rgba(255, 255, 255, 0.6), transparent);
  animation: scrollpulse 2s var(--ease) infinite;
}
@keyframes scrollpulse {
  0% {
    transform: scaleY(0.3);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

/* ---- Logo marquee --------------------------------------------------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-text-mute);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.75;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---- Stats band ----------------------------------------------------- */
.statband {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.statband__cell {
  background: var(--c-surface);
  padding: 2rem 1.5rem;
  text-align: center;
}
.statband__num {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.statband__label {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--c-text-soft);
  font-weight: 500;
}

/* ---- Process / steps ------------------------------------------------ */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}
.step {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding: 1.6rem;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.step:hover {
  transform: translateX(6px);
  box-shadow: var(--sh-md);
}
.step__n {
  counter-increment: step;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--c-ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.step__n::before {
  content: counter(step, decimal-leading-zero);
}
.step h4 {
  margin-bottom: 0.35rem;
}
.step p {
  font-size: 0.94rem;
}

/* ---- Split feature -------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.rev {
  direction: rtl;
}
.split.rev > * {
  direction: ltr;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
  background: var(--c-surface-3);
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checklist {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--c-text-soft);
}
.checklist svg {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--c-blue);
  margin-top: 1px;
}

/* ---- Testimonials --------------------------------------------------- */
.tcard {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.tcard__stars {
  display: flex;
  gap: 0.2rem;
  color: #f5a623;
}
.tcard__stars svg {
  width: 18px;
  height: 18px;
}
.tcard__quote {
  font-size: 1.02rem;
  color: var(--c-text);
  line-height: 1.6;
}
.tcard__who {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}
.tcard__av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--f-display);
}
.tcard__name {
  font-weight: 700;
  color: var(--c-text);
  font-size: 0.96rem;
}
.tcard__role {
  font-size: 0.82rem;
  color: var(--c-text-mute);
}

/* ---- FAQ / accordion ------------------------------------------------ */
.faq {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
}
.faq__item + .faq__item {
  border-top: 1px solid var(--c-line);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.35rem 1.5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--c-text);
}
.faq__q:hover {
  color: var(--c-blue);
}
.faq__ico {
  flex: none;
  width: 26px;
  height: 26px;
  position: relative;
}
.faq__ico::before,
.faq__ico::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
  border-radius: 2px;
}
.faq__ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.open .faq__ico::after {
  transform: translate(-50%, -50%) rotate(0);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__a-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--c-text-soft);
  font-size: 0.98rem;
}

/* ---- Marquee countries chips --------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: transform 0.3s, border-color 0.3s;
}
.chip:hover {
  transform: translateY(-2px);
  border-color: var(--c-blue);
  color: var(--c-blue);
}

/* ---- Associations / memberships row -------------------------------- */
.assoc-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.assoc-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0.85;
}
.assoc-item:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.assoc-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  transition: filter 0.3s;
}
.assoc-item:hover .assoc-logo {
  filter: grayscale(0);
}
.assoc-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-text-soft);
}

/* ---- CTA band ------------------------------------------------------- */
.ctaband {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-ink);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  isolation: isolate;
}
.ctaband::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(800px 400px at 85% 20%, rgba(var(--c-blue-rgb), 0.4), transparent 60%);
}
.ctaband h2 {
  color: #fff;
}
.ctaband p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Forms ---------------------------------------------------------- */
.form {
  display: grid;
  gap: 1.1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-text);
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  background: var(--c-surface);
  color: var(--c-text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(var(--c-blue-rgb), 0.12);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-note {
  font-size: 0.82rem;
  color: var(--c-text-mute);
}
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: 0.94rem;
  font-weight: 500;
}
.alert-ok {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.25);
}
.alert-err {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.25);
}

/* ---- Product detail ------------------------------------------------- */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 900px) {
  .pdp {
    grid-template-columns: 1fr;
  }
}
.gallery__main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--c-surface-3);
  box-shadow: var(--sh-md);
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.gallery__thumb {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid var(--c-line);
  cursor: pointer;
  transition: border-color 0.25s;
}
.gallery__thumb.active,
.gallery__thumb:hover {
  border-color: var(--c-blue);
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--c-line);
}
.spec-table th {
  width: 38%;
  color: var(--c-text-mute);
  font-weight: 600;
  background: var(--c-surface-2);
}
.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: none;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

/* ---- Page hero (inner) ---------------------------------------------- */
.phero {
  background: var(--grad-ink);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(900px 400px at 80% 0%, rgba(var(--c-blue-rgb), 0.32), transparent 60%);
}
.phero h1 {
  color: #fff;
  margin-top: 0.75rem;
}
.phero p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1rem;
  max-width: 60ch;
}
.phero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
}
.phero .breadcrumbs [aria-current] {
  color: #fff;
}
.phero .breadcrumbs li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Rich content --------------------------------------------------- */
.prose {
  max-width: 74ch;
}
.prose h2 {
  margin: 2.2rem 0 1rem;
}
.prose h3 {
  margin: 1.8rem 0 0.75rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: var(--c-text-soft);
  font-size: 1.03rem;
}
.prose ul,
.prose ol {
  margin: 0 0 1.2rem 1.2rem;
  display: grid;
  gap: 0.5rem;
}
.prose ul li {
  list-style: disc;
  color: var(--c-text-soft);
}
.prose ol li {
  list-style: decimal;
  color: var(--c-text-soft);
}
.prose a {
  color: var(--c-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose blockquote {
  border-left: 3px solid var(--c-blue);
  padding-left: 1.25rem;
  font-size: 1.1rem;
  color: var(--c-text);
  margin: 1.5rem 0;
}

/* ---- Footer --------------------------------------------------------- */
.footer {
  background: var(--c-ink);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
}
.footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s;
}
.footer a:hover {
  color: #fff;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand .brand {
  color: #fff;
  margin-bottom: 1rem;
}
.footer__desc {
  font-size: 0.92rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.6);
}
.footer h5 {
  color: #fff;
  font-family: var(--f-display);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.footer__links {
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__social a:hover {
  background: var(--c-blue);
  border-color: transparent;
}
.footer__social svg {
  width: 18px;
  height: 18px;
}
.footer__bottom {
  margin-top: 3rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.newsletter input {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Floating actions ---------------------------------------------- */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fab a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-lg);
  transition: transform 0.3s;
}
.fab a:hover {
  transform: scale(1.08);
}
.fab__wa {
  background: #25d366;
  color: #fff;
}
.fab__wa svg {
  width: 30px;
  height: 30px;
}
.fab__top {
  background: var(--c-ink);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.fab__top.show {
  opacity: 1;
  pointer-events: auto;
}
.fab__top svg {
  width: 22px;
  height: 22px;
}