:root {
  --primary: #074fae;
  --primary-dark: #053d8a;
  --primary-light: #e8f0fe;
  --primary-lighter: #f4f8ff;
  --accent: #ff6b35;
  --accent-light: #fff3ed;
  --dark: #1a1a2e;
  --text: #444;
  --text-light: #666;
  --white: #ffffff;
  --gray-bg: #f8f9fc;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(7, 79, 174, 0.08);
  --shadow-hover: 0 8px 40px rgba(7, 79, 174, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --blue: #074fae;
  --blue-dark: #053d88;
  --blue-xlight: #f0f5ff;
  --text-mid: #445577;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
p {
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* ===== HERO BANNER ===== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 40%, var(--primary-lighter) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(7, 79, 174, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 8s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(7, 79, 174, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-slow 6s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Geometric decorations */
.hero-decoration {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}
.hero-decoration.circle-1 {
  top: 20%;
  right: 8%;
  width: 80px;
  height: 80px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin-slow 15s linear infinite;
}
.hero-decoration.square-1 {
  top: 60%;
  right: 15%;
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary);
  animation: spin-slow 20s linear infinite reverse;
}
.hero-decoration.dots {
  bottom: 15%;
  left: 5%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--primary) 2px, transparent 2px);
  background-size: 16px 16px;
  animation: float-slow 10s ease-in-out infinite;
}
.hero-decoration.triangle {
  top: 30%;
  left: 10%;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid var(--primary);
  animation: bounce-gentle 4s ease-in-out infinite;
}

@keyframes spin-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce-gentle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.hero .container-fluid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero h1 {
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 span {
  color: var(--primary);
}

.hero-text {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Hero Image Side */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease 0.3s both;
}
.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
/* Floating cards on hero image */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: bounce-gentle 3s ease-in-out infinite;
}
.hero-float-card.card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}
.hero-float-card.card-2 {
  bottom: 30px;
  left: -20px;
  animation-delay: 1.5s;
}
.hero-float-card .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.hero-float-card .icon-circle.blue {
  background: var(--primary-light);
  color: var(--primary);
}
.hero-float-card .icon-circle.green {
  background: #ecfdf5;
  color: #22c55e;
}
.hero-float-card .card-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.hero-float-card .card-info p {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TRUSTED LOGOS MARQUEE ===== */
.trusted-section {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trusted-section p {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, white, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, white, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: var(--transition);
}
.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== PPC SERVICES SECTION ===== */
.services-section {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.05);
}
.service-card:hover .service-icon svg {
  stroke: var(--white);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.service-card .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.service-card:hover .learn-link {
  opacity: 1;
  transform: translateY(0);
}
.learn-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

/* ===== HOW PPC WORKS (PROCESS) ===== */
.process-section {
  background: var(--gray-bg);
  position: relative;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.2;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(7, 79, 174, 0.2));
  z-index: 1;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.step-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
  position: relative;
}
.step-number::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(7, 79, 174, 0.2);
  animation: spin-slow 20s linear infinite;
}
.step-number span {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}
.step-number svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}
.process-step:hover .step-number {
  background: var(--primary);
  transform: scale(1.1);
}
.process-step:hover .step-number svg {
  stroke: var(--white);
}
.process-step:hover .step-number span {
  color: var(--white);
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-light);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(7, 79, 174, 0.1) 0%, transparent 60%);
}
.why-image .float-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  z-index: 2;
  animation: bounce-gentle 3s ease-in-out infinite;
}
.float-badge h3 {
  font-size: 28px;
  font-weight: 800;
}
.float-badge p {
  font-size: 12px;
  opacity: 0.9;
}

.why-content .feature-list {
  margin-top: 32px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:last-child {
  border-bottom: none;
}
.feature-item:hover {
  padding-left: 8px;
}
.feature-check {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-check svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2.5;
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 14px;
  color: var(--text-light);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* ===== PPC PLATFORMS ===== */
.platforms-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.platforms-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
.platforms-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
.platforms-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.platforms-header .eye {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.platforms-header .eye::before {
  background: var(--white);
}
.platforms-header .heading-1 {
  color: var(--white);
}
.platforms-header .heading-1 span {
  color: rgba(255, 255, 255, 0.7);
}
.platforms-header .lead {
  color: rgba(255, 255, 255, 0.7);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.platform-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.platform-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}
.platform-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.platform-card:hover .platform-icon {
  background: var(--white);
  animation: bounce-once 0.5s ease;
}
@keyframes bounce-once {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.platform-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}
.platform-card:hover .platform-icon svg {
  stroke: var(--primary);
}
.platform-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.platform-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ===== CASE STUDIES / RESULTS ===== */
.results-section {
  background: var(--white);
}
.results-slider-wrapper {
  position: relative;
}
.results-swiper {
  overflow: hidden;
  padding-bottom: 60px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.result-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.result-card-img {
  height: 200px;
  overflow: hidden;
}
.result-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.result-card:hover .result-card-img img {
  transform: scale(1.05);
}
.result-card-body {
  padding: 24px;
}
.result-industry {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.result-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.result-card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 26px;
}
.result-metrics {
  display: flex;
  gap: 20px;
}
.result-metric {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  background: var(--primary-lighter);
  border-radius: 8px;
}
.result-metric h4 {
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 800;
  color: var(--primary);
}
.result-metric p {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0;
}

.swiper-pagination-bullet {
  background: var(--primary);
}
.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* ===== INDUSTRIES SLIDER ===== */
.industries-section {
  background: var(--white);
}
.industries-swiper {
  overflow: hidden;
  padding-bottom: 60px;
}
.industry-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
}
.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.industry-card:hover img {
  transform: scale(1.08);
}
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 79, 174, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.industry-card-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.industry-card-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== AD FORMATS ===== */
.formats-section {
  background: var(--gray-bg);
}
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.format-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.format-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(6px);
  border-color: var(--primary);
}
.format-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.format-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}
.format-card:hover .format-icon {
  background: var(--primary);
}
.format-card:hover .format-icon svg {
  stroke: var(--white);
}
.format-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.format-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container-fluid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-img-wrapper img {
    height: 320px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-image {
    order: -1;
  }
  .why-image img {
    height: 350px;
  }
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .hero-float-card.card-1 {
    right: 10px;
    top: 10px;
  }
  .hero-float-card.card-2 {
    left: 10px;
    bottom: 10px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .platforms-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .container-fluid {
    padding: 0 16px;
  }
  .hero {
    padding: 100px 0 48px;
  }
  .hero-img-wrapper img {
    height: 240px;
  }
  .hero-float-card {
    padding: 10px 14px;
  }
  .hero-float-card .icon-circle {
    width: 36px;
    height: 36px;
  }
  .service-card {
    padding: 28px 20px;
  }
  .result-metrics {
    flex-wrap: wrap;
  }
  .formats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== COMPARISON ===================== */
/* .ppc-vs-seo-header {
        text-align: center;
        margin-bottom: 60px;
      }
      .ppc-vs-seo-header .section-subtitle {
        margin: 0 auto;
      } */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th {
  background: var(--blue);
  color: #fff;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
.compare-table td {
  padding: 16px 22px;
  font-size: 14px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: var(--blue-xlight);
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}
.tick {
  color: #00c6a2;
  font-size: 18px;
}
.cross {
  color: #ff4444;
  font-size: 18px;
}
