/* ============================================================
   WEBSTORE.CSS — WhatsApp WebStore Page
   ============================================================ */

/* ══ HERO ══ */
.ws-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #060e06 0%,
    #0d1a0e 60%,
    #0a1a0b 100%
  );
}
.ws-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(
      rgba(76,175,80,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(76,175,80,0.04) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  z-index: 0;
}
.ws-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.ws-orb-1 {
  width: 500px; height: 500px;
  background: rgba(27,94,32,0.45);
  top: -150px; left: -150px;
  animation: orbFloat 10s
    ease-in-out infinite;
}
.ws-orb-2 {
  width: 350px; height: 350px;
  background: rgba(37,211,102,0.15);
  bottom: -80px; right: 5%;
  animation: orbFloat 12s
    ease-in-out infinite reverse;
}
.ws-orb-3 {
  width: 200px; height: 200px;
  background: rgba(76,175,80,0.2);
  top: 30%; right: 15%;
  animation: orbFloat 8s
    ease-in-out infinite;
  opacity: 0.6;
}
.ws-hero .container {
  position: relative;
  z-index: 1;
}

/* ── Hero Badge ── */
.ws-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.1);
  border: 1px solid
    rgba(76,175,80,0.25);
  color: #81c784;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeSlideDown
    0.6s ease both;
}
.ws-live-dot {
  width: 7px; height: 7px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 8px #4caf50;
  animation: pulseDot 1.5s
    ease-in-out infinite;
}

/* ── Hero Title ── */
.ws-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(
    2.2rem, 5.5vw, 3.8rem
  );
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
  animation: fadeSlideUp
    0.7s 0.1s ease both;
}
.ws-accent {
  background: linear-gradient(
    135deg, #25d366, #4caf50
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ws-accent-gold {
  background: linear-gradient(
    135deg, #f0b429, #fbbf24
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Sub ── */
.ws-hero-sub {
  font-size: 1.05rem;
  color: rgba(232,245,233,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
  animation: fadeSlideUp
    0.7s 0.2s ease both;
}

/* ── Highlights ── */
.ws-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeSlideUp
    0.7s 0.25s ease both;
}
.ws-hl-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76,175,80,0.1);
  border: 1px solid
    rgba(76,175,80,0.2);
  color: #81c784;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.ws-hl-item i { font-size: 12px; }
.ws-hl-item i.fa-whatsapp {
  color: #25d366;
}

/* ── Stats ── */
.ws-hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  animation: fadeSlideUp
    0.7s 0.3s ease both;
}
.ws-stat .ws-stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ws-stat .ws-stat-val em {
  color: #4caf50;
  font-style: normal;
  font-size: 1rem;
}
.ws-stat .ws-stat-lbl {
  font-size: 11px;
  color: rgba(232,245,233,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── Buttons ── */
.ws-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  animation: fadeSlideUp
    0.7s 0.4s ease both;
}
.btn-ws-primary {
  background: linear-gradient(
    135deg, #2e7d32, #1b5e20
  );
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px
    rgba(27,94,32,0.45);
  transition: all 0.3s;
}
.btn-ws-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px
    rgba(27,94,32,0.55);
  color: #fff;
}
.btn-ws-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid
    rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-ws-ghost:hover {
  background: rgba(76,175,80,0.1);
  border-color: rgba(76,175,80,0.4);
  color: #81c784;
}
.ws-free-note {
  font-size: 12px;
  color: rgba(232,245,233,0.4);
  font-weight: 600;
  margin: 0;
}
.ws-free-note i {
  color: #4caf50;
  margin-right: 4px;
}

/* ══ PHONE MOCKUP ══ */
.ws-store-preview {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px;
}
.ws-phone-mockup {
  width: 280px;
  background: #0d1a0e;
  border: 2px solid
    rgba(76,175,80,0.3);
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 6px rgba(76,175,80,0.05);
  position: relative;
  z-index: 2;
}
.ws-phone-screen {
  padding: 0;
  background: #060e06;
}

/* Store Header */
.ws-screen-header {
  background: #1b5e20;
  padding: 14px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ws-store-logo {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}
.ws-store-info { flex: 1; }
.ws-store-name {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.ws-store-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}
.ws-wa-icon {
  color: #fff;
  font-size: 20px;
  opacity: 0.8;
}

/* Search Bar */
.ws-search-bar {
  background: rgba(255,255,255,0.08);
  border: 1px solid
    rgba(255,255,255,0.1);
  margin: 10px 10px 0;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.ws-search-bar i {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* Banner */
.ws-banner {
  background: linear-gradient(
    135deg,
    rgba(240,180,41,0.2),
    rgba(240,180,41,0.08)
  );
  border: 1px solid
    rgba(240,180,41,0.2);
  margin: 10px 10px 0;
  border-radius: 10px;
  padding: 10px 12px;
}
.ws-banner-text {
  font-size: 12px;
  font-weight: 800;
  color: #f0b429;
}
.ws-banner-sub {
  font-size: 10px;
  color: rgba(240,180,41,0.6);
}

/* Products Grid */
.ws-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
}
.ws-prod-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid
    rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
}
.ws-prod-img {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.wpi-1 {
  background: rgba(76,175,80,0.2);
}
.wpi-2 {
  background: rgba(240,180,41,0.2);
}
.wpi-3 {
  background: rgba(99,102,241,0.2);
}
.wpi-4 {
  background: rgba(239,68,68,0.2);
}
.ws-secret-code {
  position: absolute;
  bottom: 4px; right: 4px;
  font-size: 8px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.4);
  padding: 2px 5px;
  border-radius: 4px;
  font-family: monospace;
}
.ws-prod-details {
  padding: 6px 8px;
}
.ws-prod-name {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2px;
}
.ws-prod-price {
  font-size: 12px;
  font-weight: 800;
  color: #4caf50;
}

/* Order Button */
.ws-order-btn {
  background: #25d366;
  color: #fff;
  margin: 0 10px 10px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Floating Cards */
.ws-float {
  position: absolute;
  background: rgba(13,26,14,0.95);
  border: 1px solid
    rgba(76,175,80,0.25);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px
    rgba(0,0,0,0.4);
  z-index: 3;
  animation: floatTag 4s
    ease-in-out infinite;
}
.ws-float-1 {
  top: 20px; right: -10px;
  animation-delay: 0s;
}
.ws-float-2 {
  bottom: 80px; left: -10px;
  animation-delay: -2s;
}
.ws-float-3 {
  top: 50%; right: -10px;
  transform: translateY(-50%);
  animation-delay: -1s;
}
.ws-float-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.ws-float-val {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.ws-float-sub {
  font-size: 10px;
  color: rgba(232,245,233,0.45);
}

/* ══ TRUST BAR ══ */
.ws-trust-bar {
  background: rgba(13,26,14,0.85);
  border-top: 1px solid
    rgba(76,175,80,0.1);
  border-bottom: 1px solid
    rgba(76,175,80,0.1);
  padding: 16px 0;
  backdrop-filter: blur(10px);
}
.ws-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ws-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(232,245,233,0.5);
}
.ws-trust-item i { color: #4caf50; }

/* ══ HOW IT WORKS ══ */
.ws-how-section {
  padding: 100px 0;
  background: #0d1a0e;
}
.ws-step-card {
  background: #111d12;
  border: 1px solid
    rgba(76,175,80,0.12);
  border-radius: 20px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.ws-step-card:hover {
  border-color: rgba(76,175,80,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px
    rgba(0,0,0,0.35);
}
.ws-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(76,175,80,0.12);
  line-height: 1;
  margin-bottom: 14px;
}
.ws-step-icon {
  width: 50px; height: 50px;
  background: rgba(76,175,80,0.1);
  border: 1px solid
    rgba(76,175,80,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #4caf50;
  margin-bottom: 16px;
}
.ws-step-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.ws-step-card p {
  font-size: 13px;
  color: rgba(232,245,233,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ══ FEATURES ══ */
.ws-features-section {
  padding: 100px 0;
  background: #080e08;
}
.ws-feat-card {
  background: #111d12;
  border: 1px solid
    rgba(76,175,80,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ws-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(
    90deg, transparent,
    #4caf50, transparent
  );
  opacity: 0;
  transition: 0.3s;
}
.ws-feat-card:hover {
  border-color: rgba(76,175,80,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px
    rgba(0,0,0,0.4);
}
.ws-feat-card:hover::before {
  opacity: 1;
}
.ws-feat-highlight {
  background: linear-gradient(
    160deg, #0d2a0e, #1a4e1b
  );
  border-color: rgba(76,175,80,0.25);
}
.ws-feat-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.wfi-wa {
  background: rgba(37,211,102,0.12);
  color: #25d366;
  border: 1px solid
    rgba(37,211,102,0.2);
}
.wfi-green {
  background: rgba(76,175,80,0.12);
  color: #4caf50;
  border: 1px solid
    rgba(76,175,80,0.2);
}
.wfi-gold {
  background: rgba(240,180,41,0.12);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.2);
}
.wfi-blue {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid
    rgba(59,130,246,0.2);
}
.wfi-yellow {
  background: rgba(234,179,8,0.12);
  color: #eab308;
  border: 1px solid
    rgba(234,179,8,0.2);
}
.wfi-purple {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid
    rgba(99,102,241,0.2);
}
.wfi-teal {
  background: rgba(20,184,166,0.12);
  color: #2dd4bf;
  border: 1px solid
    rgba(20,184,166,0.2);
}
.wfi-orange {
  background: rgba(249,115,22,0.12);
  color: #fb923c;
  border: 1px solid
    rgba(249,115,22,0.2);
}
.ws-feat-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.ws-feat-card p {
  font-size: 13px;
  color: rgba(232,245,233,0.5);
  line-height: 1.7;
  margin-bottom: 14px;
}
.ws-feat-list {
  list-style: none;
  padding: 0; margin: 0;
}
.ws-feat-list li {
  font-size: 12px;
  color: rgba(232,245,233,0.5);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ws-feat-list li i {
  color: #4caf50;
  font-size: 10px;
  flex-shrink: 0;
}

/* ══ PRICING ══ */
.ws-pricing-section {
  padding: 100px 0;
  background: #0d1a0e;
}
.ws-price-card {
  background: #111d12;
  border: 1px solid
    rgba(76,175,80,0.12);
  border-radius: 22px;
  padding: 32px 26px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.ws-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px
    rgba(0,0,0,0.4);
}
.ws-price-popular {
  background: linear-gradient(
    160deg, #0d2a0e, #1a4e1b
  );
  border-color: rgba(240,180,41,0.3);
  box-shadow: 0 8px 40px
    rgba(240,180,41,0.1);
}
.ws-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg, #f0b429, #d97706
  );
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px
    rgba(240,180,41,0.35);
}
.ws-price-top {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid
    rgba(255,255,255,0.06);
}
.ws-price-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.wpi-green {
  background: rgba(76,175,80,0.12);
  color: #4caf50;
  border: 1px solid
    rgba(76,175,80,0.2);
}
.wpi-gold {
  background: rgba(240,180,41,0.12);
  color: #f0b429;
  border: 1px solid
    rgba(240,180,41,0.2);
}
.wpi-purple {
  background: rgba(99,102,241,0.12);
  color: #818cf8;
  border: 1px solid
    rgba(99,102,241,0.2);
}
.ws-plan-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.ws-plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.ws-plan-price span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.ws-price-gold { color: #f0b429; }
.ws-price-purple { color: #818cf8; }
.ws-plan-products {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}
.ws-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.ws-plan-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px solid
    rgba(255,255,255,0.04);
}
.ws-plan-list li.included {
  color: rgba(232,245,233,0.7);
}
.ws-plan-list li.included i {
  color: #4caf50;
  font-size: 11px;
  flex-shrink: 0;
}
.ws-plan-list li.not-included {
  color: rgba(232,245,233,0.2);
  text-decoration: line-through;
}
.ws-plan-list li.not-included i {
  color: rgba(239,68,68,0.4);
  font-size: 11px;
  flex-shrink: 0;
}
.btn-ws-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-ws-plan-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid
    rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.btn-ws-plan-ghost:hover {
  background: rgba(76,175,80,0.1);
  border-color: rgba(76,175,80,0.3);
  color: #81c784;
}
.btn-ws-plan-primary {
  background: linear-gradient(
    135deg, #f0b429, #d97706
  );
  color: #000;
  font-weight: 800;
  box-shadow: 0 8px 24px
    rgba(240,180,41,0.3);
}
.btn-ws-plan-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px
    rgba(240,180,41,0.4);
  color: #000;
}

/* ══ TESTIMONIALS ══ */
.ws-testi-section {
  padding: 100px 0;
  background: #080e08;
}
.ws-testi-wrap {
  background: #0d1a0e;
  border: 1px solid
    rgba(76,175,80,0.1);
  border-radius: 28px;
  padding: 60px 40px;
}
.ws-testi-card {
  background: #111d12;
  border: 1px solid
    rgba(76,175,80,0.1);
  border-radius: 18px;
  padding: 26px;
  border-bottom: 3px solid #4caf50;
  transition: 0.3s;
  height: 100%;
}
.ws-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px
    rgba(0,0,0,0.4);
}
.ws-testi-stars {
  color: #f0b429;
  font-size: 14px;
  margin-bottom: 12px;
}
.ws-testi-text {
  font-size: 13px;
  color: rgba(232,245,233,0.55);
  line-height: 1.75;
  margin-bottom: 18px;
}
.ws-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ws-testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.av-green {
  background: linear-gradient(
    135deg, #1b5e20, #4caf50
  );
}
.av-gold {
  background: linear-gradient(
    135deg, #f0b429, #fbbf24
  );
}
.av-purple {
  background: linear-gradient(
    135deg, #6366f1, #818cf8
  );
}
.ws-testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.ws-testi-role {
  font-size: 11px;
  color: rgba(232,245,233,0.4);
}

/* ══ CTA ══ */
.ws-cta-section {
  padding: 100px 0;
  background: #080e08;
}
.ws-cta-inner {
  background: linear-gradient(
    145deg, #0a1f0b,
    #1b5e20 60%, #0a1f0b
  );
  border: 1px solid
    rgba(76,175,80,0.2);
  border-radius: 28px;
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ws-cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(
    circle,
    rgba(76,175,80,0.2),
    transparent 70%
  );
  pointer-events: none;
}
.ws-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(
    2rem, 5vw, 3rem
  );
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.ws-cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
  position: relative;
}
.ws-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
  position: relative;
}
.ws-cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  .ws-hero {
    padding: 40px 0 60px;
  }
  .ws-store-preview {
    margin-top: 40px;
  }
  .ws-float { display: none; }
  .ws-testi-wrap {
    padding: 36px 20px;
  }
  .ws-cta-inner {
    padding: 50px 24px;
  }
  .ws-step-card {
    padding: 24px 20px;
  }
  .ws-price-card {
    padding: 28px 20px;
  }
}
@media (max-width: 576px) {
  .ws-hero-btns {
    flex-direction: column;
  }
  .btn-ws-primary,
  .btn-ws-ghost {
    justify-content: center;
  }
  .ws-hero-stats { gap: 16px; }
  .ws-highlights { gap: 8px; }
  .ws-cta-btns {
    flex-direction: column;
  }
  .btn-ws-primary,
  .btn-wa {
    justify-content: center;
  }
  .ws-phone-mockup {
    width: 240px;
  }
  .ws-cta-stats {
    gap: 16px;
  }
  .cta-stat-divider {
    display: none;
  }
}