.services-section::after,
.services-section::before {
  width: 180px;
  height: 180px;
  background-size: 14px 14px;
  opacity: 0.6;
  position: absolute;
  content: "";
}
.service-card a,
a {
  text-decoration: none;
}
.metrics-row,
.stats-box {
  grid-template-columns: repeat(4, 1fr);
}
.google-icon,
.process-icon,
.result-icon,
.service-card > i,
.stats-box i {
  place-items: center;
}
.cta-box,
.google-hero,
.result-card,
.service-card,
.why-box {
  overflow: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #061226;
  --orange: #ff4b14;
  --orange2: #ff7a00;
  --purple: #6d2cff;
  --blue: #1463ff;
  --green: #12b76a;
  --teal: #15b8a6;
  --text: #071226;
  --muted: #536079;
  --border: #dce3ee;
}
body {
  font-family: Outfit, sans-serif;
  color: var(--text);
  background: #fff;
}
.google-hero {
  position: relative;
  padding: 125px 0 90px;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(109, 44, 255, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 95% 55%,
      rgba(255, 75, 20, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #041024, #061226 50%, #0a1430);
  color: #fff;
}
.breadcrumb-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8deea;
  font-size: 14px;
  margin-bottom: 26px;
}
.breadcrumb-line a,
.cta-art i:nth-child(2),
.cta-art i:nth-child(3),
.whatsapp:hover {
  color: #fff;
}
.google-hero-img,
.why-img-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.google-hero-img img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.35));
}
.services-section {
  position: relative;
  overflow: hidden;
}
.services-section::before {
  left: -80px;
  top: 180px;
  background-image: radial-gradient(
    rgba(20, 99, 255, 0.28) 1.3px,
    transparent 1.3px
  );
}
.services-section::after {
  right: -60px;
  bottom: 120px;
  background-image: radial-gradient(
    rgba(109, 44, 255, 0.22) 1.3px,
    transparent 1.3px
  );
}
.section-heading {
  position: relative;
  z-index: 2;
}
.service-card {
  z-index: 2;
}
.service-card::before {
  content: "";
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 75, 20, 0.08), transparent 45%);
  opacity: 0;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -35px;
  top: -35px;
  width: 90px;
  height: 90px;
  background: rgba(109, 44, 255, 0.06);
  border-radius: 50%;
  transition: 0.35s;
}
.service-card:hover {
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}
.service-card:hover::after {
  transform: scale(1.4);
  background: rgba(255, 75, 20, 0.08);
}
.service-card > i {
  display: grid;
  transition: 0.35s;
}
.service-card:hover > i {
  transform: rotate(-6deg) scale(1.08);
}
.service-card a {
  position: relative;
  z-index: 2;
  color: #6d2cff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card a i {
  width: auto;
  height: auto;
  background: 0 0;
  font-size: 18px;
  margin: 0;
  transition: 0.3s;
}
.service-card a:hover {
  color: #ff4b14;
}
.service-card a:hover i {
  transform: translateX(5px);
}
@media (max-width: 991px) {
  .google-hero-img {
    margin-top: 35px;
  }
  .google-hero-img img {
    max-width: 620px;
  }
  .services-section {
    padding: 55px 0 45px;
  }
  .service-card {
    min-height: 240px;
  }
}
@media (max-width: 575px) {
  .hero-badges {
    gap: 10px;
  }
  .badge-item {
    width: 100%;
    height: 62px;
  }
  .badge-item img {
    max-width: 140px;
  }
  .google-hero-img img {
    max-width: 100%;
  }
  .services-section {
    padding: 45px 0 35px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .service-card {
    min-height: auto;
    padding: 28px 22px;
  }
  .service-card > i {
    width: 58px;
    height: 58px;
    font-size: 26px;
    border-radius: 16px;
    margin-bottom: 20px;
  }
  .service-card h4 {
    font-size: 19px;
  }
  .service-card a,
  .service-card p {
    font-size: 14px;
  }
}
.hero-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}
.orange-btn,
.outline-btn {
  padding: 14px 24px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.google-hero h1 {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 22px;
}
.google-hero h1 span {
  display: block;
  color: var(--orange);
}
.google-hero p {
  max-width: 560px;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}
.orange-btn {
  background: var(--orange);
  border-radius: 7px;
}
.orange-btn:hover,
.subscribe-btn:hover {
  background: #fff;
  color: var(--orange);
}
.outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
}
.outline-btn:hover {
  background: #fff;
  color: var(--text);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.hero-badges div {
  min-width: 145px;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badges div:first-child {
  border-radius: 10px 0 0 10px;
}
.hero-badges div:last-child {
  border-radius: 0 10px 10px 0;
}
.google-text {
  color: #fff;
  font-size: 18px;
}
.hero-badges i {
  color: #34a853;
  font-size: 22px;
}
.hero-badges span {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 500;
}
.stars {
  color: #fbbf24 !important;
}
.hero-dashboard {
  min-height: 420px;
  position: relative;
}
.ads-main-card,
.donut,
.donut::after,
.floating,
.plant,
.plant::after {
  position: absolute;
}
.ads-main-card {
  right: 60px;
  top: 20px;
  width: 520px;
  background: #f8fbff;
  color: var(--text);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: perspective(800px) rotateY(-6deg);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.42);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #fff;
  background: #111827;
  padding: 10px 14px;
  border-radius: 10px;
}
.card-top span,
.revenue-card h4 {
  font-weight: 500;
}
.metrics-row {
  display: grid;
  gap: 8px;
}
.metrics-row div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  padding: 12px;
}
.metrics-row span {
  color: #64748b;
  font-size: 11px;
}
.metrics-row h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0;
}
.metrics-row p {
  color: #16a34a;
  font-size: 11px;
  margin: 0;
}
.line-chart {
  margin-top: 18px;
  height: 120px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, transparent 45%, #1463ff 45% 47%, transparent 47%),
    repeating-linear-gradient(90deg, #eaf0ff 0 1px, transparent 1px 55px), #fff;
}
.floating {
  z-index: 3;
}
.google-icon {
  width: 92px;
  height: 92px;
  left: 95px;
  top: 90px;
  background: #fff;
  border-radius: 22px;
  display: grid;
  font-size: 46px;
  color: #34a853;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.24);
}
.campaign-card,
.revenue-card {
  background: #101a33;
  padding: 16px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}
.campaign-card {
  left: 40px;
  top: 240px;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}
.campaign-card h6 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.campaign-card p {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin: 8px 0;
}
.revenue-card {
  left: 300px;
  bottom: 30px;
  width: 210px;
  border-radius: 13px;
}
.revenue-card p {
  color: #16a34a;
  font-size: 12px;
  margin: 0;
}
.bar-chart {
  height: 45px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 8px;
}
.bar-chart i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #ff7a00, #6d2cff);
}
.bar-chart i:first-child {
  height: 30%;
}
.bar-chart i:nth-child(2) {
  height: 45%;
}
.bar-chart i:nth-child(3) {
  height: 60%;
}
.bar-chart i:nth-child(4) {
  height: 78%;
}
.bar-chart i:nth-child(5) {
  height: 100%;
}
.preview-card {
  right: 0;
  top: 170px;
  width: 220px;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 17px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}
.preview-card span {
  color: #64748b;
  font-size: 12px;
}
.preview-card h6 {
  color: #263cff;
  font-weight: 500;
  margin: 8px 0;
}
.preview-card p {
  color: #475569;
  font-size: 12px;
  margin-bottom: 10px;
}
.preview-card button {
  border: none;
  background: #eef4ff;
  color: #1463ff;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 12px;
}
.bidding-pill,
.conversion-pill,
.intent-pill {
  position: absolute;
  background: #7c3aed;
  color: #fff;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 500;
}
.donut,
.donut::after,
.stats-box i {
  border-radius: 50%;
}
.intent-pill {
  right: 20px;
  top: 35px;
}
.bidding-pill {
  right: 135px;
  top: 140px;
  background: #1463ff;
}
.conversion-pill {
  right: -20px;
  top: 135px;
  background: var(--orange);
}
.donut {
  right: 50px;
  bottom: 10px;
  width: 95px;
  height: 95px;
  background: conic-gradient(#ff7a00 0 30%, #6d2cff 30% 65%, #1463ff 65% 100%);
}
.donut::after {
  content: "";
  inset: 22px;
  background: #061226;
}
.plant {
  right: -20px;
  bottom: 70px;
  width: 55px;
  height: 90px;
  background: linear-gradient(#22c55e, #15803d);
  border-radius: 60% 10%;
}
.stats-strip,
.why-art,
.why-box,
.why-item {
  position: relative;
}
.plant::after,
.stats-box,
.why-section {
  background: #fff;
}
.plant::after {
  content: "";
  bottom: -35px;
  left: -8px;
  width: 75px;
  height: 45px;
  border-radius: 0 0 20px 20px;
}
.stats-strip {
  margin-top: -45px;
  z-index: 5;
}
.stats-box {
  max-width: 1320px;
  margin: auto;
  border-radius: 16px;
  padding: 24px 0px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  display: grid;
}
.stats-box div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #dce3ee;
  padding: 0 20px;
}
.stats-box div:last-child {
  border-right: none;
}
.stats-box i {
  width: 64px;
  height: 64px;
  color: #fff;
  display: grid;
  font-size: 28px;
  flex-shrink: 0;
}
.stats-box h4 {
  font-size: 19px;
  font-weight: 500;
  margin: 0;
}
.stats-box span {
  color: #334155;
  font-size: 14px;
  font-weight: 500;
}
.contact-list i,
.footer a:hover,
.orange-icon,
.process-item.active h4,
.section-heading span {
  color: var(--orange);
}
.why-box h2 b,
.why-label {
  color: #ff5a14;
  font-weight: 500;
}
.section-heading h2 {
  position: relative;
  color: var(--text);
}
.process-section,
.results-section,
.services-section {
  padding: 45px 0 25px;
}
.service-card {
  border: 1px solid var(--border);
}
.result-card:hover,
.service-card:hover {
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.1);
}
.result-card i,
.service-card i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.service-card a {
  color: var(--purple);
  font-size: 18px;
  font-weight: 500;
}
.why-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}
.why-box h2 {
  color: #fff;
  line-height: 1.15;
}
.why-box h2 b {
  color: var(--orange);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 26px;
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.icon-orange {
  background: linear-gradient(135deg, #ff7a00, #ff4b14);
  color: #fff;
}
.icon-purple {
  background: linear-gradient(135deg, #7c3aed, #5b21ff);
  color: #fff;
}
.icon-blue {
  background: linear-gradient(135deg, #2f6fff, #1e4fff);
  color: #fff;
}
.icon-green {
  background: linear-gradient(135deg, #18c37e, #0ea865);
  color: #fff;
}
.why-item h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
}
.why-item p {
  color: #d8e2f0;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.why-img-box img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.28));
}
@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-img-box img {
    max-width: 500px;
  }
  .navbar-nav {
    gap: 6px;
  }
  .navbar .nav-link {
    font-size: 12px;
  }
  .ads-main-card {
    width: 470px;
  }
}
@media (max-width: 991px) {
  .why-box {
    padding: 34px 28px;
  }
  .why-box h2 {
    font-size: 30px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .why-img-box {
    margin-top: 10px;
  }
  .why-img-box img {
    max-width: 460px;
  }
}
@media (max-width: 575px) {
  .why-section {
    padding: 20px 0 28px;
  }
  .why-box {
    padding: 26px 20px;
    border-radius: 16px;
  }
  .why-box h2 {
    font-size: 26px;
    margin-bottom: 22px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 12px;
  }
  .why-item h5 {
    font-size: 15px;
  }
  .why-item p {
    font-size: 13px;
  }
  .why-img-box img {
    max-width: 100%;
  }
}
.why-grid,
.why-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.purple-icon {
  color: var(--purple);
}
.teal-icon {
  color: var(--teal);
}
.orange-bg {
  background: var(--orange);
}
.blue-bg {
  background: var(--blue);
}
.purple-bg {
  background: var(--purple);
}
.green-bg {
  background: var(--green);
}
.teal-bg {
  background: var(--teal);
}
.why-section {
  padding: 20px 0 30px;
}
.why-box {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(109, 44, 255, 0.28),
      transparent 30%
    ),
    linear-gradient(135deg, #061226, #0b1330);
  border-radius: 14px;
  padding: 35px;
  color: #fff;
}
.why-box > .row > .col-lg-6 > span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 500;
}
.why-box h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 26px;
}
.why-grid {
  gap: 22px;
}
.why-grid h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.why-grid p {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.why-art {
  min-height: 300px;
}
.why-screen {
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 20px;
  min-height: 260px;
}
.why-metrics {
  gap: 9px;
}
.why-metrics div {
  background: #f4f7fb;
  border-radius: 8px;
  padding: 12px;
}
.why-metrics span {
  display: block;
  color: #64748b;
  font-size: 11px;
}
.why-metrics b {
  font-size: 18px;
}
.why-chart {
  margin-top: 20px;
  height: 120px;
  background:
    linear-gradient(135deg, transparent 45%, #1463ff 45% 47%, transparent 47%),
    repeating-linear-gradient(90deg, #eaf0ff 0 1px, transparent 1px 50px);
}
.person {
  position: absolute;
  bottom: 0;
  width: 90px;
  height: 140px;
  background: var(--orange);
  border-radius: 50px 50px 20px 20px;
}
.result-card,
.result-icon,
.result-text,
.service-card,
.service-card h4,
.service-card p,
.service-card > i {
  position: relative;
}
.person::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 25px;
  width: 42px;
  height: 42px;
  background: #f2b188;
  border-radius: 50%;
}
.p1 {
  left: 20px;
}
.p2 {
  right: 20px;
  background: #3154d4;
}
.process-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.process-item {
  flex: 1;
  text-align: center;
}
.process-icon {
  width: 74px;
  height: 74px;
  color: #fff;
  display: grid;
  border-radius: 50%;
  font-size: 30px;
  margin: 0 auto 12px;
}
.process-item h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 3px;
}
.process-item h5 {
  font-size: 16px;
  font-weight: 500;
}
.process-item p {
  color: #475569;
  font-size: 18px;
  line-height: 1.45;
}
.arrow {
  padding-top: 28px;
  font-size: 22px;
  color: #071226;
}
.result-card h5 {
  font-size: 15px;
  font-weight: 500;
}
.result-card h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 4px;
}
.result-card p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}
.results-section {
  padding: 42px 0 50px;
  background: #fff;
}
.result-card {
  border: 1px solid var(--border);
  height: 100%;
  min-height: 135px;
  background: #fff;
  border: 1px solid #e1e7f0;
  border-radius: 16px;
  padding: 22px 92px 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: 0.35s;
}
.result-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 115px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff 35%);
  z-index: 1;
}
.result-card:hover {
  transform: translateY(-6px);
  border-color: #ff4b14;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}
.result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  flex-shrink: 0;
  z-index: 3;
}
.result-icon i {
  font-size: 34px;
}
.green-result .result-icon {
  background: #eaf9ed;
  color: #16a34a;
}
.orange-icon,
.orange-result .result-icon {
  background: #fff0e8;
  color: #ff4b14;
}
.blue-result .result-icon {
  background: #edf4ff;
  color: #1463ff;
}
.purple-result .result-icon {
  background: #f6eaff;
  color: #b02cff;
}
.services-section {
  padding: 56px 0 48px;
  background: #fff;
}
.section-heading {
  text-align: center;
  margin-bottom: 34px;
}
.section-heading span {
  letter-spacing: 0.6px;
  display: inline-block;
  color: #ff4b14;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.service-card > i,
.social-icons a {
  display: grid;
  place-items: center;
}
.section-heading h2 {
  color: #071226;
  font-size: 34px;
  font-weight: 800;
  margin: 0;
}
.section-heading h2::after {
  content: "";
  content: "";
  width: 48px;
  height: 3px;
  background: #ff4b14;
  border-radius: 30px;
  display: block;
  margin: 12px auto 0;
}
.service-card {
  height: 100%;
  min-height: 225px;
  background: #fff;
  border: 1px solid #dce4f0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: 0.35s;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}
.service-card::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  opacity: 0.12;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: #ff4b14;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.service-card:hover::before {
  opacity: 1;
  transform: scale(1.35);
}
.service-card > i {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  font-size: 28px;
  margin-bottom: 22px;
  z-index: 2;
}
.green-icon {
  background: #e9fff3;
  color: #16a34a;
}
.blue-icon {
  background: #eaf1ff;
  color: #1463ff;
}
.red-icon {
  background: #ffeaea;
  color: #ef4444;
}
.purple-icon {
  background: #f2eaff;
  color: #6d2cff;
}
.teal-icon {
  background: #e9fffb;
  color: #13b8a6;
}
.yellow-icon {
  background: #fff8db;
  color: #f4a900;
}
.service-card:has(.green-icon)::before {
  background: #16a34a;
}
.service-card:has(.blue-icon)::before {
  background: #1463ff;
}
.service-card:has(.orange-icon)::before {
  background: #ff4b14;
}
.service-card:has(.red-icon)::before {
  background: #ef4444;
}
.service-card:has(.purple-icon)::before {
  background: #6d2cff;
}
.service-card:has(.teal-icon)::before {
  background: #13b8a6;
}
.service-card:has(.yellow-icon)::before {
  background: #f4a900;
}
.service-card h4 {
  color: #071226;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 13px;
  z-index: 2;
}
.cta-box h2,
.cta-btn,
.footer h5,
.result-text h3,
.result-text h5,
.subscribe-btn {
  font-weight: 500;
}
.service-card p {
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  z-index: 2;
}
.result-text {
  z-index: 3;
  max-width: 180px;
}
.mini-bars,
.mini-svg {
  position: absolute;
  right: 18px;
  width: 58px;
  z-index: 2;
}
.result-text h5 {
  font-size: 17px;
  color: #071226;
  margin-bottom: 8px;
  line-height: 1.25;
}
.result-text h3 {
  font-size: 34px;
  color: #071226;
  margin-bottom: 6px;
  line-height: 1;
}
.result-text p {
  font-size: 13px;
  color: #536079;
  margin: 0;
  line-height: 1.4;
}
.mini-svg {
  bottom: 24px;
  height: 38px;
  fill: none;
}
.mini-svg polyline {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.green-line polyline {
  stroke: #22c55e;
}
.orange-line polyline {
  stroke: #ff7a2f;
}
.purple-line polyline {
  stroke: #c04cff;
}
.mini-bars {
  bottom: 20px;
  height: 52px;
  display: flex;
  align-items: end;
  gap: 7px;
}
.mini-bars span {
  width: 14px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #75a7ff, #1463ff);
}
.mini-bars span:first-child {
  height: 22px;
}
.mini-bars span:nth-child(2) {
  height: 36px;
}
.mini-bars span:nth-child(3) {
  height: 52px;
}
.cta-section {
  padding: 15px 0 35px;
}
.cta-box {
  background: linear-gradient(110deg, #ff7a00, #f02d5f, #6d2cff);
  border-radius: 14px;
  padding: 7px 27px;
  min-height: 190px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-box h2 {
  font-size: 25px;
}
.cta-box p {
  font-size: 16px;
  margin-bottom: 18px;
}
.cta-btn {
  background: #fff;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 6px;
}
.cta-btn:hover {
  background: var(--text);
  color: #fff;
}
.cta-art i:first-child {
  color: #34a853;
}
.footer {
  background: #061226;
  color: #fff;
  padding: 48px 0 20px;
  position: relative;
}
.footer p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
}
.footer h5 {
  font-size: 16px;
  margin-bottom: 18px;
}
.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer li {
  margin-bottom: 8px;
}
.footer a {
  color: #cbd5e1;
  font-size: 14px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 35px;
  height: 35px;
  background: #172a45;
  border-radius: 50%;
  color: #fff;
}
.contact-list li {
  display: flex;
  gap: 10px;
  color: #cbd5e1;
  font-size: 14px;
}
.footer .form-control {
  height: 46px;
  border: none;
  border-radius: 6px;
  margin-bottom: 14px;
}
.subscribe-btn {
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  padding: 11px 22px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 35px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom div {
  display: flex;
  gap: 24px;
}
.badge-item img,
.cta-art img {
  height: auto;
  display: block;
  object-fit: contain;
  width: 100%;
}
.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  z-index: 99;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.badge-item {
  width: 150px;
  height: 64px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-item img {
  max-width: 120px;
  max-height: 42px;
}
.cta-art {
  width: 420px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-art img {
  max-width: 400px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}
@media (max-width: 991px) {
  .services-section {
    padding: 48px 0 42px;
  }
  .service-card {
    min-height: 215px;
    padding: 26px 22px;
  }
  .result-card {
    min-height: 130px;
  }
  .stats-box,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-navbar {
    position: static;
  }
  .google-hero {
    padding: 60px 0 80px;
  }
  .hero-dashboard {
    min-height: 520px;
  }
  .ads-main-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .stats-box {
    gap: 20px;
  }
  .stats-box div {
    border-right: none;
  }
  .footer-bottom,
  .process-row {
    flex-direction: column;
  }
  .arrow {
    display: none;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cta-art {
    width: 100%;
    justify-content: flex-start;
  }
  .cta-art img {
    max-width: 360px;
  }
}
@media (max-width: 575px) {
  .services-section {
    padding: 40px 0 34px;
  }
  .service-card {
    min-height: auto;
    padding: 26px 22px;
  }
  .service-card > i {
    width: 54px;
    height: 54px;
    font-size: 25px;
    margin-bottom: 18px;
  }
  .service-card h4 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 14px;
  }
  .results-section {
    padding: 34px 0 40px;
  }
  .result-card {
    padding: 20px;
    min-height: 120px;
  }
  .hero-dashboard,
  .mini-bars,
  .mini-svg,
  .result-card::after,
  .why-art {
    display: none;
  }
  .result-icon {
    width: 62px;
    height: 62px;
  }
  .result-icon i {
    font-size: 29px;
  }
  .cta-art img,
  .result-text {
    max-width: 100%;
  }
  .google-hero p,
  .result-text h5 {
    font-size: 16px;
  }
  .result-text h3 {
    font-size: 30px;
  }
  .result-text p {
    font-size: 13px;
  }
  .stats-box,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .google-hero h1 {
    font-size: 44px;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-badges div {
    width: 100%;
    border-radius: 10px !important;
  }
  .stats-strip {
    margin-top: -30px;
  }
  .stats-box {
    padding: 24px;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .why-box {
    padding: 26px 20px;
  }
  .cta-box {
    padding: 26px 22px;
  }
  .cta-box h2 {
    font-size: 24px;
  }
  .cta-art {
    font-size: 55px;
  }
  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
  .hero-badges {
    gap: 10px;
  }
  .badge-item {
    width: 100%;
    height: 62px;
  }
  .badge-item img {
    max-width: 140px;
  }
  .process-section {
    padding: 28px 0 24px;
  }
  .process-section .section-heading {
    margin-bottom: 22px;
  }
  .process-section .section-heading h2 {
    font-size: 20px;
    line-height: 1.25;
    max-width: 300px;
    margin: 0 auto;
  }
  .process-section .section-heading h2::after {
    width: 44px;
    height: 3px;
    margin-top: 8px;
  }
  .process-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
  }
  .process-item {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .process-icon {
    width: 56px;
    height: 56px;
    font-size: 23px;
    margin: 0 auto 8px;
  }
  .process-item h4 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 4px;
  }
  .process-item h5 {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .process-item p {
    font-size: 13px;
    line-height: 1.45;
    max-width: 260px;
    margin: 0 auto;
  }
  .process-item.active h4 {
    color: #ff4b14;
  }
  .arrow,
  .process-arrow {
    display: none !important;
  }
}
body,
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.google-hero h1 {
  font-size: 44px;
}
.cta-box,
.google-hero,
.why-box {
  background-attachment: scroll !important;
  background-position: center !important;
  background-size: cover !important;
}
@media (max-width: 991px) {
  .custom-navbar {
    position: relative;
    z-index: 999;
  }
  .navbar-collapse {
    background: #061226;
    padding: 18px;
    margin-top: 14px;
    border-radius: 12px;
  }
  .navbar-nav {
    gap: 0;
  }
  .navbar .nav-link {
    font-size: 14px;
    padding: 10px 0 !important;
  }
  .nav-btn,
  .nav-phone {
    margin-top: 12px;
  }
  .google-hero {
    padding: 70px 0 60px;
    text-align: center;
  }
  .breadcrumb-line {
    justify-content: center;
    flex-wrap: wrap;
  }
  .google-hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badges,
  .hero-buttons {
    justify-content: center;
  }
  .google-hero-img {
    margin-top: 30px;
  }
  .google-hero-img img {
    max-width: 480px;
  }
  .arrow,
  .hero-dashboard,
  .process-arrow {
    display: none !important;
  }
  .ads-main-card,
  .bidding-pill,
  .campaign-card,
  .conversion-pill,
  .donut,
  .floating,
  .google-icon,
  .intent-pill,
  .plant,
  .preview-card,
  .revenue-card {
    position: static !important;
    transform: none !important;
  }
  .stats-box,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-box {
    padding: 32px 24px;
  }
  .process-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  .cta-art {
    width: 100%;
    justify-content: center;
    min-height: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .cta-box,
  .footer {
    text-align: center;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .google-hero {
    padding: 48px 0 45px;
    background-position: center top !important;
  }
  .hero-tag {
    font-size: 12px;
  }
  .google-hero h1 {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .google-hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .hero-buttons {
    gap: 12px;
  }
  .hero-buttons .btn,
  .orange-btn,
  .outline-btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
  }
  .stats-box h4,
  .whatsapp {
    font-size: 26px;
  }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .stats-box,
  .why-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .badge-item,
  .hero-badges div {
    width: 100% !important;
    min-width: 100% !important;
    border-radius: 10px !important;
  }
  .cta-box,
  .why-box {
    border-radius: 16px;
  }
  .cta-art img,
  .google-hero-img img,
  .process-item,
  .result-text,
  .why-img-box img {
    max-width: 100%;
  }
  .stats-strip {
    margin-top: 0;
  }
  .stats-box {
    padding: 22px;
  }
  .stats-box div {
    padding: 0;
    border-right: 0;
  }
  .process-section,
  .results-section,
  .services-section {
    padding: 36px 0 30px;
  }
  .section-heading {
    margin-bottom: 24px;
  }
  .section-heading h2 {
    font-size: 24px !important;
    line-height: 1.25;
  }
  .service-card {
    min-height: auto !important;
    padding: 24px 20px !important;
  }
  .process-item h4,
  .service-card h4 {
    font-size: 18px;
  }
  .cta-box p,
  .process-item h5,
  .process-item p,
  .service-card a,
  .service-card p {
    font-size: 14px;
  }
  .why-section {
    padding: 24px 0 28px;
  }
  .why-box {
    padding: 24px 18px;
    background-position: center !important;
  }
  .why-box h2 {
    font-size: 24px;
    line-height: 1.25;
  }
  .process-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .result-card {
    padding: 20px !important;
    min-height: auto;
    gap: 14px;
  }
  .mini-bars,
  .mini-svg,
  .result-card::after {
    display: none !important;
  }
  .result-icon {
    width: 58px;
    height: 58px;
  }
  .result-text h3 {
    font-size: 28px;
  }
  .cta-section {
    padding: 24px 0 34px;
  }
  .cta-box {
    min-height: auto;
    padding: 26px 20px;
  }
  .cta-box h2 {
    font-size: 23px;
    line-height: 1.25;
  }
  .cta-btn {
    width: 100%;
    padding: 12px 18px;
  }
  .footer {
    padding: 38px 0 18px;
  }
  .contact-list li,
  .footer-logo,
  .social-icons {
    justify-content: center;
  }
  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
  .whatsapp {
    width: 50px;
    height: 50px;
    right: 18px;
    bottom: 18px;
  }
}
