/* ==========================================================================
   services.html — Analytics Service page specific styles
   ========================================================================== */

/* ========================================
   1. HERO SECTION & GLASSMORPHISM VISUAL
======================================== */
.hero--services {
  min-height: 84vh;
  padding-block: clamp(160px, 18vh, 210px) clamp(50px, 8vh, 80px);
}

.hero__grid-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero__content-services {
  max-width: 680px;
}

.hero__content-services h1 {
  margin-top: 16px;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.hero__content-services .lead {
  margin-bottom: 28px;
  color: var(--text-secondary);
}

/* Anchor pills in hero */
.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.anchor-pills a {
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.25s var(--ease);
}

.anchor-pills a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(41, 121, 255, 0.06);
  transform: translateY(-2px);
}

/* Platform / App Badges under hero */
.hero-platforms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-platforms__label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-platforms__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.platform-badge svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.platform-badge:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  background: rgba(41, 121, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.platform-badge:hover svg {
  transform: scale(1.15);
}

/* Glassmorphism Right-Side Analytics Visual */
.hero-glass-visual {
  display: none;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.glass-analytics-card {
  width: 100%;
  max-width: 400px;
  background: rgba(16, 22, 32, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(41, 121, 255, 0.08);
  position: relative;
  overflow: hidden;
  animation: heroFloat 6s ease-in-out infinite;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-analytics-card:hover {
  border-color: rgba(41, 121, 255, 0.35);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.65), 0 0 45px rgba(41, 121, 255, 0.16);
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.glass-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.live-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  position: relative;
}

.live-beacon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.7;
  animation: beaconPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

.glass-card__badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(41, 121, 255, 0.12);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(41, 121, 255, 0.25);
  text-transform: uppercase;
}

.glass-card__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.glass-kpi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px 14px;
}

.glass-kpi__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 4px;
}

.glass-kpi__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.glass-kpi__change {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
}

.glass-card__chart {
  background: rgba(12, 17, 23, 0.4);
  border-radius: 14px;
  padding: 12px 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.glass-chart-svg {
  width: 100%;
  height: 68px;
  overflow: visible;
}

.chart-line {
  stroke: var(--accent);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 8px rgba(41, 121, 255, 0.35));
}

.chart-area {
  fill: url(#chartGlow);
  opacity: 0.4;
}

.glass-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-card__footer span:last-child {
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========================================
   2. SERVICE DETAIL BLOCKS & COMPACT CAPSULE
======================================== */
/* The section wrapping the service blocks normally carries its own
   top/bottom padding (from the global .section rule), which left a visible
   gap of the page's default background between the hero and the first
   service block, and between the last block and the next section. Since
   each .service-block now paints its own full-bleed background, that outer
   padding is no longer needed here. */
.section--editorial:has(> .container > .service-block) {
  padding-block: 0;
  overflow-x: clip;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  padding-block: 56px;
  z-index: 0;
}

/* Full-bleed alternating session backgrounds — the pseudo-element breaks out
   of .container to span the full viewport width, while the actual grid
   content above stays aligned inside the container. */
.service-block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}

.service-block:nth-child(odd)::before {
  background: #f7f9fc;
}

.service-block:nth-child(even)::before {
  background: #dde3ee;
}

.service-block:nth-child(even) .service-block__media {
  order: 2;
}

.service-block + .service-block {
  margin-top: 0;
}

/* Compact capsule: pill shape preserved, size nicely scaled */
.service-block__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-block__media .capsule--compact {
  max-width: 350px;
  width: 100%;
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-block__media .capsule--compact:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(41, 121, 255, 0.3);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 24px rgba(41, 121, 255, 0.12);
}

.service-block__media .capsule--compact img {
  width: 100%;
  aspect-ratio: 4/4.5;
  object-fit: cover;
  display: block;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.bullets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15.5px;
}

.bullets li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
}

/* Compact "Book Now" button — refined, slightly smaller version of Connect button */
.btn--book-now {
  margin-top: 24px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent);
  color: var(--accent-contrast-text);
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn--book-now svg.arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}

.btn--book-now:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn--book-now:hover svg.arrow {
  transform: translateX(3px);
}

.btn--book-now:active {
  transform: translateY(0);
}

/* ========================================
   3. ANIMATED ANALYTICS SESSIONS / FEATURES
======================================== */
.analytics-sessions-section {
  padding-top: 20px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.analytics-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.analytics-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.analytics-card:hover {
  transform: translateY(-6px);
  border-color: rgba(41, 121, 255, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(41, 121, 255, 0.08);
}

.analytics-card:hover::before {
  opacity: 1;
}

.analytics-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.analytics-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: background 0.3s ease, transform 0.3s ease;
}

.analytics-card:hover .analytics-card__icon {
  background: rgba(41, 121, 255, 0.12);
  transform: scale(1.06);
}

.analytics-card__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.analytics-card:hover .analytics-card__badge {
  color: var(--accent);
  border-color: rgba(41, 121, 255, 0.2);
}

.analytics-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.analytics-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Micro-visualization widgets inside feature cards */
.analytics-card__widget {
  background: rgba(11, 15, 20, 0.6);
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.widget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
}

.widget-row:last-child {
  margin-bottom: 0;
}

.widget-label {
  color: var(--text-muted);
  font-weight: 500;
}

.widget-value {
  color: var(--text-primary);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.widget-value--accent {
  color: var(--accent);
}

.widget-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}

.widget-bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--r-pill);
  transition: width 1s var(--ease);
}

.widget-spark {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
}

.widget-spark__bar {
  flex: 1;
  background: rgba(41, 121, 255, 0.3);
  border-radius: 2px;
  transition: height 0.3s ease, background 0.3s ease;
}

.analytics-card:hover .widget-spark__bar {
  background: var(--accent);
}



/* ========================================
   5. DEDICATED PREMIUM PRICING SECTION
======================================== */
.pricing-section {
  position: relative;
}

.pricing-header-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.pricing-header-wrap h2 {
  margin-top: 14px;
  margin-bottom: 16px;
}

/* Billing Toggle */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: var(--r-pill);
  margin-top: 20px;
}

.pricing-toggle-btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.pricing-toggle-btn.is-active {
  background: var(--accent);
  color: var(--accent-contrast-text);
  box-shadow: 0 4px 14px rgba(41, 121, 255, 0.3);
}

.pricing-toggle-discount {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(41, 121, 255, 0.15);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  margin-left: 4px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

/* Featured / Recommended Plan Styling */
.pricing-card--featured {
  background: linear-gradient(180deg, rgba(27, 37, 54, 0.95) 0%, rgba(21, 29, 40, 0.98) 100%);
  border: 1px solid rgba(41, 121, 255, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(41, 121, 255, 0.12);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 45px rgba(41, 121, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-contrast-text);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(41, 121, 255, 0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__tier {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__tier {
  color: var(--accent);
}

.pricing-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pricing-card__desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  min-height: 45px;
}

.pricing-card__price-box {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card__price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__period {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-features-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 13px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features li svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

@keyframes processBadgeIn {
  0% {
    opacity: 0;
    transform: scale(0.65) rotate(-12deg);
  }
  70% {
    transform: scale(1.08) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.process-node.is-visible .process-node__badge {
  animation: processBadgeIn 0.65s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  .process-node.is-visible .process-node__badge {
    animation: none;
  }
}

/* ========================================
   6. RESPONSIVE BREAKPOINTS
======================================== */
@media (max-width: 1080px) {
  /* Hero — Reset flex vertical centering so content starts cleanly below fixed navbar */
  .hero--services {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: clamp(130px, 16vh, 160px);
    padding-bottom: 70px;
  }
  .hero__grid-services {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-glass-visual {
    justify-content: center;
    width: 100%;
  }
  .glass-analytics-card {
    max-width: 460px;
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 28px;
  }
  .pricing-card--featured {
    transform: none;
  }
  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 860px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 48px;
  }
  .service-block:nth-child(even) .service-block__media {
    order: 0;
  }
  .service-block__media .capsule--compact {
    max-width: 280px;
  }
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  main > :not(.hero) h1,
  main > :not(.hero) h2,
  main > :not(.hero) h3 {
    text-align: center;
  }

  /* Hero Mobile Fixes */
  .hero--services {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 48px;
  }
  .hero__grid-services {
    gap: 36px;
  }
  .hero__content-services h1 {
    font-size: clamp(30px, 8.5vw, 42px);
    line-height: 1.15;
    margin-top: 12px;
    margin-bottom: 16px;
  }
  .hero__content-services .lead {
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .hero__content-services .btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 28px !important;
  }
  .hero__content-services .btn-row .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-platforms {
    padding-top: 18px;
  }
  .hero-platforms__list {
    gap: 8px;
  }
  .platform-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  .hero-glass-visual {
    width: 100%;
    margin-top: 4px;
  }
  .glass-analytics-card {
    max-width: 100%;
    padding: 22px 18px;
    border-radius: 20px;
  }
  .glass-card__kpis {
    gap: 10px;
  }
  .glass-kpi {
    padding: 10px 12px;
    border-radius: 12px;
  }
  .glass-kpi__label {
    font-size: 10.5px;
  }
  .glass-kpi__value {
    font-size: 18px;
  }
  .glass-card__footer {
    font-size: 11px;
    padding-top: 10px;
  }

  /* Service Detail Blocks */
  .service-block {
    padding-block: 40px;
    gap: 28px;
  }
  .service-block__media .capsule--compact {
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: var(--r-pill);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }
  .service-block h2 {
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .service-block .lead {
    font-size: 15px;
    line-height: 1.55;
    margin-top: 14px !important;
  }
  .bullets {
    margin-top: 18px;
    gap: 10px;
  }
  .bullets li {
    font-size: 14px;
    line-height: 1.45;
  }
  .service-block .btn--book-now {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
    padding: 11px 20px;
    font-size: 13.5px;
  }

  /* Analytics Modules Section */
  .analytics-sessions-section .heading-block {
    margin-bottom: 32px !important;
  }
  .analytics-sessions-section .heading-block h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .analytics-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .analytics-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .analytics-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .analytics-card__widget {
    padding: 12px 14px;
    border-radius: 12px;
  }

  /* Process Strip */
  .process-strip {
    gap: 20px;
  }
  .process-node {
    max-width: 100%;
  }

  /* Pricing Section */
  .pricing-header-wrap {
    margin-bottom: 32px;
  }
  .pricing-header-wrap h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
  .pricing-toggle-wrap {
    display: flex;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    margin-top: 20px;
    margin-bottom: 32px;
  }
  .pricing-toggle-btn {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }
  .pricing-toggle-discount {
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 3px;
  }
  .pricing-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .pricing-badge {
    padding-inline: 13px;
    font-size: 11px;
  }
  .pricing-card__title {
    font-size: 22px;
  }
  .pricing-card__desc {
    min-height: auto;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .pricing-card__price-box {
    margin-bottom: 22px;
    padding-bottom: 20px;
  }
  .pricing-card__price {
    font-size: 34px;
  }
  .pricing-features {
    gap: 10px;
    margin-bottom: 26px;
  }
  .pricing-features li {
    font-size: 13.5px;
  }
  .pricing-card .btn {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .analytics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 360px) {
  .glass-card__kpis {
    grid-template-columns: 1fr;
  }
  .pricing-toggle-wrap {
    flex-direction: column;
    border-radius: 16px;
  }
  .pricing-toggle-btn {
    width: 100%;
  }
}