/* =========================================
   Vignan Summer Camps V2 — CSS
   Premium Award-Winning Redesign
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --orange: #ff6b35;
  --orange-dk: #e84d0e;
  --dark: #0d1117;
  --dark2: #161b22;
  --blue: #1a73e8;
  --green: #22c55e;
  --purple: #7c3aed;
  --gold: #f59e0b;
  --bg: #f4f6f9;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #1f2937;
  --muted: #6b7280;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, .07);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   NAVBAR
============================== */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: box-shadow .3s;
}

.v2-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
}

.v2-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.v2-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.v2-brand strong {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}

.v2-brand small {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
  display: block;
}

.v2-nav .nav-link {
  font-weight: 700;
  font-size: .88rem;
  color: rgba(255, 255, 255, .65) !important;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all .2s;
}

.v2-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .08);
}

.v2-btn-reg {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 800 !important;
  font-size: .86rem !important;
  transition: transform .2s, box-shadow .2s;
}

.v2-btn-reg:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 53, .4) !important;
}

/* ==============================
   HERO — FULL VIEWPORT SPLIT
============================== */
.v2-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  padding-top: 62px;
  overflow: hidden;
  background: var(--dark);
  /* Remove any inline background-image — handled per-panel below */
  background-image: none !important;
}

/* LEFT PANEL — pure dark, 100% legible */
.v2-hero-left {
  flex: 0 0 64%;
  max-width: 64%;
  position: relative;
  z-index: 2;
  padding: 52px 48px 52px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Solid rich dark with subtle orange depth */
  background:
    radial-gradient(ellipse 70% 60% at 0% 40%, rgba(255, 107, 53, .12) 0%, transparent 55%),
    linear-gradient(135deg, #0d1117 0%, #111827 100%);
}

/* Subtle grid texture on left only */
.v2-hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.v2-hero-left>* {
  position: relative;
  z-index: 1;
}

/* Vertical separator glow line */
.v2-hero-left::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  bottom: 10%;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 53, .25), rgba(255, 107, 53, .4), rgba(255, 107, 53, .25), transparent);
  pointer-events: none;
  z-index: 3;
}

/* Offer badge */
.v2-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
  box-shadow: 0 2px 12px rgba(245, 158, 11, .3);
}

.v2-offer-badge i {
  color: var(--gold);
}

/* Title */
.v2-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.v2-hero-title span {
  color: var(--orange);
}

.v2-hero-subtitle {
  color: rgba(255, 255, 255, .5);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 32px;
}

/* Replace old pricing panel with new two-card layout styles */

.v2-hero-cards-row {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: stretch;
}

.v2-price-card {
  flex: 1;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.v2-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Featured Card Style (Summer Camp) */
.v2-price-card.featured {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
}

.v2-price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dk));
}

.v2-price-card.featured .card-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Secondary Highlight Card (Residential Workshop) */
.v2-price-card.secondary-highlight {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(26, 115, 232, 0.25);
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.1);
}

.v2-price-card.secondary-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #4bb8ff);
}

.v2-price-card.secondary-highlight .card-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Minimal Card Style (stay as backup or use as base) */
.v2-price-card.minimal {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

/* Card Elements */
.pc-top {
  margin-bottom: 20px;
}

.pc-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-main-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

.featured .pc-main-price {
  color: var(--orange);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.pc-price-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-original-price {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: line-through;
}

.pc-save-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.pc-subtext {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-top: 4px;
}

.pc-tiers {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-tier-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.pc-tier-item.active {
  color: #fff;
}

.pc-tier-price {
  font-weight: 800;
}

.pc-detail-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.pc-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.pc-detail-item i {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--orange);
}

.minimal .pc-detail-item i {
  color: var(--blue);
  background: rgba(26, 115, 232, 0.1);
}

.pc-tag-badge {
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  color: #92400e;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* Sibling Discount Row */
.v2-card-footer {
  margin-top: auto;
  padding-top: 12px;
}

.pc-footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px dashed rgba(124, 58, 237, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #a78bfa;
}

@media (max-width: 1200px) {
  .v2-hero-cards-row {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .v2-hero-left {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 60px 30px;
  }
}

/* Bottom chips row */
.v2-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
}

.v2-chip i {
  color: var(--orange);
  font-size: .82rem;
}

/* RIGHT PANEL — Photo backdrop with dark scrim */
.v2-hero-right {
  flex: 0 0 36%;
  max-width: 36%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 48px 48px 20px;
  /* Camp photo fills only the right side */
  background:
    linear-gradient(90deg, #0d1117 0%, rgba(13, 17, 23, .55) 20%, rgba(13, 17, 23, .2) 55%, rgba(13, 17, 23, .3) 100%),
    url('../images/summer-camp-hero-v2.png') center/cover no-repeat;
  overflow: hidden;
}

/* Subtle inner glow frame on the right */
.v2-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(255, 107, 53, .06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Registration Card */
.v2-reg-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .1);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.v2-reg-head {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  padding: 22px 28px;
  color: #fff;
}

.v2-reg-head h4 {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.v2-reg-head p {
  font-size: .82rem;
  opacity: .88;
  font-weight: 600;
  margin: 0;
}

.v2-reg-body {
  padding: 24px 28px;
}

/* Step bar */
.step-bar {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.step-node {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: .82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .3s;
  flex-shrink: 0;
}

.step-node.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 3px 12px rgba(255, 107, 53, .4);
}

.step-node.done {
  background: var(--green);
  color: #fff;
}

.step-node .sn-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .65rem;
  font-weight: 800;
  color: #9ca3af;
  white-space: nowrap;
}

.step-node.active .sn-label {
  color: var(--orange);
}

.step-conn {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 2px;
  transition: background .3s;
}

.step-conn.done {
  background: var(--green);
}

/* Form fields */
.form-label {
  font-weight: 700;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 5px;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 9px 13px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  background: #fafafa;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .1);
  background: #fff;
  outline: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #ef4444;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: var(--green);
}

.invalid-feedback {
  font-size: .76rem;
  font-weight: 700;
  color: #ef4444;
  margin-top: 4px;
}

/* Buttons */
.btn-primary-sc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 800;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.btn-primary-sc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 107, 53, .38);
}

.btn-secondary-sc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  color: #6b7280;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s;
}

.btn-secondary-sc:hover {
  background: #e5e7eb;
}

/* Payment panel */
.payment-panel {
  display: none;
}

.qr-box {
  background: #f8fafc;
  border: 2px dashed rgba(255, 107, 53, .3);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  margin-bottom: 14px;
}

.qr-box img {
  max-width: 160px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.qr-steps {
  list-style: none;
  text-align: left;
  margin-top: 10px;
}

.qr-steps li {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.qr-steps li i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.preview-img {
  display: none;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border);
  margin-top: 8px;
}

/* Success */
.success-panel {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.success-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), #4ade80);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: #fff;
  animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

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

  to {
    transform: scale(1);
    opacity: 1
  }
}

.success-panel h4 {
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
}

.success-panel p {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 600;
}

.success-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 700;
  color: #15803d;
}

/* ==============================
   SHARED SECTION TOKENS
============================== */
.v2-section {
  padding: 96px 0;
}

.v2-alt {
  background: #fff;
}

.v2-dark-section {
  background: var(--dark);
  padding: 96px 0;
}

.v2-sec-head {
  text-align: center;
  margin-bottom: 60px;
}

.v2-sec-kicker {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.v2-sec-kicker.dark-k {
  color: #ffb088;
}

.v2-sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}

.v2-sec-title.white {
  color: #fff;
}

.v2-sec-sub {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
  margin-top: 8px;
}

.v2-sec-sub.white-sub {
  color: rgba(255, 255, 255, .45);
}

/* ==============================
   CAMP INFO — BENTO GRID
============================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 28px;
  overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Tile sizes */
.bento-item.b-loc {
  grid-column: span 4;
}

.bento-item.b-time {
  grid-column: span 4;
}

.bento-item.b-age {
  grid-column: span 4;
}

.bento-item.b-wide {
  grid-column: span 7;
}

.bento-item.b-narrow {
  grid-column: span 5;
}

.bento-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
}

.bento-item h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.bento-item p {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

.bento-item.b-wide {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1b4b 100%);
  border-color: transparent;
  padding: 36px;
}

.bento-item.b-wide h6 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.bento-item.b-wide p {
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
}

.bento-item.b-wide .bw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.bento-item.b-wide .bw-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.bw-feat-chip {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  font-size: .76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bento-item.b-narrow {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-color: rgba(255, 107, 53, .15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bento-big-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.bento-big-lbl {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==============================
   BATCHES — Diagonal Timeline
============================== */
.v2-batch-wrap {
  position: relative;
}

.v2-batch-timeline {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  transform: translateY(-50%);
  z-index: 0;
  display: none;
  /* hidden on mobile */
}

.v2-batch-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.v2-batch-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow .3s, transform .3s;
  position: relative;
  z-index: 1;
}

.v2-batch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .1);
}

.v2-bc-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
}

.v2-batch-card:nth-child(3) .v2-bc-accent {
  background: linear-gradient(90deg, var(--purple), #a78bfa);
}

.v2-bc-body {
  padding: 28px;
}

.v2-bc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.v2-bc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.v2-bc-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.v2-bc-date.blue-d {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.v2-bc-date.purple-d {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid #c4b5fd;
}

.v2-bc-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-bc-features li {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.v2-bc-features li i {
  color: var(--green);
  font-size: .8rem;
  flex-shrink: 0;
}

.v2-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  margin-top: 30px;
}

.v2-connector-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.v2-connector-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  color: var(--muted);
}

/* ==============================
   RESIDENTIAL — Editorial Split
============================== */
.v2-res-section {
  background: linear-gradient(150deg, #0a0f1e 0%, #0f172a 50%, #1a0a2e 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Glowing orbs */
.v2-res-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .2) 0%, transparent 65%);
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.v2-res-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, .15) 0%, transparent 65%);
  bottom: -80px;
  left: -100px;
  pointer-events: none;
}

.v2-res-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.v2-res-left .v2-res-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 107, 53, .15);
  border: 1px solid rgba(255, 107, 53, .3);
  color: #ffb088;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.v2-res-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.v2-res-dates {
  color: rgba(255, 255, 255, .5);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.v2-res-desc {
  color: rgba(255, 255, 255, .65);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 28px;
}

.v2-res-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v2-res-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px 16px;
}

.v2-res-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

.v2-res-feat-text strong {
  display: block;
  font-size: .87rem;
  font-weight: 800;
  color: #fff;
}

.v2-res-feat-text span {
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 600;
}

/* Right side — big stat card */
.v2-res-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-res-stat-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(6px);
}

.v2-res-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.v2-res-big-lbl {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: 4px;
}

.v2-res-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.v2-res-info-cell {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.v2-res-info-cell .ri-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.v2-res-info-cell .ri-lbl {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ==============================
   ACTIVITIES — Asymmetric Wall
============================== */
.v2-act-section {
  background: var(--bg);
  padding: 96px 0;
}

.v2-act-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.v2-act-card {
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform .3s, box-shadow .3s;
}

.v2-act-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Sizes */
.v2-act-card.ac-lg {
  grid-column: span 7;
}

.v2-act-card.ac-md {
  grid-column: span 5;
}

.v2-act-card.ac-sm {
  grid-column: span 4;
}

.v2-act-card.ac-xs {
  grid-column: span 3;
}

/* Wait — let's do a simpler, cleaner 2-row grid */
.v2-act-card.r1a {
  grid-column: span 5;
}

.v2-act-card.r1b {
  grid-column: span 4;
}

.v2-act-card.r1c {
  grid-column: span 3;
}

.v2-act-card.r2a {
  grid-column: span 3;
}

.v2-act-card.r2b {
  grid-column: span 4;
}

.v2-act-card.r2c {
  grid-column: span 5;
}

/* Color themes for each card */
.v2-act-card.orange-t {
  border-top: 4px solid var(--orange);
}

.v2-act-card.green-t {
  border-top: 4px solid var(--green);
}

.v2-act-card.purple-t {
  border-top: 4px solid var(--purple);
}

.v2-act-card.blue-t {
  border-top: 4px solid var(--blue);
}

.v2-act-card.gold-t {
  border-top: 4px solid var(--gold);
}

.v2-act-card.dark-t {
  background: var(--dark);
  border: none;
  border-top: 4px solid rgba(255, 255, 255, .1);
}

.v2-act-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.v2-act-card h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.v2-act-card.dark-t h5 {
  color: #fff;
}

.v2-act-card p {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 12px;
}

.v2-act-card.dark-t p {
  color: rgba(255, 255, 255, .45);
}

.v2-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.v2-act-tag {
  font-size: .73rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 50px;
}

.orange-t .v2-act-tag {
  background: rgba(255, 107, 53, .1);
  color: var(--orange);
}

.green-t .v2-act-tag {
  background: rgba(34, 197, 94, .1);
  color: #15803d;
}

.purple-t .v2-act-tag {
  background: rgba(124, 58, 237, .1);
  color: var(--purple);
}

.blue-t .v2-act-tag {
  background: rgba(26, 115, 232, .1);
  color: var(--blue);
}

.gold-t .v2-act-tag {
  background: rgba(245, 158, 11, .1);
  color: #b45309;
}

.dark-t .v2-act-tag {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .6);
}

/* ==============================
   EVENT — Big Editorial
============================== */
.v2-event-section {
  background: #fff;
  padding: 96px 0;
}

.v2-event-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.v2-event-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed 0%, #fffbf5 100%);
  border: 1px solid rgba(255, 107, 53, .15);
}

/* Rainbow top */
.v2-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--green), var(--blue), var(--purple));
}

.v2-event-card-body {
  padding: 48px;
}

.v2-event-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.v2-event-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 8px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(255, 107, 53, .35);
}

.v2-event-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 6px;
}

.v2-event-sub {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

.v2-event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.v2-event-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.v2-event-item:hover {
  border-color: rgba(255, 107, 53, .25);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  transform: translateY(-2px);
}

.v2-event-item .vi-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.v2-event-item .vi-txt strong {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}

.v2-event-item .vi-txt span {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 600;
}

/* ==============================
   FOOTER — V2 Premium Dark
============================== */
.v2-footer {
  background: #080b12;
  padding: 56px 0 28px;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 24px;
}

.v2-fb .fb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.v2-fb .fb-logo .fl-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.v2-fb .fb-logo span {
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
}

.v2-fb p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  font-weight: 600;
  line-height: 1.7;
  max-width: 220px;
}

.v2-fc h6 {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 14px;
}

.v2-fc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2-fc ul li {
  margin-bottom: 9px;
}

.v2-fc ul li a {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-fc ul li a:hover {
  color: var(--orange);
}

.v2-fc ul li a i {
  font-size: .78rem;
  width: 13px;
}

.v2-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.v2-footer-bottom p {
  font-size: .76rem;
  color: rgba(255, 255, 255, .22);
  font-weight: 600;
  margin: 0;
}

.v2-footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

/* ==============================
   REVEAL ANIMATIONS
============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .45s;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width:1199px) {
  .v2-hero-left {
    padding: 44px 32px 44px 36px;
  }

  .v2-hero-right {
    padding: 44px 36px;
  }

  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento-item.b-loc,
  .bento-item.b-time,
  .bento-item.b-age {
    grid-column: span 2;
  }

  .bento-item.b-wide {
    grid-column: span 4;
  }

  .bento-item.b-narrow {
    grid-column: span 2;
  }

  .v2-res-inner {
    gap: 36px;
  }

  .v2-act-masonry {
    grid-template-columns: repeat(6, 1fr);
  }

  .v2-act-card.r1a {
    grid-column: span 3;
  }

  .v2-act-card.r1b {
    grid-column: span 3;
  }

  .v2-act-card.r1c {
    grid-column: span 6;
  }

  .v2-act-card.r2a {
    grid-column: span 2;
  }

  .v2-act-card.r2b {
    grid-column: span 4;
  }

  .v2-act-card.r2c {
    grid-column: span 6;
  }

  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .v2-fb {
    grid-column: span 2;
  }
}

@media (max-width:991px) {
  .v2-hero {
    flex-direction: column;
    min-height: auto;
  }

  .v2-hero-left {
    flex: none;
    max-width: 100%;
    padding: 40px 24px 28px;
  }

  .v2-hero-right {
    flex: none;
    max-width: 100%;
    padding: 0 24px 52px;
    justify-content: center;
  }

  .v2-res-inner {
    grid-template-columns: 1fr;
  }

  .v2-batch-cards {
    grid-template-columns: 1fr;
  }

  .v2-connector {
    display: none;
  }

  .v2-event-grid {
    grid-template-columns: 1fr;
  }

  .v2-event-card-body {
    padding: 32px 28px;
  }

  .bento-item.b-wide {
    grid-column: span 6;
  }

  .bento-item.b-narrow {
    grid-column: span 6;
  }

  .v2-section,
  .v2-dark-section,
  .v2-res-section,
  .v2-act-section,
  .v2-event-section {
    padding: 72px 0;
  }
}

@media (max-width:767px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-item.b-loc,
  .bento-item.b-time,
  .bento-item.b-age {
    grid-column: span 1;
  }

  .bento-item.b-wide,
  .bento-item.b-narrow {
    grid-column: span 2;
  }

  .v2-act-masonry {
    grid-template-columns: 1fr;
  }

  .v2-act-card.r1a,
  .v2-act-card.r1b,
  .v2-act-card.r1c,
  .v2-act-card.r2a,
  .v2-act-card.r2b,
  .v2-act-card.r2c {
    grid-column: span 1;
  }

  .v2-footer-grid {
    grid-template-columns: 1fr;
  }

  .v2-fb {
    grid-column: span 1;
  }

  .v2-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .v2-price-offer {
    font-size: 2.8rem;
  }
}

@media (max-width:575px) {
  .v2-hero-left {
    padding: 32px 18px 24px;
  }

  .v2-hero-right {
    padding: 0 18px 40px;
  }

  .v2-reg-body {
    padding: 18px;
  }

  .v2-event-header {
    flex-direction: column;
  }

  .v2-section,
  .v2-dark-section,
  .v2-res-section,
  .v2-act-section,
  .v2-event-section {
    padding: 56px 0;
  }
}

/* ==============================
   RESIDENTIAL WORKSHOP EXPANSION
============================== */

/* Sub-section inside dark res wrapper */
.res-sub {
  background: #fff;
}

.res-sub-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}

.res-sub-dark::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .18) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

/* Workshop overview strip */
.rw-strip {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  padding: 64px 0 0;
}

.rw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff6b35, #e84d0e);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.rw-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.rw-tagline span {
  background: linear-gradient(135deg, #ff6b35, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rw-sub-title {
  font-size: .95rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Details strip */
.rw-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.rw-detail-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 10px 18px;
}

.rw-detail-chip .dc-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.rw-detail-chip .dc-lbl {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.rw-detail-chip .dc-val {
  font-size: .87rem;
  font-weight: 700;
  color: #fff;
}

/* CTA in hero strip */
.rw-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #ff6b35, #e84d0e);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 30px;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(255, 107, 53, .35);
}

.rw-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 107, 53, .45);
  color: #fff;
}

.rw-cta i {
  animation: pulse-icon 1.8s ease-in-out infinite;
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.2)
  }
}

/* Curved separator */
.rw-wave {
  line-height: 0;
  margin-top: -2px;
}

.rw-wave svg {
  display: block;
}

/* ---- WHY SECTION ---- */
.rw-why {
  padding: 72px 0;
  background: #fff;
}

.rw-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rw-why-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.rw-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, #ff6b35, #f59e0b);
  opacity: 0;
  transition: opacity .3s;
}

.rw-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
  border-color: rgba(255, 107, 53, .2);
}

.rw-why-card:hover::before {
  opacity: 1;
}

.rw-why-ico {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.rw-why-card h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.rw-why-card p {
  font-size: .8rem;
  color: #6b7280;
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* ---- DAILY EXPERIENCE ---- */
.rw-daily {
  padding: 72px 0;
  background: #f4f6f9;
}

.rw-daily-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rw-daily-card {
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.rw-daily-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
}

.rw-daily-card.fun {
  background: linear-gradient(145deg, #fff7ed, #fff);
  border: 1px solid rgba(255, 107, 53, .15);
}

.rw-daily-card.think {
  background: linear-gradient(145deg, #eff6ff, #fff);
  border: 1px solid rgba(29, 78, 216, .12);
}

.rw-daily-card.move {
  background: linear-gradient(145deg, #f0fdf4, #fff);
  border: 1px solid rgba(34, 197, 94, .12);
}

.rw-daily-card.express {
  background: linear-gradient(145deg, #faf5ff, #fff);
  border: 1px solid rgba(124, 58, 237, .12);
}

.rw-daily-emoji {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}

.rw-daily-card h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.rw-daily-card.fun h5 {
  color: #c2410c;
}

.rw-daily-card.think h5 {
  color: #1d4ed8;
}

.rw-daily-card.move h5 {
  color: #15803d;
}

.rw-daily-card.express h5 {
  color: #6d28d9;
}

.rw-daily-card p {
  font-size: .82rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0;
}

/* ---- ACTIVITIES GRID ---- */
.rw-activities {
  padding: 72px 0;
  background: #fff;
}

.rw-act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rw-act-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  transition: all .3s;
}

.rw-act-tile:hover {
  background: #fff;
  border-color: rgba(255, 107, 53, .22);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
  transform: translateY(-3px);
}

.rw-act-tile .rat-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #fff;
}

.rw-act-tile .rat-txt strong {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 3px;
}

.rw-act-tile .rat-txt span {
  font-size: .78rem;
  color: #6b7280;
  font-weight: 600;
}

/* ---- HIGHLIGHTS ---- */
.rw-highlights {
  padding: 100px 0;
  background: #0f172a;
  position: relative;
}

.rw-hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rw-hl-card {
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.rw-hl-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rw-hl-emoji {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: block;
}

.rw-hl-card h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.rw-hl-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* ---- BENEFITS ---- */
.rw-benefits {
  padding: 100px 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    #080b12;
  position: relative;
  overflow: hidden;
}

.rw-benefits::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 65%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}

.rw-ben-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.rw-ben-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.rw-ben-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-5px);
}

.rw-ben-emoji {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.rw-ben-card h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.rw-ben-card p {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.5;
}

/* ---- PRICING BLOCK ---- */
.rw-pricing {
  padding: 72px 0;
  background: #fff;
}

.rw-price-card {
  background: linear-gradient(145deg, #fff7ed, #fff);
  border: 2px solid rgba(255, 107, 53, .2);
  border-radius: 24px;
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 24px 64px rgba(255, 107, 53, .1);
  position: relative;
  overflow: hidden;
}

.rw-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f59e0b, #22c55e);
}

.rw-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff6b35, #e84d0e);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, .3);
}

.rw-price-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #ff6b35;
  line-height: 1;
}

.rw-price-label {
  font-size: .85rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 24px;
}

.rw-price-includes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.rw-inc-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: #15803d;
}

.rw-inc-chip i {
  color: #22c55e;
}

/* Responsive adjustments for new sections */
@media (max-width:1199px) {
  .rw-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-daily-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-hl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-ben-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:767px) {
  .rw-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rw-daily-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rw-act-grid {
    grid-template-columns: 1fr;
  }

  .rw-hl-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rw-ben-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rw-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-price-card {
    padding: 32px 24px;
  }

  .rw-details {
    gap: 8px;
  }
}

@media (max-width:575px) {
  .rw-why-grid {
    grid-template-columns: 1fr;
  }

  .rw-daily-grid {
    grid-template-columns: 1fr;
  }

  .rw-hl-grid {
    grid-template-columns: 1fr;
  }

  .rw-ben-grid {
    grid-template-columns: 1fr;
  }

  .rw-price-big {
    font-size: 3.5rem;
  }
}

/* ==============================
   MENTOR CARD — RESIDENTIAL (PREMIUM)
============================== */
.mentor-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 35px;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mentor-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 35px 70px -15px rgba(255, 107, 53, 0.2);
}

.mentor-image-area {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  z-index: 2;
}

.mentor-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.mentor-stat-badge {
  position: absolute;
  bottom: 5px;
  right: -5px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
  border: 3px solid #111827;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.ms-num {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.ms-lbl {
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mentor-info {
  text-align: center;
}

.mentor-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.mentor-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.m-cell {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mc-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.mc-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .mentor-card {
    margin-top: 40px;
    max-width: 100%;
  }
}

/* ==============================
   RESIDENTIAL WORKSHOP V3 � PREMIUM REDESIGN
   ============================== */

.rw-v3-section {
  position: relative;
  background: radial-gradient(circle at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    #0f172a;
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
}

.rw-v3-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% -20%, rgba(255, 107, 53, 0.15), transparent 70%);
  pointer-events: none;
}

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

/* Hero Content */
.rw-v3-hero-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.rw-v3-hero-content {
  flex: 1;
}

.rw-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffb088;
  margin-bottom: 24px;
}

.rw-v3-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}

.rw-v3-title span {
  background: linear-gradient(135deg, #ff6b35, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rw-v3-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-bottom: 40px;
}

.rw-v3-subtitle strong {
  color: #fff;
  font-weight: 700;
}

/* Mentor Wrapper mit Rope Glow */
.rw-v3-mentor-wrapper {
  flex: 0 0 420px;
  position: relative;
}

.rw-v3-mentor-card {
  position: relative;
  border-radius: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.rw-v3-mentor-img-area {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.rw-v3-mentor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.rw-v3-mentor-card:hover .rw-v3-mentor-img {
  transform: scale(1.08);
}

/* Rotating Rope Glow Animation */
.rw-v3-rope-glow {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: conic-gradient(from var(--a), transparent, #ff6b35, transparent 20%, transparent 25%, #f59e0b, transparent 40%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate-rope 4s linear infinite;
  pointer-events: none;
  z-index: 3;
}

@property --a {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-rope {
  0% {
    --a: 0deg;
  }

  100% {
    --a: 360deg;
  }
}

.rw-v3-mentor-info {
  margin-top: 20px;
  text-align: center;
  padding: 0 10px 10px;
}

.rw-v3-mentor-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.rw-v3-mentor-title {
  font-size: 0.85rem;
  color: #ffb088;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Activity Grid */
.rw-v3-grid-title {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 50px;
}

.rw-v3-act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rw-v3-act-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.rw-v3-act-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rw-v3-act-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.rw-v3-act-card:hover .rw-v3-act-icon {
  background: #ff6b35;
  color: #fff;
}

.rw-v3-act-card h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.rw-v3-act-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

/* Stats */
.rw-v3-hero-stats {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.rw-v3-stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rw-v3-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.rw-v3-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

/* Highlights Refinement */
.rw-highlights {
  padding: 100px 0;
  background: #0f172a;
}

.rw-hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rw-hl-card {
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.rw-hl-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rw-hl-emoji {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: block;
}

.rw-hl-card h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

.rw-hl-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* Benefits Refinement */
.rw-benefits {
  padding: 100px 0;
  background: #080b12;
}

.rw-ben-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.rw-ben-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.rw-ben-card h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: #fff;
}

.rw-ben-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
  .rw-v3-hero-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .rw-v3-act-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-hl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-ben-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .rw-v3-act-grid {
    grid-template-columns: 1fr;
  }

  .rw-hl-grid {
    grid-template-columns: 1fr;
  }

  .rw-ben-grid {
    grid-template-columns: 1fr;
  }
}