/* --- STYLESHEET FOR VISUAL WELLNESS CONCEPT --- */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;600;800&family=Oswald:wght@500;700&display=swap');

:root {
  --sight-vibrant-teal: #00a896;
  --sight-deep-ocean: #028090;
  --sight-electric-flare: #f26419;
  --sight-soft-sand: #f8f9fa;
  --sight-coal-black: #11151c;
  --sight-pure-white: #ffffff;
  --sight-muted-pebble: #4a5759;
  
  --sight-gradient-primary: linear-gradient(135deg, #028090 0%, #00a896 100%);
  --sight-gradient-vivid: linear-gradient(135deg, #f26419 0%, #ff8c00 100%);
  
  --sight-font-display: 'Oswald', sans-serif;
  --sight-font-body: 'Mulish', sans-serif;
  
  --sight-radius-sharp: 4px;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sight-font-body);
  background-color: var(--sight-soft-sand);
  color: var(--sight-coal-black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- SCROLL PROGRESS BAR --- */
.sight-scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--sight-gradient-vivid);
  z-index: 99999;
  width: 0%;
  animation: sight-grow-indicator linear;
  animation-timeline: scroll();
}

@keyframes sight-grow-indicator {
  to { width: 100%; }
}

/* --- HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sight-font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* --- HEADER NAVIGATION --- */
.sight-navigation-banner {
  background: var(--sight-deep-ocean);
  color: var(--sight-pure-white);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(2, 128, 144, 0.2);
}

.sight-nav-inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}

.sight-brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sight-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sight-brand-identity svg {
  fill: var(--sight-pure-white);
  height: 32px;
  width: 32px;
}

.sight-menu-toggle-checkbox {
  display: none;
}

.sight-humbuger-icon-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.sight-humbuger-icon-trigger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--sight-pure-white);
  transition: 0.3s ease;
}

.sight-main-anchors-list {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.sight-main-anchors-list a:hover {
  color: var(--sight-electric-flare);
}

@media (max-width: 768px) {
  .sight-humbuger-icon-trigger {
    display: flex;
  }
  
  .sight-main-anchors-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sight-deep-ocean);
    flex-direction: column;
    gap: 0;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  
  .sight-main-anchors-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .sight-main-anchors-list a {
    display: block;
    padding: 1.5rem;
  }
  
  .sight-menu-toggle-checkbox:checked ~ .sight-main-anchors-list {
    max-height: 300px;
  }
}

/* --- HERO STYLE PRESET C --- */
.sight-bold-hero-wrapper {
  position: relative;
  min-height: 100vh;
  background: var(--sight-gradient-primary);
  color: var(--sight-pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16dvh 2rem;
  overflow: hidden;
}

.sight-hero-decorative-number {
  position: absolute;
  font-size: 20rem;
  font-weight: 900;
  opacity: 0.06;
  left: 5%;
  bottom: 0;
  font-family: var(--sight-font-display);
  pointer-events: none;
  user-select: none;
}

.sight-hero-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  max-width: 1200px;
  width: 100%;
  gap: 4rem;
  z-index: 2;
  align-items: center;
}

.sight-hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sight-hero-text-block h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-shadow: 2px 2px 0px var(--sight-coal-black);
}

.sight-hero-text-block p {
  font-size: 1.25rem;
  max-width: 600px;
  opacity: 0.95;
}

.sight-pill-cta-anchor {
  display: inline-block;
  align-self: flex-start;
  background: var(--sight-gradient-vivid);
  color: var(--sight-pure-white);
  padding: 1.2rem 2.8rem;
  font-size: 1.1rem;
  font-family: var(--sight-font-display);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--sight-radius-sharp);
  box-shadow: 0 4px 15px rgba(242, 100, 25, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sight-pill-cta-anchor:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 100, 25, 0.6);
}

.sight-hero-abstract-forms {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sight-hero-abstract-forms::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 4px solid var(--sight-electric-flare);
  animation: float-circle-slow 8s infinite alternate ease-in-out;
}

.sight-hero-abstract-forms::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0, 168, 150, 0.2);
  transform: rotate(45deg);
  border: 2px solid var(--sight-pure-white);
  animation: rot-square-slow 12s infinite linear;
}

@keyframes float-circle-slow {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-30px) scale(1.05); }
}

@keyframes rot-square-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .sight-hero-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sight-hero-abstract-forms {
    display: none;
  }
}

/* --- DIAGONAL CLIP SECTION --- */
.sight-slanting-wrapper {
  background: var(--sight-soft-sand);
  padding: 8dvh 0;
}

.sight-slanted-bg-box {
  position: relative;
  background-image: linear-gradient(rgba(18, 27, 34, 0.8), rgba(18, 27, 34, 0.85)), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  padding: 16dvh 2rem;
  color: var(--sight-pure-white);
}

.sight-slanted-content-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(2, 128, 144, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 4rem 3rem;
  border-radius: var(--sight-radius-sharp);
}

.sight-slanted-content-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--sight-electric-flare);
}

.sight-slanted-content-container p {
  font-size: 1.15rem;
  line-height: 1.8;
}

/* --- FEATURES PRESET C --- */
.sight-pinnacles-wrapper {
  padding: 16dvh 2rem;
  background-color: var(--sight-pure-white);
}

.sight-section-title-line {
  text-align: center;
  margin-bottom: 5rem;
}

.sight-section-title-line h2 {
  font-size: 3rem;
  color: var(--sight-deep-ocean);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.sight-section-title-line h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--sight-electric-flare);
}

.sight-pinnacles-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sight-pinnacles-each-card {
  background: var(--sight-soft-sand);
  padding: 3rem 2rem;
  border-left: 5px solid var(--sight-vibrant-teal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: var(--sight-radius-sharp);
  position: relative;
}

.sight-pinnacles-each-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(2, 128, 144, 0.15);
}

.sight-pinnacles-giant-idx {
  font-family: var(--sight-font-display);
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  color: var(--sight-electric-flare);
  margin-bottom: 1.5rem;
}

.sight-pinnacles-each-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--sight-coal-black);
}

.sight-pinnacles-each-card p {
  color: var(--sight-muted-pebble);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .sight-pinnacles-grid-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- HOW IT WORKS PRESET C --- */
.sight-horizontal-stepper-wrapper {
  padding: 16dvh 2rem;
  background-color: var(--sight-soft-sand);
}

.sight-stepper-pipeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  gap: 2rem;
}

.sight-stepper-pipeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 4px;
  background: var(--sight-vibrant-teal);
  z-index: 1;
}

.sight-stepper-single-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.sight-stepper-circle-element {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--sight-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

/* Alternating nodes based on Preset C */
.sight-stepper-single-node:nth-child(odd) .sight-stepper-circle-element {
  background: var(--sight-vibrant-teal);
  color: var(--sight-pure-white);
  border: 4px solid var(--sight-pure-white);
  box-shadow: 0 4px 15px rgba(0, 168, 150, 0.3);
}

.sight-stepper-single-node:nth-child(even) .sight-stepper-circle-element {
  background: var(--sight-pure-white);
  color: var(--sight-deep-ocean);
  border: 4px solid var(--sight-deep-ocean);
  box-shadow: 0 4px 15px rgba(2, 128, 144, 0.2);
}

.sight-stepper-single-node h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--sight-coal-black);
}

.sight-stepper-single-node p {
  color: var(--sight-muted-pebble);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sight-stepper-pipeline {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .sight-stepper-pipeline::before {
    top: 5%;
    bottom: 5%;
    left: 40px;
    right: auto;
    width: 4px;
    height: 90%;
  }
  .sight-stepper-single-node {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* --- CTA STRIP PRESET C --- */
.sight-bold-strip-banner {
  background-color: var(--sight-coal-black);
  color: var(--sight-pure-white);
  padding: 10dvh 2rem;
}

.sight-bold-strip-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.sight-bold-strip-layout h2 {
  font-size: 2.5rem;
  max-width: 700px;
}

.sight-bold-strip-layout h2 span {
  color: var(--sight-electric-flare);
}

@media (max-width: 768px) {
  .sight-bold-strip-layout {
    flex-direction: column;
    text-align: center;
  }
  .sight-bold-strip-layout h2 {
    font-size: 2rem;
  }
}

/* --- FOOTER REGULATION --- */
.sight-global-bottom-footer {
  background-color: #0e1218;
  color: #a0aec0;
  padding: 5rem 2rem 2rem;
  font-size: 0.9rem;
  border-top: 5px solid var(--sight-electric-flare);
}

.sight-global-bottom-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sight-footer-topwards-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sight-footer-logo-anchor {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sight-font-display);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--sight-pure-white);
}

.sight-footer-logo-anchor svg {
  fill: var(--sight-electric-flare);
  height: 28px;
  width: 28px;
}

.sight-footer-anchors-block {
  display: flex;
  gap: 2rem;
}

.sight-footer-anchors-block a:hover {
  color: var(--sight-pure-white);
}

.sight-footer-disclaimer-wrapper {
  padding: 2.5rem 0;
  text-align: center;
}

.sight-footer-disclaimer-wrapper p {
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.sight-footer-copyright-line {
  text-align: center;
  font-size: 0.8rem;
  color: #718096;
}

@media (max-width: 768px) {
  .sight-footer-topwards-row {
    flex-direction: column;
    text-align: center;
  }
  .sight-footer-anchors-block {
    flex-direction: column;
    gap: 1rem;
  }
}

/* --- COOKIES BANNER --- */
.sight-cookie-consent-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--sight-coal-black);
  color: var(--sight-pure-white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  gap: 2rem;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
  animation: slide-up-cookie 0.5s ease-out;
}

@keyframes slide-up-cookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sight-cookie-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.sight-cookie-action-buttons {
  display: flex;
  gap: 1rem;
}

.sight-cookie-btn {
  padding: 0.6rem 1.5rem;
  font-family: var(--sight-font-display);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--sight-radius-sharp);
}

.sight-cookie-btn-primary {
  background: var(--sight-vibrant-teal);
  color: var(--sight-pure-white);
}

.sight-cookie-btn-secondary {
  background: transparent;
  color: var(--sight-pure-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .sight-cookie-consent-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* --- EXPERT PAGE PRESET C --- */
.sight-expert-headline-section {
  background: var(--sight-gradient-primary);
  color: var(--sight-pure-white);
  padding: 16dvh 2rem 8dvh;
  text-align: center;
  position: relative;
}

.sight-expert-headline-section h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.sight-immediate-action-block {
  background-color: var(--sight-vibrant-teal);
  color: var(--sight-pure-white);
  padding: 4rem 2rem;
}

.sight-immediate-action-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.sight-immediate-action-container h2 {
  font-size: 2rem;
  max-width: 650px;
}

.sight-expert-editorial-layout {
  padding: 16dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 4rem;
  align-items: center;
}

.sight-expert-editorial-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sight-expert-editorial-text h2 {
  font-size: 2.5rem;
  color: var(--sight-deep-ocean);
}

.sight-expert-editorial-text p {
  color: var(--sight-muted-pebble);
  font-size: 1.1rem;
}

.sight-expert-editorial-image {
  box-shadow: 15px 15px 0px var(--sight-electric-flare);
  border: 2px solid var(--sight-coal-black);
}

.sight-expert-editorial-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .sight-immediate-action-container {
    flex-direction: column;
    text-align: center;
  }
  .sight-expert-editorial-layout {
    grid-template-columns: 1fr;
  }
  .sight-expert-editorial-image {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Stats section presets */
.sight-statistics-banner {
  background-color: var(--sight-coal-black);
  color: var(--sight-pure-white);
  padding: 8dvh 2rem;
}

.sight-statistics-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sight-statistics-each-block h3 {
  font-size: 3.5rem;
  color: var(--sight-electric-flare);
  margin-bottom: 0.5rem;
}

.sight-statistics-each-block p {
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .sight-statistics-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.sight-expert-outro-section {
  background-size: cover;
  background-position: center;
  padding: 16dvh 2rem;
  background-image: linear-gradient(rgba(18, 27, 34, 0.8), rgba(18, 27, 34, 0.9)), url('img/bg3.webp');
  color: var(--sight-pure-white);
}

.sight-expert-outro-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sight-expert-outro-container h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* --- RESERVE PAGE PRESET C --- */
.sight-dual-reserve-wrapper {
  padding: 16dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.sight-reserve-form-side {
  background: var(--sight-pure-white);
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-top: 5px solid var(--sight-electric-flare);
  border-radius: var(--sight-radius-sharp);
}

.sight-reserve-form-side h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.sight-reserve-form-side form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sight-form-row-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sight-form-row-group label {
  font-weight: 600;
}

.sight-form-row-group input, .sight-form-row-group textarea {
  padding: 1rem;
  border: 1px solid #cbd5e0;
  border-radius: var(--sight-radius-sharp);
  font-family: inherit;
  font-size: 1rem;
}

.sight-consent-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.sight-consent-checkbox-wrap input {
  margin-top: 0.25rem;
}

.sight-submit-engagement-btn {
  background: var(--sight-gradient-vivid);
  color: var(--sight-pure-white);
  padding: 1.2rem;
  border: none;
  font-family: var(--sight-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  border-radius: var(--sight-radius-sharp);
}

.sight-submit-engagement-btn:hover {
  opacity: 0.9;
}

.sight-contact-mailto-hint {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--sight-muted-pebble);
}

.sight-contact-mailto-hint a {
  color: var(--sight-deep-ocean);
  font-weight: bold;
}

.sight-reserve-info-cards-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sight-info-utility-card {
  background: var(--sight-pure-white);
  padding: 2.5rem;
  border-left: 5px solid var(--sight-deep-ocean);
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  border-radius: var(--sight-radius-sharp);
}

.sight-info-utility-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--sight-deep-ocean);
}

.sight-info-bullet-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sight-info-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sight-info-color-dot {
  width: 10px;
  height: 10px;
  background-color: var(--sight-electric-flare);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 992px) {
  .sight-dual-reserve-wrapper {
    grid-template-columns: 1fr;
  }
}

/* --- ACCORDION FAQ PRESET C --- */
.sight-frequently-asked-block {
  padding: 16dvh 2rem;
  background-color: var(--sight-pure-white);
}

.sight-frequently-asked-inner {
  max-width: 800px;
  margin: 0 auto;
}

.sight-faq-grid-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sight-faq-item-box {
  background-color: var(--sight-soft-sand);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 2rem;
  border-radius: var(--sight-radius-sharp);
  transition: all 0.3s ease;
}

.sight-faq-item-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--sight-deep-ocean);
}

.sight-faq-item-box p {
  color: var(--sight-muted-pebble);
  font-size: 1rem;
}

/* --- SCROLL REVEAL ANIMATIONS BY DETECTING SCREEN VIEW --- */
.sight-reveal-trigger {
  animation: sight-fade-ups linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

@keyframes sight-fade-ups {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: none; }
}

/* --- STATIC LEGAL PAGES --- */
.sight-legal-core-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 16dvh 2rem;
  line-height: 1.8;
}

.sight-legal-core-document h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--sight-deep-ocean);
}

.sight-legal-core-document h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--sight-coal-black);
}

.sight-legal-core-document p {
  margin-bottom: 1.5rem;
  color: var(--sight-muted-pebble);
}

/* --- THANK YOU SPLASH --- */
.sight-success-banner-wrapper {
  background-image: linear-gradient(rgba(18, 27, 34, 0.8), rgba(18, 27, 34, 0.85)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--sight-pure-white);
  padding: 16dvh 2rem;
}

.sight-success-message-holder {
  max-width: 700px;
  background: rgba(2, 128, 144, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 4rem 3rem;
  border-radius: var(--sight-radius-sharp);
}

.sight-success-message-holder h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--sight-electric-flare);
}

.sight-success-message-holder p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}