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

:root {
  --blue: #005aaa;
  --blue2: #004a8f;
  --blue3: #003870;
  --green: #82be3c;
  --green2: #6aaa28;
  --wa: #25D366;
  --white: #ffffff;
  --light: #f2f6fb;
  --mid: #dae5f2;
  --text: #1a2a3a;
  --muted: #4f6a84;
  --card-shadow: 0 4px 24px rgba(0, 90, 170, 0.10);
}

/* --- CTA & FORM UPDATES (PRIORITY) --- */
.cta-section .u-inline-600 {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
  text-align: left !important;
}

.cta-section .cta-content {
  text-align: left !important;
}

.cta-section .cta-content p {
  margin-left: 0 !important;
}

.cta-section .cta-btns {
  justify-content: flex-start !important;
}

.cta-section .u-inline-020 {
  justify-content: flex-start !important;
}

.proposal_form_container {
  background: #ffffff !important;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  color: #1a2a3a !important;
  text-align: left !important;
}

.proposal_form_header h3 {
  color: #003870 !important;
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center !important;
}

.proposal_form_header h3 span {
  color: #005aaa !important;
}

.proposal_form_container .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dae5f2 !important;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  background-color: #ffffff !important;
  color: #1a2a3a !important;
}

.proposal_form_container .row {
  display: flex;
  gap: 12px;
}

.proposal_form_container .col-md-6 {
  flex: 1;
}

.proposal_form_container .col-md-12 {
  flex: 0 0 100%;
}

.btnSubmit {
  width: 100%;
  background: #6aaa28 !important;
  color: #ffffff !important;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.btnSubmit:hover {
  background: #82be3c !important;
}

@media (max-width: 960px) {
  .cta-section .u-inline-600 {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .cta-section .cta-content {
    text-align: center !important;
  }

  .cta-section .cta-content p {
    margin: 0 auto 36px !important;
  }

  .cta-section .cta-btns {
    justify-content: center !important;
  }

  .cta-section .u-inline-020 {
    justify-content: center !important;
  }
}

@media (max-width: 600px) {
  .proposal_form_container .row {
    flex-direction: column;
    gap: 0;
  }
}

/* --- END PRIORITY UPDATES --- */


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.ico {
  margin-right: 8px;
}

i.fa-solid,
i.fa-regular,
i.fa-brands {
  line-height: 1;
}

/* ICON COLORS (match card themes) */
.topbar i {
  color: var(--green);
}

.ind-icon i {
  color: var(--green);
}

.ind-card:hover .ind-icon i {
  color: #d6ff9a;
}

.metric-icon i {
  color: var(--blue);
}

.addon-title i {
  color: var(--green);
}

.pkg-timeline i {
  color: var(--blue);
}

.sla-title i {
  color: var(--blue);
}

.sla-title .fa-circle-check {
  color: var(--green);
}

.incl-title i {
  color: currentColor;
}

.cta-section .cta-btns a i {
  color: currentColor;
}

.cta-section .cta-btns a .fa-whatsapp {
  color: var(--wa);
}

.footer-contact a i {
  color: var(--green);
  width: 16px;
  text-align: center;
}

/* TOP BAR */
.topbar {
  background: var(--blue3);
  color: #a8c8e8;
  font-size: 13px;
  padding: 8px 0;
}

.topbar .wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: #a8c8e8;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--green);
}

/* NAVBAR */
nav {
  background: var(--white);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
}

nav .wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
}

.brand img {
  height: 36px;
  width: auto;
  max-width: 100%;
  display: block;
}

.brand-name {
  font-family: Roboto, sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  letter-spacing: 2px;
}

.brand-name span {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-cta:hover {
  background: var(--green2);
}

.nav-cta i {
  margin-left: 0;
}

/* HERO */
.hero {
  background-color: var(--blue3);
  background-image:
    linear-gradient(140deg, rgba(0, 56, 112, .92) 0%, rgba(0, 90, 170, .84) 55%, rgba(0, 108, 204, .80) 100%),
    url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 90px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 190, 60, .15) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 90, 170, .3) 0%, transparent 70%);
  pointer-events: none;
}

.hero .wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(130, 190, 60, .15);
  border: 1px solid rgba(130, 190, 60, .4);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: Roboto, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  color: #b8d8f0;
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--green2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s, background .2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--green);
  background: rgba(130, 190, 60, .12);
}

.btn-secondary {
  border: 1px solid var(--mid);
  color: var(--blue3);
  background: #fff;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 90, 170, 0.10);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  flex-wrap: wrap;
}

.stat-val {
  font-family: Roboto, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.stat-lbl {
  font-size: 13px;
  color: #a0c4e0;
  margin-top: 4px;
}

/* hero card */
.hero-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero-card h3 {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.pkg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.pkg-list .price {
  color: var(--green);
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.pkg-list .badge {
  font-size: 10px;
  background: var(--green);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* SECTIONS */
section {
  padding: 72px 24px;
}

.wrap {
  max-width: 1200px;
  margin: auto;
}

.sec-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.sec-title {
  font-family: Roboto, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--blue3);
  line-height: 1.1;
  letter-spacing: -.5px;
}

.sec-title span {
  color: var(--blue);
}

.sec-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 560px;
}

/* PACKAGES */
.packages {
  background: var(--light);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pkg-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  position: relative;
  border-top: 4px solid var(--mid);
  transition: transform .2s, box-shadow .2s;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 90, 170, .16);
}

.pkg-card.featured {
  border-top-color: var(--blue);
}

.featured-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 12px;
  text-transform: uppercase;
}

.pkg-name {
  font-family: Roboto, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue3);
  letter-spacing: .5px;
}

.pkg-tag {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 20px;
}

.pkg-price {
  margin: 20px 0;
}

.pkg-price .amount {
  font-family: Roboto, sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--blue);
}

.pkg-price .suffix {
  font-size: 14px;
  color: var(--muted);
  margin-left: 4px;
}

.pkg-price .setup {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.pkg-divider {
  border: none;
  border-top: 1px solid var(--mid);
  margin: 20px 0;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pkg-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkg-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-timeline {
  font-size: 12px;
  color: var(--muted);
  background: var(--light);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid var(--mid);
}

.pkg-btn {
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff;
  padding: 13px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .4px;
  transition: background .2s;
}

.pkg-btn:hover {
  background: var(--green);
}

.pkg-card.featured .pkg-btn {
  background: var(--green);
}

.pkg-card.featured .pkg-btn:hover {
  background: var(--green2);
}

/* COMPONENTS */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.comp-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  border-left: 4px solid var(--blue);
}

.comp-num {
  font-family: Roboto, sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(0, 90, 170, .1);
  line-height: 1;
  margin-bottom: -10px;
}

.comp-title {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue3);
  margin-bottom: 12px;
}

.comp-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.comp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 12px;
  background: var(--light);
  color: var(--blue);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid var(--mid);
}

/* CLIENTS */
.clients {
  background: var(--white);
}

.client-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 34px;
  align-items: center;
}

.client-list li {
  position: relative;
  height: 72px;
  border: 1px solid var(--mid);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 90, 170, 0.06);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
}

.client-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 90, 170, 0.12);
  border-color: var(--blue);
  background: #ffffff;
}

.client-list img {
  max-width: 88%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  transition: opacity .3s ease, transform .3s ease, filter .3s ease;
  position: absolute;
  inset: 0;
  margin: auto;
}

.client-list img.hidden {
  opacity: 0;
  transform: translateY(6px) scale(.98);
  pointer-events: none;
}

.client-list img.visible {
  opacity: .95;
  transform: none;
}

.client-list li:hover img.visible {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.client-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-reviews i {
  color: #f4b400;
}

/* INDUSTRIES */
.industries {
  background: var(--blue3);
}

.industries .sec-title {
  color: #fff;
}

.industries .sec-title span {
  color: var(--green);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ind-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 28px 24px;
  transition: background .2s, border-color .2s;
}

.ind-card:hover {
  background: rgba(130, 190, 60, .12);
  border-color: rgba(130, 190, 60, .5);
}

.ind-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.ind-name {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.ind-desc {
  font-size: 13px;
  color: #80aacf;
  line-height: 1.6;
}

/* METRICS */
.metrics {
  background: var(--light);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.metric-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border-bottom: 3px solid var(--green);
}

.metric-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.metric-val {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
}

.metric-name {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

/* SUCCESS STORIES */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.story-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  border-top: 4px solid var(--green);
}

.story-industry {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.story-title {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue3);
  margin-bottom: 14px;
}

.story-challenge {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
}

.result-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ADDONS */
.addons {
  background: var(--light);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.addon-card {
  border: 1px solid var(--mid);
  border-radius: 10px;
  padding: 24px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.addon-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0, 90, 170, .12);
}

.addon-title {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue3);
  margin-bottom: 8px;
}

.addon-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.addon-price {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
}

/* TEAM */
.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  background: var(--light);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--mid);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-role {
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--blue3);
  margin-bottom: 8px;
}

.team-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* SLA */
.sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sla-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: var(--card-shadow);
}

.sla-title {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue3);
  margin-bottom: 16px;
}

.sla-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sla-list li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--mid);
}

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

.sla-val {
  color: var(--blue);
  font-weight: 700;
}

/* INCL */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.incl-box {
  border-radius: 10px;
  padding: 28px;
}

.incl-yes {
  background: #edf6e2;
  border: 1px solid #b6dca0;
}

.incl-no {
  background: #eaf1fa;
  border: 1px solid #b0cce8;
}

.incl-title {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.incl-yes .incl-title {
  color: #2d6e18;
}

.incl-no .incl-title {
  color: var(--blue3);
}

.incl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.incl-list li {
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.incl-yes .incl-list li {
  color: #2a5018;
}

.incl-no .incl-list li {
  color: var(--muted);
}

/* CTA */
.cta-section {
  background: linear-gradient(140deg, var(--blue3) 0%, var(--blue) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(130, 190, 60, .14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: Roboto, sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.cta-section h2 span {
  color: var(--green);
}

.cta-section p {
  color: #b0d0ee;
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ROI ESTIMATES */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.roi-card {
  border-radius: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--mid);
  box-shadow: var(--card-shadow);
}

.roi-ind {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 10px;
}

.roi-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.roi-stat .rv {
  font-family: Roboto, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
}

.roi-stat .rl {
  font-size: 12px;
  color: var(--muted);
}

/* FOOTER */
footer {
  background: var(--blue3);
  padding: 56px 24px 24px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand p {
  font-size: 14px;
  color: #7090b0;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 14px;
}

.footer-col h4 {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #7090b0;
  text-decoration: none;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--green);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact a {
  font-size: 14px;
  color: #7090b0;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #406080;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  z-index: 121;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, .34);
}

.whatsapp-float i {
  font-size: 30px;
}

/* TO TOP */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 56, 112, .92);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease, border-color .2s ease;
  z-index: 120;
  backdrop-filter: blur(8px);
}

.to-top:hover {
  background: rgba(0, 90, 170, .95);
  border-color: rgba(130, 190, 60, .55);
}

.to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.to-top i {
  font-size: 16px;
}

/* FADE */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .stories-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

@media (max-width: 600px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  nav {
    padding: 0 16px;
  }

  nav .wrap {
    gap: 12px;
  }

  .brand {
    margin-right: 6px;
  }

  .brand img {
    height: 30px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 11.5px;
    letter-spacing: 0;
  }

  .client-actions {
    flex-direction: column;
    align-items: center;
  }

  .client-actions a {
    width: min(420px, 100%);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    left: 14px;
    bottom: 14px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }

  .to-top {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  nav {
    padding: 0 12px;
  }

  nav .wrap {
    gap: 10px;
  }

  .brand img {
    height: 27px;
  }

  .nav-cta {
    padding: 7px 12px;
    font-size: 11px;
  }
}

/* INLINE STYLES START */
/* Auto-generated from inline style attributes in HTML pages */
.u-inline-001 {
  display: flex;
  gap: 20px;
}

.u-inline-002 {
  font-size: 13px;
  color: #a0c4e0;
}

.u-inline-003 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.u-inline-004 {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.u-inline-005 {
  font-size: 12px;
  color: #6a8aaa;
  margin-top: 14px;
  text-align: center;
}

.u-inline-006 {
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
}

.u-inline-007 {
  color: var(--blue);
}

.u-inline-008 {
  background: var(--light);
}

.u-inline-009 {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.u-inline-010 {
  font-size: 24px;
}

.u-inline-011 {
  font-size: 15px;
  color: var(--blue3);
}

.u-inline-012 {
  font-size: 14px;
  color: var(--muted);
  margin-left: 8px;
}

.u-inline-013 {
  background: var(--blue);
  border-color: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.u-inline-014 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #fff;
}

.u-inline-015 {
  color: #fff;
}

.u-inline-016 {
  color: #b0d0f0;
}

.u-inline-017 {
  margin-top: 16px;
  font-size: 13px;
  padding: 10px 20px;
}

.u-inline-018 {
  position: relative;
  z-index: 1;
}

.u-inline-019 {
  color: var(--green);
  text-align: center;
}

.u-inline-020 {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 52px;
  flex-wrap: wrap;
  position: relative;
}

.u-inline-021 {
  text-align: center;
}

.u-inline-022 {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
}

.u-inline-023 {
  font-size: 13px;
  color: #80b0d8;
}

.u-inline-024 {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.u-inline-025 {
  font-size: clamp(38px, 4vw, 56px);
}

.u-inline-026 {
  background: #fff;
}

.u-inline-027 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.u-inline-028 {
  background: #edf6e2;
  border: 1px solid #b6dca0;
  color: #2d6e18;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
}

.u-inline-029 {
  margin-bottom: 40px;
}

.u-inline-030 {
  margin-bottom: 60px;
}

.u-inline-031 {
  margin-top: 60px;
}

.u-inline-032 {
  font-family: Roboto, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue3);
  border-bottom: 2px solid var(--mid);
  padding-bottom: 12px;
  margin-bottom: 32px;
}

.u-inline-033 {
  margin-top: 0;
}

.u-inline-034 {
  font-size: 22px;
}

.u-inline-035 {
  color: var(--blue);
  font-weight: 700;
}

.u-inline-036 {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.u-inline-037 {
  margin: 16px 0;
}

.u-inline-038 {
  font-size: 32px;
}

.u-inline-039 {
  margin-top: 28px;
}

.u-inline-040 {
  margin-bottom: 12px;
}

.u-inline-041 {
  font-weight: 800;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 12px;
}

/* INLINE STYLES END */