/* ============================================
   SOUND WORKSHOP PAGE — All Styles (sw- prefix)
   ============================================ */

/* --- Global overflow fix --- */
html, body {
  overflow-x: hidden;
}

/* ============================================
   1. HERO — Centered with background shapes
   ============================================ */
.sw-hero {
  min-height: 80vh;
  background-color: #fffaf7;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 60px;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.sw-hero-center {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.sw-hero-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 10px;
  color: #8b4f4f;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.25;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.sw-hero-level {
  font-size: clamp(17px, 2vw, 22px);
  color: #b46746;
  font-weight: 400;
  margin: 0 0 8px;
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.sw-hero-tagline {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #5a4a40;
  font-weight: 400;
  margin: 0 0 30px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  letter-spacing: 0.5px;
}

.sw-hero-desc {
  max-width: 680px;
  margin: 0 auto;
}

.sw-hero-desc p {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.8;
  margin: 0;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

/* ============================================
   SCROLL REVEAL TEXT SECTION
   ============================================ */
.sw-scroll-section {
  padding: 120px 20px 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

.sw-scroll-text {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.sw-scroll-text p {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.6;
  color: #5a4a40;
  margin: 0;
}

.sw-scroll-text .scroll-word {
  display: inline;
  color: #d0c4ba;
  transition: color 0.2s ease;
}

.sw-scroll-text .scroll-word.revealed {
  color: #5a4a40;
}

/* Background shapes (tarot-card style) */
.sw-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.sw-shape--1 {
  width: 160px;
  height: 260px;
  background: rgba(230, 216, 200, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(210, 180, 150, 0.18);
  box-shadow: 0 8px 30px rgba(180, 140, 110, 0.06);
  top: 5%;
  right: 6%;
  animation: sw-card-float1 28s infinite ease-in-out;
}

.sw-shape--2 {
  width: 130px;
  height: 210px;
  background: rgba(226, 210, 195, 0.18);
  border-radius: 10px;
  border: 1px solid rgba(210, 180, 150, 0.15);
  box-shadow: 0 6px 25px rgba(180, 140, 110, 0.05);
  bottom: 8%;
  right: 20%;
  animation: sw-card-float2 35s infinite ease-in-out;
}

.sw-shape--3 {
  width: 180px;
  height: 290px;
  background: rgba(230, 216, 200, 0.16);
  border-radius: 14px;
  border: 1px solid rgba(210, 180, 150, 0.12);
  box-shadow: 0 10px 35px rgba(180, 140, 110, 0.05);
  top: 35%;
  left: 3%;
  animation: sw-card-float3 32s infinite ease-in-out;
}

@keyframes sw-card-float1 {
  0%   { transform: rotate(-5deg) translate(0, 0); }
  25%  { transform: rotate(12deg) translate(15px, -30px); }
  50%  { transform: rotate(25deg) translate(-10px, -50px); }
  75%  { transform: rotate(8deg) translate(-20px, -20px); }
  100% { transform: rotate(-5deg) translate(0, 0); }
}

@keyframes sw-card-float2 {
  0%   { transform: rotate(10deg) translate(0, 0); }
  25%  { transform: rotate(-8deg) translate(-20px, 25px); }
  50%  { transform: rotate(-20deg) translate(15px, 40px); }
  75%  { transform: rotate(-5deg) translate(25px, 10px); }
  100% { transform: rotate(10deg) translate(0, 0); }
}

@keyframes sw-card-float3 {
  0%   { transform: rotate(8deg) translate(0, 0); }
  25%  { transform: rotate(-15deg) translate(20px, -35px); }
  50%  { transform: rotate(-8deg) translate(-15px, -55px); }
  75%  { transform: rotate(5deg) translate(-10px, -25px); }
  100% { transform: rotate(8deg) translate(0, 0); }
}

/* Scroll hint */
.sw-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sw-scroll-hint span {
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #b46746;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

.sw-scroll-arrow {
  animation: sw-scroll-bounce 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes sw-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   SHARED SECTION + CONTAINER
   ============================================ */
.sw-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sw-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sw-section-title {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #8b4f4f;
  text-align: center;
  margin: 0 0 20px;
}

.sw-section-intro {
  text-align: center;
  font-size: 17px;
  color: #5a4a40;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

/* ============================================
   INTRO SPLIT (image + text)
   ============================================ */
.sw-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sw-intro-content p {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.7;
  margin-bottom: 14px;
}

.sw-intro-image {
  position: relative;
}

.sw-intro-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(120, 90, 60, 0.04);
}

.sw-intro-img-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
}

.sw-intro-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.sw-intro-glass:hover .sw-intro-img-wrap img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .sw-intro-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sw-intro-content {
    text-align: center;
  }

  .sw-intro-content .sw-section-title {
    text-align: center !important;
  }
}

/* ============================================
   IMAGE BREAK (between features and checklist)
   ============================================ */
.sw-image-break {
  max-width: 700px;
  margin: 0 auto;
}

.sw-image-break-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(120, 90, 60, 0.04);
}

.sw-image-break-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
}

.sw-image-break-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.sw-image-break-glass:hover .sw-image-break-wrap img {
  transform: scale(1.03);
}

/* ============================================
   2. WHAT YOU'LL RECEIVE — Table
   ============================================ */
.sw-receive-heading {
  background: linear-gradient(to left, #FEF4EF 0%, #FFFAF8 100%);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  text-align: center;
  margin-bottom: 24px;
}

.sw-receive-heading h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  text-transform: none;
  color: #8b4f4f;
  margin: 0;
}

.sw-receive-table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
  border-collapse: separate;
  border-spacing: 0 12px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-receive-label {
  background: #fff4ef;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px 0 0 12px;
  color: #b46746;
  text-align: center;
  width: 35%;
}

.sw-receive-value {
  background: #fffaf8;
  padding: 20px 24px;
  font-size: 17px;
  border-radius: 0 12px 12px 0;
  color: #4a3830;
}

.sw-receive-value strong {
  font-weight: 500;
}

/* ============================================
   3. WORKSHOP FEATURES — 4-col grid
   ============================================ */
.sw-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-bottom: 60px;
}

.sw-feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(180, 103, 70, 0.09);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #f0ddd0;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-feature-card:hover {
  transform: translateY(-5px);
}

/* NO circle masking — just contain the image */
.sw-feature-img {
  margin: 0 auto 25px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sw-feature-card h3 {
  color: #8b4f4f;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
}

.sw-feature-card p {
  color: #5a4a40;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
}

/* ============================================
   4. AFTER THIS WORKSHOP — Warm bg checklist
   ============================================ */
.sw-after-card {
  background: linear-gradient(to left, #FEF4EF, #FFFAF8);
  border-radius: 16px;
  padding: 50px 45px;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.08);
  border: 1px solid #f0ddd0;
}

.sw-after-grid {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.sw-after-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sw-after-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: #5a4a40;
  line-height: 1.6;
}

.sw-check {
  color: #b46746;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   5. COURSE SCHEDULE — Compact timeline
   ============================================ */
.sw-expect {
  padding: 50px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.sw-schedule {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  padding: 30px 35px;
  box-shadow: 0 8px 24px rgba(180, 103, 70, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sw-schedule-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0ddd0;
  align-items: flex-start;
}

.sw-schedule-item:last-child {
  border-bottom: none;
}

.sw-schedule-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
  width: 280px;
  min-width: 280px;
}

.sw-schedule-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b46746, #c27d60);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-schedule-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sw-schedule-time {
  font-size: 13px;
  color: #b46746;
  font-weight: 500;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-schedule-header h3 {
  color: #8b4f4f;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-schedule-body {
  flex: 1;
}

.sw-schedule-body p {
  color: #5a4a40;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

/* ============================================
   WHO IS THIS FOR — Image left, text right
   ============================================ */
.sw-whois-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sw-whois-image {
  position: relative;
}

.sw-whois-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  padding: 10px;
  box-shadow: 0 15px 30px rgba(120, 90, 60, 0.04);
}

.sw-whois-img-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
}

.sw-whois-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.sw-whois-glass:hover .sw-whois-img-wrap img {
  transform: scale(1.04);
}

.sw-whois-content p {
  font-size: 16px;
  color: #5a4a40;
  line-height: 1.7;
  margin-bottom: 14px;
}

.sw-whois-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sw-whois-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #5a4a40;
  line-height: 1.6;
}

.sw-whois-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.sw-whois-list li strong {
  color: #8b4f4f;
}

@media (max-width: 900px) {
  .sw-whois-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sw-whois-content {
    text-align: center;
  }

  .sw-whois-content .sw-section-title {
    text-align: center !important;
  }

  .sw-whois-list {
    text-align: left;
  }

  .sw-whois-image {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   6. PRICING — Two-column cards
   ============================================ */
.sw-pricing {
  padding: 50px 20px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.sw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.sw-price-card {
  background: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(180, 103, 70, 0.15);
}

.sw-price-card--featured {
  border-color: #b46746;
  border-width: 2px;
  box-shadow: 0 12px 35px rgba(180, 103, 70, 0.15);
}

.sw-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a574, #b46746);
  color: white;
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.sw-price-card h3 {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: #8b4f4f;
  margin: 0 0 16px;
}

.sw-price-amount {
  font-family: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  color: #b46746;
  margin-bottom: 4px;
}

.sw-price-amount span {
  font-size: 18px;
  font-weight: 400;
  color: #8b4f4f;
}

.sw-price-usd {
  font-size: 14px;
  color: #8b4f4f;
  margin-bottom: 24px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.sw-price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #5a4a40;
  padding: 8px 0;
  border-bottom: 1px solid rgba(240, 221, 208, 0.4);
}

.sw-price-list li:last-child {
  border-bottom: none;
}

.sw-price-list li svg {
  flex-shrink: 0;
}

.sw-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: #8b4f4f;
  border: 1.5px solid rgba(180, 103, 70, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sw-price-btn:hover {
  transform: translateY(-3px);
  border-color: #b46746;
  background: #b46746;
  color: white;
  box-shadow: 0 8px 25px rgba(180, 103, 70, 0.25);
}

.sw-price-btn--primary {
  background: linear-gradient(135deg, #d4a574, #b46746, #c27d60);
  color: white;
  border: none;
  box-shadow: 0 6px 20px rgba(180, 103, 70, 0.35);
}

.sw-price-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(180, 103, 70, 0.45);
  color: white;
}

.sw-pricing-note {
  text-align: center;
  color: #8b4f4f;
  font-size: 14px;
  margin-top: 24px;
  line-height: 1.7;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

/* ============================================
   7. FAQ — White bg, warm border, +/- toggle
   ============================================ */
.sw-faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Mulish', 'Mulish Fallback', 'Helvetica Neue', sans-serif;
}

.sw-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.sw-faq-item {
  background-color: #fff;
  border: 1px solid #f0ddd0;
  border-radius: 10px;
  overflow: hidden;
}

.sw-faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  color: #8b4f4f;
  gap: 15px;
}

.sw-faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sw-faq-toggle::before,
.sw-faq-toggle::after {
  content: '';
  position: absolute;
  background-color: #8b4f4f;
}

.sw-faq-toggle::before {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.sw-faq-toggle::after {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sw-faq-item.active .sw-faq-toggle::after {
  transform: rotate(90deg);
  opacity: 0;
}

.sw-faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #5a4a40;
  font-size: 15px;
  line-height: 1.7;
}

.sw-faq-item.active .sw-faq-answer {
  padding: 0 28px 22px;
  max-height: 500px;
}

/* ============================================
   RESPONSIVE — 900px
   ============================================ */
@media (max-width: 900px) {
  .sw-hero {
    min-height: 85vh;
    padding: 100px 20px 60px;
  }

  .sw-shape--1 { display: none; }
  .sw-shape--3 { display: none; }

  .sw-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sw-after-grid {
    flex-direction: column;
    gap: 20px;
  }

  .sw-schedule-item {
    flex-direction: column;
    gap: 8px;
  }

  .sw-schedule-header {
    width: 100%;
    min-width: unset;
  }

  .sw-schedule-body {
    padding-left: 46px;
  }

  .sw-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .sw-faq-question {
    font-size: 1rem;
  }

  .sw-faq-answer {
    font-size: 14px;
  }

  .sw-faq-item.active .sw-faq-answer {
    max-height: 600px;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .sw-hero-title {
    font-size: 28px;
  }

  .sw-section-title {
    font-size: 26px;
  }

  .sw-receive-table {
    display: block;
  }

  .sw-receive-table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
  }

  .sw-receive-label {
    border-radius: 12px 12px 0 0;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 16px;
  }

  .sw-receive-value {
    border-radius: 0 0 12px 12px;
    padding: 16px 20px;
    font-size: 15px;
  }

  .sw-after-card {
    padding: 35px 25px;
  }

  .sw-schedule {
    padding: 24px 20px;
  }

  .sw-schedule-header {
    width: 100%;
    min-width: unset;
  }

  .sw-schedule-body {
    padding-left: 46px;
  }

  .sw-schedule-body p {
    font-size: 14px;
  }

  .sw-price-card {
    padding: 35px 25px;
  }

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

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .sw-hero {
    min-height: 90vh;
    padding: 100px 16px 50px;
  }

  .sw-hero-title {
    font-size: 26px;
  }

  .sw-hero-level {
    font-size: 17px;
  }

  .sw-hero-desc p {
    font-size: 15px;
  }

  .sw-scroll-section {
    padding: 50px 20px 60px;
    min-height: auto;
  }

  .sw-section {
    padding: 30px 16px;
  }

  .sw-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sw-feature-card {
    padding: 25px 20px;
  }

  .sw-feature-img {
    width: 90px;
    height: 90px;
  }

  .sw-after-card {
    padding: 28px 20px;
  }

  .sw-after-item {
    font-size: 14px;
  }

  .sw-section-title {
    font-size: 24px;
  }

  .sw-section-intro {
    font-size: 15px;
  }

  .sw-schedule {
    padding: 20px 16px;
  }

  .sw-schedule-item {
    padding: 16px 0;
  }

  .sw-schedule-body {
    padding-left: 46px;
  }

  .sw-pricing {
    padding: 40px 16px 30px;
  }

  .sw-price-card {
    padding: 30px 20px;
  }

  .sw-price-amount {
    font-size: 32px;
  }

  .sw-price-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .sw-faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .sw-faq-answer {
    font-size: 14px;
  }

  .sw-faq-item.active .sw-faq-answer {
    padding: 0 20px 18px;
  }

  .sw-receive-heading {
    padding: 28px 20px;
  }

  .sw-receive-heading h3 {
    font-size: 26px;
  }
}
