@font-face {
  font-family: 'Sweetie Honey';
  src: url('../fonts/Sweetie Honey.otf') format('opentype'),
       url('../fonts/Sweetie Honey.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
    position: relative;
    overflow-x: hidden;
  }
  /* Crystal photo background */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../images/IMG_6433.JPG');
    background-size: cover;
    background-position: center;
    z-index: -3;
  }
  /* Lavender veil */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(240, 232, 255, 0.7);
    z-index: -2;
  }
  /* Grain overlay on a separate div */
  .grain {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
  }
  .hero-glass {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
html { scroll-behavior: smooth; }
  #webflow-badge { display: none !important; }

.spac-hero-wrapper {
    position: relative;
    width: calc(100% - 30px);
    height: 95vh;
    overflow: hidden;
    font-family: 'Sweetie Honey', serif;
    border-radius: 20px;
    margin: 15px;
  }
  .spac-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/42F62308-7E06-468F-AFC5-97DD6D9888D6.JPG');
    background-size: cover;
    background-position: center 20%;
    z-index: 0;
    animation: heroZoom 30s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
  }
  .spac-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(45, 27, 78, 0.88) 0%,
      rgba(128, 147, 241, 0.7) 50%,
      rgba(114, 221, 247, 0.6) 100%
    );
    z-index: 1;
  }
  .spac-nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    animation: navFadeDown 1s ease forwards;
    opacity: 0;
  }
  @keyframes navFadeDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .spac-nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .spac-logo img { width: 100px; height: auto; }
  .spac-nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .spac-nav-links li {
    opacity: 0;
    animation: fadeLinkIn 0.6s ease forwards;
  }
  .spac-nav-links li:nth-child(1) { animation-delay: 0.3s; }
  .spac-nav-links li:nth-child(2) { animation-delay: 0.45s; }
  .spac-nav-links li:nth-child(3) { animation-delay: 0.6s; }
  .spac-nav-links li:nth-child(4) { animation-delay: 0.75s; }
  .spac-nav-links li:nth-child(5) { animation-delay: 0.9s; }
  @keyframes fadeLinkIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .spac-nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.08em;
    position: relative;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: white;
    transition: background-position 0.4s ease, -webkit-text-fill-color 0.3s ease;
  }
  .spac-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7);
    background-size: 200% auto;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spac-nav-links a:hover {
    -webkit-text-fill-color: transparent;
    background-position: right center;
  }
  .spac-nav-links a:hover::after { width: 100%; }
  .spac-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeLinkIn 0.6s ease forwards;
    animation-delay: 1s;
  }
  .spac-ig {
    position: relative;
    display: inline-flex;
  }
  .spac-ig::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spac-ig-icon {
    display: block;
    width: 28px; height: 28px;
    -webkit-mask-image: url('../images/white_instagram_logo.png');
    mask-image: url('../images/white_instagram_logo.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: white;
    background-size: 200% auto;
    transition: background-position 0.4s ease, transform 0.3s ease;
  }
  .spac-ig:hover .spac-ig-icon {
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7);
    background-size: 200% auto;
    background-position: right center;
    transform: translateY(-2px) scale(1.1);
  }
  .spac-ig img {
    width: 28px; height: 28px;
    transition: transform 0.3s ease;
  }
  .spac-ig:hover img {
    transform: translateY(-2px) scale(1.1);
  }
  .spac-ig:hover::after { width: 100%; }
  /* BUTTONS */
  @property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes glowSpin { to { --glow-angle: 360deg; } }
  .spac-nav-btn,
  .spac-hero-btn,
  .spac-mobile-btn {
    position: relative;
    display: inline-block;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .spac-nav-btn::before,
  .spac-hero-btn::before,
  .spac-mobile-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: conic-gradient(from var(--glow-angle, 0deg), #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5);
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: glowSpin 3s linear infinite;
  }
  .spac-nav-btn:hover,
  .spac-hero-btn:hover,
  .spac-mobile-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -1px 0 rgba(255, 255, 255, 0.15),
      0 0 15px rgba(253, 197, 245, 0.9),
      0 0 30px rgba(179, 136, 235, 0.7),
      0 0 60px rgba(128, 147, 241, 0.5),
      0 0 90px rgba(114, 221, 247, 0.3);
  }
  .spac-nav-btn:hover::before,
  .spac-hero-btn:hover::before,
  .spac-mobile-btn:hover::before { opacity: 1; }
  .btn-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 100px;
    overflow: hidden;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(253, 197, 245, 0.35) 50%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .spac-nav-btn:hover .btn-shimmer,
  .spac-hero-btn:hover .btn-shimmer { transform: translateX(100%); }
  .spac-nav-btn  { font-size: 18px; padding: 12px 28px; }
  .spac-hero-btn { font-size: 18px; padding: 12px 28px; animation: heroFadeUp 1s ease 1.3s both; }
  @keyframes heroFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  /* HAMBURGER */
  .spac-hamburger {
     display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 20;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 10px 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      0 4px 12px rgba(179, 136, 235, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .spac-hamburger:hover {
  background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 4px 20px rgba(179, 136, 235, 0.5),
      0 0 30px rgba(253, 197, 245, 0.3);
  }
  .spac-hamburger span {
   display: block;
    width: 22px;
    height: 2px;
    border-radius: 1.7px;
    background: rgba(45, 27, 78, 0.85);
    box-shadow: 0 1px 4px rgba(45, 27, 78, 0.3);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }
  .spac-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .spac-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .spac-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* MOBILE MENU */
  .spac-mobile-menu {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(20, 0, 35, 0.97) 0%,
      rgba(30, 10, 60, 0.97) 50%,
      rgba(10, 20, 50, 0.97) 100%
    );
    z-index: 15;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .spac-mobile-menu.open {
    display: flex;
    opacity: 1;
  }
  .spac-mobile-menu-line {
    width: 40px;
    height: 1px;
    border-radius: 100px;
    background: rgba(179, 136, 235, 0.6);
    margin-bottom: 28px;
  }
  .spac-mobile-menu a {
    color: white;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    letter-spacing: 0.12em;
    position: relative;
    padding: 10px 0;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: white;
    transition: background-position 0.4s ease, -webkit-text-fill-color 0.3s ease;
  }
  .spac-mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 0;
    width: 0; height: 1px;
    border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spac-mobile-menu a:hover {
    -webkit-text-fill-color: transparent;
    background-position: right center;
  }
  .spac-mobile-menu a:hover::after { width: 100%; }
  /* Mobile menu Book A Session — fully stripped, plain outlined pill */
  .spac-mobile-menu .spac-mobile-btn {
    font-size: 13px;
    padding: 11px 32px;
    margin-top: 20px;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    letter-spacing: 0.12em;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  .spac-mobile-menu .spac-mobile-btn::before { display: none !important; }
  .spac-mobile-menu .spac-mobile-btn::after  { display: none !important; }
  .spac-mobile-menu .spac-mobile-btn:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-2px);
    color: white !important;
    -webkit-text-fill-color: white !important;
    box-shadow:
      0 0 15px rgba(179, 136, 235, 0.6),
      0 0 30px rgba(128, 147, 241, 0.4),
      0 0 50px rgba(114, 221, 247, 0.2) !important;
  }
  .spac-mobile-close {
   position: absolute;
    top: 24px; right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: closeButtonIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
   @keyframes closeButtonIn {
    0% { opacity: 0; transform: rotate(-90deg) scale(0.5); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
  }
  .spac-mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 12px rgba(179, 136, 235, 0.4);
  }
  .spac-mobile-menu-star-1 {
    position: absolute;
    top: 40px; left: 32px;
    width: 50px; height: auto;
    filter: brightness(10) saturate(0);
    opacity: 0.2;
    animation: twinkle 3s ease-in-out infinite;
  }
  .spac-mobile-menu-star-2 {
    position: absolute;
    bottom: 60px; right: 40px;
    width: 30px; height: auto;
    filter: brightness(10) saturate(0);
    opacity: 0.15;
    animation: twinkle 4s ease-in-out infinite 0.5s;
  }
  /* HERO CONTENT */
  .spac-hero-content {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 48px 0 48px;
    margin: 20px;
    gap: 20px;
  }
  .spac-hero-title {
    font-family: 'Sweetie Honey', serif;
    font-size: 96px;
    color: white;
    margin: 0;
    line-height: 1.0;
    font-weight: 700;
    opacity: 0;
    animation: heroTitleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
  }
  @keyframes heroTitleIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  }
  .spac-hero-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin: 0;
    letter-spacing: 0.05em;
    font-weight: 300;
    opacity: 0;
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 1s;
  }
  /* BUTTERFLIES */
  .bf-1, .bf-2, .bf-3, .bf-4, .bf-5 {
    position: absolute;
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    animation-fill-mode: forwards;
  }
  .butterfly svg { animation: flapWings 0.4s ease-in-out infinite alternate; }
  .bf-1 { top: 30%; left: 8%;   animation: floatBf1 12s ease-in-out infinite, bfFadeIn 1s ease 1.5s forwards; }
  .bf-2 { top: 45%; right: 8%;  animation: floatBf2 15s ease-in-out infinite, bfFadeIn 1s ease 1.8s forwards; }
  .bf-3 { top: 20%; left: 20%;  animation: floatBf3 10s ease-in-out infinite, bfFadeIn 1s ease 2s   forwards; }
  .bf-4 { top: 60%; right: 20%; animation: floatBf4 13s ease-in-out infinite, bfFadeIn 1s ease 2.2s forwards; }
  .bf-5 { top: 25%; right: 15%; animation: floatBf5 11s ease-in-out infinite, bfFadeIn 1s ease 2.4s forwards; }
  @keyframes bfFadeIn  { 0% { opacity: 0; } 100% { opacity: 0.7; } }
  @keyframes flapWings { 0% { transform: scaleX(1); } 100% { transform: scaleX(0.3); } }
  @keyframes floatBf1 {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    33% { transform: translate(30px, -40px) rotate(5deg); }
    66% { transform: translate(-20px, -20px) rotate(-3deg); }
  }
  @keyframes floatBf2 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    33% { transform: translate(-40px, -30px) rotate(-5deg); }
    66% { transform: translate(20px, -50px) rotate(3deg); }
  }
  @keyframes floatBf3 {
    0%, 100% { transform: translate(0, 0) rotate(3deg); }
    50% { transform: translate(50px, 30px) rotate(-3deg); }
  }
  @keyframes floatBf4 {
    0%, 100% { transform: translate(0, 0) rotate(-3deg); }
    50% { transform: translate(-30px, -40px) rotate(3deg); }
  }
  @keyframes floatBf5 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    33% { transform: translate(-20px, 30px) rotate(-5deg); }
    66% { transform: translate(30px, -20px) rotate(3deg); }
  }
  /* STARS */
  .star {
    position: absolute;
    z-index: 6;
    pointer-events: none;
    opacity: 0;
  }
  .star-1 { top: 15%; left: 15%;  animation: twinkle 3s   ease-in-out infinite,      bfFadeIn 1s ease 2s   forwards; }
  .star-2 { top: 10%; right: 25%; animation: twinkle 4s   ease-in-out infinite 0.5s, bfFadeIn 1s ease 2.2s forwards; }
  .star-3 { top: 70%; left: 35%;  animation: twinkle 3.5s ease-in-out infinite 1s,   bfFadeIn 1s ease 2.4s forwards; }
  .star-4 { top: 55%; right: 10%; animation: twinkle 2.5s ease-in-out infinite 0.3s, bfFadeIn 1s ease 2.6s forwards; }
  .star-5 { top: 35%; left: 50%;  animation: twinkle 4s   ease-in-out infinite 0.8s, bfFadeIn 1s ease 2.8s forwards; }
  @keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 0.9; transform: scale(1.2) rotate(20deg); }
  }
  /* TABLET */
  @media (max-width: 1024px) {
    .spac-nav { padding: 20px 32px; }
    .spac-nav-links { gap: 28px; }
    .spac-nav-links a { font-size: 15px; }
    .spac-logo img { width: 80px; }
    .spac-hero-title { font-size: 72px; }
    .spac-hero-tagline { font-size: 18px; }
    .spac-nav-btn { font-size: 15px; padding: 10px 22px; }
    .spac-hero-content { padding: 120px 40px 0 40px; }
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .spac-hero-wrapper { width: calc(100% - 20px); margin: 10px; border-radius: 16px; }
    .spac-nav { padding: 20px 24px; }
    .spac-nav-links { display: none; }
    .spac-nav-right { display: none; }
    .spac-hamburger {
      display: flex;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 12px;
      padding: 10px 12px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .spac-hero-title { font-size: 48px; }
    .spac-hero-tagline { font-size: 16px; }
    .spac-hero-btn { font-size: 15px; padding: 12px 24px; }
    .spac-hero-content { padding: 80px 24px 0 24px; }
    .bf-3, .bf-4 { display: none; }
  }
  /* SMALL MOBILE */
  @media (max-width: 480px) {
    .spac-hero-wrapper { width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .spac-hero-title { font-size: 36px; }
    .spac-hero-tagline { font-size: 14px; }
    .spac-logo img { width: 60px; }
    .spac-hero-content { padding: 120px 20px 0 20px; }
  }

.intro-statement-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 100px 60px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .intro-statement-blob-1 {
    position: absolute; top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .intro-statement-blob-2 {
    position: absolute; bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .intro-statement-blob-3 {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.3) 0%, transparent 65%);
    filter: blur(60px); pointer-events: none; z-index: 0;
  }
  .intro-statement-star {
    position: absolute; height: auto; z-index: 2; pointer-events: none;
    animation: introStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes introStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .intro-statement-star-1 { top: 24px; left: 36px; width: 70px; animation-delay: 0s; }
  .intro-statement-star-2 { top: 18px; right: 44px; width: 44px; animation-delay: 0.5s; }
  .intro-statement-star-3 { bottom: 24px; left: 60px; width: 30px; animation-delay: 1s; }
  .intro-statement-star-4 { bottom: 28px; right: 70px; width: 24px; animation-delay: 0.7s; }
  .intro-statement-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .intro-statement-holo-line {
    width: 120px; height: 3px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: introHoloLine 8s linear infinite;
  }
  @keyframes introHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .intro-statement-text {
    font-family: 'Nunito', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #2D1B4E;
    line-height: 1.6em;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.01em;
  }
  .intro-statement-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: #4A3860;
    line-height: 1.8em;
    margin: 0;
    letter-spacing: 0.02em;
    max-width: 640px;
  }
  .intro-statement-animate {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  .intro-statement-animate.intro-statement-visible {
    opacity: 1; transform: translateY(0);
  }
  .intro-statement-delay-1 { transition-delay: 0.1s; }
  .intro-statement-delay-2 { transition-delay: 0.25s; }
  .intro-statement-delay-3 { transition-delay: 0.4s; }
  /* TABLET */
  @media (max-width: 1024px) {
    .intro-statement-section { padding: 80px 48px; width: calc(100% - 30px); }
    .intro-statement-text { font-size: 30px; }
    .intro-statement-sub { font-size: 16px; }
    .intro-statement-star-1 { width: 55px; }
    .intro-statement-star-2 { width: 34px; }
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .intro-statement-section { padding: 64px 28px; width: calc(100% - 20px); margin: 10px; border-radius: 16px; }
    .intro-statement-text { font-size: 24px; }
    .intro-statement-sub { font-size: 15px; }
    .intro-statement-star-3, .intro-statement-star-4 { display: none; }
    .intro-statement-star-1 { width: 44px; }
    .intro-statement-star-2 { width: 28px; }
  }
  /* SMALL MOBILE */
  @media (max-width: 480px) {
    .intro-statement-section { padding: 52px 20px; width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .intro-statement-text { font-size: 20px; }
    .intro-statement-sub { font-size: 14px; }
    .intro-statement-star-1 { width: 36px; }
    .intro-statement-star-2 { display: none; }
  }

.collab-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 25px 0;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
  }
  .collab-blob-1 {
    position: absolute; top: -60px; left: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.5) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .collab-blob-2 {
    position: absolute; bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.4) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .collab-label {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: lowercase;
    color: #2D1B4E;
    margin: 0 0 30px 0;
    position: relative; z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .collab-label.collab-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .collab-marquee {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
  }
  .collab-marquee::before,
  .collab-marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 160px;
    z-index: 3;
    pointer-events: none;
  }
  .collab-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(240, 232, 252, 0.95), transparent);
  }
  .collab-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(240, 232, 252, 0.95), transparent);
  }
  .collab-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: collabScroll 32s linear infinite;
  }
  .collab-track:hover { animation-play-state: paused; }
  @keyframes collabScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .collab-track { animation: none; }
  }
  .collab-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    position: relative;
    flex-shrink: 0;
  }
  .collab-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FDC5F5, #B388EB);
    opacity: 0.5;
  }
  .collab-logo {
    width: auto;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.3s ease;
  }
  .collab-item:hover .collab-logo { opacity: 1; }
  /* Desktop — your sizes */
  .collab-logo-daybreaker  { height: 70px;  width: auto; }
  .collab-logo-maharose    { height: 48px;  width: auto; }
  .collab-logo-meadow      { height: 100px; width: auto; }
  .collab-logo-reforesters { height: 64px;  width: auto; }
  .collab-logo-signal      { height: 40px;  width: auto; }
  .collab-logo.dark {
    filter: brightness(0) saturate(100%) invert(13%) sepia(40%) saturate(1200%) hue-rotate(240deg) brightness(0.7);
  }
  .collab-logo.light {
    filter: invert(1) brightness(0) saturate(100%) invert(13%) sepia(40%) saturate(1200%) hue-rotate(240deg) brightness(0.7);
  }
  .collab-logo.colored {
    filter: grayscale(1) brightness(0) saturate(100%) invert(13%) sepia(40%) saturate(1200%) hue-rotate(240deg) brightness(0.7);
  }
  /* Tablet */
  @media (max-width: 1024px) {
    .collab-section { width: calc(100% - 30px); padding: 22px 0; }
    .collab-logo-daybreaker  { height: 52px;  width: auto; }
    .collab-logo-maharose    { height: 36px;  width: auto; }
    .collab-logo-meadow      { height: 75px;  width: auto; }
    .collab-logo-reforesters { height: 48px;  width: auto; }
    .collab-logo-signal      { height: 30px;  width: auto; }
    .collab-item { padding: 0 44px; }
    .collab-label { font-size: 13px; margin-bottom: 24px; }
  }
  /* Mobile */
  @media (max-width: 768px) {
    .collab-section { width: calc(100% - 20px); margin: 10px; border-radius: 16px; padding: 15px 0; }
.collab-logo-daybreaker  { height: 52px;  width: auto; }
    .collab-logo-maharose    { height: 36px;  width: auto; }
    .collab-logo-meadow      { height: 75px;  width: auto; }
    .collab-logo-reforesters { height: 48px;  width: auto; }
    .collab-logo-signal      { height: 30px;  width: auto; }
    .collab-item { padding: 0 32px; }
    .collab-label { font-size: 11px; margin-bottom: 7.5px; letter-spacing: 0.18em; }
    .collab-marquee::before,
    .collab-marquee::after { width: 80px; }
  }
  /* Small mobile */
  @media (max-width: 480px) {
    .collab-section { width: calc(100% - 16px); margin: 8px; border-radius: 10px; padding: 10px 0; }
   .collab-logo-daybreaker  { height: 52px;  width: auto; }
    .collab-logo-maharose    { height: 36px;  width: auto; }
    .collab-logo-meadow      { height: 75px;  width: auto; }
    .collab-logo-reforesters { height: 48px;  width: auto; }
    .collab-logo-signal      { height: 30px;  width: auto; }
    .collab-item { padding: 0 24px; }
    .collab-label { font-size: 10px; margin-bottom: 2px; letter-spacing: 0.15em; }
    .collab-marquee::before,
    .collab-marquee::after { width: 50px; }
  }

.offerings-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 80px 60px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }
  .off-blob-1 {
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none; z-index: 0;
  }
  .off-blob-2 {
    position: absolute;
    bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none; z-index: 0;
  }
  .off-star {
    position: absolute; height: auto; z-index: 2; pointer-events: none;
    animation: offStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes offStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .off-star-1 { top: 20px;    left: 30px;   width: 90px;  animation-delay: 0s; }
  .off-star-2 { top: 15px;    right: 40px;  width: 55px;  animation-delay: 0.5s; }
  .off-star-3 { bottom: 20px; left: 50px;   width: 40px;  animation-delay: 1s; }
  .off-star-4 { bottom: 25px; right: 60px;  width: 30px;  animation-delay: 0.7s; }
  .off-holo-line {
    width: 120px; height: 3px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: offHoloLine 8s linear infinite;
    margin: 0 auto 20px auto;
  }
  @keyframes offHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .offerings-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 46px; font-weight: 700; color: #2D1B4E;
    text-align: center; margin: 0 0 60px 0;
    position: relative; z-index: 2;
  }
  .offerings-row {
    display: flex; gap: 24px; width: 100%;
    position: relative; z-index: 2;
  }
  .offer-card {
    position: relative;
    width: 33%; height: 600px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .offer-card-1:hover {
    box-shadow: 0 0 40px rgba(253, 197, 245, 0.8), 0 0 80px rgba(253, 197, 245, 0.4);
    transform: translateY(-6px);
  }
  .offer-card-2:hover {
    box-shadow: 0 0 40px rgba(179, 136, 235, 0.8), 0 0 80px rgba(179, 136, 235, 0.4);
    transform: translateY(-6px);
  }
  .offer-card-3:hover {
    box-shadow: 0 0 40px rgba(114, 221, 247, 0.8), 0 0 80px rgba(114, 221, 247, 0.4);
    transform: translateY(-6px);
  }
  .offer-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .offer-card:hover img { transform: scale(1.05); }
  .offer-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20, 5, 40, 0.95) 0%, rgba(20, 5, 40, 0.2) 50%, transparent 100%);
    z-index: 1;
  }
  .offer-card-content {
    position: absolute; bottom: 0; left: 0;
    width: 100%; padding: 40px 32px;
    z-index: 2; box-sizing: border-box;
  }
  .offer-card-content h3 {
    font-family: 'Sweetie Honey', serif;
    font-size: 28px; color: #ffffff;
    margin: 0 0 12px 0; line-height: 1.2;
  }
  .offer-card-content p {
    font-size: 15px; color: rgba(255,255,255,0.8);
    line-height: 1.8; margin: 0 0 24px 0;
    font-family: 'Nunito', sans-serif;
  }
  /* Button wrapper — allows glow to escape card's overflow:hidden */
  .offer-btn-wrap {
    position: relative;
    display: inline-block;
    overflow: visible;
  }
  /* BUTTON — exact match to hero */
  @property --off-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes offGlowSpin {
    to { --off-glow-angle: 360deg; }
  }
  .offer-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .offer-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: conic-gradient(
      from var(--off-glow-angle, 0deg),
      #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5
    );
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: offGlowSpin 3s linear infinite;
  }
  .offer-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -1px 0 rgba(255, 255, 255, 0.15),
      0 0 15px rgba(253, 197, 245, 0.9),
      0 0 30px rgba(179, 136, 235, 0.7),
      0 0 60px rgba(128, 147, 241, 0.5),
      0 0 90px rgba(114, 221, 247, 0.3);
  }
  .offer-btn:hover::before { opacity: 1; }
  .offer-btn .btn-shimmer {
    position: absolute; inset: 0;
    border-radius: 100px; overflow: hidden;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(253, 197, 245, 0.35) 50%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .offer-btn:hover .btn-shimmer { transform: translateX(100%); }
  .off-animate {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .off-animate.off-visible { opacity: 1; transform: translateY(0); }
  .off-delay-1 { transition-delay: 0.1s; }
  .off-delay-2 { transition-delay: 0.3s; }
  .off-delay-3 { transition-delay: 0.5s; }
  .off-delay-4 { transition-delay: 0.7s; }
  @media (max-width: 1024px) {
    .offerings-section { padding: 60px 40px; width: calc(100% - 30px); }
    .offerings-heading { font-size: 36px; margin-bottom: 40px; }
    .offerings-row { gap: 16px; }
    .offer-card { height: 480px; }
    .offer-card-content h3 { font-size: 22px; }
    .offer-card-content { padding: 28px 24px; }
    .off-star-1 { width: 70px; }
    .off-star-2 { width: 40px; }
  }
  @media (max-width: 768px) {
    .offerings-section { padding: 50px 24px; width: calc(100% - 20px); margin: 10px; border-radius: 16px; }
    .offerings-heading { font-size: 30px; margin-bottom: 32px; }
    .offerings-row { flex-direction: column; gap: 20px; }
    .offer-card { width: 100%; height: 400px; }
    .offer-card-content h3 { font-size: 22px; }
    .offer-card-content p { font-size: 14px; }
    .offer-card-1:hover, .offer-card-2:hover, .offer-card-3:hover { transform: none; }
    .off-star-3, .off-star-4 { display: none; }
    .off-star-1 { width: 60px; }
    .off-star-2 { width: 35px; }
  }
  @media (max-width: 480px) {
    .offerings-section { padding: 40px 16px; width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .offerings-heading { font-size: 24px; margin-bottom: 24px; }
    .offer-card { height: 340px; }
    .offer-card-content { padding: 20px; }
    .offer-card-content h3 { font-size: 18px; }
    .offer-btn { font-size: 13px; padding: 10px 20px; }
    .off-star-1 { width: 50px; }
    .off-star-2 { display: none; }
  }

.benefits-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 100px 60px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }
  /* BLOBS */
  .ben-blob-1 {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
  }
  .ben-blob-2 {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
  }
  .ben-blob-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.3) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
  }
  /* STARS */
  .ben-star {
    position: absolute;
    height: auto;
    z-index: 2;
    pointer-events: none;
    animation: benStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes benStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .ben-star-1 { top: 20px;    left: 30px;   width: 90px;  animation-delay: 0s; }
  .ben-star-2 { top: 15px;    right: 40px;  width: 55px;  animation-delay: 0.5s; }
  .ben-star-3 { bottom: 20px; left: 50px;   width: 35px;  animation-delay: 1s; }
  .ben-star-4 { bottom: 25px; right: 60px;  width: 28px;  animation-delay: 0.7s; }
  /* BUTTERFLIES */
  .ben-butterfly {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.5;
  }
  .ben-butterfly svg {
    animation: benFlapWings 0.5s ease-in-out infinite alternate;
  }
  .ben-bf-1 {
    top: 15%;
    right: 8%;
    animation: benFloat1 12s ease-in-out infinite;
  }
  .ben-bf-2 {
    bottom: 20%;
    left: 6%;
    animation: benFloat2 15s ease-in-out infinite;
  }
  .ben-bf-3 {
    top: 60%;
    right: 5%;
    animation: benFloat3 10s ease-in-out infinite;
  }
  @keyframes benFlapWings {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0.3); }
  }
  @keyframes benFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    33% { transform: translate(-20px, -30px) rotate(5deg); }
    66% { transform: translate(15px, -15px) rotate(-3deg); }
  }
  @keyframes benFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    33% { transform: translate(25px, -20px) rotate(-5deg); }
    66% { transform: translate(-15px, -35px) rotate(3deg); }
  }
  @keyframes benFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(3deg); }
    50% { transform: translate(-20px, 25px) rotate(-3deg); }
  }
  /* HEADING AREA */
  .ben-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
  }
  .ben-holo-line {
    width: 120px;
    height: 3px;
    border-radius: 100px;
    background: linear-gradient(
      90deg,
      #FDC5F5,
      #B388EB,
      #8093F1,
      #72DDF7,
      #FDC5F5,
      #B388EB,
      #8093F1
    );
    background-size: 400% auto;
    animation: benHoloLine 8s linear infinite;
    margin: 0 auto 20px auto;
  }
  @keyframes benHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .ben-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 46px;
    font-weight: 700;
    color: #2D1B4E;
    margin: 0;
    line-height: 1.1;
  }
  .ben-subheading {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #4A3860;
    margin: 16px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
  /* CARDS ROW */
  .ben-cards {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  .ben-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 0 0 48px 0;
    box-shadow:
      0 4px 24px rgba(179, 136, 235, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
  }
  .ben-card:hover { transform: translateY(-6px); }
  .ben-card-1:hover { box-shadow: 0 12px 40px rgba(253, 197, 245, 0.5), inset 0 1px 0 rgba(255,255,255,0.9); }
  .ben-card-2:hover { box-shadow: 0 12px 40px rgba(179, 136, 235, 0.5), inset 0 1px 0 rgba(255,255,255,0.9); }
  .ben-card-3:hover { box-shadow: 0 12px 40px rgba(114, 221, 247, 0.5), inset 0 1px 0 rgba(255,255,255,0.9); }
  .ben-card-line {
    width: 100%;
    height: 4px;
    border-radius: 0;
    background: linear-gradient(
      90deg,
      #FDC5F5,
      #B388EB,
      #8093F1,
      #72DDF7,
      #FDC5F5,
      #B388EB,
      #8093F1
    );
    background-size: 400% auto;
    animation: benHoloLine 8s linear infinite;
    flex-shrink: 0;
  }
  .ben-card-body {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .ben-card-title {
    font-family: 'Sweetie Honey', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2D1B4E;
    margin: 0;
    line-height: 1.2;
  }
  .ben-card-desc {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #4A3860;
    line-height: 1.8em;
    margin: 0;
    font-weight: 300;
  }
  /* SCROLL ANIMATIONS */
  .ben-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .ben-animate.ben-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .ben-delay-1 { transition-delay: 0.1s; }
  .ben-delay-2 { transition-delay: 0.2s; }
  .ben-delay-3 { transition-delay: 0.3s; }
  .ben-delay-4 { transition-delay: 0.4s; }
  .ben-delay-5 { transition-delay: 0.5s; }
  /* TABLET */
  @media (max-width: 1024px) {
    .benefits-section {
      padding: 80px 40px;
      width: calc(100% - 30px);
    }
    .ben-heading { font-size: 36px; }
    .ben-cards { gap: 16px; }
    .ben-card-body { padding: 0 28px; }
    .ben-card-title { font-size: 20px; }
    .ben-star-1 { width: 70px; }
    .ben-star-2 { width: 40px; }
    .ben-bf-3 { display: none; }
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .benefits-section {
      padding: 60px 24px;
      width: calc(100% - 20px);
      margin: 10px;
      border-radius: 16px;
    }
    .ben-heading { font-size: 30px; }
    .ben-subheading { font-size: 16px; }
    .ben-header { margin-bottom: 40px; }
    .ben-cards { flex-direction: column; gap: 16px; }
    .ben-card { padding-bottom: 36px; }
    .ben-card-body { padding: 0 24px; }
    .ben-card-title { font-size: 18px; }
    .ben-card-desc { font-size: 15px; }
    .ben-card-1:hover,
    .ben-card-2:hover,
    .ben-card-3:hover { transform: none; }
    .ben-star-3, .ben-star-4 { display: none; }
    .ben-star-1 { width: 60px; }
    .ben-star-2 { width: 35px; }
    .ben-bf-1, .ben-bf-2, .ben-bf-3 { display: none; }
  }
  /* SMALL MOBILE */
  @media (max-width: 480px) {
    .benefits-section {
      padding: 50px 16px;
      width: calc(100% - 16px);
      margin: 8px;
      border-radius: 12px;
    }
    .ben-heading { font-size: 24px; }
    .ben-card-body { padding: 0 20px; }
    .ben-card-title { font-size: 22px; }
    .ben-star-1 { width: 50px; }
    .ben-star-2 { display: none; }
  }

.community-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.35) 100%);
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: row;
    min-height: 600px;
  }
  .com-blob-1 {
    position: absolute; top: -80px; right: -80px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .com-blob-2 {
    position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .com-blob-3 {
    position: absolute; top: 40%; left: 40%; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.3) 0%, transparent 65%);
    filter: blur(60px); pointer-events: none; z-index: 0;
  }
  .com-star {
    position: absolute; height: auto; z-index: 2; pointer-events: none;
    animation: comStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes comStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .com-star-1 { top: 20px; left: 30px; width: 90px; animation-delay: 0s; }
  .com-star-2 { top: 15px; right: 40px; width: 55px; animation-delay: 0.5s; }
  .com-star-3 { bottom: 20px; left: 50px; width: 35px; animation-delay: 1s; }
  .com-star-4 { bottom: 25px; right: 60px; width: 28px; animation-delay: 0.7s; }
  .com-butterfly { position: absolute; z-index: 3; pointer-events: none; opacity: 0.5; }
  .com-butterfly svg { animation: comFlapWings 0.5s ease-in-out infinite alternate; }
  .com-bf-1 { top: 15%; right: 52%; animation: comFloat1 12s ease-in-out infinite; }
  .com-bf-2 { bottom: 20%; right: 53%; animation: comFloat2 15s ease-in-out infinite; }
  @keyframes comFlapWings { 0% { transform: scaleX(1); } 100% { transform: scaleX(0.3); } }
  @keyframes comFloat1 {
    0%, 100% { transform: translate(0,0) rotate(-5deg); }
    33% { transform: translate(-20px,-30px) rotate(5deg); }
    66% { transform: translate(15px,-15px) rotate(-3deg); }
  }
  @keyframes comFloat2 {
    0%, 100% { transform: translate(0,0) rotate(5deg); }
    33% { transform: translate(20px,-20px) rotate(-5deg); }
    66% { transform: translate(-15px,-30px) rotate(3deg); }
  }
  .com-photo-wrap {
    flex: 1; position: relative; min-height: 600px; overflow: hidden;
    border-radius: 20px 0 0 20px;
  }
  .com-photo {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
  }
  .com-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(255,255,255,0.15) 100%);
    z-index: 1;
  }
  .com-content {
    flex: 1; padding: 80px 60px; display: flex; flex-direction: column;
    justify-content: center; gap: 28px; position: relative; z-index: 5;
    overflow: visible;
  }
  .com-holo-line {
    width: 120px; height: 3px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: comHoloLine 8s linear infinite;
  }
  @keyframes comHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .com-heading {
    font-family: 'Sweetie Honey', serif; font-size: 42px; font-weight: 700;
    color: #2D1B4E; margin: 0; line-height: 1.1; letter-spacing: -0.01em;
  }
  .com-para {
    font-family: 'Nunito', sans-serif; font-size: 17px; font-weight: 400;
    color: #4A3860; line-height: 1.8em; margin: 0;
  }
  .com-perks { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
  .com-perk {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Nunito', sans-serif; font-size: 16px; color: #4A3860; font-weight: 400;
  }
  .com-perk-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #FDC5F5, #B388EB, #8093F1);
  }
  @property --com-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes comGlowSpin {
    to { --com-glow-angle: 360deg; }
  }
  .com-btn {
    position: relative;
    display: inline-block;
    padding: 16px 48px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #2D1B4E;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    margin-top: 8px;
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .com-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: conic-gradient(
      from var(--com-glow-angle, 0deg),
      #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5
    );
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: comGlowSpin 3s linear infinite;
  }
  .com-btn:hover {
    background: rgba(255, 255, 255, 0.38);
    border-color: rgba(255, 255, 255, 0.7);
    color: #2D1B4E;
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3),
      0 0 15px rgba(253, 197, 245, 0.9),
      0 0 30px rgba(179, 136, 235, 0.7),
      0 0 60px rgba(128, 147, 241, 0.5),
      0 0 90px rgba(114, 221, 247, 0.3);
  }
  .com-btn:hover::before { opacity: 1; }
  .com-btn .btn-shimmer {
    position: absolute; inset: 0;
    border-radius: 100px; overflow: hidden;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(253, 197, 245, 0.35) 50%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .com-btn:hover .btn-shimmer { transform: translateX(100%); }
  .com-animate {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .com-animate.com-visible { opacity: 1; transform: translateY(0); }
  .com-delay-1 { transition-delay: 0.1s; }
  .com-delay-2 { transition-delay: 0.2s; }
  .com-delay-3 { transition-delay: 0.3s; }
  .com-delay-4 { transition-delay: 0.4s; }
  .com-delay-5 { transition-delay: 0.5s; }
  /* TABLET */
  @media (max-width: 1024px) {
    .community-section { width: calc(100% - 30px); }
    .com-content { padding: 60px 40px; }
    .com-heading { font-size: 32px; }
    .com-para { font-size: 16px; }
    .com-star-1 { width: 70px; }
    .com-star-2 { width: 40px; }
    .com-photo { object-position: center 35%; }
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .community-section {
      flex-direction: column;
      width: calc(100% - 20px);
      margin: 10px;
      border-radius: 16px;
      min-height: auto;
    }
    .com-photo-wrap {
      min-height: 420px;
      border-radius: 16px 16px 0 0;
    }
    .com-photo {
      object-position: center 40%;
    }
    .com-photo-overlay {
      background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,0.15) 100%);
    }
    .com-content { padding: 48px 28px; }
    .com-heading { font-size: 28px; }
    .com-para { font-size: 15px; }
    .com-btn { align-self: stretch; text-align: center; }
    .com-star-3, .com-star-4 { display: none; }
    .com-star-1 { width: 60px; }
    .com-star-2 { width: 35px; }
    .com-bf-1, .com-bf-2 { display: none; }
  }
  /* SMALL MOBILE */
  @media (max-width: 480px) {
    .community-section { width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .com-photo-wrap { min-height: 360px; }
    .com-photo { object-position: center 45%; }
    .com-content { padding: 36px 20px; }
    .com-heading { font-size: 22px; }
    .com-perk { font-size: 15px; }
    .com-star-1 { width: 50px; }
    .com-star-2 { display: none; }
  }

.testimonials-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 100px 60px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }
  /* BLOBS */
  .test-blob-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
  }
  .test-blob-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
  }
  .test-blob-3 {
    position: absolute;
    top: 40%;
    right: 30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.3) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
  }
  /* STARS */
  .test-star {
    position: absolute;
    height: auto;
    z-index: 2;
    pointer-events: none;
    animation: testStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes testStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .test-star-1 { top: 20px;    left: 30px;   width: 90px;  animation-delay: 0s; }
  .test-star-2 { top: 15px;    right: 40px;  width: 55px;  animation-delay: 0.5s; }
  .test-star-3 { bottom: 20px; left: 50px;   width: 35px;  animation-delay: 1s; }
  .test-star-4 { bottom: 25px; right: 60px;  width: 28px;  animation-delay: 0.7s; }
  /* HEADER */
  .test-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
  }
  .test-holo-line {
    width: 120px;
    height: 3px;
    border-radius: 100px;
    background: linear-gradient(
      90deg,
      #FDC5F5,
      #B388EB,
      #8093F1,
      #72DDF7,
      #FDC5F5,
      #B388EB,
      #8093F1
    );
    background-size: 400% auto;
    animation: testHoloLine 8s linear infinite;
    margin: 0 auto 20px auto;
  }
  @keyframes testHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .test-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 46px;
    font-weight: 700;
    color: #2D1B4E;
    margin: 0;
    line-height: 1.1;
  }
  .test-subheading {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #4A3860;
    margin: 16px 0 0 0;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
  /* FEATURED CARD */
  .test-featured {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow:
      0 4px 24px rgba(179, 136, 235, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    align-items: center;
  }
  .test-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(179, 136, 235, 0.4), inset 0 1px 0 rgba(255,255,255,0.9);
  }
  .test-featured-quote {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    color: #4A3860;
    line-height: 1.9em;
    margin: 0;
    font-weight: 300;
    font-style: italic;
    max-width: 800px;
  }
  .test-featured-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(179, 136, 235, 0.2);
    width: 100%;
  }
  .test-featured-name {
    font-family: 'Sweetie Honey', serif;
    font-size: 20px;
    font-weight: 700;
    color: #2D1B4E;
    margin: 0;
  }
  .test-featured-title {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #8093F1;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.03em;
  }
  /* SMALLER CARDS ROW */
  .test-review-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    position: relative;
    z-index: 2;
  }
  .test-review-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #2D1B4E;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .test-review-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: conic-gradient(
      from var(--off-glow-angle, 0deg),
      #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5
    );
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: offGlowSpin 3s linear infinite;
  }
  .test-review-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -1px 0 rgba(255, 255, 255, 0.15),
      0 0 15px rgba(253, 197, 245, 0.9),
      0 0 30px rgba(179, 136, 235, 0.7),
      0 0 60px rgba(128, 147, 241, 0.5),
      0 0 90px rgba(114, 221, 247, 0.3);
  }
  .test-review-btn:hover::before { opacity: 1; }
  .test-review-btn .btn-shimmer {
    position: absolute; inset: 0;
    border-radius: 100px; overflow: hidden;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(253, 197, 245, 0.35) 50%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .test-review-btn:hover .btn-shimmer { transform: translateX(100%); }
  .test-cards {
    display: flex;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  .test-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow:
      0 4px 24px rgba(179, 136, 235, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .test-card:hover { transform: translateY(-6px); }
  .test-card-1:hover { box-shadow: 0 12px 40px rgba(253, 197, 245, 0.5), inset 0 1px 0 rgba(255,255,255,0.9); }
  .test-card-2:hover { box-shadow: 0 12px 40px rgba(114, 221, 247, 0.5), inset 0 1px 0 rgba(255,255,255,0.9); }
  .test-quote {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #4A3860;
    line-height: 1.8em;
    margin: 0;
    font-weight: 300;
    font-style: italic;
  }
  .test-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(179, 136, 235, 0.2);
    padding-top: 16px;
  }
  .test-author-name {
    font-family: 'Sweetie Honey', serif;
    font-size: 18px;
    font-weight: 700;
    color: #2D1B4E;
    margin: 0;
  }
  .test-author-title {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #8093F1;
    margin: 0;
    font-weight: 300;
  }
  /* SCROLL ANIMATIONS */
  .test-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .test-animate.test-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .test-delay-1 { transition-delay: 0.1s; }
  .test-delay-2 { transition-delay: 0.2s; }
  .test-delay-3 { transition-delay: 0.3s; }
  .test-delay-4 { transition-delay: 0.4s; }
  .test-delay-5 { transition-delay: 0.5s; }
  /* TABLET */
  @media (max-width: 1024px) {
    .testimonials-section {
      padding: 80px 40px;
      width: calc(100% - 30px);
    }
    .test-heading { font-size: 36px; }
    .test-featured { padding: 48px 48px; }
    .test-featured-quote { font-size: 18px; }
    .test-cards { gap: 16px; }
    .test-star-1 { width: 70px; }
    .test-star-2 { width: 40px; }
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .testimonials-section {
      padding: 60px 24px;
      width: calc(100% - 20px);
      margin: 10px;
      border-radius: 16px;
    }
    .test-heading { font-size: 30px; }
    .test-subheading { font-size: 16px; }
    .test-header { margin-bottom: 40px; }
    .test-featured { padding: 36px 28px; }
    .test-featured-quote { font-size: 16px; }
    .test-cards { flex-direction: column; gap: 16px; }
    .test-card { padding: 28px 24px; }
    .test-card-1:hover,
    .test-card-2:hover { transform: none; }
    .test-featured:hover { transform: none; }
    .test-star-3, .test-star-4 { display: none; }
    .test-star-1 { width: 60px; }
    .test-star-2 { width: 35px; }
  }
  /* SMALL MOBILE */
  @media (max-width: 480px) {
    .testimonials-section {
      padding: 50px 16px;
      width: calc(100% - 16px);
      margin: 8px;
      border-radius: 12px;
    }
    .test-heading { font-size: 24px; }
    .test-featured { padding: 28px 20px; }
    .test-featured-quote { font-size: 15px; }
    .test-card { padding: 24px 20px; }
    .test-star-1 { width: 50px; }
    .test-star-2 { display: none; }
  }

.intro-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 0;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 600px;
  }
  .intro-blob-1 {
    position: absolute;
    top: -80px; left: -80px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.7) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .intro-blob-2 {
    position: absolute;
    top: 20%; right: -100px;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.6) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .intro-blob-3 {
    position: absolute;
    bottom: -80px; left: 20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.5) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .intro-blob-4 {
    position: absolute;
    bottom: 10%; right: 25%;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(128, 147, 241, 0.4) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .intro-star-inline {
    width: 60px; height: auto;
    display: block;
    animation: starTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  .intro-star {
    position: absolute;
    height: auto; z-index: 10; pointer-events: none;
    animation: starTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .intro-star-2 { top: 15px; right: 40px; width: 55px; animation-delay: 0.5s; }
  .intro-star-3 { bottom: 20px; left: 50px; width: 35px; animation-delay: 1s; }
  .intro-star-4 { bottom: 25px; right: 60px; width: 28px; animation-delay: 0.7s; }
  .intro-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    position: relative;
    z-index: 5;
  }
  .intro-star-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .intro-holo-line {
    width: 120px; height: 3px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: holoLine 8s linear infinite;
  }
  @keyframes holoLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .intro-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 42px; font-weight: 700; color: #2D1B4E;
    margin: 0; line-height: 1.2; letter-spacing: -0.01em;
  }
  .intro-para {
    font-family: 'Nunito', sans-serif;
    font-size: 17px; font-weight: 400;
    color: #4A3860; line-height: 1.8em; margin: 0;
  }
  .intro-photo-wrap {
    flex: 1; position: relative;
    min-height: 600px; overflow: hidden;
    border-radius: 0 20px 20px 0;
  }
  .intro-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 20%;
    display: block;
  }
  .intro-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to left, transparent 60%, rgba(255, 255, 255, 0.15) 100%);
    z-index: 1;
  }
  /* SCROLL ANIMATIONS */
  .intro-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .intro-animate.intro-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .intro-delay-1 { transition-delay: 0.1s; }
  .intro-delay-2 { transition-delay: 0.2s; }
  .intro-delay-3 { transition-delay: 0.3s; }
  .intro-delay-4 { transition-delay: 0.4s; }
  .intro-delay-5 { transition-delay: 0.5s; }
  /* TABLET */
  @media (max-width: 1024px) {
    .intro-section { width: calc(100% - 30px); }
    .intro-content { padding: 60px 40px; }
    .intro-heading { font-size: 34px; }
    .intro-para { font-size: 16px; }
    .intro-star-inline { width: 48px; }
    .intro-star-2 { width: 40px; }
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .intro-section {
      flex-direction: column;
      width: calc(100% - 20px);
      margin: 10px; border-radius: 16px; min-height: auto;
    }
    .intro-photo-wrap {
      min-height: 420px;
      border-radius: 16px 16px 0 0;
      order: 1;
    }
    .intro-photo { object-position: center 35%; }
    .intro-photo-overlay {
      background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,0.15) 100%);
    }
    .intro-content { padding: 48px 28px; order: 2; }
    .intro-heading { font-size: 28px; }
    .intro-para { font-size: 15px; }
    .intro-star-3, .intro-star-4 { display: none; }
    .intro-star-inline { width: 44px; }
    .intro-star-2 { width: 35px; }
  }
  /* SMALL MOBILE */
  @media (max-width: 480px) {
    .intro-section { width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .intro-photo-wrap { min-height: 320px; }
    .intro-photo { object-position: center 30%; }
    .intro-content { padding: 36px 20px; }
    .intro-heading { font-size: 22px; }
    .intro-para { font-size: 14px; }
    .intro-star-inline { width: 36px; }
    .intro-star-2 { display: none; }
  }

.events-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 80px 60px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .events-blob-1 {
    position: absolute; top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .events-blob-2 {
    position: absolute; bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .events-blob-3 {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.3) 0%, transparent 65%);
    filter: blur(60px); pointer-events: none; z-index: 0;
  }
  .events-star {
    position: absolute; height: auto; z-index: 2; pointer-events: none;
    animation: evStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes evStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .events-star-1 { top: 20px;    left: 30px;   width: 70px;  animation-delay: 0s; }
  .events-star-2 { top: 15px;    right: 40px;  width: 45px;  animation-delay: 0.5s; }
  .events-star-3 { bottom: 20px; left: 50px;   width: 30px;  animation-delay: 1s; }
  .events-star-4 { bottom: 25px; right: 60px;  width: 24px;  animation-delay: 0.7s; }
  /* LEFT — Luma embed */
  .events-embed-col {
 flex: 1.2;
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.2),
      0 2px 12px rgba(253, 197, 245, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
  }
    .events-embed-col:hover {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 0 20px rgba(253, 197, 245, 0.6),
      0 0 40px rgba(179, 136, 235, 0.5),
      0 0 80px rgba(128, 147, 241, 0.3),
      0 0 120px rgba(114, 221, 247, 0.2);
  }
  .events-embed-col iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: none;
  }
  /* RIGHT — content */
  .events-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
  }
  .events-holo-line {
    width: 120px; height: 3px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: evHoloLine 8s linear infinite;
  }
  @keyframes evHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .events-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 42px; font-weight: 700; color: #2D1B4E;
    margin: 0; line-height: 1.1;
  }
  .events-subheading {
    font-family: 'Nunito', sans-serif;
    font-size: 17px; color: #4A3860;
    font-weight: 300; letter-spacing: 0.02em;
    line-height: 1.8em; margin: 0;
  }
  .events-note {
    font-family: 'Nunito', sans-serif;
    font-size: 14px; color: #8093F1;
    font-weight: 300; letter-spacing: 0.04em;
    margin: 0;
  }
  @property --ev-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes evGlowSpin {
    to { --ev-glow-angle: 360deg; }
  }
  .ev-btn {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #2D1B4E;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .ev-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: conic-gradient(
      from var(--ev-glow-angle, 0deg),
      #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5
    );
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: evGlowSpin 3s linear infinite;
  }
  .ev-btn:hover {
    background: rgba(255, 255, 255, 0.38);
    border-color: rgba(255, 255, 255, 0.7);
    color: #2D1B4E;
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3),
      0 0 15px rgba(253, 197, 245, 0.9),
      0 0 30px rgba(179, 136, 235, 0.7),
      0 0 60px rgba(128, 147, 241, 0.5),
      0 0 90px rgba(114, 221, 247, 0.3);
  }
  .ev-btn:hover::before { opacity: 1; }
  .ev-btn .btn-shimmer {
    position: absolute; inset: 0;
    border-radius: 100px; overflow: hidden;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(253, 197, 245, 0.35) 50%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .ev-btn:hover .btn-shimmer { transform: translateX(100%); }
  .events-animate {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .events-animate.events-visible { opacity: 1; transform: translateY(0); }
  .events-delay-1 { transition-delay: 0.1s; }
  .events-delay-2 { transition-delay: 0.2s; }
  .events-delay-3 { transition-delay: 0.3s; }
  .events-delay-4 { transition-delay: 0.4s; }
  .events-delay-5 { transition-delay: 0.5s; }
  /* TABLET */
  @media (max-width: 1024px) {
    .events-section {
      flex-direction: column;
      width: calc(100% - 30px);
      padding: 70px 40px;
      gap: 40px;
    }
    .events-embed-col { width: 100%; flex: none; }
    .events-embed-col iframe { height: 480px; }
    .events-content-col { width: 100%; flex: none; }
    .events-heading { font-size: 32px; }
    .ev-btn { align-self: stretch; text-align: center; }
    .events-star-1 { width: 60px; }
    .events-star-2 { width: 36px; }
  }
  /* MOBILE */
  @media (max-width: 768px) {
    .events-section { padding: 60px 24px; width: calc(100% - 20px); margin: 10px; border-radius: 16px; gap: 32px; }
    .events-embed-col iframe { height: 420px; }
    .events-heading { font-size: 26px; }
    .events-subheading { font-size: 15px; }
    .events-star-3, .events-star-4 { display: none; }
    .events-star-1 { width: 50px; }
    .events-star-2 { width: 30px; }
  }
  /* SMALL MOBILE */
  @media (max-width: 480px) {
    .events-section { padding: 50px 16px; width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .events-heading { font-size: 22px; }
    .events-embed-col iframe { height: 380px; }
    .ev-btn { font-size: 15px; padding: 14px 28px; }
    .events-star-2 { display: none; }
  }

.faq-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 100px 60px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
  }
  .faq-blob-1 {
    position: absolute; top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .faq-blob-2 {
    position: absolute; bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .faq-blob-3 {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.3) 0%, transparent 65%);
    filter: blur(60px); pointer-events: none; z-index: 0;
  }
  .faq-star {
    position: absolute; height: auto; z-index: 2; pointer-events: none;
    animation: faqStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes faqStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .faq-star-1 { top: 20px;    left: 30px;   width: 90px;  animation-delay: 0s; }
  .faq-star-2 { top: 15px;    right: 40px;  width: 55px;  animation-delay: 0.5s; }
  .faq-star-3 { bottom: 20px; left: 50px;   width: 35px;  animation-delay: 1s; }
  .faq-star-4 { bottom: 25px; right: 60px;  width: 28px;  animation-delay: 0.7s; }
  .faq-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative; z-index: 2;
  }
  .faq-holo-line {
    width: 120px; height: 3px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: faqHoloLine 8s linear infinite;
    margin: 0 auto 20px auto;
  }
  @keyframes faqHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .faq-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 56px; font-weight: 700; color: #2D1B4E;
    margin: 0; line-height: 1.1;
  }
  .faq-subheading {
    font-family: 'Nunito', sans-serif;
    font-size: 18px; color: #4A3860;
    margin: 16px 0 0 0; font-weight: 300; letter-spacing: 0.02em;
  }
  .faq-list {
    max-width: 860px; margin: 0 auto;
    position: relative; z-index: 2;
    display: flex; flex-direction: column; gap: 16px;
  }
  .faq-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(179, 136, 235, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: box-shadow 0.3s ease;
  }
  .faq-item:hover {
    box-shadow: 0 4px 30px rgba(179, 136, 235, 0.2), inset 0 1px 0 rgba(255,255,255,0.9);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 24px;
    text-align: left;
  }
  .faq-question-text {
    font-family: 'Nunito', sans-serif;
    font-size: 20px; font-weight: 700; color: #2D1B4E;
    margin: 0; line-height: 1.3;
  }
  /* GLASS ICON */
  .faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(255, 255, 255, 0.2),
      0 2px 8px rgba(179, 136, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  }
  .faq-icon:hover {
    transform: scale(1.12);
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.4),
      0 2px 12px rgba(179, 136, 235, 0.25);
  }
  .faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: #2D1B4E;
    stroke-width: 2.5;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq-item.open .faq-icon {
    background: rgba(255, 255, 255, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3),
      0 2px 12px rgba(179, 136, 235, 0.25);
  }
  .faq-item.open .faq-icon svg {
    transform: rotate(135deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 32px;
  }
  .faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 32px 28px 32px;
  }
  .faq-answer p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px; color: #4A3860;
    line-height: 1.8em; margin: 0; font-weight: 300;
    border-top: 1px solid rgba(179, 136, 235, 0.15);
    padding-top: 20px;
  }
  .faq-animate {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .faq-animate.faq-visible { opacity: 1; transform: translateY(0); }
  .faq-delay-1 { transition-delay: 0.1s; }
  .faq-delay-2 { transition-delay: 0.2s; }
  .faq-delay-3 { transition-delay: 0.3s; }
  .faq-delay-4 { transition-delay: 0.35s; }
  .faq-delay-5 { transition-delay: 0.4s; }
  .faq-delay-6 { transition-delay: 0.45s; }
  .faq-delay-7 { transition-delay: 0.5s; }
  .faq-delay-8 { transition-delay: 0.55s; }
  @media (max-width: 1024px) {
    .faq-section { padding: 80px 40px; width: calc(100% - 30px); }
    .faq-heading { font-size: 44px; }
    .faq-star-1 { width: 70px; }
    .faq-star-2 { width: 40px; }
  }
  @media (max-width: 768px) {
    .faq-section { padding: 60px 24px; width: calc(100% - 20px); margin: 10px; border-radius: 16px; }
    .faq-heading { font-size: 36px; }
    .faq-subheading { font-size: 16px; }
    .faq-header { margin-bottom: 40px; }
    .faq-question { padding: 22px 24px; }
    .faq-question-text { font-size: 17px; }
    .faq-answer { padding: 0 24px; }
    .faq-item.open .faq-answer { padding: 0 24px 24px 24px; }
    .faq-star-3, .faq-star-4 { display: none; }
    .faq-star-1 { width: 60px; }
    .faq-star-2 { width: 35px; }
  }
  @media (max-width: 480px) {
    .faq-section { padding: 50px 16px; width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .faq-heading { font-size: 30px; }
    .faq-question { padding: 18px 20px; }
    .faq-question-text { font-size: 16px; }
    .faq-answer { padding: 0 20px; }
    .faq-item.open .faq-answer { padding: 0 20px 20px 20px; }
    .faq-star-1 { width: 50px; }
    .faq-star-2 { display: none; }
  }

.cta-section {
    width: calc(100% - 30px);
    margin: 15px;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  /* Clip wrapper keeps bg + overlay inside rounded corners
     while section itself stays overflow:visible for button glow */
  .cta-clip {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/4C69943B-BDA7-4D51-9C55-C7D81389143E.JPG');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: ctaZoom 30s ease-in-out infinite alternate;
  }
  @keyframes ctaZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.04); }
  }
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(45, 27, 78, 0.88) 0%,
      rgba(128, 147, 241, 0.7) 50%,
      rgba(114, 221, 247, 0.6) 100%
    );
    z-index: 1;
  }
  .cta-star {
    position: absolute; height: auto; z-index: 3; pointer-events: none;
    animation: ctaStarTwinkle 3s ease-in-out infinite;
    filter: brightness(10) saturate(0);
  }
  @keyframes ctaStarTwinkle {
    0%, 100% { opacity: 0.8; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.3; transform: scale(0.9) rotate(15deg); }
  }
  .cta-star-1 { top: 20px;    left: 30px;   width: 90px;  animation-delay: 0s; }
  .cta-star-2 { top: 15px;    right: 40px;  width: 55px;  animation-delay: 0.5s; }
  .cta-star-3 { bottom: 20px; left: 50px;   width: 35px;  animation-delay: 1s; }
  .cta-star-4 { bottom: 25px; right: 60px;  width: 28px;  animation-delay: 0.7s; }
  .cta-butterfly { position: absolute; z-index: 3; pointer-events: none; opacity: 0.6; }
  .cta-butterfly svg { animation: ctaFlapWings 0.5s ease-in-out infinite alternate; }
  .cta-bf-1 { top: 20%; left: 8%;    animation: ctaFloat1 12s ease-in-out infinite; }
  .cta-bf-2 { top: 20%; right: 8%;   animation: ctaFloat2 15s ease-in-out infinite; }
  .cta-bf-3 { bottom: 20%; left: 12%;  animation: ctaFloat3 10s ease-in-out infinite; }
  .cta-bf-4 { bottom: 20%; right: 12%; animation: ctaFloat4 13s ease-in-out infinite; }
  @keyframes ctaFlapWings { 0% { transform: scaleX(1); } 100% { transform: scaleX(0.3); } }
  @keyframes ctaFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(-5deg); }
    33% { transform: translate(20px, -30px) rotate(5deg); }
    66% { transform: translate(-15px, -15px) rotate(-3deg); }
  }
  @keyframes ctaFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(5deg); }
    33% { transform: translate(-20px, -25px) rotate(-5deg); }
    66% { transform: translate(15px, -35px) rotate(3deg); }
  }
  @keyframes ctaFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(3deg); }
    50% { transform: translate(25px, -20px) rotate(-3deg); }
  }
  @keyframes ctaFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(-3deg); }
    50% { transform: translate(-25px, -20px) rotate(3deg); }
  }
  .cta-inner {
    position: relative; z-index: 5;
    display: flex; flex-direction: column;
    align-items: center; gap: 28px;
    max-width: 700px; padding: 100px 60px;
  }
  .cta-holo-line {
    width: 120px; height: 3px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: ctaHoloLine 8s linear infinite;
  }
  @keyframes ctaHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .cta-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 64px; font-weight: 700; color: white;
    margin: 0; line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .cta-subheading {
    font-family: 'Nunito', sans-serif;
    font-size: 20px; color: rgba(255, 255, 255, 1);
    margin: 0; font-weight: 400;
    line-height: 1.7em; letter-spacing: 0.01em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  }
  @property --cta-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes ctaGlowSpin {
    to { --cta-glow-angle: 360deg; }
  }
  .cta-btn {
    position: relative;
    display: inline-block;
    padding: 18px 56px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .cta-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: conic-gradient(
      from var(--cta-glow-angle, 0deg),
      #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5
    );
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: ctaGlowSpin 3s linear infinite;
  }
  .cta-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -1px 0 rgba(255, 255, 255, 0.15),
      0 0 15px rgba(253, 197, 245, 0.9),
      0 0 30px rgba(179, 136, 235, 0.7),
      0 0 60px rgba(128, 147, 241, 0.5),
      0 0 90px rgba(114, 221, 247, 0.3);
  }
  .cta-btn:hover::before { opacity: 1; }
  .cta-btn .btn-shimmer {
    position: absolute; inset: 0;
    border-radius: 100px; overflow: hidden;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(253, 197, 245, 0.35) 50%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .cta-btn:hover .btn-shimmer { transform: translateX(100%); }
  .cta-animate {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .cta-animate.cta-visible { opacity: 1; transform: translateY(0); }
  .cta-delay-1 { transition-delay: 0.1s; }
  .cta-delay-2 { transition-delay: 0.2s; }
  .cta-delay-3 { transition-delay: 0.3s; }
  .cta-delay-4 { transition-delay: 0.4s; }
  @media (max-width: 1024px) {
    .cta-section { width: calc(100% - 30px); min-height: 500px; }
    .cta-clip { border-radius: 20px; }
    .cta-heading { font-size: 52px; }
    .cta-subheading { font-size: 18px; }
    .cta-inner { padding: 80px 40px; }
    .cta-star-1 { width: 70px; }
    .cta-star-2 { width: 40px; }
    .cta-bf-3, .cta-bf-4 { display: none; }
  }
  @media (max-width: 768px) {
    .cta-section { width: calc(100% - 20px); margin: 10px; border-radius: 16px; min-height: 480px; }
    .cta-clip { border-radius: 16px; }
    .cta-heading { font-size: 38px; }
    .cta-subheading { font-size: 16px; }
    .cta-inner { padding: 60px 28px; }
    .cta-btn { padding: 16px 40px; font-size: 16px; }
    .cta-star-3, .cta-star-4 { display: none; }
    .cta-star-1 { width: 60px; }
    .cta-star-2 { width: 35px; }
    .cta-bf-1, .cta-bf-2, .cta-bf-3, .cta-bf-4 { display: none; }
  }
  @media (max-width: 480px) {
    .cta-section { width: calc(100% - 16px); margin: 8px; border-radius: 12px; min-height: 420px; }
    .cta-clip { border-radius: 12px; }
    .cta-heading { font-size: 30px; }
    .cta-subheading { font-size: 15px; }
    .cta-inner { padding: 50px 20px; gap: 20px; }
    .cta-btn { padding: 14px 32px; font-size: 15px; }
    .cta-star-1 { width: 50px; }
    .cta-star-2 { display: none; }
  }

.footer-section {
    width: calc(100% - 30px);
    margin: 15px;
    padding: 80px 60px 40px 60px;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.35) 100%
    );
    box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 8px 40px rgba(179, 136, 235, 0.15),
      0 2px 8px rgba(253, 197, 245, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: visible;
  }
  .footer-blob-1 {
    position: absolute; top: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(253, 197, 245, 0.6) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .footer-blob-2 {
    position: absolute; bottom: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(114, 221, 247, 0.5) 0%, transparent 65%);
    filter: blur(50px); pointer-events: none; z-index: 0;
  }
  .footer-blob-3 {
    position: absolute; top: 40%; left: 50%;
    transform: translate(-50%, -50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(179, 136, 235, 0.25) 0%, transparent 65%);
    filter: blur(60px); pointer-events: none; z-index: 0;
  }
  .footer-star {
    position: absolute; height: auto; z-index: 2; pointer-events: none;
    animation: footerStarTwinkle 3s ease-in-out infinite;
    filter: brightness(0.2) sepia(1) saturate(5) hue-rotate(280deg);
  }
  @keyframes footerStarTwinkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(0.9) rotate(15deg); }
  }
  .footer-star-1 { top: 20px;    left: 30px;   width: 70px;  animation-delay: 0s; }
  .footer-star-2 { top: 15px;    right: 40px;  width: 45px;  animation-delay: 0.5s; }
  .footer-star-3 { bottom: 60px; left: 50px;   width: 28px;  animation-delay: 1s; }
  .footer-star-4 { bottom: 60px; right: 60px;  width: 22px;  animation-delay: 0.7s; }
  .footer-inner {
    position: relative; z-index: 5;
    display: flex; flex-direction: column; gap: 60px;
  }
  .footer-top {
    display: flex; flex-direction: row;
    gap: 80px; align-items: flex-start;
  }
  .footer-brand {
    display: flex; flex-direction: column;
    gap: 20px; flex: 1;
  }
  .footer-logo { width: 120px; height: auto; }
  .footer-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 16px; color: #4A3860;
    line-height: 1.7em; font-weight: 300;
    margin: 0; max-width: 280px;
  }
  .footer-ig {
    display: inline-flex; align-items: center;
    gap: 8px; margin-top: 8px;
    transition: opacity 0.3s ease;
  }
  .footer-ig:hover { opacity: 0.7; }
  .footer-ig img { width: 28px; height: 28px; }
  .footer-form-wrap {
    flex: 1.5; display: flex;
    flex-direction: column; gap: 16px;
  }
  .footer-form-heading {
    font-family: 'Sweetie Honey', serif;
    font-size: 32px; font-weight: 700;
    color: #2D1B4E; margin: 0;
  }
  .footer-form-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 15px; color: #4A3860;
    margin: 0; font-weight: 300; line-height: 1.6em;
  }
  .footer-form {
    display: flex; flex-direction: column;
    gap: 12px; margin-top: 8px;
  }
  .footer-form-row { display: flex; gap: 12px; }
  .footer-input,
  .footer-textarea {
    width: 100%; padding: 14px 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(179, 136, 235, 0.25);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px; color: #2D1B4E;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
  }
  .footer-input::placeholder,
  .footer-textarea::placeholder { color: rgba(74, 56, 96, 0.5); }
  .footer-input:focus,
  .footer-textarea:focus {
    border-color: rgba(179, 136, 235, 0.6);
    box-shadow: 0 0 0 3px rgba(179, 136, 235, 0.1);
  }
  .footer-textarea { resize: vertical; min-height: 120px; }
  /* BUTTON — exact match to hero */
  @property --footer-glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }
  @keyframes footerGlowSpin {
    to { --footer-glow-angle: 360deg; }
  }
  .footer-submit {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #2D1B4E;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    transition: background 0.4s ease, transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  }
  .footer-submit::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: conic-gradient(
      from var(--footer-glow-angle, 0deg),
      #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5
    );
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: footerGlowSpin 3s linear infinite;
  }
  .footer-submit:hover {
    background: rgba(255, 255, 255, 0.38);
    border-color: rgba(255, 255, 255, 0.7);
    color: #2D1B4E;
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      inset 0 -1px 0 rgba(255, 255, 255, 0.3),
      0 0 15px rgba(253, 197, 245, 0.9),
      0 0 30px rgba(179, 136, 235, 0.7),
      0 0 60px rgba(128, 147, 241, 0.5),
      0 0 90px rgba(114, 221, 247, 0.3);
  }
  .footer-submit:hover::before { opacity: 1; }
  .footer-submit .btn-shimmer {
    position: absolute; inset: 0;
    border-radius: 100px; overflow: hidden;
    background: linear-gradient(
      105deg,
      transparent 20%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(253, 197, 245, 0.35) 50%,
      rgba(255, 255, 255, 0.2) 60%,
      transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .footer-submit:hover .btn-shimmer { transform: translateX(100%); }
  .footer-divider {
    width: 100%; height: 1px;
    background: rgba(179, 136, 235, 0.2);
  }
  .footer-bottom {
    display: flex; align-items: center;
    justify-content: space-between;
  }
  .footer-bottom .footer-copyright:last-child { text-align: right; }
  .footer-bottom .footer-copyright { flex: 1; }
  .footer-copyright {
    font-family: 'Nunito', sans-serif;
    font-size: 13px; color: rgba(74, 56, 96, 0.6);
    margin: 0; font-weight: 300; letter-spacing: 0.02em;
  }
  .footer-holo-line {
    width: 80px; height: 2px; border-radius: 100px;
    background: linear-gradient(90deg, #FDC5F5, #B388EB, #8093F1, #72DDF7, #FDC5F5, #B388EB, #8093F1);
    background-size: 400% auto;
    animation: footerHoloLine 8s linear infinite;
  }
  @keyframes footerHoloLine {
    0% { background-position: 0% center; }
    100% { background-position: 400% center; }
  }
  .footer-animate {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .footer-animate.footer-visible { opacity: 1; transform: translateY(0); }
  .footer-delay-1 { transition-delay: 0.1s; }
  .footer-delay-2 { transition-delay: 0.2s; }
  .footer-delay-3 { transition-delay: 0.3s; }
  @media (max-width: 1024px) {
    .footer-section { padding: 60px 40px 32px 40px; width: calc(100% - 30px); }
    .footer-top { gap: 48px; }
    .footer-form-heading { font-size: 26px; }
    .footer-star-1 { width: 55px; }
    .footer-star-2 { width: 35px; }
  }
  @media (max-width: 768px) {
    .footer-section { padding: 50px 24px 28px 24px; width: calc(100% - 20px); margin: 10px; border-radius: 16px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-brand { flex: none; width: 100%; }
    .footer-form-wrap { flex: none; width: 100%; }
    .footer-form-row { flex-direction: column; gap: 12px; }
    .footer-form-heading { font-size: 24px; }
    .footer-submit { align-self: stretch; text-align: center; }
    .footer-star-3, .footer-star-4 { display: none; }
    .footer-star-1 { width: 50px; }
    .footer-star-2 { width: 30px; }
  }
  @media (max-width: 480px) {
    .footer-section { padding: 40px 16px 24px 16px; width: calc(100% - 16px); margin: 8px; border-radius: 12px; }
    .footer-form-heading { font-size: 22px; }
    .footer-logo { width: 90px; }
    .footer-star-1 { width: 40px; }
  }

  /* Spaced uppercase treatment for all section subheadings */
  .intro-statement-sub,
  .ben-subheading,
  .test-subheading,
  .events-subheading,
  .faq-subheading {
    color: #8B6BB5;
    letter-spacing: 0.12em;
    font-weight: 400;
  }

  /* Soft glow on all Sweetie Honey headings */
  .spac-hero-title,
  .offerings-heading,
  .offer-card-content h3,
  .ben-heading,
  .ben-card-title,
  .com-heading,
  .test-heading,
  .test-featured-name,
  .test-author-name,
  .intro-heading,
  .events-heading,
  .faq-heading,
  .cta-heading,
  .footer-form-heading {
    text-shadow:
      0 0 20px rgba(253, 197, 245, 0.6),
      0 0 40px rgba(179, 136, 235, 0.35),
      0 0 80px rgba(128, 147, 241, 0.2);
  }

  /* Sitewide lowercase — hero and testimonials are excluded */
  body { text-transform: lowercase; }
  .spac-hero-content, .spac-hero-content *,
  .testimonials-section, .testimonials-section * { text-transform: none; }