/* Brand marquee (full-width logo carousel) */
.brand-strip {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.brand-marquee {
  width: 100%;
  overflow: hidden;
}
.brand-track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 18px 24px;
  animation: brand-scroll 30s linear infinite;
  will-change: transform;
}
.brand-item {
  flex: 0 0 auto;
  width: 96px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.brand-item img, .brand-item svg { max-width: 100%; max-height: 100%; }
.brand-item:hover { filter: grayscale(0%); opacity: 1; transform: translateY(-2px); }

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .brand-track { gap: 32px; padding: 14px 16px; animation-duration: 40s; }
  .brand-item { width: 72px; height: 40px; }
}

/* Landing Page Specific Styles */

/* Modern Service Slider Section */
.service-slider-section {
  background: linear-gradient(135deg, #fafbff 0%, #f2f6ff 50%, #eaf2ff 100%);
  padding: 80px 0 80px; /* extra bottom space to separate from next section */
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.service-slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%235b43ea" stroke-width="0.2" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 1;
}

.service-slider-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(91, 67, 234, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.slider-header {
  text-align: right;            /* align title & subtitle to the right */
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
  position: relative;           /* for absolute badge */
  padding-top: 8px;
}

.slider-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.08), rgba(91, 67, 234, 0.12));
  border: 1px solid rgba(91, 67, 234, 0.15);
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 24px;
  transition: all 0.2s ease-out;
  backdrop-filter: blur(10px);
  position: absolute;   /* move to top-left */
  top: 0;
  left: 0;
  right: auto;
}

.slider-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.slider-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(91, 67, 234, 0.12);
  border-color: rgba(91, 67, 234, 0.25);
}

.slider-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--brand), #7c5cf0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: right;          /* right-align title */
}

.slider-subtitle {
  font-size: 1.3rem;
  color: var(--ink-2);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: right;          /* right-align subtitle */
  margin-right: 0;            /* remove auto-centering */
  margin-left: auto;
}

.slider-layout {
  margin-bottom: 60px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.slider-wrapper {
  position: relative;
  min-height: 440px;
  width: 100%;
}

/* Dot Navigation */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(91, 67, 234, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.slider-dot:hover {
  background: rgba(91, 67, 234, 0.45);
  transform: scale(1.08);
}

.slider-dot.active {
  background: var(--brand);
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(91, 67, 234, 0.12);
}

.slider-dot.active::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid rgba(91, 67, 234, 0.28);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Keyboard accessibility */
.slider-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 67, 234, 0.5);
}

@media (max-width: 768px) {
  .slider-dots {
    gap: 12px;
    margin-top: 28px;
  }
  .slider-dot {
    width: 12px;
    height: 12px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 400ms ease;
  pointer-events: none;
}
:root.low-motion .slider-slide {
  transition: transform 280ms ease, opacity 220ms ease;
}

.slider-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 3;
  pointer-events: auto;
}

/* Stacked positions */
.slider-slide.is-prev {
  opacity: 0.94;
  transform: scale(0.96) translateY(10px) translateX(-8%);
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.slider-slide.is-next {
  opacity: 0.94;
  transform: scale(0.96) translateY(10px) translateX(8%);
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.slider-slide.is-far-left {
  opacity: 0.6;
  transform: scale(0.92) translateY(20px) translateX(-16%);
  z-index: 1;
}
.slider-slide.is-far-right {
  opacity: 0.6;
  transform: scale(0.92) translateY(20px) translateX(16%);
  z-index: 1;
}

/* Give room so side slides peek in */
.slider-wrapper {
  padding-inline: 24px;
}

/* Mobile adjustments: ensure enough vertical space so section doesn't overlap */
@media (max-width: 768px) {
  .service-slider-section {
    padding-top: 64px;
    padding-bottom: 96px; /* push next section down on phones */
  }
  .slider-layout {
    margin-bottom: 72px; /* space below slider header+track */
  }
  .slider-wrapper {
    min-height: 520px; /* taller stack to fit content on small screens */
  }
}

/* Mobile card compact layout */
@media (max-width: 480px) {
  .slide-card {
    padding: 20px 16px;
  }
  .card-header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .card-icon { width: 44px; height: 44px; border-radius: 12px; }
  .card-icon svg { width: 22px; height: 22px; }
  .card-content h3 { font-size: 1.2rem; margin-bottom: 6px; }
  .card-content p { font-size: 0.9rem; margin-bottom: 12px; }

  /* Features as inline chips with wrap, not full-width */
  .card-features { flex-direction: row !important; flex-wrap: wrap !important; justify-content: flex-start !important; gap: 6px; margin-bottom: 14px; }
  .card-features .feature { width: auto !important; display: inline-flex; padding: 4px 10px; font-size: 0.8rem; border-radius: 14px; }

  /* Stats condensed in 2 columns; keep desktop color style (no bg) */
  .card-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; margin-bottom: 14px; }
  .stat { padding: 0; background: none; border-radius: 0; }
  .stat-number { font-size: 1rem; margin-bottom: 2px; }
  .stat-label { font-size: 0.78rem; }

  /* Buttons side-by-side but with safe gutters; not full-bleed */
  .card-actions { gap: 8px; padding: 0 2px; }
  .card-btn { flex: 1 1 auto; min-width: 0; padding: 10px 12px; font-size: 0.9rem; }
}

/* Tablet and down: ensure grid layout for stats and unify colors */
@media (max-width: 768px) {
  .card-stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .stat { background: none; padding: 0; border-radius: 0; }
}

.slide-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(91, 67, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slide-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(91, 67, 234, 0.12) 3px, transparent 3px),
    radial-gradient(circle at 80% 70%, rgba(91, 67, 234, 0.09) 4px, transparent 4px),
    radial-gradient(circle at 40% 80%, rgba(91, 67, 234, 0.06) 2px, transparent 2px),
    radial-gradient(circle at 90% 20%, rgba(91, 67, 234, 0.08) 3.5px, transparent 3.5px),
    radial-gradient(circle at 10% 60%, rgba(91, 67, 234, 0.05) 1.5px, transparent 1.5px),
    radial-gradient(circle at 70% 10%, rgba(91, 67, 234, 0.11) 3px, transparent 3px);
  background-size: 120px 120px, 180px 180px, 100px 100px, 150px 150px, 80px 80px, 140px 140px;
  background-position: 0 0, 90px 90px, 50px 50px, 75px 75px, 30px 30px, 70px 70px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
  animation: patternFloat 20s ease-in-out infinite;
}

.slide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #7c5cf0, #a855f7);
  border-radius: 24px 24px 0 0;
}

.slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(91, 67, 234, 0.15);
  border-color: rgba(91, 67, 234, 0.3);
}

.card-header {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.1), rgba(91, 67, 234, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.slide-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.15), rgba(91, 67, 234, 0.2));
}

.card-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}

.card-content p {
  color: var(--ink-2);
  margin: 0 0 20px;
  line-height: 1.6;
}

.start-price {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  margin: -8px 0 16px; /* tucks it visually between title/desc and features */
}

.card-features {
  display: flex;
  flex-wrap: nowrap; /* keep items on one row on large screens */
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}

.feature {
  padding: 6px 12px;
  background: rgba(91, 67, 234, 0.08);
  border: 1px solid rgba(91, 67, 234, 0.15);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;   /* prevent internal wrapping */
  flex: 0 0 auto;       /* don't shrink text pills */
}

.feature:hover {
  background: rgba(91, 67, 234, 0.12);
  transform: translateY(-1px);
}

.card-stats {
  display: flex;
  gap: 24px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ink-2);
  font-weight: 600;
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.card-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.card-btn.primary {
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  color: white;
  border: none;
  box-shadow: 0 4px 16px rgba(91, 67, 234, 0.3);
}

.card-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 67, 234, 0.4);
}

.card-btn.secondary {
  background: rgba(91, 67, 234, 0.08);
  color: var(--brand);
  border: 1px solid rgba(91, 67, 234, 0.2);
}

.card-btn.secondary:hover {
  background: rgba(91, 67, 234, 0.12);
  border-color: rgba(91, 67, 234, 0.3);
  transform: translateY(-1px);
}





/* Landing Page Specific Styles */
.hero-section {
  background: linear-gradient(135deg, #fafbff 0%, #f2f6ff 50%, #eaf2ff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%235b43ea" stroke-width="0.2" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(91, 67, 234, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

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

@keyframes patternFloat {
  0%, 100% { 
    background-position: 0 0, 90px 90px, 50px 50px, 75px 75px, 30px 30px, 70px 70px;
  }
  50% { 
    background-position: 15px 15px, 105px 105px, 65px 65px, 90px 90px, 45px 45px, 85px 85px;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.08), rgba(91, 67, 234, 0.12));
  border: 1px solid rgba(91, 67, 234, 0.15);
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 24px;
  transition: all 0.2s ease-out;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(91, 67, 234, 0.12);
  border-color: rgba(91, 67, 234, 0.25);
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--brand), #7c5cf0, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin: 0 0 32px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(91, 67, 234, 0.03);
  border: 1px solid rgba(91, 67, 234, 0.08);
  transition: all 0.2s ease-out;
}

.hero-feature:hover {
  background: rgba(91, 67, 234, 0.06);
  border-color: rgba(91, 67, 234, 0.15);
  transform: translateY(-1px);
}

.hero-feature svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  border: none;
  cursor: pointer;
}

.btn-hero svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
}

.btn-hero:hover svg {
  transform: translateX(2px);
}

.btn-hero.primary {
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  color: white;
  box-shadow: 0 8px 24px rgba(91, 67, 234, 0.25);
}

.btn-hero.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91, 67, 234, 0.35);
}

.btn-hero.secondary {
  background: white;
  color: var(--brand);
  border: 2px solid var(--brand);
  box-shadow: 0 4px 16px rgba(91, 67, 234, 0.08);
}

.btn-hero.secondary:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 67, 234, 0.25);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(23, 23, 38, 0.06);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #7c5cf0, #a855f7);
}

.card-header {
  text-align: center;
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--ink-2);
}

.service-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.04), rgba(91, 67, 234, 0.06));
  border: 1px solid rgba(91, 67, 234, 0.08);
  transition: all 0.2s ease-out;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.preview-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(91, 67, 234, 0.12);
  border-color: rgba(91, 67, 234, 0.15);
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.06), rgba(91, 67, 234, 0.08));
}

.preview-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease-out;
  flex-shrink: 0;
}

.preview-icon svg {
  width: 20px;
  height: 20px;
}

.preview-item:hover .preview-icon {
  transform: scale(1.05);
}

.preview-content {
  flex: 1;
  min-width: 0;
}

.preview-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.preview-price {
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 500;
}

.preview-badge {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.preview-item:nth-child(1) .preview-badge {
  background: rgba(38, 194, 129, 0.1);
  color: var(--success);
}

.preview-item:nth-child(2) .preview-badge {
  background: rgba(59, 130, 246, 0.1);
  color: var(--info);
}

.preview-item:nth-child(3) .preview-badge {
  background: rgba(255, 176, 32, 0.1);
  color: var(--warning);
}

.preview-item:nth-child(4) .preview-badge {
  background: rgba(224, 49, 49, 0.1);
  color: var(--danger);
}

.stats-row {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(91, 67, 234, 0.08);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ink-2);
  font-weight: 500;
}



/* Discount Cards Section */
.discount-section {
  background: linear-gradient(135deg, #fff5f5 0%, #fef7ff 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.discount-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 107, 107, 0.08) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(255, 142, 83, 0.06) 2px, transparent 2px);
  background-size: 60px 60px, 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.discount-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 142, 83, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(255, 142, 83, 0.08) 0%, transparent 50%);
  opacity: 1;
  z-index: 1;
}

.discount-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.discount-header {
  text-align: center;
  margin-bottom: 60px;
}

.discount-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.discount-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease-out;
}

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

.discount-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(255, 142, 83, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.discount-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
  border-color: rgba(255, 107, 107, 0.2);
}

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

.discount-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  border-color: #ff6b6b;
  position: relative;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}



.discount-card.featured::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.discount-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  max-width: 120px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discount-card.featured .discount-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  padding: 8px 16px;
  left: 16px;
  max-width: 140px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discount-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  margin-top: 8px;
  padding-left: 140px;
}

.discount-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 83, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.discount-card.featured .discount-icon {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.discount-icon svg {
  width: 28px;
  height: 28px;
  color: #ff6b6b;
}

.discount-card.featured .discount-icon svg {
  color: white;
}

.discount-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discount-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.discount-card.featured .discount-name {
  color: white;
}

.discount-desc {
  font-size: 0.95rem;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.4;
}

.discount-card.featured .discount-desc {
  color: rgba(255, 255, 255, 0.9);
}

.discount-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

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

.discount-card.featured .original-price {
  color: rgba(255, 255, 255, 0.7);
}

.final-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff6b6b;
}

.discount-card.featured .final-price {
  color: white;
}

.discount-save {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
}

.discount-card.featured .discount-save {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.discount-timer {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.timer-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  font-weight: 500;
}

.timer-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  font-family: 'Courier New', monospace;
}

.discount-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.discount-card.featured .discount-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.discount-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.discount-card.featured .discount-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}





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

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

/* Responsive Design */
@media (max-width: 768px) {
  .service-slider-section {
    padding: 60px 0 40px;
    min-height: auto;
  }
  
  .slider-container {
    padding: 0 16px;
  }
  
  .slider-title {
    font-size: 2.5rem;
  }
  
  .slider-subtitle {
    font-size: 1.1rem;
  }
  
  .slide-card {
    padding: 24px 16px;
  }
  
  .card-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .card-icon {
    width: 52px;
    height: 52px;
  }
  
  .card-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  .card-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .feature {
    font-size: 0.85rem;
    padding: 6px 10px;
    text-decoration: none;
    cursor: pointer;
  }
  
  .card-stats {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .stat {
    text-align: center;
    padding: 12px;
    background: rgba(91, 67, 234, 0.05);
    border-radius: 12px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .card-actions {
    flex-direction: row;      /* place buttons side-by-side */
    gap: 10px;
    flex-wrap: nowrap;
  }
  
  .card-btn {
    width: 50%;              /* each button takes half width */
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .slider-dots {
    margin-top: 20px;
    gap: 8px;
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  

  

  

  
  .hero-section {
    padding: 80px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .service-preview {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .discount-grid {
    grid-template-columns: 1fr;
  }
  
  .discount-card.featured {
    grid-column: span 1;
  }
  
  .discount-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .discount-badge {
    max-width: 100px;
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  
  .discount-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-card,
  .feature-card {
    padding: 30px;
  }
}

/* Low-motion mode: reduce costly effects for weak phones */
:root.low-motion .brand-track { animation: none !important; }
:root.low-motion .slider-dot.active::after { display: none !important; }
:root.low-motion .slide-card { backdrop-filter: none !important; background: #ffffff !important; box-shadow: 0 8px 16px rgba(0,0,0,0.06) !important; }
:root.low-motion .slide-card::after { animation: none !important; }
:root.low-motion .service-slider-section::after { animation: none !important; }
:root.low-motion .slider-slide { transition: transform 320ms ease, opacity 260ms ease !important; }

@media (max-width: 480px) {
  .service-slider-section {
    padding: 40px 0 30px;
  }
  
  .slider-container {
    padding: 0 12px;
  }
  
  .slider-title {
    font-size: 2rem;
  }
  
  .slider-subtitle {
    font-size: 1rem;
  }
  
  .slide-card {
    padding: 20px 12px;
  }
  
  .card-header {
    gap: 12px;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
  }
  
  .card-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  
  .card-content p {
    font-size: 0.9rem;
    margin-bottom: 14px;
  }
  
  .card-features {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
  }
  
  .feature {
    font-size: 0.85rem;
    padding: 5px 8px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
  }
  
  .card-stats {
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .stat {
    padding: 10px;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .card-actions {
    gap: 8px;
  }
  
  .card-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .slider-nav {
    margin-top: 24px;
    gap: 12px;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  

  

  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .btn-hero {
    padding: 16px 28px;
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Discount Carousel Section */
.discount-carousel-section {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #f0f0f0;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.carousel-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-1);
  margin: 0;
}

.carousel-subtitle {
  font-size: 0.95rem;
  color: var(--ink-2);
  margin: 8px 0 0;
}



.carousel-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 8px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iOS momentum */
  scroll-behavior: smooth;
  touch-action: pan-x; /* allow horizontal panning, keep vertical page scroll */
  scrollbar-width: none; /* Firefox hide */
  -ms-overflow-style: none; /* IE/Edge old */
}

.carousel-track::-webkit-scrollbar { /* WebKit hide */
  display: none;
}

.carousel-track.dragging {
  cursor: grabbing;
  transition: none;
  scroll-behavior: auto; /* disable smooth while dragging */
}

.carousel-track.dragging .discount-card {
  pointer-events: none;
  transform: scale(0.98);
}

.carousel-item {
  flex: 0 0 280px;
  width: 280px;
}

.discount-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
}

.discount-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #7c5cf0);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.discount-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(91, 67, 234, 0.12);
  transform: translateY(-2px);
}

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

.discount-card .card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  pointer-events: none;
}

.discount-card .card-content {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex: 1;
  position: relative;
  padding-top: 20px;
}

.discount-card .card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.1), rgba(91, 67, 234, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}

.discount-card .card-icon svg {
  width: 24px;
  height: 24px;
}

.discount-card .card-info {
  flex: 1;
  min-width: 0;
}

.discount-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-1);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.discount-card .card-desc {
  font-size: 0.875rem;
  color: var(--ink-2);
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.discount-card .card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.discount-card .original-price {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount-card .final-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand);
}

.discount-card .card-save {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 600;
  background: rgba(5, 150, 105, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  display: inline-block;
}

.discount-card .card-btn {
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
}

.discount-card .card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91, 67, 234, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(33.333% - 16px);
  }
}

@media (max-width: 768px) {
  .discount-carousel-section {
    padding: 40px 0;
  }
  
  .carousel-container {
    padding: 0 16px;
  }
  
  .carousel-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .carousel-title {
    font-size: 1.5rem;
  }
  
  .carousel-item {
    flex: 0 0 calc(50% - 12px);
    min-width: 240px;
  }
  
  .discount-card {
    padding: 20px;
  }
  
  .discount-card .card-content {
    gap: 12px;
  }
  
  .discount-card .card-icon {
    width: 40px;
    height: 40px;
  }
  
  .discount-card .card-icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    flex: 0 0 62%;
    min-width: 62%;
    width: auto;
  }
  
  .carousel-track {
    gap: 16px;
  }
  
  .discount-card {
    padding: 16px;
  }
  
  .discount-card .card-content {
    flex-direction: column;
    gap: 12px;
  }
  
  .discount-card .card-icon {
    align-self: flex-start;
  }
  
  /* Improve touch experience on mobile */
  .carousel-track {
    gap: 16px;
  }
  

}
/* Panel Introduction Section */
.panel-intro-section {
  background: linear-gradient(135deg, #f8f9fd 0%, #f1f3ff 50%, #eaf2ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.panel-intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%235b43ea" stroke-width="0.1" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 1;
}

.panel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.panel-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.08), rgba(91, 67, 234, 0.12));
  border: 1px solid rgba(91, 67, 234, 0.15);
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 24px;
  transition: all 0.2s ease-out;
  backdrop-filter: blur(10px);
}

.panel-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.panel-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(91, 67, 234, 0.12);
  border-color: rgba(91, 67, 234, 0.25);
}

.panel-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0 0 20px;
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.panel-subtitle {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: #fff;
  border: 1px solid rgba(91, 67, 234, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(23, 23, 38, 0.04);
}

.accordion-item:hover {
  border-color: rgba(91, 67, 234, 0.15);
  box-shadow: 0 8px 32px rgba(91, 67, 234, 0.08);
  transform: translateY(-2px);
}

.accordion-item.active {
  border-color: rgba(91, 67, 234, 0.25);
  box-shadow: 0 12px 40px rgba(91, 67, 234, 0.12);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: right;
}

.accordion-header:hover {
  background: rgba(91, 67, 234, 0.02);
}

.accordion-header[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.03), rgba(91, 67, 234, 0.06));
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.1), rgba(91, 67, 234, 0.15));
  color: var(--brand);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-header:hover .accordion-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(91, 67, 234, 0.15);
}

.accordion-content {
  flex: 1;
  text-align: right;
}

.accordion-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.accordion-content p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.accordion-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(91, 67, 234, 0.08);
  color: var(--brand);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-header[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
  background: rgba(91, 67, 234, 0.15);
}

.accordion-body {
  display: none;
  padding: 12px 28px 28px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-item.active .accordion-body {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.feature-card {
  background: rgba(91, 67, 234, 0.02);
  border: 1px solid rgba(91, 67, 234, 0.08);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(91, 67, 234, 0.04);
  border-color: rgba(91, 67, 234, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 67, 234, 0.08);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.1), rgba(91, 67, 234, 0.15));
  color: var(--brand);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(91, 67, 234, 0.15);
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.accordion-image {
  text-align: center;
  margin-top: 24px;
}

.accordion-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(91, 67, 234, 0.02);
  border: 1px solid rgba(91, 67, 234, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(91, 67, 234, 0.04);
  border-color: rgba(91, 67, 234, 0.15);
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(91, 67, 234, 0.08);
}

.benefit-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-number {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(91, 67, 234, 0.3);
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.benefit-content p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.start-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(91, 67, 234, 0.02);
  border: 1px solid rgba(91, 67, 234, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(91, 67, 234, 0.04);
  border-color: rgba(91, 67, 234, 0.15);
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(91, 67, 234, 0.08);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(91, 67, 234, 0.3);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}

.step-content p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.start-cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(91, 67, 234, 0.03), rgba(91, 67, 234, 0.06));
  border: 1px solid rgba(91, 67, 234, 0.1);
  border-radius: 20px;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--brand), #7c5cf0);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(91, 67, 234, 0.2);
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91, 67, 234, 0.3);
}

.cta-note {
  margin: 16px 0 0;
  color: var(--ink-2);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .panel-intro-section {
    padding: 60px 0;
  }
  
  .panel-container {
    padding: 0 16px;
  }
  
  .panel-title {
    font-size: 2rem;
  }
  
  .panel-subtitle {
    font-size: 1rem;
  }
  
  .accordion-header {
    padding: 20px 24px;
    gap: 12px;
  }
  
  .accordion-icon {
    width: 40px;
    height: 40px;
  }
  
  .accordion-content h3 {
    font-size: 1.1rem;
  }
  
  .accordion-body {
    padding: 0 24px 24px;
  }
  
  .accordion-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit-item,
  .step-item {
    padding: 16px;
    gap: 16px;
  }
  
  .benefit-number,
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .start-cta {
    padding: 24px;
  }
  
  .btn-register {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .panel-title {
    font-size: 1.75rem;
  }
  
  .accordion-header {
    padding: 16px 20px;
    gap: 10px;
  }
  
  .accordion-icon {
    width: 36px;
    height: 36px;
  }
  
  .accordion-content h3 {
    font-size: 1rem;
  }
  
  .accordion-body {
    padding: 0 20px 20px;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .benefit-item,
  .step-item {
    padding: 12px;
    gap: 12px;
  }
  
  .benefit-number,
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .start-cta {
    padding: 20px;
  }
  
  .btn-register {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}





