/** Site Theme Tokens **/

:root {
    --core-site-font-body: 'Inter Tight', system-ui, sans-serif;
    --core-site-heading-font: 'Zodiak', 'Instrument Serif', serif;
    --core-site-heading-color: #3B3142;
    --core-site-heading-line-height: 1.12;
    --core-site-heading-weight: 700;
    --core-site-color-text: #3B3142;
    --core-site-color-link: #4F539C;
    --core-accent: var(--color-indigo);
    --core-radius: 10px;
}
body { font-family: var(--core-site-font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--core-site-heading-font); }
h1, h2, h3, h4, h5, h6 { color: var(--core-site-heading-color); }
h1, h2, h3, h4, h5, h6 { line-height: var(--core-site-heading-line-height); }
h1, h2, h3, h4, h5, h6 { font-weight: var(--core-site-heading-weight); }
body { color: var(--core-site-color-text); }
a { color: var(--core-site-color-link); }


/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ===== COLOUR PALETTE ===== */ :root  {
  --color-plum: #3B3142;
  --color-plum-light: #4A4152;
  --color-plum-lighter: #6E6577;
  --color-plum-lightest: #8A8194;
  --color-lavender: #8E7396;
  --color-lavender-light: #B9A7C4;
  --color-lavender-lighter: #C9C2D4;
  --color-indigo: #4F539C;
  --color-indigo-light: #6E74B8;
  --color-indigo-dark: #3F4488;
  --color-lilac: #E7E3EE;
  --color-lilac-light: #EFEDF4;
  --color-lilac-lighter: #F1EFF6;
  --color-lilac-lightest: #FAF9FC;
  --color-lilac-bg: #EEECF2;
  --color-border: #E3DEEC;
  --color-border-light: #ECE9F1;
  --color-border-card: #D9D0E4;
  /* Semantic anchors */ --color-brand: var(--color-indigo);
  --color-text: var(--color-plum);
  --color-text-muted: var(--color-plum-lighter);
  --color-bg: var(--color-lilac-lightest);
}
/* ===== BACKGROUND UTILITIES ===== */ .bg-plum  {
  background-color: var(--color-plum);
}
.bg-plum-light  {
  background-color: var(--color-plum-light);
}
.bg-lavender  {
  background-color: var(--color-lavender);
}
.bg-lavender-light  {
  background-color: var(--color-lavender-light);
}
.bg-indigo  {
  background-color: var(--color-indigo);
}
.bg-indigo-light  {
  background-color: var(--color-indigo-light);
}
.bg-lilac  {
  background-color: var(--color-lilac);
}
.bg-lilac-light  {
  background-color: var(--color-lilac-light);
}
.bg-lilac-lighter  {
  background-color: var(--color-lilac-lighter);
}
.bg-lilac-lightest  {
  background-color: var(--color-lilac-lightest);
}
.bg-lilac-bg  {
  background-color: var(--color-lilac-bg);
}
/* ===== GLOBAL TYPE & RESET ===== */ body  {
  background: var(--color-lilac-bg);
  font-family: 'Inter Tight', system-ui, sans-serif;
  color: var(--color-plum);
}
::selection  {
  background: var(--color-lilac);
}
a  {
  text-decoration: none;
}
@font-face  {
  font-family: 'Zodiak';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/site-assets/1 v02/Zodiak-Bold.woff') format('woff');
}
/* Material symbols */ .material-symbols-outlined  {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
}
/* ===== LIFT HOVER UTILITY ===== */ .lift  {
  transition: transform .25s ease, box-shadow .25s ease;
}
.lift:hover  {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(59,49,66,0.13);
}
/* ===== CORE OVERRIDES ===== */ :root  {
  --core-accent: var(--color-indigo);
  --core-accent-contrast: #ffffff;
  --core-radius: 10px;
}
/* ===== ANIMATIONS ===== */ @keyframes fadeIn  {
  from  {
    opacity: 0;
  }
  to  {
    opacity: 1;
  }
}
@keyframes slideIn  {
  from  {
    transform: translateX(40px);
  }
  to  {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce)  {
  *  {
    animation: none !important;
    transition: none !important;
  }
}
/* ===== EXPERIENCE GRID (used in "Are You Experiencing" section) ===== */ .exp-grid  {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px)  {
  .exp-grid  {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px)  {
  .exp-grid  {
    grid-template-columns: 1fr;
  }
}


 /** Content Section Styles **/ 

.content-section-2458  {
  background: radial-gradient(120% 90% at 100% 0%, #E7E3EE 0%, rgba(231,227,238,0) 55%), radial-gradient(80% 70% at 0% 100%, #EFEDF4 0%, rgba(239,237,244,0) 60%), #FAF9FC;
  &.content-section  {
    position: relative;
    z-index: 100;
  }
  .header-inner  {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px clamp(20px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .header-logo-link  {
    display: flex;
    align-items: center;
  }
  .header-logo  {
    display: block;
    height: 102px;
    width: auto;
  }
  .header-nav-wrap  {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
  }
  .header-phone  {
    font: 500 16px/1 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .header-phone:hover  {
    color: var(--color-indigo);
  }
  .header-cta-btn  {
    font: 600 14px/1 'Inter Tight', system-ui, sans-serif;
    color: var(--color-indigo);
    background: transparent;
    border: 1px solid var(--color-lavender-lighter);
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
  }
  .header-cta-btn:hover  {
    border-color: var(--color-indigo);
    background: #ffffff;
  }
  @media (max-width: 1023px)  {
    .header-logo  {
      height: 72px;
    }
    .header-phone  {
      display: none;
    }
  }
  @media (max-width: 767px)  {
    .header-logo  {
      height: 60px;
    }
    .header-cta-btn  {
      display: none;
    }
  }
}
.content-section-2459  {
  padding-top: clamp(56px, 6vw, 80px);
  padding-bottom: 40px;
  &.content-section  {
    border-top: 1px solid var(--color-border);
  }
  .footer-top  {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(36px, 5vw, 80px);
    justify-content: space-between;
  }
  .footer-brand  {
    flex: 1 1 320px;
    min-width: 260px;
  }
  .footer-logo-wrap  {
    display: flex;
    align-items: center;
  }
  .footer-logo  {
    display: block;
    height: 72px;
    width: auto;
  }
  .footer-tagline  {
    margin: 18px 0 0;
    font: 400 14.5px/1.65 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
    max-width: 320px;
  }
  .footer-crisis  {
    margin: 18px 0 0;
    font: 400 12.5px/1.6 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lightest);
    max-width: 340px;
  }
  .footer-social  {
    margin-top: 22px;
    display: flex;
    gap: 12px;
  }
  .footer-social-btn  {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-indigo);
  }
  .footer-social-btn:hover  {
    background: var(--color-indigo);
    color: #fff;
    border-color: var(--color-indigo);
  }
  .footer-links-group  {
    display: flex;
    gap: clamp(40px, 5vw, 72px);
    flex-wrap: wrap;
  }
  .footer-col-heading  {
    font: 600 13px/1 'Inter Tight', system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-lavender);
  }
  .footer-col-links  {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-link  {
    font: 400 15px/1 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-light);
  }
  .footer-link:hover  {
    color: var(--color-indigo);
  }
  .footer-link-icon  {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .footer-enquiry-btn  {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 4px;
    font: 600 14px/1 'Inter Tight', system-ui, sans-serif;
    color: #fff;
    background: var(--color-indigo);
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    cursor: pointer;
  }
  .footer-enquiry-btn:hover  {
    background: var(--color-indigo-dark);
  }
  .footer-awards  {
    margin-top: -72px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    justify-content: flex-end;
  }
  .footer-award-img  {
    display: block;
    width: auto;
  }
  .footer-bottom  {
    margin-top: clamp(40px, 5vw, 56px);
    padding-top: 26px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy, .footer-acknowledge  {
    font: 400 13px/1.5 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lightest);
  }
  @media (max-width: 767px)  {
    .footer-awards  {
      margin-top: 32px;
      justify-content: flex-start;
    }
    .footer-bottom  {
      flex-direction: column;
      align-items: flex-start;
    }
  }
}
.content-section-2460  {
  background: radial-gradient(120% 90% at 100% 0%, #E7E3EE 0%, rgba(231,227,238,0) 55%), radial-gradient(80% 70% at 0% 100%, #EFEDF4 0%, rgba(239,237,244,0) 60%), #FAF9FC;
  .hero-body  {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 88px) clamp(20px, 5vw, 60px) clamp(56px, 8vw, 110px);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: clamp(36px, 5vw, 72px);
  }
  .hero-content  {
    flex: 1 1 460px;
    min-width: 300px;
  }
  .hero-eyebrow  {
    font: 600 13px/1 'Inter Tight', system-ui, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-lavender);
  }
  .hero-heading  {
    margin: 20px 0 0;
    font: 700 clamp(34px, 5.4vw, 66px)/1.08 'Zodiak', 'Instrument Serif', serif;
    color: var(--color-plum);
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .hero-heading-accent  {
    color: var(--color-lavender);
  }
  .hero-lead  {
    margin: 26px 0 0;
    font: 400 clamp(16px, 1.5vw, 19px)/1.6 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
    max-width: 520px;
  }
  .hero-actions  {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  .hero-btn-primary  {
    font: 600 17px/1 'Inter Tight', system-ui, sans-serif;
    color: #fff;
    background: var(--color-indigo);
    border: none;
    padding: 17px 30px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(79,83,156,0.22);
    display: inline-flex;
    align-items: center;
  }
  .hero-btn-primary:hover  {
    background: var(--color-indigo-dark);
    color: #fff;
  }
  .hero-btn-note  {
    font: 400 14px/1.5 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
    white-space: nowrap;
  }
  .hero-badges  {
    margin-top: 30px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero-badge  {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-lilac);
    color: var(--color-plum);
    font: 500 13px/1 'Inter Tight', system-ui, sans-serif;
    padding: 8px 14px;
    border-radius: 999px;
  }
  .hero-photo-wrap  {
    flex: 0 1 420px;
    min-width: 280px;
    display: flex;
    justify-content: center;
  }
  .hero-photo-col  {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 480px;
    display: flex;
  }
  .hero-photo-bg  {
    position: absolute;
    inset: -14px -14px 14px 14px;
    background: var(--color-lilac);
    border-radius: 210px 210px 28px 28px;
  }
  .hero-photo-img  {
    position: relative;
    flex: 1;
    align-self: stretch;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 210px 210px 24px 24px;
    overflow: hidden;
    object-fit: cover;
    object-position: 38% center;
  }
  @media (max-width: 1023px)  {
    .hero-badges  {
      flex-wrap: wrap;
    }
  }
  @media (max-width: 767px)  {
    .hero-photo-wrap  {
      display: none;
    }
    .hero-badges  {
      flex-wrap: wrap;
    }
  }
}
.content-section-2461  {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  &.content-section  {
    position: relative;
    overflow: hidden;
  }
  .exp-texture-bg  {
    position: absolute;
    inset: 0;
    background: url('/site-assets/images/maze-texture.png');
    background-size: 520px;
    opacity: 0.05;
    pointer-events: none;
  }
  .exp-inner  {
    position: relative;
  }
  .section-eyebrow  {
    font: 600 13px/1 'Inter Tight', system-ui, sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-lavender);
  }
  .section-heading  {
    margin: 16px 0 0;
    font: 700 clamp(28px, 3.6vw, 44px)/1.12 'Zodiak', 'Instrument Serif', serif;
    color: var(--color-plum);
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .section-lead  {
    margin: 18px 0 0;
    font: 400 clamp(16px, 1.4vw, 18px)/1.6 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
  }
  .exp-intro  {
    max-width: 680px;
  }
  .exp-card  {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 22px 24px;
  }
  .exp-card-icon  {
    font-size: 24px;
    color: var(--color-indigo-light);
    margin-top: 1px;
  }
  .exp-card-title  {
    font: 600 16px/1.35 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
  }
  .exp-card-body  {
    margin: 6px 0 0;
    font: 400 14px/1.55 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
  }
  .exp-cta  {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  .exp-cta-note  {
    font: 400 15px/1.5 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
  }
  .btn-primary-pill  {
    display: inline-flex;
    align-items: center;
    font: 600 16px/1 'Inter Tight', system-ui, sans-serif;
    color: #fff;
    background: var(--color-indigo);
    border: none;
    padding: 15px 28px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(79,83,156,0.22);
  }
  .btn-primary-pill:hover  {
    background: var(--color-indigo-dark);
    color: #fff;
  }
}
.content-section-2462  {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
  .svc-intro  {
    margin-bottom: clamp(40px, 5vw, 60px);
  }
  .svc-grid  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .svc-card  {
    background: #fff;
    border: 1px solid var(--color-border-card);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(79,83,156,0.08);
  }
  .svc-card-img-wrap  {
    position: relative;
  }
  .svc-card-img  {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .svc-card-body  {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .svc-card-title  {
    margin: 0;
    font: 600 21px/1.25 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
  }
  .svc-card-desc  {
    margin: 12px 0 0;
    font: 400 15px/1.6 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
    flex: 1;
  }
  .svc-card-checks  {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .svc-check  {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 400 14px/1.4 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
  }
  .svc-card-link  {
    margin-top: 26px;
    align-self: flex-start;
    font: 600 15px/1 'Inter Tight', system-ui, sans-serif;
    color: var(--color-indigo);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .svc-card-link:hover  {
    gap: 10px;
  }
  @media (max-width: 767px)  {
    .svc-grid  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2463  {
  .sup-card  {
    position: relative;
    overflow: hidden;
    background: var(--color-plum);
    border-radius: 24px;
    padding: clamp(34px, 4vw, 56px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
  }
  .sup-texture  {
    position: absolute;
    inset: 0;
    background: url('/site-assets/images/maze-texture.png');
    background-size: 480px;
    opacity: 0.07;
    mix-blend-mode: screen;
    pointer-events: none;
  }
  .sup-content  {
    position: relative;
    flex: 1 1 440px;
    min-width: 280px;
  }
  .sup-heading  {
    margin: 14px 0 0;
    font: 700 clamp(24px, 3vw, 38px)/1.15 'Zodiak', 'Instrument Serif', serif;
    color: #fff;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .sup-body  {
    margin: 16px 0 0;
    font: 400 clamp(15px, 1.3vw, 17px)/1.65 'Inter Tight', system-ui, sans-serif;
    color: #CFC6D8;
    max-width: 560px;
  }
  .sup-action  {
    position: relative;
    flex: 0 0 auto;
  }
  .sup-btn  {
    display: inline-flex;
    font: 600 16px/1 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
    background: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: 999px;
    cursor: pointer;
  }
  .sup-btn:hover  {
    background: var(--color-lilac);
  }
}
.content-section-2464  {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
  .about-wrap  {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
  }
  .about-photo-col  {
    flex: 0 1 400px;
    min-width: 280px;
    display: flex;
    justify-content: center;
  }
  .about-photo-container  {
    position: relative;
    width: 100%;
    max-width: 400px;
    min-height: 440px;
    display: flex;
  }
  .about-photo-bg  {
    position: absolute;
    inset: 16px -14px -14px 14px;
    background: #DED7E8;
    border-radius: 28px 28px 200px 200px;
  }
  .about-photo-img  {
    position: relative;
    flex: 1;
    align-self: stretch;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border-radius: 24px 24px 200px 200px;
    overflow: hidden;
    object-fit: cover;
    object-position: 50% center;
  }
  .about-content  {
    flex: 1 1 460px;
    min-width: 300px;
  }
  .about-body  {
    margin: 20px 0 0;
    font: 400 clamp(16px, 1.4vw, 18px)/1.65 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
    max-width: 560px;
  }
  .about-badges  {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .about-badge  {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 12px 18px;
    border-radius: 14px;
    font: 500 14px/1.3 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
  }
  @media (max-width: 1023px)  {
    .about-photo-col  {
      display: none;
    }
  }
}
.content-section-2465  {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
  .hiw-intro  {
    margin-bottom: clamp(40px, 5vw, 60px);
  }
  .hiw-grid  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .hiw-step  {
    display: flex;
    flex-direction: column;
  }
  .hiw-step-num-row  {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hiw-step-num  {
    font: 700 22px/1 'Zodiak', 'Instrument Serif', serif;
    color: var(--color-lavender);
  }
  .hiw-divider  {
    flex: 1;
    height: 1px;
    background: var(--color-border);
  }
  .hiw-icon-wrap  {
    margin-top: 22px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--color-lilac);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hiw-step-title  {
    margin: 18px 0 0;
    font: 600 19px/1.3 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
  }
  .hiw-step-body  {
    margin: 10px 0 0;
    font: 400 15px/1.6 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
  }
}
.content-section-2466  {
  .content-section-inner  {
    max-width: none;
    padding: 0;
  }
  .image-band-img  {
    display: block;
    width: 100%;
    height: clamp(300px, 42vw, 520px);
    object-fit: cover;
  }
}
.content-section-2467  {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
  &.content-section  {
    position: relative;
    overflow: hidden;
  }
  .fees-texture  {
    position: absolute;
    inset: 0;
    background: url('/site-assets/images/maze-texture.png');
    background-size: 520px;
    opacity: 0.05;
    pointer-events: none;
  }
  .fees-inner  {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(40px, 6vw, 80px);
  }
  .fees-left  {
    flex: 1 1 360px;
    min-width: 280px;
  }
  .fees-body  {
    margin: 20px 0 0;
    font: 400 clamp(16px, 1.4vw, 18px)/1.65 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
    max-width: 460px;
  }
  .fees-right  {
    flex: 1 1 420px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .fees-item  {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 24px 26px;
    display: flex;
    gap: 18px;
  }
  .fees-icon  {
    font-size: 26px;
    color: var(--color-indigo);
    margin-top: 2px;
  }
  .fees-item-title  {
    font: 600 17px/1.3 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
  }
  .fees-item-body  {
    margin: 7px 0 0;
    font: 400 14.5px/1.6 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
  }
}
.content-section-2468  {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.64);
  }
  .faq-header  {
    margin-bottom: clamp(36px, 5vw, 52px);
  }
  .faq-list  {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item  {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 4px 24px;
  }
  .faq-summary  {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font: 600 17px/1.4 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
  }
  .faq-summary::-webkit-details-marker  {
    display: none;
  }
  .faq-plus  {
    font-size: 24px;
    color: var(--color-indigo-light);
    transition: transform .2s ease;
    flex-shrink: 0;
  }
  details[open] .faq-plus  {
    transform: rotate(45deg);
  }
  .faq-answer  {
    margin: 0;
    padding: 0 0 22px;
    font: 400 15.5px/1.65 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum-lighter);
  }
}
.content-section-2469  {
  padding-top: clamp(60px, 7vw, 96px);
  padding-bottom: clamp(60px, 7vw, 96px);
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.59);
  }
  &.content-section  {
    position: relative;
    overflow: hidden;
  }
  .cta-texture  {
    position: absolute;
    inset: 0;
    background: url('/site-assets/images/maze-texture.png');
    background-size: 520px;
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
  }
  .cta-inner  {
    position: relative;
  }
  .cta-heading  {
    margin: 0;
    font: 700 clamp(28px, 4vw, 48px)/1.12 'Zodiak', 'Instrument Serif', serif;
    color: #fff;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  .cta-lead  {
    margin: 20px auto 0;
    font: 400 clamp(16px, 1.5vw, 19px)/1.6 'Inter Tight', system-ui, sans-serif;
    color: #C9C2D1;
    max-width: 520px;
  }
  .cta-actions  {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
  .cta-btn-white  {
    display: inline-flex;
    align-items: center;
    font: 600 17px/1 'Inter Tight', system-ui, sans-serif;
    color: var(--color-plum);
    background: #fff;
    border: none;
    padding: 17px 32px;
    border-radius: 999px;
    cursor: pointer;
  }
  .cta-btn-white:hover  {
    background: var(--color-lilac-lighter);
  }
  .cta-btn-outline  {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 600 17px/1 'Inter Tight', system-ui, sans-serif;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 17px 32px;
    border-radius: 999px;
  }
  .cta-btn-outline:hover  {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
  }
}
