/* ========================================
   SOSYAL MEDYA PAGE - PREMIUM STYLING
   ======================================== */

:root {
  --sm-color-primary: #22d3ee;
  --sm-color-secondary: #8b5cf6;
  --sm-color-accent: #f97316;
  --sm-color-bg: #09090e;
  --sm-color-bg-light: #1a1a2e;
  --sm-color-text: #ffffff;
  --sm-color-text-muted: #64748b;
  --sm-transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   HERO SECTION
   ======================================== */
.sm-hero {
  position: relative;
  background: #ffffff;
  padding: 120px 0 80px;
  overflow: hidden;
}

.sm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.sm-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.sm-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: #0891b2;
  width: fit-content;
  animation: fadeInDown 0.8s ease;
}

.sm-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.sm-hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.sm-hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.sm-cta-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  color: white;
}

.sm-cta-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.sm-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-number {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sm-color-primary) 0%, var(--sm-color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.sm-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.8s ease 0.2s both;
}

.sm-phone-mockup {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9/16;
  background: #1a1a2e;
  border: 2px solid #0f172a;
  border-radius: 48px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: visible;
}

.sm-phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 28px;
  background: #0f172a;
  border-radius: 0 0 24px 24px;
  z-index: 10;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.sm-phone-content {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 40px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-instagram-feed {
  width: 100%;
  height: 100%;
  background: url('assets/instagram mockup.png') center/100% 100% no-repeat;
  border-radius: 40px;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.sm-services {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(34, 211, 238, 0.05) 100%);
}

.sm-services::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sm-services::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.sm-service-card {
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
  position: relative;
  overflow: hidden;
}

.sm-service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.sm-service-card:nth-child(1) { animation-delay: 0.1s; }
.sm-service-card:nth-child(2) { animation-delay: 0.2s; }
.sm-service-card:nth-child(3) { animation-delay: 0.3s; }
.sm-service-card:nth-child(4) { animation-delay: 0.4s; }
.sm-service-card:nth-child(5) { animation-delay: 0.5s; }
.sm-service-card:nth-child(6) { animation-delay: 0.6s; }

.sm-service-card:hover {
  border-color: rgba(34, 211, 238, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(34, 211, 238, 0.08) 100%);
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(34, 211, 238, 0.2), 0 8px 16px rgba(139, 92, 246, 0.1);
}

.sm-service-card:hover::before {
  opacity: 1;
}

.sm-service-icon {
  font-size: 48px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.2);
}

.sm-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.sm-service-card p {
  font-size: 15px;
  color: #5a677a;
  line-height: 1.7;
  flex-grow: 1;
  font-weight: 500;
}

/* ========================================
   BEFORE/AFTER SECTION
   ======================================== */
.sm-before-after {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.03) 0%, transparent 100%);
}

.sm-ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.sm-ba-item {
  animation: fadeInUp 0.8s ease;
}

.sm-ba-item:nth-child(2) {
  animation-delay: 0.2s;
}

.sm-ba-comparison {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-ba-before,
.sm-ba-after {
  flex: 1;
  text-align: center;
}

.sm-ba-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sm-color-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sm-ba-image {
  aspect-ratio: 1;
  min-height: 500px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-ba-slider {
  font-size: 24px;
  color: var(--sm-color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.sm-ba-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sm-ba-metric {
  padding: 16px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--sm-transition);
}

.sm-ba-metric:hover {
  background: rgba(34, 211, 238, 0.15);
  transform: translateY(-4px);
}

.sm-ba-metric-icon {
  font-size: 24px;
}

.sm-ba-metric-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--sm-color-primary);
}

.sm-ba-metric-label {
  font-size: 12px;
  color: var(--sm-color-text-muted);
  font-weight: 600;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.sm-pricing {
  padding: 80px 0;
  position: relative;
}

.sm-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.sm-pricing-card {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: var(--sm-transition);
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.sm-pricing-card:nth-child(1) { animation-delay: 0.1s; }
.sm-pricing-card:nth-child(2) { animation-delay: 0.2s; }
.sm-pricing-card:nth-child(3) { animation-delay: 0.3s; }

.sm-pricing-card:hover {
  border-color: var(--sm-color-primary);
  background: rgba(34, 211, 238, 0.05);
  transform: translateY(-8px);
}

.sm-pricing-popular {
  transform: scale(1.05);
  border-color: var(--sm-color-secondary);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(34, 211, 238, 0.05) 100%);
}

.sm-pricing-popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.sm-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--sm-color-primary) 0%, var(--sm-color-secondary) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.sm-badge-premium {
  background: linear-gradient(135deg, var(--sm-color-accent) 0%, #f97316 100%);
}

.sm-pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.sm-pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.sm-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sm-price-currency {
  font-size: 20px;
  color: var(--sm-color-primary);
  font-weight: 700;
}

.sm-price-amount {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
}

.sm-price-period {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.sm-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.sm-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.sm-pricing-popular .sm-pricing-feature {
  color: #334155;
}

.sm-check {
  color: var(--sm-color-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.sm-pricing-cta {
  width: 100%;
  transition: var(--sm-transition);
}

.btn-outline-premium {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12) 0%, rgba(139, 92, 246, 0.06) 100%);
  color: var(--sm-color-primary);
  border: 2px solid rgba(34, 211, 238, 0.4);
  border-radius: 14px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-outline-premium:hover {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(139, 92, 246, 0.12) 100%);
  border-color: rgba(34, 211, 238, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(34, 211, 238, 0.2);
}

.btn-gradient-premium {
  background: linear-gradient(135deg, var(--sm-color-primary) 0%, var(--sm-color-secondary) 100%);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.35), 0 4px 12px rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gradient-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-gradient-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(34, 211, 238, 0.45), 0 8px 16px rgba(139, 92, 246, 0.3);
}

.btn-gradient-premium:hover::before {
  left: 100%;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.sm-testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.03) 100%);
}

.sm-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sm-testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--sm-transition);
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.sm-testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.sm-testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.sm-testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.sm-testimonial-card:nth-child(4) { animation-delay: 0.4s; }

.sm-testimonial-card:hover {
  border-color: var(--sm-color-primary);
  background: rgba(34, 211, 238, 0.05);
  transform: translateY(-4px);
}

.sm-testimonial-rating {
  font-size: 14px;
  color: #fbbf24;
  letter-spacing: 2px;
}

.sm-testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  font-style: italic;
  flex-grow: 1;
}

.sm-testimonial-author {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sm-color-primary) 0%, var(--sm-color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.sm-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.sm-author-role {
  font-size: 12px;
  color: var(--sm-color-text-muted);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.sm-faq {
  padding: 80px 0;
  position: relative;
}

.sm-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sm-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.sm-faq-item:nth-child(1) { animation-delay: 0.1s; }
.sm-faq-item:nth-child(2) { animation-delay: 0.15s; }
.sm-faq-item:nth-child(3) { animation-delay: 0.2s; }
.sm-faq-item:nth-child(4) { animation-delay: 0.25s; }
.sm-faq-item:nth-child(5) { animation-delay: 0.3s; }
.sm-faq-item:nth-child(6) { animation-delay: 0.35s; }
.sm-faq-item:nth-child(7) { animation-delay: 0.4s; }
.sm-faq-item:nth-child(8) { animation-delay: 0.45s; }

.sm-faq-question {
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  transition: var(--sm-transition);
}

.sm-faq-item:hover .sm-faq-question {
  background: rgba(34, 211, 238, 0.1);
}

.sm-faq-icon {
  font-size: 20px;
  transition: var(--sm-transition);
  flex-shrink: 0;
}

.sm-faq-item.active .sm-faq-icon {
  transform: rotate(45deg);
}

.sm-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  transition: var(--sm-transition);
}

.sm-faq-item.active .sm-faq-answer {
  max-height: 500px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.sm-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  position: relative;
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.sm-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sm-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease;
}

.sm-final-cta h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  max-width: 600px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.sm-final-cta p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 500px;
}

.sm-cta-whatsapp-final {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  color: white;
  min-width: 280px;
}

.sm-cta-whatsapp-final:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.sm-cta-subtext {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #94a3b8;
}

.sm-cta-subtext p {
  margin: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .sm-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sm-hero-visual {
    order: -1;
  }

  .sm-hero-title {
    font-size: 44px;
  }

  .sm-pricing-cards {
    grid-template-columns: 1fr;
  }

  .sm-pricing-popular {
    transform: scale(1);
  }

  .sm-pricing-popular:hover {
    transform: translateY(-8px);
  }

  .sm-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm-ba-grid {
    grid-template-columns: 1fr;
  }

  .sm-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sm-hero {
    padding: 60px 20px 50px;
  }

  .sm-hero-title {
    font-size: 32px;
  }

  .sm-hero-subtitle {
    font-size: 16px;
  }

  .sm-hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .sm-hero-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sm-phone-mockup {
    max-width: 280px;
    border: 2px solid #0f172a;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }

  .sm-services {
    padding: 60px 20px;
  }

  .sm-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sm-service-card {
    padding: 32px 24px;
  }

  .sm-service-icon {
    width: 56px;
    height: 56px;
    font-size: 40px;
  }

  .sm-service-card h3 {
    font-size: 18px;
  }

  .sm-pricing {
    padding: 60px 20px;
  }

  .sm-pricing-card {
    padding: 24px 16px;
  }

  .sm-price-amount {
    font-size: 36px;
  }

  .sm-ba-comparison {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .sm-ba-grid {
    max-width: 100%;
    gap: 40px;
    padding: 0 20px;
  }

  .sm-ba-image {
    min-height: 250px;
  }

  .sm-ba-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .sm-ba-metric {
    padding: 12px 8px;
    font-size: 12px;
  }

  .sm-testimonials {
    padding: 60px 20px;
  }

  .sm-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .sm-testimonial-card {
    padding: 20px 16px;
  }

  .sm-faq {
    padding: 60px 20px;
  }

  .sm-faq-container {
    max-width: 100%;
  }

  .sm-faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .sm-final-cta {
    padding: 60px 20px;
  }

  .sm-final-cta h2 {
    font-size: 28px;
  }

  .sm-cta-whatsapp-final {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .sm-hero {
    padding: 40px 16px 30px;
  }

  .sm-hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .sm-hero-subtitle {
    font-size: 14px;
  }

  .sm-hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .metric-number {
    font-size: 20px;
  }

  .metric-label {
    font-size: 11px;
  }

  .sm-phone-mockup {
    max-width: 240px;
  }

  .sm-badge {
    font-size: 10px;
    padding: 6px 12px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 12px;
  }

  .sm-services {
    padding: 40px 16px;
  }

  .sm-services-grid {
    gap: 16px;
  }

  .sm-service-card {
    padding: 24px 16px;
    gap: 14px;
  }

  .sm-service-icon {
    font-size: 32px;
    width: 48px;
    height: 48px;
  }

  .sm-service-card h3 {
    font-size: 16px;
  }

  .sm-service-card p {
    font-size: 13px;
  }

  .sm-pricing {
    padding: 40px 16px;
  }

  .sm-pricing-cards {
    gap: 16px;
  }

  .sm-pricing-card {
    padding: 20px 12px;
    gap: 20px;
  }

  .sm-pricing-header {
    padding-bottom: 16px;
  }

  .sm-pricing-header h3 {
    font-size: 18px;
  }

  .sm-price-currency {
    font-size: 16px;
  }

  .sm-price-amount {
    font-size: 28px;
  }

  .sm-price-period {
    font-size: 12px;
  }

  .sm-pricing-feature {
    font-size: 12px;
    gap: 8px;
  }

  .sm-ba-grid {
    max-width: 100%;
    gap: 30px;
    padding: 0 16px;
  }

  .sm-ba-image {
    min-height: 200px;
  }

  .sm-ba-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sm-ba-metric {
    padding: 10px 6px;
    gap: 4px;
  }

  .sm-ba-metric-icon {
    font-size: 18px;
  }

  .sm-ba-metric-value {
    font-size: 14px;
  }

  .sm-ba-metric-label {
    font-size: 10px;
  }

  .sm-testimonials {
    padding: 40px 16px;
  }

  .sm-testimonials-grid {
    gap: 16px;
  }

  .sm-testimonial-card {
    padding: 16px 12px;
    gap: 12px;
  }

  .sm-testimonial-rating {
    font-size: 12px;
  }

  .sm-testimonial-text {
    font-size: 12px;
  }

  .sm-author-avatar {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .sm-author-name {
    font-size: 12px;
  }

  .sm-author-role {
    font-size: 10px;
  }

  .sm-faq {
    padding: 40px 16px;
  }

  .sm-faq-question {
    padding: 12px;
    font-size: 13px;
  }

  .sm-faq-answer {
    font-size: 12px;
  }

  .sm-final-cta {
    padding: 40px 16px;
  }

  .sm-final-cta h2 {
    font-size: 20px;
  }

  .sm-final-cta p {
    font-size: 14px;
  }

  .sm-cta-subtext {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .sm-hero-title {
    font-size: 24px;
  }

  .sm-hero-subtitle {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .sm-final-cta h2 {
    font-size: 24px;
  }
}
