@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Outfit:wght@600;700;800&display=swap");

:root {
  --ink: #0a0f1e;
  --ink-2: #172033;
  --muted: #667085;
  --muted-2: #94a3b8;
  --line: #d9e0ea;
  --soft-line: #edf1f6;
  --paper: #ffffff;
  --soft: #f8f9fc;
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --teal: #0f766e;
  --amber: #b7791f;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Figtree, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 234, 0.86);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.has-dark-hero .site-header:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(217, 224, 234, 0.86);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  white-space: nowrap;
}

.brand-logo {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.has-dark-hero .site-header:not(.is-scrolled) .brand,
.has-dark-hero .site-header:not(.is-scrolled) .nav-link,
.has-dark-hero .site-header:not(.is-scrolled) .menu-toggle {
  color: var(--ink-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 650;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.has-dark-hero .site-header:not(.is-scrolled) .menu-toggle {
  background: #ffffff;
  border-color: var(--line);
}

.button {
  min-height: 44px;
  border-radius: 7px;
  padding: 0 18px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #ffffff;
  background: var(--blue);
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.button:hover {
  background: var(--blue-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.button:disabled {
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.button-outline {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-outline:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.button-light {
  color: var(--ink);
  background: #ffffff;
}

.button-light:hover {
  color: #ffffff;
}

.button-ghost {
  color: var(--blue);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  color: #ffffff;
  border-color: var(--blue-2);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: #ffffff;
  background: var(--ink);
}

.section-head {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: Outfit, Figtree, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: inherit;
  line-height: 1.08;
  font-weight: 820;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: 4rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

h4 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-dark .lead,
.hero .lead,
.page-hero .lead {
  color: #c6d0df;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 15, 30, 0.96) 0%, rgba(10, 15, 30, 0.84) 42%, rgba(10, 15, 30, 0.34) 72%, rgba(10, 15, 30, 0.12) 100%),
    url("assets/img/agency-analytics-workspace.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 104px 24px 92px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
  color: #d7deea;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.page-hero {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(10, 15, 30, 0.98), rgba(20, 34, 62, 0.96)),
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.22), transparent 32%);
  padding: 104px 0 78px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: 3.35rem;
}

.stats-strip {
  border-bottom: 1px solid var(--soft-line);
  background: var(--soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.stat {
  min-height: 132px;
  padding: 28px;
  background: var(--soft);
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf0ff;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.plain-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  color: var(--ink-2);
  border-bottom: 1px solid var(--soft-line);
}

.check-list li:last-child,
.plain-list li:last-child {
  border-bottom: 0;
}

.check-list i {
  flex: 0 0 auto;
  color: var(--teal);
  margin-top: 3px;
}

.visual-panel {
  min-height: 400px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 15, 30, 0.04), rgba(37, 99, 235, 0.08)),
    #ffffff;
  padding: 28px;
}

.process-board {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #ffffff;
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--ink);
  font-weight: 850;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf0ff;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.badge-amber {
  color: #7c4a03;
  background: #fff6df;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--ink);
}

.price strong {
  font-size: 2rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-card .button {
  margin-top: auto;
  width: 100%;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating {
  color: var(--amber);
  font-weight: 900;
  letter-spacing: 0;
}

.quote {
  color: var(--ink-2);
  font-size: 1.02rem;
}

.quote-name {
  color: var(--ink);
  font-weight: 800;
}

.quote-company {
  color: var(--muted);
}

.cta-band {
  padding: 74px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #14223e);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.cta-inner p {
  max-width: 650px;
  color: #c6d0df;
}

.service-pillar {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 42px 0;
  border-top: 1px solid var(--soft-line);
}

.service-pillar:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.price-note {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}

.pricing-page main {
  background: var(--soft);
}

.pricing-page .section {
  background: var(--soft);
}

.pricing-page .section-light {
  background: #ffffff;
}

.pricing-menu {
  display: grid;
  gap: 26px;
}

.pricing-group {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.pricing-group-head {
  padding: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--soft-line);
}

.pricing-group-head h3 {
  margin-bottom: 6px;
}

.pricing-group-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-inclusions {
  padding: 22px 26px;
  background: var(--soft);
}

.pricing-inclusions ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.pricing-inclusions li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
  font-weight: 650;
}

.pricing-inclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.price-pill {
  min-height: 36px;
  width: fit-content;
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: #eaf0ff;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

caption {
  padding: 18px 20px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 850;
  text-align: left;
}

th,
td {
  padding: 16px 20px;
  border-top: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 0.85rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td:first-child {
  color: var(--ink-2);
  font-weight: 750;
}

.notice {
  padding: 16px 18px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: #f1f5ff;
  font-weight: 700;
}

.mt-22 {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
}

.faq-item summary {
  min-height: 64px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-family: Outfit, Figtree, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf0ff;
  font-family: Figtree, ui-sans-serif, system-ui;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

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

.timeline-step {
  position: relative;
  padding-top: 20px;
  border-top: 3px solid var(--blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 42px;
  align-items: start;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.honeypot-field {
  display: none;
}

label {
  color: var(--ink);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  min-height: 48px;
}

textarea {
  min-height: 146px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.form-status {
  min-height: 24px;
  color: var(--teal);
  font-weight: 800;
}

.contact-card {
  position: sticky;
  top: 96px;
}

.contact-method {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method i {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf0ff;
}

.site-footer {
  color: #dbe4ef;
  background: var(--ink);
}

.site-footer .brand {
  color: #ffffff;
}

.site-footer .brand-logo {
  height: 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 34px;
  padding: 58px 24px 44px;
}

.footer-grid h4 {
  color: #ffffff;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: #b9c4d3;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #aeb9c7;
  font-size: 0.92rem;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a,
.whatsapp-float {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 620px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  min-width: 0;
  color: var(--muted);
  font-size: 0.93rem;
  overflow-wrap: break-word;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
}

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

@media (max-width: 980px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    color: var(--ink-2) !important;
    min-height: 42px;
    border-bottom: 0;
  }

  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .grid-3,
  .grid-4,
  .stats-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .service-pillar,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .visual-panel,
  .contact-card {
    position: static;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-group-head {
    flex-direction: column;
    gap: 14px;
  }

  .price-pill {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .container,
  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .brand-logo {
    height: 34px;
  }

  .hero {
    min-height: 560px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(10, 15, 30, 0.98) 0%, rgba(10, 15, 30, 0.9) 60%, rgba(10, 15, 30, 0.48) 100%),
      url("assets/img/agency-analytics-workspace.png") center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 88px;
    padding-bottom: 70px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .timeline,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 112px;
  }

  .hero-actions,
  .cta-inner,
  .footer-bottom .container {
    align-items: stretch;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-proof {
    display: grid;
    gap: 12px;
  }

  .page-hero {
    padding: 82px 0 62px;
  }

  .footer-bottom .container {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    right: 12px;
    left: 12px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .pricing-inclusions ul {
    grid-template-columns: 1fr;
  }
}
