/* ========================================
   UNWIND WITH SNEHA - v3 Clean Narrative
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Satisfy&display=swap');

:root {
  --ivory: #F7F3EF;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --soft-violet: #F0ECF5;
  --deep-violet: #2D2B3D;
  --plum-grey: #4A4558;
  --violet-grey: #6B6879;
  --muted-violet: #8B87A0;
  --purple-deep: #7C3AED;
  --purple-bright: #8B5CF6;
  --purple-light: #A78BFA;
  --lilac: #C4B5FD;
  --pale-violet: #EDE5FF;
  --gold: #D97706;
  --green: #10B981;
  --container: 1080px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { font-family: 'Outfit', sans-serif; color: var(--violet-grey); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; font-size: 15px; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-deep); text-decoration: none; }
button { font-family: 'Outfit', sans-serif; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; color: var(--deep-violet); line-height: 1.2; }
h1 { font-size: 44px; font-weight: 500; }
h2 { font-size: 34px; font-weight: 500; }
h3 { font-size: 24px; font-weight: 500; }
.tagline { font-family: 'Satisfy', cursive; color: var(--purple-bright); }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header .tagline { font-size: 19px; margin-top: 4px; }
.section-subtitle { font-size: 15px; color: var(--muted-violet); margin-top: 6px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; border: none; transition: all 0.3s; }
.btn-primary { background: linear-gradient(135deg, var(--purple-deep), var(--purple-bright), var(--purple-light)); color: #fff; box-shadow: 0 6px 24px rgba(139, 92, 246, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139, 92, 246, 0.45); }
.btn-secondary { background: rgba(139, 92, 246, 0.06); color: var(--purple-deep); border: 2px solid var(--lilac); }
.btn-secondary:hover { background: rgba(139, 92, 246, 0.12); }
.btn-white { background: linear-gradient(135deg, #FFFFFF, #F1EAFF); color: var(--purple-deep); box-shadow: 0 0 32px 6px rgba(255,255,255,0.5), 0 8px 26px rgba(45,43,61,0.18); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 0 44px 10px rgba(255,255,255,0.65), 0 12px 34px rgba(45,43,61,0.24); }
.btn-wa { background: #25D366; color: #fff; }

/* ========== NAV ========== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; background: transparent; isolation: isolate; transition: all 0.3s; }
.nav.scrolled { padding: 10px 0; }
.nav.scrolled::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: -18px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  z-index: -1; pointer-events: none;
}
.nav .container { display: flex; align-items: center; }
.nav-brand { display: inline-flex; align-items: center; gap: 9px; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--deep-violet); white-space: nowrap; }
.nav-logo { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links { display: flex; gap: 24px; margin-left: auto; list-style: none; }
.nav-links a { font-size: 13px; color: var(--muted-violet); font-weight: 400; transition: color 0.3s; }
.nav-links a:hover { color: var(--purple-deep); }
.nav-cta { margin-left: 24px; padding: 9px 20px; font-size: 13px; white-space: nowrap; }
.hamburger { display: none; background: none; border: none; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--deep-violet); margin: 5px 0; }
.mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: min(100%, 380px); height: 100vh; background: var(--white); z-index: 200; padding: 80px 28px 32px; box-shadow: -4px 0 30px rgba(0,0,0,0.1); transition: right 0.3s; }
.mobile-menu.open { right: 0; }
.mobile-menu a:not(.btn) { display: block; padding: 17px 0; font-size: 17px; font-weight: 500; color: var(--deep-violet); border-bottom: 1px solid var(--soft-violet); }
.mobile-menu .btn { display: flex; width: 100%; text-align: center; margin-top: 28px; padding: 16px; color: #fff; }
.mobile-close { position: absolute; top: 22px; right: 22px; background: none; border: none; font-size: 30px; line-height: 1; color: var(--muted-violet); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 150; }
.mobile-overlay.open { display: block; }

/* ========== HERO - Clean, single focus ========== */
.hero { background: var(--ivory); padding-top: 72px; }
.hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--purple-deep);
  background: var(--pale-violet); padding: 6px 14px; border-radius: 50px;
  margin-bottom: 14px; width: fit-content;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-content h1 { margin-bottom: 6px; }
.hero-content .tagline { font-size: 18px; color: var(--muted-violet); margin-bottom: 14px; }
.hero-content .hero-desc { font-size: 16px; color: var(--violet-grey); max-width: 460px; margin-bottom: 24px; }
.hero-points { list-style: none; display: grid; gap: 12px; max-width: 470px; margin: 18px 0 28px; }
.hero-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: var(--violet-grey); line-height: 1.5; }
.hero-points li svg { width: 21px; height: 21px; flex-shrink: 0; color: var(--purple-deep); margin-top: 2px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-direction: row-reverse; justify-content: flex-end; }
.hero-image { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ========== TRUST BAR - Prominent ========== */
.trust-bar {
  background: var(--deep-violet); padding: 28px 40px;
}
.trust-bar-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: center; gap: 64px;
}
.trust-item { text-align: center; }
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: #fff; line-height: 1; }
.trust-label { font-size: 11px; color: var(--lilac); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ========== ABOUT ========== */
.about { padding: 64px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center; }
.about-image { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 4px; }
.about-content .tagline { font-size: 19px; margin-bottom: 14px; }
.about-content p { margin-bottom: 10px; }
.about-badges { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.about-badge { font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 50px; background: var(--pale-violet); color: var(--purple-deep); }

/* ========== PROPS ========== */
.props { padding: 64px 0; background: var(--ivory); }
.props-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.prop-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--soft-violet); transition: all 0.3s; }
.prop-card:hover { transform: translateY(-4px); border-color: var(--lilac); box-shadow: 0 8px 24px rgba(139, 92, 246, 0.1); }
.prop-card-img { height: 140px; overflow: hidden; background: var(--ivory); display: flex; align-items: center; justify-content: center; }
.prop-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.prop-card-info { padding: 12px 14px; }
.prop-card-info h3 { font-size: 15px; margin-bottom: 2px; }
.prop-card-info p { font-size: 11px; color: var(--muted-violet); line-height: 1.4; }

/* ========== JOURNEY SECTION - Narrative bridge ========== */
.journey { padding: 64px 0; background: var(--white); }
.journey-flow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.journey-step { text-align: center; padding: 32px 24px; border-radius: 20px; background: var(--ivory); position: relative; }
.journey-step-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; color: var(--purple-light); line-height: 1; margin-bottom: 8px; }
.journey-step h3 { font-size: 20px; margin-bottom: 8px; }
.journey-step p { font-size: 14px; color: var(--violet-grey); }
.journey-step .step-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-top: 12px; }
.step-free .step-tag { background: var(--pale-violet); color: var(--purple-deep); }
.step-paid .step-tag { background: var(--pale-violet); color: var(--purple-deep); }
.journey-arrow { position: absolute; right: -18px; top: 50%; transform: translateY(-50%); font-size: 20px; color: var(--lilac); z-index: 1; }

/* ========== WORKSHOP FORM ========== */
.workshop-section { padding: 64px 0; background: var(--ivory); }
.workshop-card {
  display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; overflow: hidden;
  background: var(--white); border: 1px solid var(--soft-violet);
  box-shadow: 0 4px 32px rgba(139, 92, 246, 0.06);
}
.workshop-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.workshop-label { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--purple-deep); margin-bottom: 10px; }
.workshop-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.workshop-info h2 { font-size: 30px; margin-bottom: 4px; }
.workshop-info .tagline { font-size: 18px; margin-bottom: 14px; }
.workshop-info .desc { font-size: 14px; margin-bottom: 20px; }
.workshop-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.workshop-detail {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 12px;
  background: var(--pale-violet); border: 1px solid rgba(139, 92, 246, 0.08);
}
.workshop-detail .wd-icon { font-size: 20px; }
.workshop-detail .wd-text { font-size: 13px; color: var(--deep-violet); font-weight: 500; }
.workshop-detail .wd-sub { font-size: 10px; color: var(--muted-violet); }

.workshop-form-wrap {
  background: var(--ivory); padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--soft-violet);
}
.workshop-form-wrap h3 { margin-bottom: 4px; }
.workshop-form-wrap .form-sub { color: var(--muted-violet); font-size: 13px; margin-bottom: 20px; }
.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: 11px; font-weight: 600; color: var(--muted-violet); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  background: var(--white); border: 1px solid var(--soft-violet);
  color: var(--deep-violet); font-family: 'Outfit', sans-serif; font-size: 14px;
  transition: all 0.3s; outline: none;
}
.form-input::placeholder { color: var(--muted-violet); }
.form-input:focus { border-color: var(--purple-bright); box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B5CF6' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit { width: 100%; margin-top: 6px; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .check { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--violet-grey); font-size: 14px; }

/* ========== GROUP CLASSES ========== */
.group-classes { padding: 64px 0; background: var(--white); }
.benefits-header { text-align: center; margin-bottom: 24px; }
.benefits-label { font-size: 13px; font-weight: 600; color: var(--purple-bright); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 48px; }
.benefit-card { padding: 28px; border-radius: 16px; background: var(--ivory); }
.benefit-icon { font-size: 28px; margin-bottom: 12px; }
.benefit-title { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.benefit-calm .benefit-title { color: #7C3AED; }
.benefit-flex .benefit-title { color: #D97706; }
.benefit-burn .benefit-title { color: #DC2626; }
.benefit-list { list-style: none; }
.benefit-list li { font-size: 14px; color: var(--violet-grey); padding: 4px 0 4px 22px; position: relative; }
.benefit-list li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; }
.benefit-calm .benefit-list li::before { color: #7C3AED; }
.benefit-flex .benefit-list li::before { color: #D97706; }
.benefit-burn .benefit-list li::before { color: #DC2626; }

.gc-card {
  display: grid; grid-template-columns: 1.3fr 0.7fr; border-radius: 24px; overflow: hidden;
  background: var(--ivory); border: 1px solid var(--soft-violet);
}
.gc-left { padding: 40px; }
.gc-price-block { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.gc-price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 600; color: var(--deep-violet); line-height: 1; }
.gc-price-sub { font-size: 16px; color: var(--muted-violet); }
.gc-desc { font-size: 15px; margin-bottom: 24px; max-width: 480px; }
.gc-features { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.gc-feature { display: flex; align-items: flex-start; gap: 10px; }
.gc-feature .gc-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.gc-feature strong { display: block; font-size: 13px; color: var(--deep-violet); }
.gc-feature span { font-size: 11px; color: var(--muted-violet); }
.gc-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.gc-right { overflow: hidden; }
.gc-right img { width: 100%; height: 100%; object-fit: cover; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 64px 0; background: var(--ivory); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.test-card { background: var(--white); border-radius: 16px; padding: 24px; border: 1px solid var(--soft-violet); }
.test-stars { color: var(--purple-bright); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.test-quote { font-size: 14px; color: var(--plum-grey); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--pale-violet), #DDD6FE); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: var(--purple-deep); }
.test-name { font-size: 13px; font-weight: 600; color: var(--deep-violet); }
.test-role { font-size: 11px; color: var(--muted-violet); }

.proof-wall-label { font-size: 12px; color: var(--muted-violet); margin-bottom: 12px; text-align: center; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.proof-wall { display: flex; gap: 12px; overflow-x: auto; padding: 4px 0 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.proof-wall::-webkit-scrollbar { height: 4px; }
.proof-wall::-webkit-scrollbar-track { background: var(--soft-violet); border-radius: 2px; }
.proof-wall::-webkit-scrollbar-thumb { background: var(--lilac); border-radius: 2px; }
.proof-wall img { height: 280px; width: auto; border-radius: 10px; flex-shrink: 0; scroll-snap-align: start; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }

/* ========== GALLERY ========== */
.gallery-strip { padding: 32px 0; background: var(--white); overflow: hidden; }
.gallery-strip .section-header { margin-bottom: 16px; }
.gallery-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 4px 24px 12px; padding-left: max(24px, calc((100vw - 1080px) / 2 + 40px)); scroll-snap-type: x mandatory; }
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--soft-violet); border-radius: 2px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--lilac); border-radius: 2px; }
.gallery-scroll img { height: 200px; width: auto; border-radius: 12px; flex-shrink: 0; scroll-snap-align: start; object-fit: cover; }

/* ========== FAQ ========== */
.faq { padding: 64px 0; background: var(--ivory); }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--soft-violet); }
.faq-item summary { padding: 18px 0; font-size: 16px; font-weight: 600; color: var(--deep-violet); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--purple-bright); font-weight: 300; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 0 18px; font-size: 15px; line-height: 1.7; }

/* ========== BOTTOM CTA ========== */
.bottom-cta { padding: 56px 40px; text-align: center; background: linear-gradient(135deg, var(--purple-deep), var(--purple-bright)); }
.bottom-cta p { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: #fff; margin-bottom: 18px; font-weight: 500; }

/* ========== FOOTER ========== */
.footer { padding: 40px 0 20px; background: var(--deep-violet); }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 32px; }
.footer-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--lilac); margin-bottom: 6px; }
.footer-desc { font-size: 13px; color: var(--muted-violet); max-width: 280px; line-height: 1.5; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: #9E9BB0; transition: color 0.3s; }
.footer-links a:hover { color: var(--lilac); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--muted-violet); transition: all 0.3s; }
.footer-social a:hover { background: rgba(139, 92, 246, 0.15); color: var(--lilac); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.2); }

.wa-float { position: fixed; bottom: 20px; right: 20px; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); font-size: 26px; color: #fff; transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.1); }

/* ========== ICONS ========== */
.wd-icon, .gc-icon, .benefit-icon, .footer-social a, .wa-float, .form-success .check { display: inline-flex; align-items: center; justify-content: center; }
.wd-icon { color: var(--purple-deep); }
.wd-icon svg { width: 22px; height: 22px; }
.gc-icon { color: var(--purple-deep); }
.gc-icon svg { width: 20px; height: 20px; }
.benefit-icon svg { width: 30px; height: 30px; }
.benefit-calm .benefit-icon { color: #7C3AED; }
.benefit-flex .benefit-icon { color: #D97706; }
.benefit-burn .benefit-icon { color: #DC2626; }
.form-success .check { color: var(--green); }
.form-success .check svg { width: 54px; height: 54px; }
.footer-social a svg { width: 18px; height: 18px; }
.wa-float svg { width: 26px; height: 26px; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ========== RESPONSIVE CONTENT VISIBILITY ========== */
.m-only { display: none; }
@media (max-width: 768px) {
  .d-only { display: none; }
  .m-only { display: revert; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .props-grid { grid-template-columns: repeat(3, 1fr); }
  .gc-card { grid-template-columns: 1fr; }
  .gc-right { height: 240px; }
  .gc-features { grid-template-columns: 1fr 1fr; }
  .workshop-card { grid-template-columns: 1fr; }
  .workshop-form-wrap { border-left: none; border-top: 1px solid var(--soft-violet); }
  .journey-flow { grid-template-columns: 1fr; gap: 16px; }
  .journey-arrow { display: none; }
}
@media (max-width: 768px) {
  h1 { font-size: 32px; } h2 { font-size: 26px; }
  .container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .hero-image { order: -1; aspect-ratio: 16/9; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .trust-bar-inner { flex-wrap: wrap; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-image { aspect-ratio: 4/3; }
  .props-grid {
    display: flex; overflow-x: auto; gap: 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 4px 20px 14px; margin: 0 -20px;
  }
  .prop-card { flex: 0 0 76%; scroll-snap-align: start; }
  .props-grid::-webkit-scrollbar { height: 4px; }
  .props-grid::-webkit-scrollbar-track { background: var(--soft-violet); border-radius: 2px; }
  .props-grid::-webkit-scrollbar-thumb { background: var(--lilac); border-radius: 2px; }
  .prop-card-img { height: 180px; }
  /* horizontal carousels on mobile to cut vertical scroll */
  .benefits-grid, .journey-flow, .test-grid {
    display: flex; overflow-x: auto; gap: 14px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 4px 20px 16px; margin: 0 -20px 28px;
  }
  .benefit-card, .journey-step, .test-card { flex: 0 0 80%; scroll-snap-align: start; }
  .benefits-grid::-webkit-scrollbar, .journey-flow::-webkit-scrollbar, .test-grid::-webkit-scrollbar { height: 4px; }
  .benefits-grid::-webkit-scrollbar-track, .journey-flow::-webkit-scrollbar-track, .test-grid::-webkit-scrollbar-track { background: var(--soft-violet); border-radius: 2px; }
  .benefits-grid::-webkit-scrollbar-thumb, .journey-flow::-webkit-scrollbar-thumb, .test-grid::-webkit-scrollbar-thumb { background: var(--lilac); border-radius: 2px; }
  .workshop-info, .workshop-form-wrap { min-width: 0; padding: 28px 22px; }
  .workshop-details { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .workshop-detail { min-width: 0; }
  .form-row { grid-template-columns: 1fr; }
  .gc-features { grid-template-columns: 1fr 1fr; }
  .gc-actions { flex-direction: column; }
  .gc-actions .btn { width: 100%; text-align: center; }
  .footer-inner { flex-direction: column; }
  .about, .props, .workshop-section, .group-classes, .testimonials, .faq, .journey { padding: 40px 0; }
}
@media (max-width: 480px) {
  .prop-card { flex-basis: 82%; }
  .proof-wall img { height: 220px; }
}
