/*
Theme Name: SMMBoost Child
Template: blocksy
*/

/* ===== VARIABLES ===== */
:root {
  --navy: #0a0e27;
  --navy-light: #111640;
  --blue-accent: #3b82f6;
  --blue-light: #60a5fa;
  --blue-glow: #38bdf8;
  --pink: #ec4899;
  --pink-light: #f472b6;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-bg: #eef1f6;
  --text-dark: #0b1035;
  --text-muted: #4a5072;
  --gradient-pink: linear-gradient(135deg, #ff6b9d 0%, #ee3d7b 50%, #e8296c 100%);
  --gradient-blue-pink: linear-gradient(135deg, var(--blue-accent), var(--pink));
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --shadow-card: 0 4px 24px rgba(10, 14, 39, 0.06);
  --shadow-card-hover: 0 8px 40px rgba(10, 14, 39, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --instagram: #E1306C;
  --tiktok: #010101;
  --facebook: #1877F2;
  --youtube: #FF0000;
}

/* ===== GLOBAL ===== */
.smm-front * {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

.smm-front {
  font-family: var(--font-body);
  color: var(--text-dark);
  overflow-x: hidden
}

.smm-front img {
  max-width: 100%
}

/* ===== SHARED ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.tag-light {
  background: var(--blue-accent)
}

.services-header h2,
.features-header h2,
.steps-top h2,
.why-text h2,
.results-header h2,
.reviews-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -.02em
}

.services-header p,
.features-header p,
.steps-top p,
.why-text>p,
.results-header p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6
}

.gradient-text-dark {
  background: var(--gradient-blue-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ===== HERO ===== */
.smm-hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 40px;
  overflow: hidden
}

.smm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 350px at 15% 50%, rgba(59, 130, 246, .07) 0%, transparent 70%), radial-gradient(ellipse 450px 400px at 85% 30%, rgba(236, 72, 153, .05) 0%, transparent 70%);
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px
}

.hero-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  animation: floatIcon 3s ease-in-out infinite
}

.hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 72, 153, .12);
  border: 1px solid rgba(236, 72, 153, .25);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--pink-light);
  margin-bottom: 24px
}

.smm-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -.02em
}

.smm-hero h1 .gradient-text {
  background: var(--gradient-blue-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.smm-hero p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 28px
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-accent);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(59, 130, 246, .3);
  position: relative;
  overflow: hidden
}

.hero-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transition: .5s
}

.hero-cta:hover {
  box-shadow: 0 4px 28px rgba(59, 130, 246, .5);
  transform: translateY(-1px);
  color: var(--white) !important
}

.hero-cta:hover::after {
  left: 100%
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
  flex-wrap: wrap
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  font-weight: 500
}

.hero-benefit .b-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
  color: var(--blue-light)
}

/* ===== COUNTDOWN ===== */
.smm-countdown-bar {
  background: var(--gradient-pink);
  padding: 14px 24px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.smm-countdown-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .08) 50%, transparent 100%);
  animation: shimmer 3s infinite
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

.countdown-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .03em
}

.countdown-icon {
  font-size: 1.1rem
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 5px
}

.countdown-timer .cd-num {
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(4px);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 1.1rem;
  font-weight: 800;
  min-width: 40px;
  text-align: center
}

.countdown-timer .cd-label {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .85;
  margin-right: 6px
}

/* ===== SERVICES ===== */
.smm-services {
  background: var(--off-white);
  padding: 80px 24px
}

.services-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  transition: height .3s ease
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover)
}

.service-card:hover::before {
  height: 4px
}

.card-instagram::before {
  background: var(--instagram)
}

.card-tiktok::before {
  background: var(--tiktok)
}

.card-facebook::before {
  background: var(--facebook)
}

.card-youtube::before {
  background: var(--youtube)
}

.card-instagram .card-icon {
  color: var(--instagram)
}

.card-tiktok .card-icon {
  color: var(--tiktok)
}

.card-facebook .card-icon {
  color: var(--facebook)
}

.card-youtube .card-icon {
  color: var(--youtube)
}

.card-instagram .card-links a {
  color: var(--instagram)
}

.card-tiktok .card-links a {
  color: var(--tiktok)
}

.card-facebook .card-links a {
  color: var(--facebook)
}

.card-youtube .card-links a {
  color: var(--youtube)
}

.card-instagram .card-cta {
  background: var(--instagram)
}

.card-tiktok .card-cta {
  background: var(--tiktok)
}

.card-facebook .card-cta {
  background: var(--facebook)
}

.card-youtube .card-cta {
  background: var(--youtube)
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px
}

.card-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1
}

.card-links li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid currentColor;
  opacity: .7
}

.card-links li a:hover {
  opacity: 1;
  transform: translateX(4px)
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto
}

.card-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px)
}

.card-cta i {
  font-size: .7rem;
  transition: transform .3s ease
}

.card-cta:hover i {
  transform: translateX(3px)
}

/* ===== WHY ===== */
.smm-why {
  background: var(--white);
  padding: 80px 24px
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.why-visual {
  display: flex;
  align-items: center;
  justify-content: center
}

.why-visual-inner {
  position: relative;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(236, 72, 153, .08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.why-visual-inner::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(59, 130, 246, .12);
  animation: spinSlow 30s linear infinite
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg)
  }
}

.why-icon-big {
  font-size: 4rem;
  background: var(--gradient-blue-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.why-float {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(10, 14, 39, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: floatIcon 3s ease-in-out infinite
}

.why-float-1 {
  top: -8px;
  right: 20px;
  color: var(--pink);
  animation-delay: 0s
}

.why-float-2 {
  bottom: 10px;
  left: -10px;
  color: #f59e0b;
  animation-delay: 1s
}

.why-float-3 {
  bottom: -8px;
  right: -5px;
  color: var(--blue-accent);
  animation-delay: 2s
}

.why-text {
  max-width: 480px
}

.why-text h2 {
  margin-bottom: 16px
}

.why-text>p {
  margin-bottom: 32px
}

.why-stats {
  display: flex;
  gap: 32px
}

.why-stat {
  display: flex;
  flex-direction: column
}

.why-stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px
}

.why-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500
}

/* ===== FEATURES ===== */
.smm-features {
  background: var(--off-white);
  padding: 80px 24px
}

.features-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: var(--shadow-card);
  transition: var(--transition)
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover)
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, .1), rgba(236, 72, 153, .1));
  color: var(--blue-accent);
  transition: var(--transition)
}

.feature-card:hover .feature-icon {
  background: var(--gradient-blue-pink);
  color: var(--white);
  -webkit-text-fill-color: var(--white)
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px
}

.feature-card p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6
}

/* ===== STEPS ===== */
.smm-steps {
  background: var(--navy);
  padding: 80px 24px;
  text-align: center
}

.steps-top {
  max-width: 560px;
  margin: 0 auto 48px
}

.steps-top h2 {
  color: var(--white)
}

.steps-top p {
  color: rgba(255, 255, 255, .55)
}

.steps-top .section-tag {
  background: rgba(255, 255, 255, .1);
  color: var(--blue-light)
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto
}

.step-card {
  flex: 1;
  max-width: 280px;
  padding: 36px 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: var(--transition);
  position: relative
}

.step-card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-4px)
}

.step-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .05);
  line-height: 1
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--gradient-blue-pink);
  color: var(--white)
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px
}

.step-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6
}

.step-divider {
  color: rgba(255, 255, 255, .15);
  font-size: .9rem;
  padding: 0 12px;
  flex-shrink: 0
}

/* ===== RESULTS ===== */
.smm-results {
  background: var(--white);
  padding: 80px 24px
}

.results-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px
}

.results-track-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto
}

.results-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;
  scrollbar-width: none
}

.results-track::-webkit-scrollbar {
  display: none
}

.result-slide {
  flex: 0 0 280px;
  scroll-snap-align: start
}

.result-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-bg);
  aspect-ratio: 9/16;
  box-shadow: var(--shadow-card);
  transition: var(--transition)
}

.result-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover)
}

.result-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.results-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(10, 14, 39, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  z-index: 3
}

.results-arrow:hover {
  background: var(--blue-accent);
  color: var(--white)
}

.results-prev {
  left: -22px
}

.results-next {
  right: -22px
}

/* ===== REVIEWS ===== */
.smm-reviews {
  background: var(--off-white);
  padding: 80px 24px
}

.reviews-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto
}

.review-benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(0, 0, 0, .04);
  box-shadow: var(--shadow-card);
  transition: var(--transition)
}

.review-benefit-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px)
}

.rb-full {
  grid-column: 1/-1
}

.rb-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px
}

.rb-blue {
  background: rgba(59, 130, 246, .1);
  color: var(--blue-accent)
}

.rb-green {
  background: rgba(34, 197, 94, .1);
  color: #22c55e
}

.rb-purple {
  background: rgba(139, 92, 246, .1);
  color: #8b5cf6
}

.review-benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px
}

.review-benefit-card>p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px
}

.rb-testimonial {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: 12px;
  border-left: 3px solid var(--blue-accent)
}

.rb-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0
}

.rb-av-pink {
  background: var(--pink)
}

.rb-av-blue {
  background: var(--blue-accent)
}

.rb-av-amber {
  background: #f59e0b
}

.rb-meta {
  flex: 1;
  min-width: 0
}

.rb-name {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px
}

.rb-handle {
  font-weight: 500;
  color: var(--text-muted);
  font-size: .78rem
}

.rb-meta p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic
}

/* ===== FOOTER ===== */
.smm-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .6);
  font-size: .84rem;
  line-height: 1.6
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
  gap: 40px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.footer-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white)
}

.footer-brand>p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .45);
  font-size: .82rem;
  line-height: 1.65
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  text-decoration: none;
  transition: var(--transition)
}

.footer-social a:hover {
  background: var(--blue-accent);
  color: var(--white);
  border-color: var(--blue-accent)
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: .82rem;
  transition: var(--transition)
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .5);
  font-size: .82rem
}

.footer-contact-item i {
  color: var(--blue-light);
  font-size: .8rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: var(--transition)
}

.footer-contact-item a:hover {
  color: var(--white)
}

.footer-pay-title {
  margin-top: 24px
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.pay-icon {
  width: 42px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, .45);
  transition: var(--transition)
}

.pay-icon:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .1)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom-inner>span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .35)
}

.footer-bottom-badges {
  display: flex;
  gap: 20px
}

.footer-bottom-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  font-weight: 500
}

.footer-bottom-badges i {
  color: rgba(59, 130, 246, .6);
  font-size: .7rem
}

footer[data-id],
.ct-footer,
footer.site-footer {
  display: none !important
}

/* ============================================
   PLATFORM / PRODUCT PAGES
   ============================================ */

/* ===== PLATFORM HERO — compact ===== */
.smm-platform-hero {
  padding: 36px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.platform-tiktok {
  background: var(--navy);
  color: var(--white);
}

.platform-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
}

.platform-facebook {
  background: var(--facebook);
  color: var(--white);
}

.platform-youtube {
  background: #1a1a1a;
  color: var(--white);
}

.platform-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.platform-hero-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 14px;
}

.smm-platform-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.smm-platform-hero p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
  color: var(--white);
}

/* ===== PRODUCT BODY ===== */
.smm-platform-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.smm-platform-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

/* ===== PRODUCT SECTIONS ===== */
.smm-product-section {
  padding: 56px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.smm-product-section:last-child {
  border-bottom: none;
}

.product-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.product-section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-underline {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  margin: 0 auto;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Colored header — only this changes per section */
.product-card-top {
  padding: 18px 24px 14px;
  text-align: center;
  color: var(--white);
}

.product-card-top h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}

.product-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

/* Card body — unified for all */
.product-card-body {
  padding: 28px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-price-old {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}

.product-price-old .woocommerce-Price-amount {
  font-size: inherit;
}

.product-price {
  margin-bottom: 8px;
}

.product-price .woocommerce-Price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.product-price .woocommerce-Price-currencySymbol {
  font-size: 1rem;
  vertical-align: super;
  margin-right: 2px;
  font-weight: 700;
}

.product-desc-line {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  flex-grow: 1;
  width: 100%;
  text-align: left;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li i {
  color: #22c55e;
  font-size: 0.82rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* Unified buy button — blue accent for all */
.product-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white) !important;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  background: var(--blue-accent) !important;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25);
}

.product-buy-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.product-buy-btn:hover {
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.product-buy-btn:hover::after {
  left: 100%;
}

.product-buy-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.product-buy-btn:hover i {
  transform: translateX(3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .why-visual {
    order: -1
  }

  .why-text {
    text-align: center;
    margin: 0 auto
  }

  .why-stats {
    justify-content: center
  }

  .results-prev {
    left: 4px
  }

  .results-next {
    right: 4px
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:768px) {
  .smm-hero {
    padding: 120px 20px 40px
  }

  .smm-hero h1 {
    font-size: 1.7rem
  }

  .smm-hero p {
    font-size: .9rem
  }

  .hero-benefits {
    gap: 20px;
    flex-direction: column;
    align-items: center
  }

  .countdown-inner {
    font-size: .8rem;
    gap: 10px
  }

  .countdown-timer .cd-num {
    font-size: 1rem;
    padding: 4px 8px;
    min-width: 36px
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 360px
  }

  .smm-services,
  .smm-features,
  .smm-why,
  .smm-steps,
  .smm-results,
  .smm-reviews {
    padding: 56px 20px
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto
  }

  .steps-grid {
    flex-direction: column;
    gap: 16px
  }

  .step-divider {
    transform: rotate(90deg);
    padding: 4px 0
  }

  .why-visual-inner {
    width: 200px;
    height: 200px
  }

  .why-icon-big {
    font-size: 2.8rem
  }

  .result-slide {
    flex: 0 0 220px
  }

  .reviews-grid {
    grid-template-columns: 1fr
  }

  .rb-full {
    grid-column: auto
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 36px
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto
  }

  .smm-platform-body {
    padding: 0 20px
  }

  .smm-product-section {
    padding: 40px 0
  }
}


/* ===== WOOCOMMERCE CART — light touch ===== */


/* Checkout button — blue accent instead of theme default */
.wc-proceed-to-checkout .checkout-button {
  background: var(--blue-accent) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  border: none !important;
}

.wc-proceed-to-checkout .checkout-button:hover {
  background: #2563eb !important;
}

/* Coupon & update buttons — navy */
.woocommerce-cart .coupon .button,
.woocommerce-cart .actions>.button {
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 10px !important;
}

/* Coupon input focus */
.woocommerce-cart .coupon .input-text:focus {
  border-color: var(--blue-accent) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Empty cart — return to shop button */
.woocommerce-cart .return-to-shop .button {
  background: var(--blue-accent) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 10px !important;
}

.woocommerce-message a {
  background: var(--blue-accent) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 10px !important;
}

/* ===== WOOCOMMERCE CHECKOUT — light touch ===== */


/* Form inputs — rounded and clean */
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border-radius: 10px !important;
  border: 1px solid #e2e5ea !important;
  padding: 12px 16px !important;
  background: var(--off-white) !important;
  transition: var(--transition) !important;
}

.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: var(--blue-accent) !important;
  background: var(--white) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Select2 dropdown match */
.woocommerce-checkout .select2-selection--single {
  border-radius: 10px !important;
  border: 1px solid #e2e5ea !important;
  background: var(--off-white) !important;
  height: auto !important;
  padding: 10px 16px !important;
}

.woocommerce-checkout .select2-selection--single:focus,
.woocommerce-checkout .select2-container--open .select2-selection--single {
  border-color: var(--blue-accent) !important;
  background: var(--white) !important;
}

/* Order review box */
.woocommerce-checkout .ct-order-review {
  background: var(--off-white) !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

/* Place order button */
.woocommerce-checkout #place_order {
  background: var(--blue-accent) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 14px 32px !important;
  font-size: 0.95rem !important;
  width: 100% !important;
}

.woocommerce-checkout #place_order:hover {
  background: #2563eb !important;
}

/* Required asterisks in blue instead of red */
.woocommerce-checkout .required {
  color: var(--blue-accent) !important;
}

/* Labels lighter */
.woocommerce-checkout label {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
}


/* ===== MINI CART DROPDOWN ===== */

/* Disable clicks on product title and image in mini cart */
.ct-cart-content .product-title,
.ct-cart-content .ct-media-container {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
}

/* Buttons — blue accent */
.ct-cart-content .woocommerce-mini-cart__buttons .checkout {
  background: var(--blue-accent) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 10px !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .wc-forward:not(.checkout) {
  border-radius: 10px !important;
}

/* ===== SALES NOTIFICATION TOAST ===== */
.smm-sales-toast {
  max-width: 1100px;
  margin: -20px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 5;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  height: 0;
  overflow: visible;
  text-align: center;
}

.smm-sales-toast.toast-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-pill);
  padding: 8px 20px 8px 10px;
  box-shadow: 0 4px 24px rgba(10, 14, 39, 0.08);
  margin: 24px auto 0;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.toast-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.toast-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: toastPulse 2s ease-in-out infinite;
}

@keyframes toastPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .toast-inner {
    padding: 6px 14px 6px 8px;
    gap: 8px;
  }

  .toast-text {
    font-size: 0.72rem;
  }

  .toast-icon {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }
}

/* =====================================================
   MYBOOSTEO — LEGAL PAGES
   Add after the main front-page CSS
===================================================== */

.smm-legal * {
  box-sizing: border-box;
}

.smm-legal {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ===== HERO ===== */

.smm-legal-hero {
  position: relative;
  min-height: 360px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 95px 24px 45px;
  text-align: center;
  overflow: hidden;
}

.smm-legal-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.legal-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .28;
}

.legal-orb-blue {
  left: -120px;
  top: 12%;
  background: radial-gradient(circle, rgba(59, 130, 246, .42), transparent 65%);
}

.legal-orb-pink {
  right: -130px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(236, 72, 153, .36), transparent 65%);
}

.legal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.smm-legal-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.smm-legal-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 1.35rem;
  box-shadow: 0 8px 40px rgba(59, 130, 246, .18);
}

.legal-tag {
  background: rgba(236, 72, 153, .12);
  color: var(--pink-light);
  border: 1px solid rgba(236, 72, 153, .25);
}

.smm-legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--white);
  margin: 8px 0 16px;
}

.smm-legal-hero h1::after {
  content: '';
  display: block;
  width: 88px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--gradient-blue-pink);
  margin: 22px auto 0;
}

.smm-legal-hero p {
  max-width: 590px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .64);
  font-size: .98rem;
  line-height: 1.7;
}

.smm-legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 600;
}

/* ===== BODY LAYOUT ===== */

.smm-legal-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.smm-legal-sidebar {
  position: sticky;
  top: 110px;
  background: var(--white);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(10, 14, 39, .06);
  box-shadow: var(--shadow-card);
}

.smm-legal-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 18px;
}

.smm-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.smm-legal-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  background: var(--off-white);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: .86rem;
  font-weight: 700;
  transition: var(--transition);
}

.smm-legal-nav a i {
  font-size: .68rem;
  opacity: .55;
  transition: var(--transition);
}

.smm-legal-nav a:hover {
  color: var(--blue-accent);
  transform: translateX(3px);
  background: rgba(59, 130, 246, .08);
}

.smm-legal-nav a:hover i {
  transform: translateX(2px);
  opacity: 1;
}

.smm-legal-nav a.is-active {
  background: var(--gradient-blue-pink);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(59, 130, 246, .22);
}

.smm-legal-nav a.is-active i {
  opacity: 1;
}

.smm-legal-support {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.smm-legal-support::before {
  content: '';
  position: absolute;
  inset: auto -60px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, .35), transparent 70%);
}

.support-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.smm-legal-support h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  margin: 0 0 7px;
  position: relative;
  z-index: 1;
}

.smm-legal-support p {
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  line-height: 1.55;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.smm-legal-support a {
  color: var(--pink-light);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
  position: relative;
  z-index: 1;
}

/* ===== CONTENT CARD ===== */

.smm-legal-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(10, 14, 39, .06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.smm-legal-section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 4px;
  padding: 34px 38px;
  border-bottom: 1px solid rgba(10, 14, 39, .07);
}

.smm-legal-section:last-of-type {
  border-bottom: 0;
}

.smm-legal-section__num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(59, 130, 246, .08);
  color: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .78rem;
}

.smm-legal-section h2 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 0 0 12px;
}

.smm-legal-section__body {
  color: var(--text-muted);
  font-size: .94rem;
  line-height: 1.78;
}

.smm-legal-section__body p {
  margin: 0 0 14px;
}

.smm-legal-section__body p:last-child {
  margin-bottom: 0;
}

.smm-legal-section__body a {
  color: var(--blue-accent);
  font-weight: 700;
  text-decoration: none;
}

.smm-legal-section__body a:hover {
  color: var(--pink);
  text-decoration: underline;
}

.smm-legal-section__body ul {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.smm-legal-section__body li {
  position: relative;
  padding-left: 24px;
}

.smm-legal-section__body li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-blue-pink);
}

/* ===== CTA BOX ===== */

.smm-legal-cta {
  margin: 0;
  padding: 34px 38px;
  background: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.smm-legal-cta::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, .32), transparent 68%);
}

.smm-legal-cta::after {
  content: '';
  position: absolute;
  left: 38%;
  bottom: -160px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, .24), transparent 70%);
}

.smm-legal-cta>* {
  position: relative;
  z-index: 1;
}

.smm-legal-cta span {
  display: inline-flex;
  color: var(--pink-light);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.smm-legal-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 8px;
}

.smm-legal-cta p {
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
}

.smm-legal-cta .hero-cta {
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {
  .smm-legal-wrap {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .smm-legal-sidebar {
    position: relative;
    top: auto;
  }

  .smm-legal-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  @media (max-width: 680px) {
    .smm-legal-hero {
      min-height: auto;
      padding: 95px 20px 46px;
    }
  }

  .smm-legal-wrap {
    padding: 54px 18px;
  }

  .smm-legal-nav {
    grid-template-columns: 1fr;
  }

  .smm-legal-section {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .smm-legal-section__num {
    margin-bottom: 4px;
  }

  .smm-legal-cta {
    padding: 28px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .smm-legal-cta .hero-cta {
    width: 100%;
    justify-content: center;
  }
}


html {
  scroll-behavior: smooth;
}

.smm-product-section {
  scroll-margin-top: 120px;
}

/* =====================================================
   MYBOOSTEO — ABOUT PAGE
===================================================== */

.smm-about * {
  box-sizing: border-box;
}

.smm-about {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ===== HERO ===== */

.smm-about-hero {
  position: relative;
  min-height: 520px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px 75px;
  text-align: center;
  overflow: hidden;
}

.smm-about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: .28;
}

.about-orb-blue {
  left: -120px;
  top: 12%;
  background: radial-gradient(circle, rgba(59, 130, 246, .42), transparent 65%);
}

.about-orb-pink {
  right: -130px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(236, 72, 153, .36), transparent 65%);
}

.about-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.smm-about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.smm-about-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 1.35rem;
  box-shadow: 0 8px 40px rgba(59, 130, 246, .18);
}

.about-tag {
  background: rgba(236, 72, 153, .12);
  color: var(--pink-light);
  border: 1px solid rgba(236, 72, 153, .25);
}

.smm-about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.035em;
  color: var(--white);
  margin: 8px 0 16px;
}

.smm-about-hero h1 span {
  background: var(--gradient-blue-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.smm-about-hero h1::after {
  content: '';
  display: block;
  width: 88px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--gradient-blue-pink);
  margin: 22px auto 0;
}

.smm-about-hero p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .64);
  font-size: .98rem;
  line-height: 1.7;
}

/* ===== INTRO ===== */

.smm-about-intro {
  padding: 80px 24px 30px;
  background: var(--off-white);
}

.about-intro-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 26px;
  padding: 44px;
  border: 1px solid rgba(10, 14, 39, .06);
  box-shadow: var(--shadow-card);
}

.about-intro-card h2,
.about-section-head h2,
.about-how-text h2,
.about-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--text-dark);
  margin: 0 0 18px;
}

.about-intro-card p {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.78;
  margin: 0 0 14px;
}

.about-intro-card p:last-child {
  margin-bottom: 0;
}

/* ===== VALUES ===== */

.smm-about-values {
  padding: 50px 24px 80px;
  background: var(--off-white);
}

.about-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 38px;
}

.about-values-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(10, 14, 39, .06);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

.about-value-icon.blue {
  background: var(--blue-accent);
}

.about-value-icon.pink {
  background: var(--pink);
}

.about-value-icon.purple {
  background: #8b5cf6;
}

.about-value-icon.green {
  background: #22c55e;
}

.about-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 10px;
}

.about-value-card p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== HOW ===== */

.smm-about-how {
  padding: 80px 24px;
  background: var(--white);
}

.about-how-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.about-how-text p {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.75;
  margin: 0 0 22px;
}

.about-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.about-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.5;
}

.about-checks i {
  color: var(--blue-accent);
  margin-top: 3px;
}

.about-how-visual {
  display: flex;
  justify-content: center;
}

.about-phone {
  width: 280px;
  min-height: 420px;
  border-radius: 34px;
  background: var(--navy);
  border: 8px solid #151b45;
  padding: 26px 18px;
  box-shadow: 0 24px 70px rgba(10, 14, 39, .22);
  position: relative;
  overflow: hidden;
}

.about-phone::before {
  content: '';
  position: absolute;
  inset: -80px -80px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, .35), transparent 70%);
}

.about-phone-top {
  width: 70px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .22);
  margin: 0 auto 38px;
  position: relative;
  z-index: 1;
}

.about-phone-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .09);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 14px;
}

.about-phone-card i {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--gradient-blue-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TRUST ===== */

.smm-about-trust {
  padding: 70px 24px;
  background: var(--off-white);
}

.about-trust-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-trust-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(10, 14, 39, .06);
  box-shadow: var(--shadow-card);
}

.about-trust-card span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  background: var(--gradient-blue-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.about-trust-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: .86rem;
  font-weight: 600;
}

/* ===== CTA ===== */

.smm-about-cta {
  padding: 80px 24px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.smm-about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 350px at 15% 50%, rgba(59, 130, 246, .09) 0%, transparent 70%),
    radial-gradient(ellipse 450px 400px at 85% 30%, rgba(236, 72, 153, .08) 0%, transparent 70%);
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-inner h2 {
  color: var(--white);
}

.about-cta-inner p {
  color: rgba(255, 255, 255, .62);
  font-size: .96rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 26px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {

  .about-values-grid,
  .about-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-how-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 680px) {
  .smm-about-hero {
    min-height: auto;
    padding: 95px 20px 62px;
  }

  .smm-about-intro {
    padding: 58px 18px 28px;
  }

  .about-intro-card {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .smm-about-values,
  .smm-about-how,
  .smm-about-trust,
  .smm-about-cta {
    padding: 58px 18px;
  }

  .about-values-grid,
  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-phone {
    width: 250px;
    min-height: 380px;
  }
}