@charset "UTF-8";
/**
 * Services — Paid Ads Management — page-services-paid-ads-management.php
 */
/**
 * Shared styles for service page templates (software, web, etc.)
 */
.services-page {
  --services-page-bg: #fcfcfc;
  --services-reveal-duration: 0.65s;
  --services-reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.services-page__content {
  background: var(--services-page-bg);
  scroll-margin-top: 6rem;
}

.services-page__section {
  scroll-margin-top: 5rem;
}

.services-page__section-header {
  scroll-margin-top: 6rem;
}

.services-page [data-services-reveal-root] [data-services-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition: opacity var(--services-reveal-duration) var(--services-reveal-ease), transform var(--services-reveal-duration) var(--services-reveal-ease);
  will-change: opacity, transform;
}

.services-page [data-services-reveal-root] [data-services-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.services-page__stat {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.services-page__stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.services-page__service-card,
.services-page__industry-card,
.services-page__engagement-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.services-page__service-card:hover,
.services-page__industry-card:hover,
.services-page__engagement-card:hover {
  transform: translateY(-3px);
}

.services-page__tech-item {
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.services-page__tech-item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--primary) 35%, #e5e7eb);
  background-color: #fff;
}

.services-page__process-step:last-child .services-page__process-line {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .services-page [data-services-reveal-root] [data-services-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .services-page__stat,
  .services-page__service-card,
  .services-page__industry-card,
  .services-page__engagement-card,
  .services-page__tech-item {
    transition: none;
    transform: none;
  }
  .services-page__stat:hover,
  .services-page__service-card:hover,
  .services-page__industry-card:hover,
  .services-page__engagement-card:hover,
  .services-page__tech-item:hover {
    transform: none;
  }
}
.paid-ads-page {
  --paid-ads-accent: #0c4a6e;
  --paid-ads-dark: #0f172a;
  --paid-ads-surface: #f0f9ff;
  --paid-ads-muted: #e0f2fe;
  --paid-ads-glow: rgba(23, 155, 183, 0.35);
}

.paid-ads-page__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.paid-ads-page__eyebrow--light {
  color: color-mix(in srgb, var(--primary) 80%, #fff);
}

.paid-ads-page__section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1e1e1e;
}
.paid-ads-page__section-title--light {
  color: #fff;
}

/* Section 1 — spotlight intro */
.paid-ads-page__spotlight {
  background: linear-gradient(135deg, var(--paid-ads-dark) 0%, #134e4a 55%, var(--paid-ads-accent) 100%);
  color: #fff;
  overflow: hidden;
}
.paid-ads-page__spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(23, 155, 183, 0.25) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(45, 212, 191, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.paid-ads-page__spotlight-panel {
  position: relative;
  z-index: 1;
}

.paid-ads-page__spotlight-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.paid-ads-page__metric-orbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 640px) {
  .paid-ads-page__metric-orbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.paid-ads-page__metric-orb {
  position: relative;
  padding: 1.25rem 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  text-align: center;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.paid-ads-page__metric-orb:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.paid-ads-page__metric-value {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.paid-ads-page__metric-label {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.paid-ads-page__dashboard {
  position: relative;
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.paid-ads-page__dashboard-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.paid-ads-page__dashboard-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: #ef4444;
}
.paid-ads-page__dashboard-dot:nth-child(2) {
  background: #f59e0b;
}
.paid-ads-page__dashboard-dot:nth-child(3) {
  background: #22c55e;
}

.paid-ads-page__dashboard-body {
  padding: 1.5rem;
}

.paid-ads-page__progress-row + .paid-ads-page__progress-row {
  margin-top: 1.25rem;
}

.paid-ads-page__progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

.paid-ads-page__progress-value {
  font-weight: 700;
  color: #5eead4;
}

.paid-ads-page__progress-track {
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.paid-ads-page__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #2dd4bf);
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.paid-ads-page__progress-fill.is-animated {
  width: var(--progress-width, 0%);
}

/* Section 2 — bento platforms */
.paid-ads-page__platforms {
  background: var(--paid-ads-surface);
}

.paid-ads-page__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .paid-ads-page__bento {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }
}

.paid-ads-page__bento-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 11rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #e0f2fe;
  box-shadow: 0 8px 32px rgba(12, 74, 110, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.paid-ads-page__bento-cell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary) 15%, transparent) 0%, transparent 70%);
  transform: translate(30%, -30%);
  pointer-events: none;
}
.paid-ads-page__bento-cell:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--primary) 30%, #e0f2fe);
  box-shadow: 0 16px 48px rgba(12, 74, 110, 0.12);
}
.paid-ads-page__bento-cell--featured {
  background: linear-gradient(145deg, #fff 0%, var(--paid-ads-muted) 100%);
  border-color: color-mix(in srgb, var(--primary) 25%, #e0f2fe);
}
@media (min-width: 768px) {
  .paid-ads-page__bento-cell--featured {
    grid-column: span 3;
    min-height: 14rem;
  }
}
@media (min-width: 768px) {
  .paid-ads-page__bento-cell--wide {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  .paid-ads-page__bento-cell--standard {
    grid-column: span 2;
  }
}

.paid-ads-page__bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--paid-ads-accent) 100%);
  box-shadow: 0 6px 16px var(--paid-ads-glow);
}
.paid-ads-page__bento-icon .material-symbols-outlined {
  font-size: 1.5rem !important;
  color: #fff;
}

.paid-ads-page__bento-tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 12%, #fff);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paid-ads-accent);
}

/* Section 3 — vertical stepper */
.paid-ads-page__stepper {
  position: relative;
  max-width: 48rem;
  margin-inline: auto;
  padding-left: 2.5rem;
}
.paid-ads-page__stepper::before {
  content: "";
  position: absolute;
  left: 1.125rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 999px;
}

.paid-ads-page__step {
  position: relative;
  padding-bottom: 2.5rem;
}
.paid-ads-page__step:last-child {
  padding-bottom: 0;
}

.paid-ads-page__step-marker {
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--primary);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(23, 155, 183, 0.2);
  z-index: 1;
}

.paid-ads-page__step-card {
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e8ecef;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.paid-ads-page__step:hover .paid-ads-page__step-card {
  transform: translateX(4px);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

/* Section 4 — deliverables matrix */
.paid-ads-page__matrix {
  background: #fff;
}

.paid-ads-page__matrix-table {
  border-radius: 1.25rem;
  border: 1px solid #e8ecef;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.paid-ads-page__matrix-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--paid-ads-dark);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.paid-ads-page__matrix-head-cell {
  padding: 1rem 1.25rem;
}
.paid-ads-page__matrix-head-cell--highlight {
  background: color-mix(in srgb, var(--primary) 35%, var(--paid-ads-dark));
}

.paid-ads-page__matrix-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid #f1f5f9;
  font-size: 0.9375rem;
  transition: background 0.2s ease;
}
.paid-ads-page__matrix-row:hover {
  background: var(--paid-ads-surface);
}

.paid-ads-page__matrix-cell {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  color: #555;
}
.paid-ads-page__matrix-cell--feature {
  font-weight: 600;
  color: #1e1e1e;
}
.paid-ads-page__matrix-cell--highlight {
  background: color-mix(in srgb, var(--primary) 4%, #fff);
  justify-content: center;
}

.paid-ads-page__check {
  color: var(--primary);
  font-size: 1.25rem !important;
}

.paid-ads-page__dash {
  color: #cbd5e1;
  font-weight: 300;
}

/* Section 5 — results showcase */
.paid-ads-page__results {
  background: linear-gradient(180deg, var(--paid-ads-muted) 0%, #fff 100%);
}

.paid-ads-page__result-card {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid #e0f2fe;
  box-shadow: 0 8px 32px rgba(12, 74, 110, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.paid-ads-page__result-card--hero {
  background: linear-gradient(160deg, var(--paid-ads-dark) 0%, var(--paid-ads-accent) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 20px 56px rgba(12, 74, 110, 0.25);
}
@media (min-width: 1024px) {
  .paid-ads-page__result-card--hero {
    transform: translateY(-1rem);
  }
}
.paid-ads-page__result-card--hero .paid-ads-page__result-stat-label {
  color: rgba(255, 255, 255, 0.75);
}
.paid-ads-page__result-card--hero .paid-ads-page__result-stat-value {
  color: #5eead4;
}
.paid-ads-page__result-card:not(.paid-ads-page__result-card--hero):hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(12, 74, 110, 0.12);
}

.paid-ads-page__result-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--secondary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d2a27;
}

.paid-ads-page__result-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.paid-ads-page__result-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.paid-ads-page__result-stat-label {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.paid-ads-page__industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.paid-ads-page__industry-pill {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  .paid-ads-page__matrix-head,
  .paid-ads-page__matrix-row {
    grid-template-columns: 1fr;
  }
  .paid-ads-page__matrix-head-cell:not(:first-child),
  .paid-ads-page__matrix-cell:not(.paid-ads-page__matrix-cell--feature) {
    display: none;
  }
  .paid-ads-page__matrix-cell--feature::after {
    content: "✓ Bale Digital";
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
  }
}
@media (prefers-reduced-motion: reduce) {
  .paid-ads-page__metric-orb,
  .paid-ads-page__bento-cell,
  .paid-ads-page__step-card,
  .paid-ads-page__result-card {
    transition: none;
    transform: none;
  }
  .paid-ads-page__metric-orb:hover,
  .paid-ads-page__bento-cell:hover,
  .paid-ads-page__step-card:hover,
  .paid-ads-page__result-card:hover {
    transform: none;
  }
  .paid-ads-page__progress-fill {
    transition: none;
    width: var(--progress-width, 0%);
  }
  .paid-ads-page__result-card--hero {
    transform: none;
  }
}

/*# sourceMappingURL=services-paid-ads-management.css.map*/