.hero-heading {
  font-family: "Lexend", sans-serif;
  font-weight: 700; 
  font-size: 56px;
  line-height: 1.05;
  text-align: center;
  position: relative;
  color: #1E1E1E;

  /* Depth layer */
  text-shadow:
      0px 2px 4px rgba(0,0,0,0.10),   /* soft base shadow */
      0px 4px 10px rgba(0,0,0,0.07); /* atmosphere */
}
/*********************************************************     
 sohealthful Master Stylesheet (Refactored) 
 Priority: maintainability (balanced) 
 - Component-grouped sections
 - Duplicates merged 
 - Breakpoints consolidated at the end
 - !important used only where Astra/Elementor overrides are likely 
**********************************************************/

/*   ===================================================== */
/* 0) DESIGN TOKENS / GLOBALS                            */
/* ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap');

:root {
  --font-lexend: "Lexend", sans-serif;
  --font-manrope: "Manrope", sans-serif;

  --text-900: #141414;
  --text-800: #1F1F1F; 
  --text-700: #2F2F2F;
  --text-600: #505050;
  --text-500: #666666;

  --brand-purple: #A650C7;
  --brand-teal: #007C7A;

  --brand-gradient: linear-gradient(
    90deg,
    #FF69B7 0%,
    #E961BB 18%,
    #B14CC8 57%,
    #6B33D8 100%
  );

  --card-radius-lg: 20px;
  --card-radius-md: 18px;

  --shadow-sm: 0 8px 24px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

/* Global fallback background */
body { background: #FAFAFA; }

/* ===================================================== */
/* 1) HEADER / NAV BAR                                   */
/* ===================================================== */




.header-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.header-left {
  width: 20% !important;
  display: flex;
  align-items: center;
}

.header-center {
  width: 55% !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-right {
  width: 25% !important;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Desktop menu hover */
.shf-menu a,
.shf-menu summary {
  transition: color .2s ease;
}

.shf-menu a:hover,
.shf-menu summary:hover {
  color: var(--brand-purple) !important;
}

.shf-menu details div a:hover {
  color: var(--brand-purple) !important;
  background: #F6ECFC !important;
}

/* Astra menu alignment + active/hover */
.main-header-menu > li > a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  line-height: 1.2em !important;
  display: flex !important;
  align-items: center !important;
}

.main-header-menu > li > a:hover,
.main-header-menu > .current-menu-item > a {
  color: var(--brand-purple) !important;
}

/* Astra header buttons normalisation */
.ast-header-button,
.ast-header-button .menu-link,
.header-button-1 .ast-custom-button-link,
.header-button-2 .ast-custom-button-link {
  padding: 6px 14px !important;
  border-radius: 24px !important;
  line-height: 1 !important;
}

/* ===================================================== */
/* 2) TABLET/MOBILE NAV (HAMBURGER)                      */
/* ===================================================== */

.shf-hamburger { display: none; }

body.menu-open .shf-mobile-menu {
  display: block !important;
}

.shf-mobile-menu .mobile-link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-800);
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: 0.2s;
}

.shf-mobile-menu .mobile-link:hover {
  color: var(--brand-purple);
}















 
/* ===================================================== */
/* HERO SECTION – BACKGROUND + LAYOUT + PHONE            */
/* ===================================================== */

/* Outer hero background + texture */
.hero-texture {
  position: relative;
  overflow: hidden;
  z-index: 0;

  background: linear-gradient(
    180deg,
    #FFFFFF 0%,
    #F4E3F8 100%
  );
}

/* Main hero content container */
.hero-texture .elementor-container {
  max-width: 1180px !important;
  margin: 0 auto !important;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;

  padding: 72px 48px 80px;   /* breathing room top and bottom, even left and right */
}

/* Left column (heading, copy, button) */
.hero-text {
  flex: 0 0 50%;
  max-width: 540px;
}

/* Right column (phone) */
.hero-phone {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;   /* phone sits in centre of its half */
  align-items: center;
  z-index: 10;
  overflow: visible;
}

/* Phone image – responsive, no stupid fixed 700px */
.hero-phone img,
.hero-phone-img {
  width: 100% !important;
  max-width: 480px !important;   /* adjust 460–500 if you want slightly smaller or bigger */
  height: auto !important;
  display: block !important;
  position: relative !important;
  z-index: 20 !important;
  margin: 0 auto !important;
}

/* === First glow — top left bloom === */
.hero-texture::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -220px;
  width: 720px;
  height: 560px;
  pointer-events: none;
  z-index: -1;

  background: radial-gradient(
    circle,
    rgba(255, 190, 230, 0.50) 0%,
    rgba(244, 227, 248, 0.20) 48%,
    rgba(244, 227, 248, 0) 100%
  );

  filter: blur(95px);
}

/* === Second glow — right side === */
.hero-texture::after {
  content: "";
  position: absolute;
  top: 38%;
  right: -120px;
  width: 640px;
  height: 480px;
  pointer-events: none;
  z-index: -1;

  background: radial-gradient(
    circle,
    rgba(255, 190, 230, 0.38) 0%,
    rgba(244, 227, 248, 0.18) 42%,
    rgba(244, 227, 248, 0) 100%
  );

  filter: blur(85px);
}

/* Ensure hero content sits above glows */
.hero-texture > * {
  position: relative;
  z-index: 1;
}

/* ===================================================== */
/* RESPONSIVE STACKING                                   */
/* ===================================================== */

@media (max-width: 1024px) {

  .hero-texture .elementor-container {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding: 56px 24px 64px;
  }

  .hero-text,
  .hero-phone {
    flex: 0 0 auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .hero-texture .elementor-container {
    padding: 44px 18px 54px;
    gap: 26px;
  }

  .hero-phone img,
  .hero-phone-img {
    max-width: 420px !important;
  }
}

















/* ============================================  
   BENEFIT CARDS – SMALLER VERSION (NORMALISED)  
   ============================================ */

/* Benefit Heading Gradient (UNCHANGED) */
.benefit-title {
  background: linear-gradient(90deg, #FF64C8 0%, #C56CFF 50%, #6D9BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
}

/* Row container — SAME LOGIC */
.benefit-row {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Card base — cleaned + normal spacing */
.benefit-card.h {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  font-family: var(--font-lexend);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

/* Icon — more normal scale */
.benefit-card.h .benefit-icon {
  font-size: 22px;
  color: #7C5FB3;
  line-height: 1;
  transition: transform .25s ease;
}

/* Text — saner size rhythm */
.benefit-card.h .benefit-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.benefit-card.h .benefit-text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #444;
  line-height: 1.48;
}

/* Hover — SAME behaviour, but cleaner */
.benefit-card.h:hover {
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(90deg, #7F52FF, #4BC8D0, #007C7A);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.09);
}

.benefit-card.h:hover .benefit-icon {
  transform: translateY(-3px);
}

/* Tablet — SAME behaviour, cleaner spacing */
@media (max-width: 1024px) {
  .benefit-row {
    flex-wrap: wrap;
    gap: 16px;
    max-width: 100%;
  }
  .benefit-card.h {
    flex: 1 1 calc(50% - 16px);
    padding: 16px 18px;
  }
}

/* Mobile — SAME layout, readable sizing */
@media (max-width: 768px) {
  .benefit-row {
    flex-direction: column;
    gap: 14px;
  }
  .benefit-card.h {
    width: 100%;
    padding: 16px 18px;
  }
  .benefit-card.h .benefit-text h4 { font-size: 15.5px; }
  .benefit-card.h .benefit-text p { font-size: 14px; }
}




/* ================================
   3 Benefits – DESKTOP + TABLET
   (ALWAYS 3 IN ONE ROW)
================================ */

.benefit-row-new{
  display:flex;
  justify-content:center;
  flex-wrap:nowrap;
  gap:16px;
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

/* CARD BASE – DESKTOP + TABLET */
.benefit-card-new{
  flex:0 0 30%;
  max-width:30%;
  background:#ffffff;
  padding:34px 24px;                 /* tall, comfy */
  border-radius:24px;
  text-align:center;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  transition:.35s ease;
}

/* ICON BASE — ONE IMAGE ONLY */
.benefit-card-new img{
  width:78px;                        /* bigger icon */
  height:78px;
  object-fit:contain;
  margin-bottom:16px;
  transition:.35s ease;
}

/* TEXT – DESKTOP + TABLET */
.benefit-card-new h3{
  font-size:21px;                    /* bigger heading */
  font-weight:600;
  margin:0 0 8px;
}
.benefit-card-new p{
  font-size:15px;                    /* bigger body text */
  color:#444;
  margin:0;
  line-height:1.55;
}


/* ======================================
   HOVER — GRADIENT CARD + WHITE TEXT + ICON PULSE
====================================== */

.benefit-card-new:hover{
  background:linear-gradient(135deg,#FF64C8,#C56CFF,#6D9BFF);
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,.13);
}

.benefit-card-new:hover h3,
.benefit-card-new:hover p{
  color:#fff!important;
}

/* icon pulse only (no colour change) */
.benefit-card-new:hover img{
  animation:benefitPulse .65s ease-in-out alternate infinite;
}

@keyframes benefitPulse{
  0%   { transform:scale(1);    opacity:1; }
  100% { transform:scale(1.17); opacity:.92; }
}















/* ================= MOBILE ONLY =================
   < 600px → STACK VERTICALLY, BIGGER BOXES
   (desktop + tablet share the base styles above)
============================================ */

@media (max-width:600px){

  .benefit-row-new{
    flex-direction:column;
    align-items:center;
    max-width:420px;
    width:100%;
    gap:18px;
    margin:0 auto;
  }

  .benefit-card-new{
    flex:0 0 auto;
    max-width:100%;
    width:100%;
    padding:28px 22px;              /* fat box on phone */
    border-radius:22px;
    box-shadow:0 16px 46px rgba(0,0,0,.10);
  } 

  .benefit-card-new img{
    width:64px;
    height:64px;
    margin-bottom:12px;
  }

  .benefit-card-new h3{
    font-size:18px;
    margin-bottom:6px;
  }

  .benefit-card-new p{
    font-size:14px;
    line-height:1.6;
  }
}

/* ===================================================== */
/* 6) FEATURE GRID + FEATURE CARD  */
/* ===================================================== */

.feature-grid-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  background:
    radial-gradient(
      900px 700px at 50% 50%,
      rgba(255,175,240,0.22) 0%,
      rgba(255,175,240,0.00) 75%
    ),
    #FFFFFF;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px;
  align-items: stretch;
}


.feature-card {
  position: relative;
  background: #fff;
  border-radius: var(--card-radius-md);
  padding: 30px 26px 24px;
  border: 2px solid #E7E7E7;
  transition: all .25s ease;
  height: 100%;
  overflow: visible; /* allow badge to float above */
}

/* hover glow border */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--brand-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

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

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

/* ICON HOVER EFFECTS */
.feature-card:hover .feature-icon {
  transform: scale(1.10);
  transition: transform .25s ease, filter .25s ease;
}

.feature-icon {
  width:30px;
  height:30px;
  transition: transform .25s ease, filter .25s ease;
}

/* header row */
.feature-header {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

/* TITLE */
.feature-card h3 {
  font-family: var(--font-manrope);
  font-weight: 750;
  font-size: 22px;
  margin: 0;
  color: var(--text-800);
}

/* BULLET LIST */
.feature-list {
  list-style:none;
  margin:10px 0 0;
  padding:0;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-family: var(--font-manrope);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-700);
}

.feature-list li::before {
  content:"";
  position:absolute;
  left:0;
  top:0.78em;
  transform:translateY(-50%);
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#FF8AD6,#E961BB,#B14CC8);
}

/* ===================== */
/* PREMIUM BADGE STYLING */
/* ===================== */

/* badge FLOATS ABOVE the card, not on the border */
.feature-card {
  position: relative;
  overflow: visible; /* you already have this, keep it */
}

/* pill badge floating above TOP edge, centred */
.feature-card .feature-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);  /* lifts it above the border */
  margin: 0;

  padding: 4px 12px;
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;

  border-radius: 999px;
  border: 1.2px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(90deg,#A650C7,#C56CFF,#6D9BFF);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  color: #7A44C7;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}



/* hover effect on badge */
.feature-card:hover .feature-badge {
  box-shadow: 0 3px 6px rgba(0,0,0,0.10);
  /* keep centering + lift a bit more on hover */
  transform: translate(-50%, -60%);
  transition: .25s ease;
}


/* Responsive */
@media(max-width:1024px){
  .feature-card h3{ font-size:20px; }
  .feature-list li{ font-size:14.5px; margin-bottom:7px; }
}

@media(max-width:600px){
  .feature-card h3{ font-size:19px; }
  .feature-list li{ font-size:14.2px; }
}




















/* ===================================================== */
/* PARTNER / INVESTOR – LEFT BLOCK                       */
/* ===================================================== */
.sh-partner-left{
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 620px;
}

/* BADGE – WHITE PILL + DOT */
.sh-partner-badge{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px 10px 16px;
  margin-bottom: 26px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #4B1E78;

  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(168,109,235,0.35);
  border-radius: 999px;

  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* animated dot */
.sh-partner-badge::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;

  background: radial-gradient(
    circle at 35% 35%,
    #F4E3F8 0%,
    #CFA8F5 45%,
    #A86DEB 100%
  );

  box-shadow:
    0 0 0 3px rgba(168,109,235,0.12),
    0 10px 18px rgba(168,109,235,0.22);

  animation: sh-badge-dot 1.6s ease-in-out infinite;
}

@keyframes sh-badge-dot{
  0%   { transform: translateX(0);   opacity: 0.75; }
  50%  { transform: translateX(6px); opacity: 1; }
  100% { transform: translateX(0);   opacity: 0.75; }
}

/* Heading */
.sh-partner-heading{
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 700;
  color: #1e1e1e;
  padding-bottom: 18px;
}

.sh-partner-heading::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 3px;
  background: linear-gradient(
    90deg,
    #a650c7 0%,
    rgba(166, 80, 199, 0) 100%
  );
  box-shadow: 0 4px 10px rgba(166, 80, 199, 0.3);
  border-radius: 999px;
}

/* Body copy */
.sh-partner-copy{
  margin: 0 0 26px;
  font-size: 17px;
  line-height: 1.7;
  color: #1E1E1E;
  max-width: 560px;
}

/* Bullet list */
.sh-partner-list{
  list-style: none;
  margin: 26px 0 26px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.sh-partner-list li{
  position: relative;
  padding-left: 40px;
  margin: 0;
  font-size: 16px;
  font-weight: 650;
  color: #111111;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.95),
    0 10px 26px rgba(255,255,255,0.55);
}

.sh-partner-list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #CFA8F5 0%, #A86DEB 55%, #7F7BFF 100%);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.92),
    0 10px 22px rgba(168,109,235,0.28);
}

.sh-partner-list li::marker{ display: none; }
.sh-partner-list li::selection{ background: transparent; }

.sh-partner-list li::after{
  content:"";
  position: absolute;
  left: 32px;
  right: -8px;
  top: 50%;
  height: 1.6em;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.55);
  filter: blur(14px);
  border-radius: 999px;
  z-index: -1;
}

/* Trust line */
.sh-partner-trust{
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #1E1E1E;
}


/* ===================================================== */
/* PAGE BACKGROUND (STYLE ONLY)                          */
/* ===================================================== */
.Register-page-container{
  position: relative;
  background:
    radial-gradient(900px 520px at 82% 38%, rgba(216,128,250,0.22), transparent 65%),
    radial-gradient(780px 520px at 18% 72%, rgba(166,80,199,0.16), transparent 62%),
    linear-gradient(
      135deg,
      rgba(216,128,250,0.06) 0%,
      rgba(166,80,199,0.06) 55%,
      rgba(255,255,255,0) 100%
    );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  background-color: #ffffff;
}

/* WHITE TOP FADE */
.Register-page-container::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 80px;

  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255,255,255,0.95) 35%,
    rgba(255,255,255,0.7) 65%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none;
  z-index: 1;
}


/* ===================================================== */
/* REGISTER FORM CARD (STYLE + INTERNAL SPACING ONLY)    */
/* ===================================================== */
.register-form-box{
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);

  max-width: 360px;

  padding: 12px 18px 18px;
}

/* WPForms INTERNAL SPACING */
.register-form-box .wpforms-container,
.register-form-box .wpforms-form{
  margin: 0 !important;
}

.register-form-box .wpforms-field{
  margin-bottom: 0px !important;
}

/* Labels */
.register-form-box .wpforms-field-label{
  font-family: var(--font-lexend);
  font-weight: 500;
  font-size: 12.5px;
  margin: 0 0 5px !important;
  color: var(--text-800);
}

/* Inputs */
.register-form-box input,
.register-form-box textarea,
.register-form-box select{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;

  border-radius: 10px;
  border: 1px solid #D7D7D7;
  background: #FDFDFD;

  padding: 10px 12px !important;

  font-family: var(--font-lexend);
  font-size: 13px;
  line-height: 1.25;
}

/* Textarea */
.register-form-box textarea{
  min-height: 72px !important;
  resize: vertical;
}

/* Submit container */
.register-form-box .wpforms-submit-container{
  margin-top: 12px !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}

/* Button */
.register-form-box .wpforms-submit{
  width: 100%;
  border: none;
  border-radius: 28px;

  padding: 14px 16px !important;

  font-family: var(--font-lexend);
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  background: linear-gradient(90deg, #D880FA, var(--brand-purple));
  color: #FFFFFF;

  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  transition: 0.18s ease;
}

.register-form-box .wpforms-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}


/* ===================================================== */
/* INNER SECTION: RESPONSIVE LAYOUT FIX                  */
/* ===================================================== */

/* Tablet: still 2-col, but tighter and prevent overflow */
@media (max-width: 1024px){
  .inner-section{
    max-width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;

    gap: 28px;
    justify-content: space-between;
  }

  .inner-section > *{
    min-width: 0;
  }

  .register-form-box{
    max-width: 100%;
    width: 100%;

    transform: scale(0.9);
    transform-origin: top center;

    padding: 14px 18px;
  }
}

/* Mobile: stack columns */
@media (max-width: 767px){
  .inner-section{
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 18px;

    padding-left: 16px;
    padding-right: 16px;
  }

  .inner-section > *{
    width: 100% !important;
    max-width: 100% !important;
  }

  .register-form-box{
    max-width: 100%;
    width: 100%;

    transform: none !important;
    margin: 0;

    padding: 16px 16px;
    border-radius: 20px;
  }
}


/* ===================================================== */
/* LEFT BLOCK RESPONSIVE (your original tablet/mobile)   */
/* ===================================================== */

/* TABLET (768–1024px) */
@media (max-width: 1024px) and (min-width: 768px){
  .sh-partner-left{ max-width: 100%; }

  .sh-partner-badge{
    font-size: 11px;
    padding: 8px 16px 8px 14px;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
  }

  .sh-partner-heading{
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .sh-partner-heading::after{
    width: 44%;
    height: 2px;
  }

  .sh-partner-copy{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .sh-partner-list{
    margin: 16px 0 16px;
    gap: 10px;
  }

  .sh-partner-list li{
    font-size: 14px;
    padding-left: 28px;
  }

  .sh-partner-list li::before{
    width: 14px;
    height: 14px;
    box-shadow:
      0 0 0 4px rgba(255,255,255,0.92),
      0 10px 22px rgba(168,109,235,0.20);
  }

  .sh-partner-list li::after{
    left: 22px;
    right: -6px;
    filter: blur(12px);
  }

  .sh-partner-trust{
    margin-top: 14px;
    font-size: 12px;
  }
}

/* MOBILE (<=767px) */
@media (max-width: 767px){
  .sh-partner-left{ max-width: 100%; }

  .sh-partner-badge{
    font-size: 10px;
    padding: 7px 14px 7px 12px;
    margin-bottom: 14px;
    letter-spacing: 0.06em;
  }

  .sh-partner-badge::before{
    width: 9px;
    height: 9px;
  }

  .sh-partner-heading{
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .sh-partner-heading::after{
    width: 50%;
    height: 2px;
  }

  .sh-partner-copy{
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .sh-partner-list{
    margin: 14px 0 14px;
    gap: 10px;
  }

  .sh-partner-list li{
    font-size: 13.5px;
    padding-left: 26px;
  }

  .sh-partner-list li::before{
    width: 13px;
    height: 13px;
    box-shadow:
      0 0 0 4px rgba(255,255,255,0.92),
      0 10px 22px rgba(168,109,235,0.18);
  }

  .sh-partner-list li::after{
    left: 20px;
    right: -6px;
    filter: blur(11px);
  }

  .sh-partner-trust{
    margin-top: 12px;
    font-size: 12px;
  }
}






































 



/* ===================================================== */
/* 9) FAQ PAGE (Scoped: page-id-2402)                    */
/* ===================================================== */

/* ===================================================== */
/* 9) FAQ PAGE (Scoped: page-id-2402)                    */
/* ===================================================== */

/* ===================================================== */
/* UPDATED: Whole FAQ page background (NO PINK)          */
/* Cool health-neutral teal / blue wash                  */
/* ===================================================== */
body.page-id-2402,
body.page-id-2402 #page,
body.page-id-2402 .site,
body.page-id-2402 .ast-container {
  background:
    /* COOL OFF-CANVAS TEAL */
    radial-gradient(
      720px 520px at -10% 6%,
      rgba(120, 220, 215, 0.28) 0%,
      transparent 72%
    ),

    /* VERTICAL COOL COLUMN */
    radial-gradient(
      420px 820px at 88% 10%,
      rgba(90, 190, 185, 0.26) 0%,
      transparent 78%
    ),

    /* DIAGONAL COOL WASH */
    radial-gradient(
      640px 480px at 72% 68%,
      rgba(160, 220, 235, 0.22) 0%,
      transparent 80%
    ),

    /* LOWER DEPTH BASE */
    radial-gradient(
      900px 600px at 30% 112%,
      rgba(200, 235, 245, 0.26) 0%,
      transparent 82%
    ),

    #ffffff !important;

  background-attachment: fixed !important;
  min-height: 100vh;
}

/* Kill solid backgrounds on outer wrappers so gradient can show */
body.page-id-2402 #page,
body.page-id-2402 .site,
body.page-id-2402 .ast-container {
  background: transparent !important;
}

/* Keep Elementor wrappers transparent so gradient shows */
body.page-id-2402 .elementor-section,
body.page-id-2402 .elementor-container,
body.page-id-2402 .elementor-widget-wrap {
  background: transparent !important;
}


/* FAQ layout widths */
body.page-id-2402 .faq-search-wrap,
body.page-id-2402 .faq-sections {
  width: 70%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body.page-id-2402 .faq-search-wrap {
  margin-top: 12px;
  margin-bottom: 34px;
}

/* ===================================================== */
/* UPDATED: MAIN FAQ HEADING (NO PINK)                   */
/* Scoped to .faq-search-section as requested            */
/* ===================================================== */
body.page-id-2402 .faq-search-section h1,
body.page-id-2402 .faq-search-section .faq-top-title,
body.page-id-2402 .faq-search-section .elementor-heading-title,
body.page-id-2402 .faq-search-section *[class*="title"] {
  font-family: var(--font-lexend) !important;
  font-weight: 750 !important;
  text-align: center !important;
  line-height: 1.08 !important;

  background: linear-gradient(
    90deg,
    #0F766E 0%,   /* deep teal */
    #0891B2 45%,  /* confident cyan */
    #1D4ED8 100%  /* blue anchor */
  ) !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}


/* Search bar */
body.page-id-2402 #faqSearchInput {
  width: 100% !important;
  height: 60px !important;
  padding: 0 20px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(20,20,20,0.10) !important;
  background: rgba(255,255,255,0.95) !important;

  font-family: var(--font-lexend) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: -0.1px !important;
  color: #0F172A !important;

  outline: none !important;
  transition: 0.18s ease !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.05) !important;
}

body.page-id-2402 #faqSearchInput::placeholder {
  color: rgba(0,0,0,0.45) !important;
  font-weight: 400 !important;
}

body.page-id-2402 #faqSearchInput:focus {
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.25) !important;
}

body.page-id-2402 .faq-search-count {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-500);
}

/* Highlight (safe inline) */
body.page-id-2402 .faq-highlight {
  background: rgba(180, 235, 235, 0.65);
  border-radius: 3px;
  box-decoration-break: clone;
  padding: 0 .12em;
  display: inline;
  margin: 0;
  white-space: normal;
}

body.page-id-2402 .faq-sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

body.page-id-2402 .faq-section {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
  overflow: hidden;
  padding: 6px 0;
}

/* Remove default markers */
body.page-id-2402 .faq-section-title,
body.page-id-2402 .faq-q {
  list-style: none !important;
}
body.page-id-2402 .faq-section-title::-webkit-details-marker,
body.page-id-2402 .faq-q::-webkit-details-marker {
  display: none !important;
}
body.page-id-2402 .faq-section-title::marker,
body.page-id-2402 .faq-q::marker {
  content: "" !important;
}

/* Section title */
body.page-id-2402 .faq-section-title {
  padding: 18px 22px;
  font-size: 19px;
  font-weight: 650;
  color: #141414;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-id-2402 .faq-section-title::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,0,0,0.55);
  border-bottom: 2px solid rgba(0,0,0,0.55);
  transform: rotate(45deg);
  transition: 0.18s ease;
  margin-left: 12px;
  flex-shrink: 0;
}

body.page-id-2402 .faq-section[open] .faq-section-title::after {
  transform: rotate(-135deg);
  border-color: var(--brand-teal);
}

body.page-id-2402 .faq-section-title:hover {
  background: rgba(0,124,122,0.05);
}

/* FAQ item */
body.page-id-2402 .faq-item {
  margin: 10px 16px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
}

/* FIX: No flex on question */
body.page-id-2402 .faq-q {
  position: relative;
  padding: 14px 44px 14px 16px;
  font-size: 16px;
  font-weight: 520;
  color: #1B1B1B;
  cursor: pointer;
  display: block !important;
  text-align: left;
}

body.page-id-2402 .faq-q::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(0,0,0,0.45);
  border-bottom: 2px solid rgba(0,0,0,0.45);
  transform: translateY(-50%) rotate(45deg);
  transition: 0.18s ease;
}

body.page-id-2402 .faq-item[open] .faq-q {
  font-weight: 650;
  color: var(--brand-purple) !important;
}

body.page-id-2402 .faq-item[open] .faq-q::after {
  transform: translateY(-50%) rotate(-135deg);
  border-color: var(--brand-purple) !important;
}

body.page-id-2402 .faq-q:hover {
  background: rgba(0,0,0,0.02);
}

body.page-id-2402 .faq-a {
  padding: 0 16px 14px;
  font-size: 15px;
  color: var(--text-700);
  line-height: 1.6;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Coming soon */
body.page-id-2402 .faq-section.coming-soon { opacity: 0.85; }

body.page-id-2402 .faq-section.coming-soon .faq-section-title {
  color: var(--text-500);
}

body.page-id-2402 .faq-section.coming-soon .faq-section-title::after {
  border-color: rgba(0,0,0,0.35);
}

body.page-id-2402 .faq-section.coming-soon .faq-section-title::before {
  content: "Coming soon";
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-teal);
  background: rgba(0,124,122,0.10);
  padding: 4px 8px;
  border-radius: 999px;
  margin-right: 10px;
}



































/* =========================================
   Privacy Policy ONLY (page-id-2417)
   ========================================= */

/* Main wrapper */
body.page-id-2417 .policy-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 16px 72px;
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1E1E1E;
  position: relative;
  z-index: 1;
}

/* =============================
   BACKGROUND – PURPLE BLOOMS
   ============================= */
body.page-id-2417::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(
      520px 420px at 14% 16%,
      rgba(167,140,255,0.28) 0%,
      transparent 75%
    ),
    radial-gradient(
      620px 480px at 88% 72%,
      rgba(185,150,255,0.26) 0%,
      transparent 78%
    ),
    #FFFFFF;
}

/* Hero */
body.page-id-2417 .policy-hero {
  margin-bottom: 36px;
  text-align: center;
}

body.page-id-2417 .policy-hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.1;

  background: linear-gradient(
    90deg,
    #A78CFF 0%,
    #8E73FF 35%,
    #6B5CFF 70%,
    #C6B0FF 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-id-2417 .policy-date {
  display:inline-block;
  font-size:15px;
  font-weight:500;
  color:#3a3a3a;
  padding-bottom:6px;
  border-bottom:2px solid rgba(167,140,255,0.35);
}



/* Policy cards */
body.page-id-2417 .policy-card {
  background: rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  max-width: 820px;     /* readable text width */
  margin: 0 auto 20px;  /* center the box */
}

/* Card titles */
body.page-id-2417 .policy-card h2 {
	color: #1E1E1E;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Subsection titles */
body.page-id-2417 .policy-card h3 {
  color: #3A3A3A;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Lists */
body.page-id-2417 .policy-card ul {
  padding-left: 20px;
  margin: 8px 0;
}

body.page-id-2417 .policy-card li {
  margin-bottom: 6px;
}

/* Links */
body.page-id-2417 .policy-card a {
  color: #6B5CFF;
  font-weight: 600;
  text-decoration: none;
}

body.page-id-2417 .policy-card a:hover {
  text-decoration: underline;
}

/* =========================================
   Mobile (<=768px)
   ========================================= */
@media (max-width: 768px) {

  body.page-id-2417 .policy-page {
    padding: 32px 14px 56px;
  }

  body.page-id-2417 .policy-hero h1 {
    font-size: 26px;
  }

  body.page-id-2417 .policy-date {
    font-size: 14px;
    margin-bottom: 12px;
  }

  body.page-id-2417 .policy-card {
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  body.page-id-2417 .policy-card h2 {
    font-size: 18px;
  }

  body.page-id-2417 .policy-card p,
  body.page-id-2417 .policy-card li {
    font-size: 14px;
    line-height: 1.55;
  }

  body.page-id-2417 .policy-card ul {
    padding-left: 16px;
  }
}














/* ===================================================== */
/* 11) UTILITIES                                         */
/* ===================================================== */

@media (max-width: 1024px) {
  .hero-text br { display: none; }
}

/* ===================================================== */
/* 12) RESPONSIVE BREAKPOINTS (CONSOLIDATED)             */
/* ===================================================== */

/* ---------- Tablet (<=1024px) ---------- */
@media (max-width: 1024px) {

  .header-left  { width: 25% !important; }
  .header-center{ width: 55% !important; }
  .header-right { width: 20% !important; }
  .shf-menu     { gap: 22px !important; font-size: 15px !important; }

  .shf-login,
  .shf-signup { display: none !important; }

  .shf-hamburger {
    display: block !important;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-800);
  }

  .leftCol .benefitList li { font-size: 15px !important; }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 16px;
  }

  .feature-card { padding: 24px 20px; border-radius: 16px; }
  .feature-card h3 { font-size: 18px; margin-bottom: 12px; }
  .feature-card p  { font-size: 13.5px; }

  body.page-id-2402 .faq-search-wrap,
  body.page-id-2402 .faq-sections {
    width: 92%;
    max-width: 100%;
  }

  body.page-id-2402 .faq-search-section h1,
  body.page-id-2402 .faq-search-section .faq-top-title,
  body.page-id-2402 .faq-search-section .elementor-heading-title {
    font-size: 34px !important;
    line-height: 1.15 !important;
    padding: 0 18px !important;
  }
}

/* ---------- Mobile (<=768px) ---------- */
@media (max-width: 768px) {

  .header-wrapper { justify-content: space-between; }
  .header-left    { width: auto !important; }
  .header-center  { display: none !important; }
  .header-right   { width: auto !important; }

  .shf-login,
  .shf-signup {
    width: 120px !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
  }

  .ast-header-button,
  .ast-header-button .menu-link,
  .header-button-1 .ast-custom-button-link,
  .header-button-2 .ast-custom-button-link {
    padding: 6px 12px !important;
    border-radius: 20px !important;
  }

  .leftCol .benefitList li { font-size: 14px !important; }

  .register-form-box {
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 14px;
  }

  body.page-id-2402 .faq-search-wrap,
  body.page-id-2402 .faq-sections {
    width: 94%;
  }

  body.page-id-2402 .faq-search-section h1,
  body.page-id-2402 .faq-search-section .faq-top-title,
  body.page-id-2402 .faq-search-section .elementor-heading-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
    padding: 0 14px !important;
  }

  body.page-id-2402 .faq-top-desc,
  body.page-id-2402 p.ffaq-description {
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: #4A4A4A !important;
    padding: 0 14px !important;
    margin-bottom: 20px !important;
  }
}

/* ---------- Small Mobile (<=600px) ---------- */
@media (max-width: 600px) {

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 14px;
  }

  .feature-card { padding: 22px 18px; border-radius: 14px; }
  .feature-card h3 { font-size: 17px; margin-bottom: 10px; }
  .feature-card p  { font-size: 13px; line-height: 1.5; }

  .policy-page { padding-top: 32px; }
  .policy-card { padding: 18px; border-radius: 14px; }
  .policy-card h2 { font-size: 18px; }
  .policy-card p,
  .policy-card li { font-size: 15px; }
}

/* ---------- Extra Small (<=480px) ---------- */
@media (max-width: 480px) {
  .ast-header-button,
  .ast-header-button .menu-link,
  .header-button-1 .ast-custom-button-link,
  .header-button-2 .ast-custom-button-link {
    padding: 5px 12px !important;
    border-radius: 18px !important;
  }
}














/* Contact Us Page ONLY – page-id-3875 */
body.page-id-3875 {
  position: relative;
  min-height: 100vh;
}

/* Fixed gradient background behind Elementor sections */
body.page-id-3875::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    /* Main soft turquoise bloom top-left (same shape, new colour) */
    radial-gradient(1000px 700px at 0% 0%, rgba(50,227,210,0.22) 0%, transparent 78%),
    /* Gentle teal / aqua balance bottom-right */
    radial-gradient(950px 750px at 100% 100%, rgba(95,244,232,0.18) 0%, transparent 82%),
    /* Base white */
    #FFFFFF;
}

/* ===================== CONTACT FORM (DESKTOP) ===================== */

.contact-form-box {
  max-width: 360px;
  margin-left: auto;
  margin-right: 0;
  background: #FFFFFF;
  border-radius: 24px;
  border: 1px solid #E2E2E2;

  /* shorter card: less vertical padding */
  padding: 8px 20px 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  transform: scale(0.95);
  transform-origin: top right;
  width: 110%;

  font-family: var(--font-manrope, "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  color: #1E1E1E;
}

.contact-form-box .wpforms-form {
  margin: 0 !important;
  padding: 0 !important;
}

/* Labels */
.contact-form-box .wpforms-field-label {
  font-family: var(--font-manrope, "Manrope", sans-serif);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 4px;
  color: #1E1E1E;
}

/* Field spacing – tighter to make form shorter */
.contact-form-box .wpforms-field {
  margin-bottom: 6px !important;
}

/* Inputs / textarea – less padding = shorter fields */
.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #D7D7D7;
  background: #FDFDFD;
  padding: 9px;
  font-family: var(--font-manrope, "Manrope", sans-serif);
  font-size: 13px;
  line-height: 1.3;
  color: #1E1E1E;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: #A5A5A5;
}

.contact-form-box textarea {
  /* shorter textarea */
  min-height: 60px;
  resize: vertical;
}

/* ===================== CHECKBOX – INLINE, MULTI-LINE TEXT ===================== */

.contact-form-box .wpforms-field-checkbox .wpforms-field-label {
  display: none;
}

.contact-form-box .wpforms-field-checkbox ul {
  list-style: none;
  padding: 0;
  margin: 2px 0 0; /* tighter above checkbox */
}

.contact-form-box .wpforms-field-checkbox li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* Checkbox itself */
.contact-form-box .wpforms-field-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  flex-shrink: 0;
}

/* Text block */
.contact-form-box .wpforms-field-checkbox label,
.contact-form-box .wpforms-field-checkbox .wpforms-field-label-inline {
  display: block;
  flex: 1;
  font-family: var(--font-manrope, "Manrope", sans-serif);
  font-size: 13px;
  line-height: 1.45;
  color: #1E1E1E;
  font-weight: 500;
}

/* ===================== BUTTON – TURQUOISE ===================== */

.contact-form-box .wpforms-submit-container {
  margin-top: 8px !important;   /* small gap above button */
  margin-bottom: 0 !important;
}

.contact-form-box .wpforms-submit {
  width: 100%;
  border-radius: 28px;
  border: none;
  padding: 14px 20px !important;  /* slightly less tall button */
  font-family: var(--font-manrope, "Manrope", sans-serif);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;

  /* turquoise gradient instead of pink */
  background: linear-gradient(90deg, #2dd5c4 0%, #32e3d2 45%, #5ff4e8 100%);
  color: #FFFFFF;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  transition: 0.18s ease;

  margin-bottom: -6px !important; /* pulls closer to card bottom */
}

.contact-form-box .wpforms-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.20);
}












/* Join Waitlist Page ONLY – Page ID 3967 */
body.page-id-3967 {
  background:
    /* Main bloom from top-left — larger, more visible */
    radial-gradient(1000px 700px at 0% 0%, rgba(255,100,200,0.20) 0%, transparent 78%),
    /* Secondary soft glow bottom-right for balance */
    radial-gradient(950px 750px at 100% 100%, rgba(197,108,255,0.10) 0%, transparent 82%),
    #FFFFFF;
  min-height: 100vh;
}


/* =========================================
   JOIN WAITLIST – HEADING ONLY (page-id-3967)
   ========================================= */

body.page-id-3967 .joinwait-h1 {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
  text-align: center;
  color: #1E1E1E;
  max-width: 900px;
  margin: 60px auto 10px;
}

/* Gradient highlight words */
body.page-id-3967 .joinwait-h1 span {
  background: linear-gradient(
    90deg,
    #FF64C8 0%,
    #C56CFF 50%,
    #6D9BFF 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== TABLET (768–1024px) ===================== */
@media (max-width: 1024px) and (min-width: 768px) {
  body.page-id-3967 .joinwait-h1 {
    font-size: clamp(26px, 4vw, 36px);
    margin: 40px auto 8px;
    line-height: 1.08;
  }
}

/* ===================== MOBILE (<=767px) ===================== */
@media (max-width: 767px) {
  body.page-id-3967 .joinwait-h1 {
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.12;
    padding: 0 12px;
    margin: 28px auto 6px;
    white-space: normal;
    word-break: normal;
  }

  body.page-id-3967 .joinwait-h1 span {
    display: inline-block;
    padding: 0 4px;
    background: linear-gradient(
      90deg,
      #FF64C8 0%,
      #D26BFF 45%,
      #7AA9FF 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  body.page-id-3967 .joinwait-h1 br {
    display: none;
  }
}










/* ===========================================
   JOIN WAITLIST – FORM + SUCCESS STATE ONLY
   =========================================== */

/* Card around the form */
.join-waitlist-form .wpforms-form {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #E4E4E4;
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
  padding: 24px 26px 30px !important;
}

.join-waitlist-form .wpforms-container-full {
  padding: 0 !important;
}

/* Inputs */
.join-waitlist-form input[type="text"],
.join-waitlist-form input[type="email"],
.join-waitlist-form input[type="tel"],
.join-waitlist-form textarea {
  width: 100% !important;
  font-size: 14px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #DCDCDC;
  background: #FCFCFC;
  transition: 0.18s ease;
}

.join-waitlist-form input::placeholder,
.join-waitlist-form textarea::placeholder {
  color: #B6B6B6;
}

.join-waitlist-form input:focus,
.join-waitlist-form textarea:focus {
  border-color: #FF64C8;
  box-shadow: 0 0 0 1px rgba(255,100,200,0.16);
  outline: none;
}

/* Field spacing */
.join-waitlist-form .wpforms-field {
  margin-bottom: 14px !important;
}

/* Labels */
.join-waitlist-form .wpforms-field-label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

/* =============================
   CHECKBOX ALIGNMENT
============================= */

/* Reduce space ONLY between checkbox and button */
.join-waitlist-form .wpforms-field-checkbox {
  margin-bottom: 6px !important; /* instead of 14 */
}

.join-waitlist-form .wpforms-field-checkbox .wpforms-field-label {
  display: none;
}

.join-waitlist-form .wpforms-field-checkbox ul {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.join-waitlist-form .wpforms-field-checkbox li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.join-waitlist-form .wpforms-field-checkbox input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px; /* aligns with first text line */
}

.join-waitlist-form .wpforms-field-checkbox label {
  font-size: 13px;
  line-height: 1.45;
  color: #555;
}

.join-waitlist-form .wpforms-required-label {
  color: #FF64C8;
  font-weight: 600;
}

/* =============================
   SUBMIT BUTTON
============================= */

.join-waitlist-form .wpforms-submit-container {
  margin-top: 1px !important;
}

.join-waitlist-form .wpforms-submit {
  width: 100%;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border: none;
  background: linear-gradient(90deg,#FF64C8,#C56CFF,#6D9BFF);

  /* subtle neutral shadow – same feel as other forms */
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 0.15s ease;
}

.join-waitlist-form .wpforms-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}

.join-waitlist-form .wpforms-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Force form label + checkbox text to #1E1E1E */
.join-waitlist-form .wpforms-field-label,
.join-waitlist-form .wpforms-field-checkbox label {
  color: #1E1E1E !important;
}


/* =============================
   SUCCESS MESSAGE BOX
============================= */

/* WPForms uses a few different confirmation classes, so hit them all */
.join-waitlist-form .wpforms-confirmation-container-full,
.join-waitlist-form .wpforms-confirmation-container,
.join-waitlist-form .wpforms-confirmation-scroll,
.join-waitlist-form #wpforms-confirmation-1,
.join-waitlist-form [id^="wpforms-confirmation-"] {
  max-width: 520px;
  margin: 40px auto !important;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #E4E4E4;
  padding: 32px 28px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: #505050;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

/* Make sure the text inside also centres and doesn’t bring weird margins */
.join-waitlist-form .wpforms-confirmation-container-full p,
.join-waitlist-form .wpforms-confirmation-container p,
.join-waitlist-form .wpforms-confirmation-scroll p,
.join-waitlist-form [id^="wpforms-confirmation-"] p {
  margin: 0;
  text-align: center;
}

/* Nice little fade-in */
.join-waitlist-form .wpforms-confirmation-container-full,
.join-waitlist-form .wpforms-confirmation-container,
.join-waitlist-form .wpforms-confirmation-scroll,
.join-waitlist-form [id^="wpforms-confirmation-"] {
  animation: joinWaitlistSuccessFade 0.3s ease;
}

@keyframes joinWaitlistSuccessFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}



















/* ================================
   FOOTER – ONLY FAQ + PRIVACY SHOULD REACT
   ================================ */

/* 1) Kill hover for ALL footer links */
#colophon a:hover,
.site-footer a:hover {
  color: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
  transition: none !important;
}

/* 2) Re-enable hover ONLY for FAQ + Privacy links */
#colophon a[href*="privacy-policy"]:hover,
#colophon a[href*="faq"]:hover,
#colophon a[href*="faqs"]:hover {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: 0.2s ease !important;
}













/* =========================================
   Terms of Service ONLY (page-id-4947)
   ========================================= */

/* ===== PAGE WRAPPER ===== */
body.page-id-4947 .terms-page{
  max-width:1440px;
  margin:0 auto;
  padding:48px 16px 72px;
  font-family:"Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:#1E1E1E;
  position:relative;
  z-index:1;
}

/* ===== BACKGROUND BLOOMS ===== */
body.page-id-4947::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(
      520px 420px at 14% 16%,
      rgba(167,140,255,0.28) 0%,
      transparent 75%
    ),
    radial-gradient(
      620px 480px at 88% 72%,
      rgba(185,150,255,0.26) 0%,
      transparent 78%
    ),
    #FFFFFF;
}

/* ===== HERO ===== */
body.page-id-4947 .terms-hero{
  text-align:center;
  margin-bottom:36px;
}

/* MAIN HEADING – REAL GRADIENT (FORCED) */
body.page-id-4947 .terms-hero h1{
  font-family:"Lexend", sans-serif;
  font-size:52px;
  font-weight:700;
  line-height:1.1;
  margin-bottom:12px;

  background:linear-gradient(
    90deg,
    #A78CFF 0%,
    #8E73FF 35%,
    #6B5CFF 70%,
    #C6B0FF 100%
  );

  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
	text-transform: none !important;
}

/* LAST UPDATE – CLEAN, LEGAL, QUIET */
body.page-id-4947 .terms-date{
  display:inline-block;
  font-size:15px;
  font-weight:500;
  color:#3a3a3a;
  padding-bottom:6px;
  border-bottom:2px solid rgba(167,140,255,0.35);
}


/* ===== CONTENT CARDS ===== */
body.page-id-4947 .terms-card{
  background:rgba(255,255,255,0.90);
  border-radius:14px;
  padding:22px 24px;
  margin:0 auto 20px;
  max-width:820px;
  box-shadow:0 10px 30px rgba(15,23,42,0.05);
}

/* SECTION TITLES */
body.page-id-4947 .terms-card h2{
  font-size:20px;
  margin:0 0 10px;
  font-weight:600;
  color:#1E1E1E;
}

/* BODY TEXT */
body.page-id-4947 .terms-card p{
  margin:0 0 12px;
  font-size:15px;
  line-height:1.75;
  color:#2F2F2F;
  font-weight:400;
}

body.page-id-4947 .terms-card p strong{
  font-weight:700;
  color:#1E1E1E;
}

/* LISTS */
body.page-id-4947 .terms-card ul{
  padding-left:20px;
  margin:10px 0 12px;
}

body.page-id-4947 .terms-card li{
  margin-bottom:8px;
  font-size:15px;
  line-height:1.7;
  color:#2F2F2F;
}

/* LINKS */
body.page-id-4947 .terms-card a{
  color:#6B5CFF;
  font-weight:600;
  text-decoration:none;
}

body.page-id-4947 .terms-card a:hover{
  text-decoration:underline;
}

/* ===== MOBILE ===== */
@media (max-width:768px){

  body.page-id-4947 .terms-page{
    padding:32px 14px 56px;
  }

  body.page-id-4947 .terms-hero h1{
    font-size:26px;
  }

  body.page-id-4947 .terms-date{
    font-size:13px;
    padding:5px 12px;
  }

  body.page-id-4947 .terms-card{
    padding:18px;
    border-radius:12px;
    margin-bottom:16px;
  }

  body.page-id-4947 .terms-card h2{
    font-size:18px;
  }

  body.page-id-4947 .terms-card p,
  body.page-id-4947 .terms-card li{
    font-size:14px;
    line-height:1.55;
  }

  body.page-id-4947 .terms-card ul{
    padding-left:16px;
  }
}
