/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #f59e0b;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #fff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75em;
}

h2 {
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: var(--border-radius-full);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* better focus visible */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.6);
  outline-offset: 2px;
  border-radius: 6px;
}

hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  margin: 2rem 0;
}

/* Header */
.header {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  padding: 32px 0 24px 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 24px rgba(30,60,114,0.15);
  margin-bottom: 24px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-main {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-sub {
  color: #e0e0e0;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

.header-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 12px rgba(30,60,114,0.18);
  object-fit: cover;
  background: #fff;
  transition: transform 0.2s;
}

.header-logo img:hover {
  transform: scale(1.08) rotate(-4deg);
}

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

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Alert Box */
.alert {
  background-color: #fef2f2;
  color: #b91c1c;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  border-left: 5px solid #ffc107;
  border-radius: var(--border-radius);
  max-width: 800px;
  width: fit-content;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.6s ease-out 0.2s forwards;
}

.alert-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.alert a {
  color: #b91c1c;
  font-weight: 600;
  text-decoration: underline;
}

.alert a:hover, .alert a:focus {
  color: #533f03;
}

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

/* Container & Sections */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem clamp(1rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  background: #fdfcfc; /* Slight off-white for subtle warmth */
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
}

/* Cool gradient overlay on hover */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: var(--transition);
}

.section:hover::before {
  opacity: 1;
}

/* Animasi saat section muncul (dikelola oleh JS) */
.section.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.section img {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
  transition: var(--transition);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 8px;
  background: rgba(0,0,0,0.02);
}

.section:hover img {
  transform: scale(1.15);
  box-shadow: var(--shadow-md);
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 1rem;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  overflow: hidden; /* Ensures rounded corners apply to content */
}

th, td {
  padding: 1em 0.75em;
  text-align: left;
}

th {
  background-color: rgba(99, 102, 241, 0.08);
  font-weight: 500;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

td {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

td:last-child, th:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Efek hover pada baris tabel */
tbody tr {
  transition: var(--transition);
}

tbody tr:hover {
  background-color: rgba(99, 102, 241, 0.04);
}

/* Animasi untuk baris tabel */
tbody tr {
  opacity: 0;
  transform: translateX(-10px);
}

.section.visible tbody tr {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.section.visible tbody tr:nth-child(1) { transition-delay: 0.05s; }
.section.visible tbody tr:nth-child(2) { transition-delay: 0.15s; }
.section.visible tbody tr:nth-child(3) { transition-delay: 0.25s; }
.section.visible tbody tr:nth-child(4) { transition-delay: 0.35s; }
.section.visible tbody tr:nth-child(5) { transition-delay: 0.45s; }

/* Warning Section */
.warning {
  background: #fffbe6;
  border-left: 6px solid #ffe58f;
  padding: 1.5rem;
  margin: 1rem auto;
  border-radius: var(--border-radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 800px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
}

.warning.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.warning-icon {
  font-size: 1.8rem;
  color: #ffc107;
  margin-top: 0.2rem;
}

.warning-content {
  font-size: 1rem;
  color: #664d03;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.warning-content strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: #533f03;
  margin-bottom: 0.2rem;
}

/* Payment Section */
.payment {
  background: var(--bg-white);
  padding: 2.5rem clamp(1rem, 5vw, 4rem);
  text-align: center;
  margin: 2rem auto;
  border-radius: var(--border-radius);
  max-width: 900px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
}

.payment.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.payment h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.payment-logos {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  flex-wrap: wrap;
}

.payment-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
}

.payment-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 10px;
  background: var(--bg-light);
  transition: var(--transition);
}

.payment-logo span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.payment-logo:hover img {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.payment-logo:hover span {
  color: var(--text-primary);
}

/* Footer */
.footer {
  background: #1e293b;
  color: #e2e8f0;
  text-align: center;
  padding: 3.5rem 1rem 2.5rem;
  margin-top: 3rem;
  position: relative;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.footer p {
  margin: 0.5rem 0;
  line-height: 1.7;
}

.footer-highlight {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 1rem 0 !important;
}

.footer a {
  color: #94a3b8;
}

.footer a:hover {
  color: #f8fafc;
}

.footer-back {
  margin-top: 2.5rem;
}

.footer-back a {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-back a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
  z-index: -1;
}

.footer-back a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.footer-back a:hover::before {
  width: 100%;
}

/* Flash Sale Section */
.flash-sale-container {
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.flash-sale {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 50%, #ffa8a8 100%);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.flash-sale.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.flash-sale::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: flashSweep 3s infinite;
}

@keyframes flashSweep {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.flash-sale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.flash-sale-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-full);
  backdrop-filter: blur(10px);
}

.flash-icon {
  font-size: 1.5rem;
  animation: flashPulse 1s infinite;
}

@keyframes flashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.flash-text {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.countdown-timer {
  text-align: center;
  color: white;
}

.timer-label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timer-unit {
  background: rgba(255,255,255,0.2);
  padding: 0.8rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  min-width: 60px;
  text-align: center;
}

.timer-unit span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.timer-unit label {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timer-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.flash-sale-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.flash-deal {
  background: rgba(255,255,255,0.95);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.flash-deal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.deal-image {
  position: relative;
  flex-shrink: 0;
}

.deal-image img {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius);
  object-fit: contain;
}

.discount-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4757;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.5rem;
  border-radius: var(--border-radius);
  transform: rotate(15deg);
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

.deal-info {
  flex: 1;
}

.deal-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.price-flash {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.flash-price {
  color: #ff4757;
  font-weight: 700;
  font-size: 1.2rem;
}

.deal-stock {
  margin-bottom: 0.5rem;
}

.stock-bar {
  width: 100%;
  height: 6px;
  background: rgba(0,0,0,0.1);
  border-radius: var(--border-radius-full);
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4757, #ff6b7a);
  border-radius: var(--border-radius-full);
  transition: width 0.3s ease;
}

.stock-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.deal-action {
  flex-shrink: 0;
}

.flash-buy-btn {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
  position: relative;
  overflow: hidden;
}

.flash-buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
}

.flash-buy-btn:active {
  transform: translateY(0);
}

.flash-buy-btn .btn-icon {
  font-size: 1rem;
}



/* Testimonials Section */
.testimonials-container {
  margin: 2rem auto 1.5rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.testimonials {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(30px);
}

.testimonials.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: var(--text-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: serif;
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-card p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.testimonials-stats {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  padding: 15px;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: floatButton 0.5s ease-out 1s forwards;
}

@keyframes floatButton {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(15deg); }
  50% { transform: translateY(-5px) rotate(15deg); }
}

@keyframes timerPulse {
  0%, 100% { 
    background: rgba(255,255,255,0.2);
    transform: scale(1);
  }
  50% { 
    background: rgba(255,255,255,0.4);
    transform: scale(1.05);
  }
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 2.5rem 1rem 3rem;
  }
  
  .header h1 {
    margin-bottom: 0.8rem;
  }
  
  .header img {
    width: 100px;
    height: 100px;
  }
  
  .container {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  
  .section {
    padding: 1.5rem;
  }
  
  h2 {
    font-size: 1.3rem;
  }
  
  table {
    font-size: 0.85rem;
  }
  
  th, td {
    padding: 0.8em 0.5em;
  }
  
  .warning, .payment {
    padding: 1.5rem 1rem;
    max-width: 90%;
  }
  
  .payment-logos {
    gap: 1.5rem;
  }
  
  .payment-logo img {
    width: 60px;
    height: 60px;
  }
  
  .footer {
    padding: 2.5rem 1rem 2rem;
  }
  
  .footer-content {
    font-size: 0.9rem;
  }
  
  .footer-back a {
    padding: 0.8rem 1.7rem;
    font-size: 0.8rem;
  }
  
  .whatsapp-float span {
    display: none;
  }
  
  .whatsapp-float {
    padding: 14px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }
  
  .alert {
    max-width: 90%;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 1.2rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }
  
  th, td {
    padding: 0.7em 0.4em;
  }
  
  .warning-icon {
    font-size: 1.5rem;
  }
  
  .warning-content strong {
    font-size: 1rem;
  }
  
  /* Flash Sale Mobile */
  .flash-sale-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .timer-display {
    justify-content: center;
  }
  
  .timer-unit {
    min-width: 50px;
    padding: 0.6rem;
  }
  
  .timer-unit span {
    font-size: 1.2rem;
  }
  
  .flash-sale-content {
    grid-template-columns: 1fr;
  }
  
  .flash-deal {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .flash-buy-btn {
    width: 100%;
    justify-content: center;
  }
  

  
  /* Testimonials Mobile */
  .testimonials {
    padding: 2rem 1rem;
  }
  
  .testimonials h2 {
    font-size: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}