:root {
  --ink: #07111f;
  --ink-soft: #39485d;
  --muted: #66748a;
  --line: rgba(7, 17, 31, 0.12);
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --surface-3: #e9eef5;
  --blue: #1473e6;
  --cyan: #00e5ef;
  --green: #25a46f;
  --violet: #635bff;
  --dark: #07111f;
  --dark-2: #101b2d;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(7, 17, 31, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 16px 24px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 17, 31, 0.58);
  color: #fff;
  backdrop-filter: blur(20px);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(7, 17, 31, 0.12);
  box-shadow: 0 16px 50px rgba(7, 17, 31, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  font-weight: 700;
}

.brand img {
  width: 156px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}

.site-header:not(.scrolled) .brand img {
  filter: drop-shadow(0 0 16px rgba(0, 229, 239, 0.18));
}

.brand-mark {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 70% 22%, #fff 0 3px, transparent 4px),
    linear-gradient(135deg, var(--blue), var(--cyan) 48%, var(--green));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: currentColor;
  font-size: 0.9rem;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  background: #fff;
  color: var(--ink);
}

.site-header.scrolled .header-cta {
  background: var(--ink);
  color: #fff;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), #0aa1c4);
  color: #fff;
  box-shadow: 0 14px 34px rgba(20, 115, 230, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.button.secondary.light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 24, 0.92), rgba(3, 8, 24, 0.72) 38%, rgba(3, 8, 24, 0.16)),
    linear-gradient(0deg, rgba(3, 8, 24, 0.96), rgba(3, 8, 24, 0.06) 48%, rgba(3, 8, 24, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 170px 0 64px;
}

.hero-logo {
  width: min(280px, 72vw);
  margin: 0 0 28px;
  filter: drop-shadow(0 0 30px rgba(0, 229, 239, 0.2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 7.5vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  line-height: 1.6;
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.proof-row span,
.keyword-cloud span,
.contact-points span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #fff;
}

.metrics-band div {
  min-height: 124px;
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

.metrics-band span {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 44px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro-grid,
.industry-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.6fr) minmax(220px, 0.6fr);
  gap: 14px;
  margin-top: 18px;
}

.photo-proof {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.photo-proof.large {
  min-height: 510px;
}

.photo-proof img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.photo-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 8, 24, 0.78), rgba(3, 8, 24, 0.04) 58%);
}

.photo-proof figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  color: #fff;
}

.photo-proof strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.photo-proof span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.intro-grid article,
.industry-grid article,
.case-grid article,
.calculator,
.resource-list article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.intro-grid article {
  min-height: 260px;
  padding: 28px;
}

.mini-label,
.timeline span,
.resource-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.solutions-section,
.method-section,
.seo-section {
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--surface-2);
}

.solution-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
}

.tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.solution-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.solution-copy {
  min-height: 530px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}

.solution-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.solution-copy p,
.solution-copy li {
  color: rgba(255, 255, 255, 0.72);
}

.solution-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding-left: 19px;
}

.network-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 229, 239, 0.18), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(20, 115, 230, 0.28), transparent 28%),
    linear-gradient(140deg, #030818, #07111f 52%, #061d30);
  box-shadow: var(--shadow);
}

.network-panel canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.core-node {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
  font-weight: 700;
}

.core-node {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  width: 170px;
  padding: 17px 14px 15px;
  background: rgba(20, 115, 230, 0.18);
  box-shadow: 0 0 80px rgba(0, 229, 239, 0.18);
  text-align: center;
}

.core-node img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 24px rgba(0, 229, 239, 0.42));
}

.core-node span {
  display: block;
  font-size: 1rem;
}

.core-node small,
.core-capability small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  line-height: 1.32;
}

.core-capability {
  position: absolute;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  width: 218px;
  padding: 10px;
  border: 1px solid rgba(0, 229, 239, 0.22);
  border-radius: 8px;
  background: rgba(4, 12, 30, 0.62);
  color: #fff;
  backdrop-filter: blur(16px);
}

.line-icon {
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 229, 239, 0.45);
  border-radius: 8px;
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 900;
}

.core-capability strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.84rem;
}

.cap-a {
  top: 26px;
  right: 30px;
}

.cap-b {
  top: 124px;
  right: 38px;
}

.cap-c {
  top: 48px;
  left: 30px;
}

.cap-d {
  bottom: 128px;
  left: 34px;
}

.cap-e {
  bottom: 66px;
  right: 30px;
}

.cap-f {
  bottom: 28px;
  left: 34%;
}

.industry-grid {
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
  padding-bottom: 0;
}

.industry-grid article {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  color: #fff;
}

.industry-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 8, 24, 0.94), rgba(3, 8, 24, 0.24) 60%, rgba(3, 8, 24, 0.08));
}

.industry-grid img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.industry-grid article:hover img {
  transform: scale(1.035);
}

.industry-grid h3,
.industry-grid p,
.industry-grid a,
.industry-grid ul,
.industry-icon {
  position: absolute;
  z-index: 1;
}

.industry-icon {
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
}

.industry-grid h3 {
  left: 22px;
  right: 22px;
  bottom: 166px;
  margin: 0;
  font-size: 1.55rem;
}

.industry-grid p {
  left: 22px;
  right: 22px;
  bottom: 88px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.48;
}

.industry-grid ul {
  left: 22px;
  right: 22px;
  bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industry-grid li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
}

.industry-grid a {
  left: 22px;
  bottom: 18px;
  color: var(--blue);
  font-weight: 800;
}

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

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

.calculators-section {
  padding-bottom: 72px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.calculator {
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(7, 17, 31, 0.08);
}

.calculator label,
.quote-form label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.calculator input,
.calculator select,
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.quote-form textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

.calculator input:focus,
.calculator select:focus,
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(20, 115, 230, 0.7);
  box-shadow: 0 0 0 4px rgba(20, 115, 230, 0.1);
}

.result {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.result span {
  color: rgba(255, 255, 255, 0.68);
}

.result strong {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0;
}

.calculator-note {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
}

.resources-section {
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--dark);
  color: #fff;
}

.resources-section .section-heading h2,
.resources-section .section-heading p {
  color: #fff;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.resource-list article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.resource-list p {
  color: rgba(255, 255, 255, 0.68);
}

.case-grid article {
  overflow: hidden;
  min-height: 320px;
  padding: 0 0 30px;
  background:
    linear-gradient(180deg, #fff, #f7faff);
}

.case-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-bottom: 26px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.article-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.article-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.case-type {
  margin: 0 30px 18px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.case-grid h3,
.case-grid p:not(.case-type) {
  margin-left: 30px;
  margin-right: 30px;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 34px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 540px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-points span {
  color: var(--ink);
  background: var(--surface-2);
  border-color: var(--line);
}

.quote-form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-form .button {
  width: 100%;
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.quote-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 46px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink-soft);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 1px;
  min-width: 172px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 164, 111, 0.96), rgba(0, 229, 239, 0.9));
  color: #fff;
  box-shadow: 0 18px 54px rgba(7, 17, 31, 0.22);
  backdrop-filter: blur(16px);
}

.whatsapp-float span {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-float strong {
  font-size: 1rem;
}

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

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

  .menu-button {
    display: inline-block;
    justify-self: end;
  }

  .nav,
  .header-cta {
    display: none;
  }

  body.menu-open .nav {
    position: fixed;
    inset: 76px 24px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav a {
    padding: 13px 10px;
  }

  .metrics-band,
  .intro-grid,
  .photo-proof-grid,
  .timeline,
  .calculator-grid,
  .resource-list,
  .article-grid,
  .case-grid,
  .contact-section,
  .section-heading.split,
  .solution-stage {
    grid-template-columns: 1fr;
  }

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

  .network-panel,
  .solution-copy {
    min-height: 640px;
  }

  .core-capability {
    width: min(214px, 42vw);
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 10px 12px auto;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content,
  .section,
  .contact-section {
    width: min(100% - 28px, var(--max));
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.9rem);
  }

  .brand img {
    width: 132px;
  }

  .hero-logo {
    width: 210px;
  }

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

  .metrics-band {
    grid-template-columns: 1fr;
  }

  .section,
  .solutions-section,
  .method-section,
  .resources-section,
  .seo-section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .solution-copy,
  .calculator,
  .quote-form {
    padding: 22px;
  }

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

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .network-panel {
    min-height: 800px;
  }

  .core-node {
    top: 46%;
    width: 158px;
  }

  .core-capability {
    width: calc(100% - 32px);
    left: 16px;
    right: auto;
  }

  .cap-a { top: 18px; }
  .cap-b { top: 104px; }
  .cap-c { top: 190px; }
  .cap-d { bottom: 190px; }
  .cap-e { bottom: 104px; }
  .cap-f { bottom: 18px; }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: start;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 152px;
    padding: 11px 13px;
  }
}
