* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
:root {
  --primary: #1877f2;
  --primary-dark: #0d5fc7;
  --accent: #e1306c;
  --purple: #8a2be2;
  --dark: #0a0a14;
  --dark2: #111120;
  --light: #f4f6fb;
  --lighter: #f9faff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --white: #ffffff;
  --grad: linear-gradient(135deg, #1877f2 0%, #8a2be2 55%, #e1306c 100%);
  --grad-subtle: linear-gradient(135deg, #eef4ff 0%, #f3eeff 60%, #fff0f6 100%);
  --shadow: 0 16px 50px rgba(24, 119, 242, 0.1);
  --shadow2: 0 28px 70px rgba(24, 119, 242, 0.18);
  --r: 14px;
  --r-sm: 8px;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag-pill {
  display: inline-block;
  background: rgba(24, 119, 242, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
}
.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 28px rgba(24, 119, 242, 0.32);
}
.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(24, 119, 242, 0.42);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--lighter);
  transform: translateY(-2px);
}
.btn-lg {
  /* padding: 17px 34px; */
  padding: 10px 20px;
  font-size: 15px;
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
section {
  padding: 90px 0;
}

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  background: var(--dark2);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-left a {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.topbar-left a:hover {
  color: #fff;
}
.topbar-right {
  display: flex;
  gap: 10px;
}
.tb-social {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
}
.tb-social:hover {
  background: var(--primary);
  color: #fff;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(24, 119, 242, 0.08);
  transition: box-shadow 0.3s;
}
header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-link img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  background: rgba(24, 119, 242, 0.07);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.99);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 30px;
  border-radius: 12px;
  transition: all 0.2s;
}
.mobile-nav a:hover {
  color: var(--primary);
  background: rgba(24, 119, 242, 0.06);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text);
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--lighter);
  border-bottom: 1px solid rgba(24, 119, 242, 0.07);
  padding: 12px 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.breadcrumb li a {
  color: var(--primary);
}
.breadcrumb li::after {
  content: "›";
  margin-left: 6px;
}
.breadcrumb li:last-child::after {
  content: "";
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--grad-subtle);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(24, 119, 242, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(138, 43, 226, 0.06) 0%,
      transparent 50%
    );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 119, 242, 0.09);
  border: 1px solid rgba(24, 119, 242, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero h1 {
  font-size: clamp(30px, 4.2vw, 43px);
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 500px;
  font-weight: 400;
  line-height: 1.75;
}
.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.hero-bullets li .chk {
  width: 20px;
  height: 20px;
  background: var(--grad);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(24, 119, 242, 0.12);
  flex-wrap: wrap;
}
.t-item .num {
  font-size: 22px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.t-item .lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.t-div {
  width: 1px;
  height: 32px;
  background: rgba(24, 119, 242, 0.15);
}
/* Hero image side */
.hero-right {
  position: relative;
}
.hero-img-box {
  background: linear-gradient(135deg, #dce9ff 0%, #ede7ff 50%, #ffd6e8 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  position: relative;
}
.img-placeholder-label {
  text-align: center;
}
.img-placeholder-label strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.img-placeholder-label span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.11);
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-badge.f1 {
  top: 18px;
  right: -16px;
}
.float-badge.f2 {
  bottom: 150px;
  left: -16px;
}
.float-badge .fi {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  background: var(--grad-subtle);
}
.float-badge .fv {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
.float-badge .fl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════
   WHY META ADS
══════════════════════════════════════ */
.why-meta {
  background: #fff;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sec-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.sec-desc {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.75;
}
.stats-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.scard {
  background: var(--grad-subtle);
  border-radius: var(--r);
  padding: 24px 20px;
  border: 1px solid rgba(24, 119, 242, 0.09);
  transition: transform 0.3s;
}
.scard:hover {
  transform: translateY(-4px);
}
.scard-icon {
  font-size: 30px;
  margin-bottom: 10px;
}
.scard-num {
  font-size: 28px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.scard-title {
  font-size: 14px;
  font-weight: 700;
  margin: 6px 0 4px;
}
.scard-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-subtle);
  border: 1px solid rgba(24, 119, 242, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feat-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}
.feat-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   BENEFITS
══════════════════════════════════════ */
.benefits {
  background: var(--light);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}
.ben-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ben-card {
  background: #fff;
  border-radius: var(--r);
  padding: 22px;
  border: 1px solid rgba(24, 119, 242, 0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}
.ben-card:hover {
  border-color: rgba(24, 119, 242, 0.25);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.ben-num {
  width: 40px;
  height: 40px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.ben-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ben-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.ben-side {
  position: sticky;
  top: 90px;
}
.img-ph {
  background: linear-gradient(135deg, #dce9ff 0%, #ede7ff 50%, #ffd6e8 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow2);
  border: 2px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  position: relative;
}
.cta-inset {
  background: var(--grad);
  border-radius: var(--r);
  padding: 28px;
  text-align: center;
  color: #fff;
}
.cta-inset h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-inset p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   OBJECTIVES
══════════════════════════════════════ */
.objectives {
  background: #fff;
}
.sec-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.obj-card {
  background: var(--light);
  border-radius: var(--r);
  padding: 26px 22px;
  border: 1px solid rgba(24, 119, 242, 0.07);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.obj-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.obj-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(24, 119, 242, 0.18);
}
.obj-card:hover::after {
  transform: scaleX(1);
}
.obj-icon {
  font-size: 34px;
  margin-bottom: 12px;
}
.obj-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}
.obj-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}
.obj-meta {
  border-top: 1px solid rgba(24, 119, 242, 0.08);
  padding-top: 12px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.obj-meta span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.obj-meta span b {
  color: var(--text);
  font-weight: 700;
}

/* ══════════════════════════════════════
   WHO SHOULD
══════════════════════════════════════ */
.who-should {
  background: var(--dark);
}
.who-should .tag-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.who-should .sec-title {
  color: #fff;
}
.who-should .sec-desc {
  color: rgba(255, 255, 255, 0.6);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 50px;
}
.who-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  padding: 26px 18px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.who-card:hover {
  background: rgba(24, 119, 242, 0.15);
  border-color: rgba(24, 119, 242, 0.35);
  transform: translateY(-4px);
}
.who-icon {
  font-size: 34px;
  margin-bottom: 12px;
}
.who-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.who-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}
.who-cta {
  text-align: center;
  margin-top: 44px;
}

/* ══════════════════════════════════════
   OUR META ADS SERVICES
══════════════════════════════════════ */
.our-services {
  background: var(--light);
}
.srv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}
.srv-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.srv-card {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid rgba(24, 119, 242, 0.07);
  transition: all 0.3s;
}
.srv-card:hover {
  border-color: rgba(24, 119, 242, 0.25);
  box-shadow: var(--shadow);
}
.srv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.srv-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.srv-card h3 {
  font-size: 16px;
  font-weight: 800;
}
.srv-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.srv-right {
  position: sticky;
  top: 90px;
}

/* ══════════════════════════════════════
   ALL SERVICES WE OFFER
══════════════════════════════════════ */
.all-services {
  background: #fff;
}
.all-srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.all-srv-card {
  border-radius: var(--r);
  padding: 26px 20px;
  text-align: center;
  border: 1px solid rgba(24, 119, 242, 0.1);
  background: var(--lighter);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.all-srv-card:hover {
  background: var(--grad-subtle);
  border-color: rgba(24, 119, 242, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.all-srv-card a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.all-srv-card:hover a {
  color: var(--primary);
}
.all-srv-card .asico {
  font-size: 32px;
}
.all-srv-card .as-tag {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-us {
  background: var(--light);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.why-card {
  background: #fff;
  border-radius: var(--r);
  padding: 30px 24px;
  border: 1px solid rgba(24, 119, 242, 0.07);
  transition: all 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(24, 119, 242, 0.2);
}
.why-ico {
  font-size: 34px;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.trust-strip {
  background: var(--grad);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 10px;
}
.ts-item {
  text-align: center;
  color: #fff;
}
.ts-num {
  font-size: 34px;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.ts-lbl {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.ts-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════ */
.case-studies {
  background: #fff;
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.cs-card {
  background: var(--light);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(24, 119, 242, 0.07);
  transition: all 0.3s;
}
.cs-card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-4px);
}
.cs-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #dce9ff, #ede7ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-body {
  padding: 24px;
}
.cs-tag {
  display: inline-block;
  background: rgba(24, 119, 242, 0.1);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.cs-body h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.35;
}
.cs-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cs-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.cs-res {
  background: #fff;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(24, 119, 242, 0.09);
}
.cs-res .val {
  font-size: 18px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.cs-res .lbl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
  display: block;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
  background: var(--light);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.test-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px;
  border: 1px solid rgba(24, 119, 242, 0.07);
  transition: all 0.3s;
}
.test-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(24, 119, 242, 0.2);
}
.stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.test-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
  font-weight: 400;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}
.test-name {
  font-weight: 700;
  font-size: 14px;
}
.test-biz {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-sec {
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 50px;
}
.faq-item {
  background: var(--light);
  border-radius: var(--r);
  border: 1px solid rgba(24, 119, 242, 0.07);
  overflow: hidden;
}
.faq-q {
  padding: 20px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}
.faq-q .faq-plus {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(24, 119, 242, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s;
}
.faq-item.open .faq-q .faq-plus {
  background: var(--grad);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 22px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  display: none;
  font-weight: 400;
}
.faq-item.open .faq-a {
  display: block;
}

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(24, 119, 242, 0.14),
    transparent 65%
  );
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.1), transparent 65%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}
.cta-perk .tick {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.form-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}
.form-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-box > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.fg {
  margin-bottom: 14px;
}
.fg label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
  letter-spacing: 0.2px;
}
.fg input,
.fg select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  outline: none;
  color: var(--text);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.fg input:focus,
.fg select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.1);
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  margin-top: 6px;
  letter-spacing: 0.3px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(24, 119, 242, 0.4);
}
.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #070710;
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand .logo-link img {
  height: 42px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.fsocial {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.fsocial:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  font-weight: 500;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}
.footer-contact li span.ico {
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
  font-weight: 500;
}
.footer-legal a:hover {
  color: #fff;
}

/* ══════════════════════════════════════
   STICKY CTA
══════════════════════════════════════ */
.sticky-cta-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--grad);
  color: #fff;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.42);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(24, 119, 242, 0.52);
}
.sticky-cta-btn .s-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ══════════════════════════════════════
   MID-CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: var(--grad);
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 60px 0 0;
  flex-wrap: wrap;
}
.cta-banner h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  max-width: 520px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-top: 6px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  section {
    padding: 64px 0;
  }
  .hero-grid,
  .two-col,
  .benefits-grid,
  .srv-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-right {
    order: -1;
  }
  .float-badge {
    display: none;
  }
  .ben-side,
  .srv-right {
    position: static;
  }
  .cs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-actions .btn {
    display: none;
  }
  .cta-banner {
    text-align: center;
    justify-content: center;
    padding: 32px 24px;
  }
  .cta-banner h3 {
    font-size: 20px;
  }
  .trust-strip {
    padding: 28px 20px;
  }
  .ts-div {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cs-grid {
    grid-template-columns: 1fr;
  }
  .stats-4 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .topbar {
    display: none;
  }
  .fg-row {
    grid-template-columns: 1fr;
  }
  .all-srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip {
    gap: 24px;
  }
}

.floating-contact {
  position: fixed;
  right: 12px;
  bottom: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 100;
}

.icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-img {
  width: 48px;
  position: relative;
  z-index: 10;
}

.whatsapp-bg {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  z-index: 0;
}

/* Tablet */
@media (min-width: 768px) {
  .floating-contact {
    right: 44px;
    bottom: 180px;
  }

  .icon-img {
    width: 56px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .floating-contact {
    right: 44px;
    bottom: 180px;
  }

  .icon-img {
    width: 56px;
  }
}