* {
  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: #1a73e8;
  --primary-dark: #0d5fc7;
  --green: #34a853;
  --yellow: #fbbc05;
  --red: #ea4335;
  --dark: #0a0a14;
  --dark2: #0e0e1c;
  --light: #f4f7fe;
  --lighter: #f9fbff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --white: #fff;
  --grad: linear-gradient(135deg, #1a73e8 0%, #0d47a1 50%, #1a73e8 100%);
  /* */
  /* --grad2: linear-gradient(135deg, #1a73e8 0%, #34a853 50%, #fbbc05 100%); */
  --grad2: linear-gradient(135deg, #1a73e8 0%, #34a853 50%, #e99d86 100%);
  --grad-subtle: linear-gradient(135deg, #e8f0fe 0%, #e6f4ea 60%, #fef9e7 100%);
  --shadow: 0 16px 50px rgba(26, 115, 232, 0.1);
  --shadow2: 0 28px 70px rgba(26, 115, 232, 0.18);
  --r: 14px;
}

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

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

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.grad-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag-pill {
  display: inline-block;
  background: rgba(26, 115, 232, 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;
}

.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(--grad2);
  color: #fff;
  box-shadow: 0 8px 28px rgba(26, 115, 232, 0.32);
}

.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26, 115, 232, 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;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 90px 0;
}

.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);
  line-height: 1.75;
}

.sec-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* 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(26, 115, 232, 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(26, 115, 232, 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(26, 115, 232, 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(26, 115, 232, 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;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 75% 15%,
      rgba(26, 115, 232, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 15% 85%,
      rgba(52, 168, 83, 0.05) 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(26, 115, 232, 0.09);
  border: 1px solid rgba(26, 115, 232, 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: #34a853;
  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(--grad2);
  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: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(26, 115, 232, 0.12);
  flex-wrap: wrap;
}

.t-item .num {
  font-size: 22px;
  font-weight: 900;
  background: var(--grad2);
  -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(26, 115, 232, 0.15);
}

.hero-right {
  position: relative;
}

.hero-img-box {
  background: linear-gradient(135deg, #dce9ff 0%, #d2f0d8 50%, #fef9e7 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: 24px;
  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;
}

/* GOOGLE COLORS STATS */
.g-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.g-stat-card {
  border-radius: var(--r);
  padding: 26px 20px;
  text-align: center;
  border: 1px solid rgba(26, 115, 232, 0.09);
  background: #fff;
  transition: all 0.3s;
}

.g-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.g-stat-card.c1 {
  border-top: 3px solid #1a73e8;
}

.g-stat-card.c2 {
  border-top: 3px solid #34a853;
}

.g-stat-card.c3 {
  border-top: 3px solid #fbbc05;
}

.g-stat-card.c4 {
  border-top: 3px solid #ea4335;
}

.g-stat-num {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.g-stat-card.c1 .g-stat-num {
  color: #1a73e8;
}

.g-stat-card.c2 .g-stat-num {
  color: #34a853;
}

.g-stat-card.c3 .g-stat-num {
  color: #fbbc05;
}

.g-stat-card.c4 .g-stat-num {
  color: #ea4335;
}

.g-stat-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.g-stat-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* WHY GOOGLE ADS */
.why-google {
  background: var(--lighter);
}

.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(26, 115, 232, 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;
}

/*.img-ph{background:linear-gradient(135deg,#dce9ff,#d2f0d8,#fef9e7);border-radius:22px;aspect-ratio:1/1.1;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow2);border:1px solid rgba(255,255,255,.7)}*/
.img-ph {
  background: linear-gradient(135deg, #dce9ff 0%, #d2f0d8 50%, #fef9e7 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;
}

/* CAMPAIGN TYPES */
.camp-types {
  background: #fff;
}

.camp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.camp-card {
  border-radius: var(--r);
  padding: 26px 22px;
  border: 1px solid rgba(26, 115, 232, 0.08);
  background: var(--light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.camp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad2);
}

.camp-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(26, 115, 232, 0.2);
}

.camp-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.camp-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.camp-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.camp-meta {
  border-top: 1px solid rgba(26, 115, 232, 0.08);
  padding-top: 12px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.camp-meta span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.camp-meta span b {
  color: var(--text);
  font-weight: 700;
}

/* BENEFITS */
.benefits {
  background: var(--light);
}

.ben-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(26, 115, 232, 0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
}

.ben-card:hover {
  border-color: rgba(26, 115, 232, 0.25);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.ben-num {
  width: 40px;
  height: 40px;
  background: var(--grad2);
  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;
}

.cta-inset {
  background: var(--grad2);
  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;
}

/* 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-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;
}

.who-card:hover {
  background: rgba(26, 115, 232, 0.15);
  border-color: rgba(26, 115, 232, 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 SERVICES */
.our-services {
  background: var(--lighter);
}

.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(26, 115, 232, 0.07);
  transition: all 0.3s;
}

.srv-card:hover {
  border-color: rgba(26, 115, 232, 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(--grad2);
  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 */
.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(26, 115, 232, 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(26, 115, 232, 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(26, 115, 232, 0.07);
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(26, 115, 232, 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(--grad2);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  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);
}

/* PROCESS */
.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
  position: relative;
}

.process-step {
  background: var(--light);
  border-radius: var(--r);
  padding: 28px 22px;
  border: 1px solid rgba(26, 115, 232, 0.08);
  position: relative;
  transition: all 0.3s;
}

.process-step:hover {
  box-shadow: var(--shadow);
  border-color: rgba(26, 115, 232, 0.2);
  transform: translateY(-4px);
}

.step-num {
  width: 42px;
  height: 42px;
  background: var(--grad2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 14px;
}

.process-step h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* CASE STUDIES */
.case-studies {
  background: var(--light);
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.cs-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(26, 115, 232, 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, #d2f0d8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-body {
  padding: 24px;
}

.cs-tag {
  display: inline-block;
  background: rgba(26, 115, 232, 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: var(--light);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(26, 115, 232, 0.09);
}

.cs-res .val {
  font-size: 18px;
  font-weight: 900;
  background: var(--grad2);
  -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: #fff;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.test-card {
  background: var(--light);
  border-radius: var(--r);
  padding: 28px;
  border: 1px solid rgba(26, 115, 232, 0.07);
  transition: all 0.3s;
}

.test-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(26, 115, 232, 0.2);
}

.stars {
  color: #fbbc05;
  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(--grad2);
  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: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 50px;
}

.faq-item {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid rgba(26, 115, 232, 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(26, 115, 232, 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(--grad2);
  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(26, 115, 232, 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(52, 168, 83, 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, #34a853, #1e7e34);
  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(26, 115, 232, 0.1);
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--grad2);
  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(26, 115, 232, 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(--grad2);
  color: #fff;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(26, 115, 232, 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(26, 115, 232, 0.52);
}

.s-dot {
  width: 8px;
  height: 8px;
  background: #34a853;
  border-radius: 50%;
  animation: blink 2s infinite;
}

.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;
}

/* GOOGLE LOGO STRIP */
.google-strip {
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid rgba(26, 115, 232, 0.06);
  border-bottom: 1px solid rgba(26, 115, 232, 0.06);
}

.google-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.g-letter {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.g-letter.g-blue {
  color: #1a73e8;
}

.g-letter.g-red {
  color: #ea4335;
}

.g-letter.g-yellow {
  color: #fbbc05;
}

.g-letter.g-green {
  color: #34a853;
}

.g-cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border-radius: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.g-cert-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* Section Background */
.ads-section {
  background-color: #0e2a47;
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Layout Grid */
.layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Image Styling */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* Content Styling */
.content-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}

.content-container h2 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.content-container h3 {
  font-size: 16px;
  font-weight: 400;
  color: #d1d5db; /* light gray */
  margin: 0;
  line-height: 1.6;
}

/* Button Styling */
.cta-button {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 40px;
  background-color: #ef4444;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .content-container {
    align-items: center;
  }
}

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

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

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

@media (max-width: 900px) {
  section {
    padding: 64px 0;
  }

  .hero-grid,
  .two-col,
  .ben-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;
  }

  .trust-strip {
    padding: 28px 20px;
  }

  .ts-div {
    display: none;
  }

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

@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;
  }

  .g-stats {
    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);
  }

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

.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;
  }
}
