/* ITCSS Layer 1: Settings */
:root {
  --vf-primary-flow: #00b4d8;
  --vf-light-embrace: #e6f7fc;
  --vf-deep-current: #007a92;
  --vf-neutral-mist: #f8fafb;
  --vf-shadow-whisper: rgba(0, 122, 146, 0.08);
  --vf-transition-breath: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* ITCSS Layer 2: Tools & Generic */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--vf-deep-current);
  background: linear-gradient(135deg, var(--vf-light-embrace) 0%, var(--vf-neutral-mist) 100%);
  overflow-x: hidden;
}

/* ITCSS Layer 3: Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 1.25rem;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--vf-transition-breath);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ITCSS Layer 4: Objects */
.vf-genesis-canvas {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.vf-navigation-cluster {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.vf-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.vf-identity-capsule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vf-logo-element {
  width: clamp(2.5rem, 4vw, 3.5rem);
  height: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 9999px;
  background: var(--vf-primary-flow);
  object-fit: cover;
}

.vf-brand-signature {
  font-family: 'Georgia', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--vf-deep-current);
}

.vf-menu-constellation {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.vf-nav-bubble {
  position: relative;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  color: var(--vf-deep-current);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: var(--vf-transition-breath);
}

.vf-nav-bubble:hover {
  background: var(--vf-primary-flow);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--vf-shadow-whisper);
}

.vf-entry-portal {
  background: var(--vf-primary-flow);
  color: white;
}

.vf-entry-portal:hover {
  background: var(--vf-deep-current);
  transform: translateY(-3px) scale(1.05);
}

.vf-main-theater {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.vf-content-orchestra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 6rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.vf-message-sphere {
  position: relative;
}

.vf-primary-declaration {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.vf-essence-narrative {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0.9;
}

.vf-engagement-cluster {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vf-action-capsule {
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  border-radius: 9999px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
}

.vf-primary-energy {
  background: var(--vf-primary-flow);
  color: white;
}

.vf-primary-energy:hover {
  background: var(--vf-deep-current);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 180, 216, 0.4);
}

.vf-secondary-flow {
  background: rgba(255, 255, 255, 0.8);
  color: var(--vf-deep-current);
  backdrop-filter: blur(10px);
  border: 2px solid var(--vf-primary-flow);
}

.vf-secondary-flow:hover {
  background: var(--vf-light-embrace);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--vf-shadow-whisper);
}

.vf-visual-portal {
  position: relative;
}

.vf-image-sanctuary {
  position: relative;
  border-radius: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  transform: rotate(3deg);
  transition: var(--vf-transition-breath);
}

.vf-image-sanctuary:hover {
  transform: rotate(0deg) scale(1.02);
}

.vf-hero-visual {
  width: 100%;
  height: clamp(20rem, 40vw, 30rem);
  object-fit: cover;
  filter: saturate(1.1) brightness(1.05);
}

.vf-floating-insight {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.vf-insight-label {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 700;
  color: var(--vf-primary-flow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.vf-insight-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.vf-credentials-ribbon {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(0, 180, 216, 0.15);
}

.vf-trust-markers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.vf-marker-pod {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vf-metric-display {
  font-family: 'Georgia', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--vf-primary-flow);
  margin-bottom: 0.5rem;
}

.vf-metric-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--vf-deep-current);
  opacity: 0.8;
  font-weight: 600;
}

/* ITCSS Layer 5: Components - Responsive */
@media (max-width: 768px) {
  .vf-menu-constellation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: var(--vf-transition-breath);
    z-index: 1000;
  }
  
  .vf-content-orchestra {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .vf-visual-portal {
    order: -1;
  }
  
  .vf-image-sanctuary {
    transform: rotate(0deg);
  }
  
  .vf-engagement-cluster {
    justify-content: center;
  }
  
  .vf-action-capsule {
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .vf-engagement-cluster {
    flex-direction: column;
    align-items: center;
  }
  
  .vf-action-capsule {
    width: 100%;
    max-width: 280px;
  }
  
  .vf-trust-markers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ITCSS Layer 6: Utilities */
.vf-focus-ring:focus {
  outline: 3px solid var(--vf-primary-flow);
  outline-offset: 2px;
  border-radius: 9999px;
}

.vf-animate-float {
  animation: vf-gentle-float 6s ease-in-out infinite;
}

@keyframes vf-gentle-float {
  0%, 100% { transform: translateY(0px) rotate(3deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}













/* About Us Section - Story Tapestry */
.vf-story-tapestry {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(165deg, var(--vf-neutral-mist) 0%, var(--vf-light-embrace) 50%, rgba(255, 255, 255, 0.9) 100%);
  overflow: hidden;
}

.vf-story-tapestry::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.vf-narrative-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.vf-story-weave {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 6vw, 5rem);
  margin-bottom: clamp(4rem, 6vw, 6rem);
  align-items: start;
}

.vf-heritage-sphere {
  position: relative;
}

.vf-chapter-marker {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(0, 180, 216, 0.1);
  color: var(--vf-primary-flow);
  border-radius: 9999px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border: 2px solid rgba(0, 180, 216, 0.2);
}

.vf-story-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.vf-genesis-tale {
  position: relative;
}

.vf-opening-verse {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: 0.9;
}

.vf-inspiration-capsule {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(2rem, 4vw, 3rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  transform: rotate(-1deg);
  transition: var(--vf-transition-breath);
}

.vf-inspiration-capsule:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.1);
}

.vf-motivation-core {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0;
  color: var(--vf-deep-current);
  position: relative;
}

.vf-motivation-core::before {
  content: '"';
  font-size: 4rem;
  color: var(--vf-primary-flow);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
  font-family: 'Georgia', serif;
}

.vf-mission-constellation {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.vf-purpose-orb {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: clamp(2rem, 4vw, 3rem);
  color: white;
  transform: rotate(2deg);
  transition: var(--vf-transition-breath);
}

.vf-purpose-orb:hover {
  transform: rotate(0deg) translateY(-5px);
}

.vf-mission-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  color: white;
}

.vf-mission-essence {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.vf-values-cluster {
  position: relative;
}

.vf-values-declaration {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.vf-principles-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vf-principle-bubble {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 9999px;
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: var(--vf-transition-breath);
  text-align: center;
}

.vf-principle-bubble:hover {
  background: var(--vf-light-embrace);
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.15);
}

.vf-principle-essence {
  display: block;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--vf-primary-flow);
  margin-bottom: 0.75rem;
}

.vf-principle-detail {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.vf-impact-manifesto {
  position: relative;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.vf-manifesto-frame {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  border: 3px solid var(--vf-primary-flow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-manifesto-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
  animation: vf-gentle-pulse 8s ease-in-out infinite;
}

.vf-impact-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.vf-manifesto-core {
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.vf-commitment-ribbon {
  background: linear-gradient(90deg, transparent 0%, var(--vf-light-embrace) 20%, var(--vf-light-embrace) 80%, transparent 100%);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 9999px;
  position: relative;
  z-index: 2;
}

.vf-commitment-pledge {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--vf-deep-current);
  font-weight: 600;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-story-weave {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vf-mission-constellation {
    order: -1;
  }
  
  .vf-inspiration-capsule {
    transform: rotate(0deg);
  }
  
  .vf-purpose-orb {
    transform: rotate(0deg);
  }
  
  .vf-principles-grid {
    gap: 1rem;
  }
  
  .vf-principle-bubble:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 480px) {
  .vf-story-tapestry {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
  
  .vf-manifesto-frame {
    padding: clamp(2rem, 4vw, 3rem);
  }
}

/* Animation */
@keyframes vf-gentle-pulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.1) rotate(180deg);
    opacity: 0.8;
  }
}










/* Article Section - Story Canvas */
.vf-article-sanctuary {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(180deg, var(--vf-neutral-mist) 0%, rgba(255, 255, 255, 0.95) 50%, var(--vf-light-embrace) 100%);
  overflow: hidden;
}

.vf-article-sanctuary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.03) 0%, transparent 60%);
  border-radius: 50%;
  transform: rotate(25deg);
}

.vf-content-vessel {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.vf-story-canvas {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: clamp(3rem, 6vw, 5rem);
  border: 2px solid rgba(0, 180, 216, 0.1);
  box-shadow: 0 20px 60px rgba(0, 180, 216, 0.08);
}

/* Article Header */
.vf-article-crown {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  position: relative;
}

.vf-category-gem {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  border-radius: 9999px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.vf-article-beacon {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vf-author-constellation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.vf-author-signature {
  font-weight: 600;
  color: var(--vf-deep-current);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.vf-publish-moment {
  color: var(--vf-primary-flow);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  opacity: 0.8;
}

/* Article Content */
.vf-article-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.vf-opening-embrace {
  position: relative;
}

.vf-lead-narrative {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  font-style: italic;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(0, 180, 216, 0.05);
  border-radius: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--vf-primary-flow);
  margin: 0;
}

.vf-wisdom-cluster {
  position: relative;
}

.vf-section-pulse {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  position: relative;
}

.vf-section-pulse::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  border-radius: 9999px;
}

.vf-preparation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vf-prep-sphere {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  transition: var(--vf-transition-breath);
}

.vf-prep-sphere:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
  border-color: var(--vf-primary-flow);
}

.vf-prep-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--vf-primary-flow);
  margin-bottom: 1rem;
}

.vf-prep-detail {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Week-by-Week Plan */
.vf-method-mansion {
  position: relative;
}

.vf-week-chronicles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vf-week-capsule {
  background: rgba(255, 255, 255, 0.9);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  border: 2px solid rgba(0, 180, 216, 0.2);
  overflow: hidden;
  transition: var(--vf-transition-breath);
}

.vf-week-capsule:hover {
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
}

.vf-week-capsule[open] {
  border-color: var(--vf-primary-flow);
}

.vf-week-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, var(--vf-light-embrace) 0%, rgba(255, 255, 255, 0.8) 100%);
  cursor: pointer;
  transition: var(--vf-transition-breath);
  list-style: none;
}

.vf-week-header:hover {
  background: var(--vf-light-embrace);
}

.vf-week-marker {
  font-weight: 700;
  color: var(--vf-primary-flow);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.vf-week-essence {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  color: var(--vf-deep-current);
  font-weight: 600;
}

.vf-week-content {
  padding: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(0, 180, 216, 0.1);
}

.vf-week-philosophy {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--vf-deep-current);
}

.vf-tip-nugget {
  background: rgba(0, 180, 216, 0.08);
  padding: 1.25rem 1.5rem;
  border-radius: 9999px;
  border-left: 4px solid var(--vf-primary-flow);
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.6;
}

.vf-tip-nugget strong {
  color: var(--vf-primary-flow);
}

/* Insights Section */
.vf-insights-tapestry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.vf-insight-pod {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--vf-light-embrace) 100%);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
}

.vf-insight-pod::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  transition: var(--vf-transition-breath);
}

.vf-insight-pod:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 20px 50px rgba(0, 180, 216, 0.15);
}

.vf-insight-pod:hover::before {
  transform: scale(1.2) rotate(90deg);
}

.vf-insight-beacon {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--vf-primary-flow);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.vf-insight-wisdom {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

/* Motivation Finale */
.vf-motivation-finale {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.vf-encouragement-sphere {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  padding: clamp(3rem, 6vw, 4rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-encouragement-sphere::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: vf-gentle-rotate 20s linear infinite;
}

.vf-finale-beacon {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.vf-finale-message,
.vf-finale-call {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  opacity: 0.95;
}

.vf-finale-call {
  font-weight: 600;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-preparation-grid,
  .vf-insights-tapestry {
    grid-template-columns: 1fr;
  }
  
  .vf-author-constellation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .vf-week-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .vf-insight-pod:hover {
    transform: translateY(-5px) rotate(0deg);
  }
}

@media (max-width: 480px) {
  .vf-story-canvas {
    padding: clamp(2rem, 4vw, 3rem);
  }
  
  .vf-week-content {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

/* Animation */
@keyframes vf-gentle-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}














/* Services Section - Universe Layout */
.vf-services-universe {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(160deg, var(--vf-light-embrace) 0%, var(--vf-neutral-mist) 40%, rgba(255, 255, 255, 0.95) 100%);
  overflow: hidden;
}

.vf-services-universe::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.vf-services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* Services Header */
.vf-services-constellation {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
}

.vf-services-beacon {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  border-radius: 9999px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.vf-services-symphony {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vf-services-essence {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.vf-offerings-tapestry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.vf-service-sphere {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.vf-service-sphere::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
  transition: var(--vf-transition-breath);
  z-index: 1;
}

.vf-service-sphere:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 25px 60px rgba(0, 180, 216, 0.15);
  border-color: var(--vf-primary-flow);
}

.vf-service-sphere:hover::before {
  transform: scale(1.3) rotate(45deg);
}

/* Service Content */
.vf-service-crown {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.vf-service-emblem {
  width: clamp(4rem, 8vw, 5rem);
  height: clamp(4rem, 8vw, 5rem);
  margin: 0 auto clamp(1rem, 2vw, 1.5rem);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.vf-training-emblem {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.vf-nutrition-emblem {
  background: linear-gradient(135deg, #51cf66 0%, #69db7c 100%);
}

.vf-adventure-emblem {
  background: linear-gradient(135deg, #ffd43b 0%, #ffe066 100%);
}

.vf-service-emblem::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.vf-service-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-deep-current);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.vf-service-tagline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--vf-primary-flow);
  font-weight: 600;
  font-style: italic;
}

.vf-service-essence {
  flex-grow: 1;
  position: relative;
  z-index: 2;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.vf-service-narrative {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  opacity: 0.9;
}

.vf-service-dimensions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.vf-dimension-pod {
  background: rgba(0, 180, 216, 0.05);
  padding: 1.5rem;
  border-radius: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--vf-primary-flow);
}

.vf-dimension-label {
  display: block;
  font-weight: 700;
  color: var(--vf-primary-flow);
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vf-dimension-detail {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

.vf-service-highlights {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.vf-highlight-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vf-highlight-gem {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  color: var(--vf-deep-current);
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: var(--vf-transition-breath);
}

.vf-highlight-gem:hover {
  background: var(--vf-primary-flow);
  color: white;
  transform: translateY(-2px);
}

/* Special Disclaimer */
.vf-service-disclaimer {
  background: rgba(255, 193, 7, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  padding: 1.5rem;
  margin: clamp(1.5rem, 3vw, 2rem) 0;
}

.vf-disclaimer-text {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.6;
  margin: 0;
  color: var(--vf-deep-current);
}

.vf-disclaimer-text strong {
  color: #e67e22;
}

/* Service Engagement */
.vf-service-engagement {
  position: relative;
  z-index: 2;
  text-align: center;
}

.vf-service-gateway {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  border: none;
  cursor: pointer;
  transition: var(--vf-transition-breath);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vf-service-gateway:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
}

/* Services Invitation */
.vf-services-invitation {
  position: relative;
}

.vf-invitation-sphere {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-invitation-sphere::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  animation: vf-orbital-float 15s ease-in-out infinite;
}

.vf-invitation-beacon {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.vf-invitation-message {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  z-index: 2;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vf-invitation-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.vf-primary-invitation {
  background: rgba(255, 255, 255, 0.95);
  color: var(--vf-deep-current);
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  border: none;
  cursor: pointer;
  transition: var(--vf-transition-breath);
}

.vf-primary-invitation:hover {
  background: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.vf-secondary-invitation {
  background: transparent;
  color: white;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 9999px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--vf-transition-breath);
}

.vf-secondary-invitation:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-offerings-tapestry {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vf-service-sphere {
    min-height: auto;
  }
  
  .vf-service-dimensions {
    gap: 1rem;
  }
  
  .vf-invitation-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .vf-primary-invitation,
  .vf-secondary-invitation {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .vf-service-sphere {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
  
  .vf-highlight-cluster {
    flex-direction: column;
    align-items: center;
  }
  
  .vf-highlight-gem {
    text-align: center;
    min-width: 200px;
  }
}

/* Animations */
@keyframes vf-orbital-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(15px, -10px) rotate(120deg);
  }
  66% {
    transform: translate(-10px, 5px) rotate(240deg);
  }
}
















/* Entry Form Section - Connection Portal */
.vf-connection-portal {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(145deg, var(--vf-neutral-mist) 0%, var(--vf-light-embrace) 60%, rgba(255, 255, 255, 0.9) 100%);
  overflow: hidden;
}

.vf-connection-portal::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(45deg);
}

.vf-portal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* Portal Header */
.vf-portal-constellation {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.vf-portal-beacon {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  border-radius: 9999px;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.vf-portal-symphony {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.vf-portal-essence {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Form Universe Layout */
.vf-form-universe {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.vf-form-sanctuary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  padding: clamp(3rem, 6vw, 4rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  box-shadow: 0 25px 60px rgba(0, 180, 216, 0.1);
  position: relative;
  overflow: hidden;
}

.vf-form-sanctuary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.03) 0%, transparent 60%);
  animation: vf-gentle-pulse 12s ease-in-out infinite;
}

/* Form Header */
.vf-form-crown {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  z-index: 2;
}

.vf-form-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--vf-deep-current);
  margin-bottom: 1rem;
}

.vf-form-invitation {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--vf-primary-flow);
  font-style: italic;
  opacity: 0.9;
}

/* Form Fields */
.vf-field-constellation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 4rem);
  position: relative;
  z-index: 2;
}

.vf-input-sphere {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.vf-message-sphere {
  align-items: flex-start;
}

.vf-field-emblem {
  flex-shrink: 0;
  padding-top: 0.5rem;
}

.vf-icon-gem {
  width: clamp(2.5rem, 5vw, 3rem);
  height: clamp(2.5rem, 5vw, 3rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--vf-transition-breath);
}

.vf-name-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.vf-email-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.vf-message-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.vf-icon-gem::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 40%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vf-input-vessel {
  flex-grow: 1;
  position: relative;
}

.vf-field-label {
  display: block;
  font-weight: 700;
  color: var(--vf-deep-current);
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vf-input-flow {
  width: 100%;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2rem);
  border: 2px solid rgba(0, 180, 216, 0.2);
  border-radius: 9999px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-family: 'Nunito', sans-serif;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: var(--vf-transition-breath);
  outline: none;
  position: relative;
  z-index: 2;
}

.vf-textarea-flow {
  border-radius: clamp(1.5rem, 3vw, 2rem);
  resize: vertical;
  min-height: 120px;
}

.vf-input-flow:focus {
  border-color: var(--vf-primary-flow);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.15);
  transform: translateY(-2px);
}

.vf-input-flow::placeholder {
  color: rgba(0, 122, 146, 0.6);
  font-style: italic;
}

.vf-field-shimmer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  border-radius: 9999px;
  transition: var(--vf-transition-breath);
}

.vf-input-flow:focus + .vf-field-shimmer {
  width: 100%;
}

/* Form Engagement */
.vf-form-engagement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.vf-submit-gateway {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(3rem, 6vw, 4rem);
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.125rem);
  border: none;
  cursor: pointer;
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vf-submit-gateway:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 180, 216, 0.4);
}

.vf-submit-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.vf-submit-gateway:active .vf-submit-ripple {
  width: 300px;
  height: 300px;
}

.vf-response-promise {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 180, 216, 0.08);
  padding: 1rem 2rem;
  border-radius: 9999px;
  border: 2px solid rgba(0, 180, 216, 0.2);
}

.vf-promise-emblem {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.vf-promise-emblem::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

.vf-promise-text {
  font-weight: 600;
  color: var(--vf-deep-current);
  font-size: clamp(0.875rem, 1.8vw, 1rem);
}

/* Connection Inspiration */
.vf-connection-inspiration {
  position: relative;
}

.vf-inspiration-sphere {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: clamp(2rem, 4vw, 3rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  position: relative;
  overflow: hidden;
}

.vf-inspiration-sphere::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  animation: vf-orbital-drift 20s linear infinite;
}

.vf-inspiration-beacon {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  position: relative;
  z-index: 2;
}

.vf-journey-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3rem);
  position: relative;
  z-index: 2;
}

.vf-step-gem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(0, 180, 216, 0.05);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--vf-primary-flow);
}

.vf-step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.vf-step-detail {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.6;
  margin: 0;
  color: var(--vf-deep-current);
  opacity: 0.9;
  padding-top: 0.25rem;
}

.vf-connection-values {
  position: relative;
  z-index: 2;
}

.vf-values-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--vf-deep-current);
  text-align: center;
  margin-bottom: 1.5rem;
}

.vf-value-pods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vf-value-bubble {
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: var(--vf-transition-breath);
}

.vf-value-bubble:hover {
  background: var(--vf-light-embrace);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 180, 216, 0.1);
}

.vf-value-essence {
  font-weight: 600;
  color: var(--vf-deep-current);
  font-size: clamp(0.875rem, 1.8vw, 1rem);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-form-universe {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vf-connection-inspiration {
    order: -1;
  }
  
  .vf-input-sphere {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .vf-field-emblem {
    padding-top: 0;
  }
  
  .vf-step-gem {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .vf-step-detail {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .vf-form-sanctuary {
    padding: clamp(2rem, 4vw, 3rem);
  }
  
  .vf-input-sphere {
    gap: 1rem;
  }
  
  .vf-journey-steps {
    gap: 1rem;
  }
}

/* Animations */
@keyframes vf-orbital-drift {
  0% {
    transform: rotate(0deg) translateX(20px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}












/* Footer Section - Foundation Closure */
.vf-foundation-closure {
  position: relative;
  background: linear-gradient(135deg, var(--vf-deep-current) 0%, #004d5c 50%, var(--vf-deep-current) 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}

.vf-foundation-closure::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.1) 0%, transparent 60%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.vf-foundation-closure::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(25deg);
}

.vf-closure-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.vf-closure-constellation {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Brand Section */
.vf-brand-essence {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.vf-footer-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vf-footer-logo {
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border: 2px solid rgba(0, 180, 216, 0.3);
  transition: var(--vf-transition-breath);
}

.vf-footer-logo:hover {
  transform: rotate(10deg) scale(1.1);
  border-color: rgba(0, 180, 216, 0.6);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.vf-brand-heritage {
  font-family: 'Georgia', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vf-brand-whisper {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  max-width: 500px;
  margin: 0;
}

/* Legal Section */
.vf-legal-tapestry {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-end;
  text-align: right;
}

.vf-policy-navigation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vf-policy-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--vf-transition-breath);
  text-align: center;
  min-width: 140px;
}

.vf-policy-link:hover {
  color: white;
  background: rgba(0, 180, 216, 0.3);
  border-color: rgba(0, 180, 216, 0.5);
  transform: translateX(-5px);
  box-shadow: 0 5px 20px rgba(0, 180, 216, 0.2);
}

.vf-rights-declaration {
  position: relative;
}

.vf-copyright-essence {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Footer Signature */
.vf-closure-signature {
  position: relative;
}

.vf-signature-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.vf-signature-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  animation: vf-signature-shimmer 3s ease-in-out infinite;
}

.vf-signature-mark {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.vf-signature-emblem {
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.vf-signature-emblem::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: vf-heartbeat 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-closure-constellation {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .vf-legal-tapestry {
    align-items: center;
    text-align: center;
  }
  
  .vf-policy-navigation {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .vf-policy-link {
    min-width: auto;
    padding: 0.75rem 1.25rem;
  }
  
  .vf-policy-link:hover {
    transform: translateY(-2px);
  }
  
  .vf-brand-essence {
    align-items: center;
    text-align: center;
  }
  
  .vf-brand-whisper {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .vf-foundation-closure {
    padding: clamp(3rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  }
  
  .vf-closure-constellation {
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  
  .vf-policy-navigation {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .vf-policy-link {
    width: 100%;
    max-width: 200px;
  }
  
  .vf-signature-flow {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* Animations */
@keyframes vf-signature-shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes vf-heartbeat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Focus States */
.vf-policy-link:focus {
  outline: 3px solid rgba(0, 180, 216, 0.6);
  outline-offset: 2px;
}














/* Activities Page Specific Styles */
.vf-activities-realm {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 8rem);
  background: linear-gradient(150deg, var(--vf-neutral-mist) 0%, var(--vf-light-embrace) 30%, rgba(255, 255, 255, 0.95) 70%, var(--vf-light-embrace) 100%);
  overflow: hidden;
}

.vf-activities-realm::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.vf-activities-realm::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.03) 0%, transparent 60%);
  border-radius: 50%;
  transform: rotate(20deg);
}

.vf-activities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* Activities Header */
.vf-activities-header {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
}

.vf-activities-title {
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.vf-activities-essence {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

/* Activities Grid */
.vf-activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.vf-activity-sphere {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
  transform: rotate(0deg);
}

.vf-activity-sphere::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.06) 0%, transparent 60%);
  transition: var(--vf-transition-breath);
  z-index: 1;
}

.vf-activity-sphere:nth-child(odd) {
  transform: rotate(1deg);
}

.vf-activity-sphere:nth-child(even) {
  transform: rotate(-1deg);
}

.vf-activity-sphere:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 180, 216, 0.15);
  border-color: var(--vf-primary-flow);
}

.vf-activity-sphere:hover::before {
  transform: scale(1.3) rotate(90deg);
  opacity: 0.8;
}

.vf-activity-content {
  position: relative;
  z-index: 2;
}

.vf-activity-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-primary-flow);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.vf-activity-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin: 0;
  opacity: 0.9;
}

/* Activities Inspiration */
.vf-activities-inspiration {
  position: relative;
}

.vf-inspiration-content {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  padding: clamp(3rem, 6vw, 4rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-inspiration-content::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: vf-gentle-pulse 8s ease-in-out infinite;
}

.vf-inspiration-message {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
  opacity: 0.95;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-activities-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vf-activity-sphere:nth-child(odd),
  .vf-activity-sphere:nth-child(even) {
    transform: rotate(0deg);
  }
  
  .vf-activity-sphere:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

@media (max-width: 480px) {
  .vf-activities-realm {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
  }
  
  .vf-activity-sphere {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
  
  .vf-activities-header {
    margin-bottom: 3rem;
  }
  
  .vf-activities-grid {
    margin-bottom: 3rem;
  }
}

/* Animation */
@keyframes vf-gentle-pulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.1) rotate(180deg);
    opacity: 0.8;
  }
}














/* Contact Page Specific Styles */
.vf-contact-realm {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 8rem);
  background: linear-gradient(160deg, var(--vf-light-embrace) 0%, var(--vf-neutral-mist) 40%, rgba(255, 255, 255, 0.95) 100%);
  overflow: hidden;
}

.vf-contact-realm::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  transform: rotate(-25deg);
}

.vf-contact-realm::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -25%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.03) 0%, transparent 60%);
  border-radius: 50%;
  transform: rotate(15deg);
}

.vf-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* Contact Header */
.vf-contact-header {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
}

.vf-contact-title {
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.vf-contact-essence {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* Contact Information Section */
.vf-contact-info-section {
  margin-bottom: clamp(5rem, 10vw, 8rem);
}

.vf-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.vf-contact-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  text-align: left;
}

.vf-contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.05) 0%, transparent 60%);
  transition: var(--vf-transition-breath);
  z-index: 1;
}

.vf-contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 180, 216, 0.15);
  border-color: var(--vf-primary-flow);
}

.vf-contact-card:hover::before {
  transform: scale(1.3) rotate(45deg);
}

.vf-contact-icon {
  width: clamp(4rem, 8vw, 5rem);
  height: clamp(4rem, 8vw, 5rem);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.vf-location-icon {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.vf-phone-icon {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.vf-contact-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.vf-contact-details {
  position: relative;
  z-index: 2;
}

.vf-contact-label {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--vf-primary-flow);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.vf-contact-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--vf-deep-current);
  margin: 0;
  opacity: 0.9;
}

/* Form Section */
.vf-form-realm {
  margin-bottom: clamp(5rem, 10vw, 8rem);
}

.vf-form-sanctuary {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  padding: clamp(3rem, 6vw, 4rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  box-shadow: 0 25px 60px rgba(0, 180, 216, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.vf-form-sanctuary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.03) 0%, transparent 60%);
  animation: vf-gentle-pulse 12s ease-in-out infinite;
}

.vf-form-crown {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  position: relative;
  z-index: 2;
}

.vf-form-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--vf-deep-current);
  margin-bottom: 1rem;
}

.vf-form-invitation {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--vf-primary-flow);
  font-style: italic;
  opacity: 0.9;
}

/* Form Field Styles (using existing styles from original) */
.vf-field-constellation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: clamp(3rem, 6vw, 4rem);
  position: relative;
  z-index: 2;
}

.vf-input-sphere {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.vf-message-sphere {
  align-items: flex-start;
}

.vf-field-emblem {
  flex-shrink: 0;
  padding-top: 0.5rem;
}

.vf-icon-gem {
  width: clamp(2.5rem, 5vw, 3rem);
  height: clamp(2.5rem, 5vw, 3rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--vf-transition-breath);
}

.vf-phone-icon-form {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.vf-icon-gem::before {
  content: '';
  position: absolute;
  width: 40%;
  height: 40%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Map Section */
.vf-map-section {
  position: relative;
}

.vf-map-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  position: relative;
  overflow: hidden;
}

.vf-map-container::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  animation: vf-orbital-drift 25s linear infinite;
}

.vf-map-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-deep-current);
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.vf-map-wrapper {
  position: relative;
  border-radius: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  height: clamp(300px, 50vw, 400px);
  border: 3px solid rgba(0, 180, 216, 0.2);
  z-index: 2;
}

.vf-map-frame {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.9) brightness(1.05);
  transition: var(--vf-transition-breath);
}

.vf-map-frame:hover {
  filter: saturate(1.1) brightness(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-contact-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vf-contact-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .vf-input-sphere {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .vf-field-emblem {
    padding-top: 0;
  }
  
  .vf-map-wrapper {
    height: clamp(250px, 40vw, 300px);
  }
}

@media (max-width: 480px) {
  .vf-contact-realm {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
  }
  
  .vf-contact-card {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
  
  .vf-form-sanctuary {
    padding: clamp(2rem, 4vw, 3rem);
  }
  
  .vf-map-container {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

/* Animations */
@keyframes vf-orbital-drift {
  0% {
    transform: rotate(0deg) translateX(20px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(20px) rotate(-360deg);
  }
}

@keyframes vf-gentle-pulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.1) rotate(180deg);
    opacity: 0.8;
  }
}














/* Cookies Page Specific Styles */
.vf-cookies-realm {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 8rem);
  background: linear-gradient(170deg, var(--vf-neutral-mist) 0%, var(--vf-light-embrace) 35%, rgba(255, 255, 255, 0.98) 70%, var(--vf-light-embrace) 100%);
  overflow: hidden;
}

.vf-cookies-realm::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -15%;
  width: 50%;
  height: 110%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  transform: rotate(-35deg);
  animation: vf-gentle-drift 20s ease-in-out infinite;
}

.vf-cookies-realm::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -20%;
  width: 45%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.03) 0%, transparent 60%);
  border-radius: 50%;
  transform: rotate(25deg);
  animation: vf-gentle-drift 25s ease-in-out infinite reverse;
}

.vf-cookies-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* Cookies Header */
.vf-cookies-header {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
}

.vf-cookies-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.vf-cookies-essence {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto;
  font-style: italic;
}

/* Policy Content */
.vf-cookies-content {
  position: relative;
}

.vf-policy-cluster {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.vf-policy-sphere {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 2px solid rgba(0, 180, 216, 0.12);
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
}

.vf-policy-sphere::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--vf-transition-breath);
  z-index: 1;
}

.vf-policy-sphere:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.25);
}

.vf-policy-sphere:hover::before {
  transform: scale(1.2) rotate(45deg);
}

.vf-policy-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-primary-flow);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.vf-policy-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin: 0;
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

/* Cookie Types */
.vf-cookie-types {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.vf-cookie-type {
  background: rgba(0, 180, 216, 0.06);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--vf-primary-flow);
  transition: var(--vf-transition-breath);
  position: relative;
}

.vf-cookie-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: var(--vf-transition-breath);
}

.vf-cookie-type:hover {
  transform: translateX(8px);
  background: rgba(0, 180, 216, 0.08);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.1);
}

.vf-cookie-type:hover::before {
  opacity: 1;
}

.vf-cookie-name {
  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  color: var(--vf-deep-current);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.vf-cookie-description {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.6;
  color: var(--vf-deep-current);
  margin: 0;
  opacity: 0.85;
}

/* Choice Note */
.vf-choice-note {
  background: rgba(255, 193, 7, 0.08);
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.vf-note-text {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.6;
  color: var(--vf-deep-current);
  margin: 0;
  font-style: italic;
  opacity: 0.9;
}

/* Wellness Reminder */
.vf-wellness-reminder {
  position: relative;
}

.vf-reminder-content {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  padding: clamp(3rem, 6vw, 4rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-reminder-content::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: vf-orbital-float 18s ease-in-out infinite;
}

.vf-reminder-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.vf-reminder-message {
  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
  opacity: 0.95;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-cookie-types {
    gap: 1.5rem;
  }
  
  .vf-cookie-type:hover {
    transform: translateY(-3px);
  }
  
  .vf-policy-cluster {
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .vf-cookies-realm {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
  }
  
  .vf-policy-sphere {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
  
  .vf-cookies-header {
    margin-bottom: 3rem;
  }
  
  .vf-policy-cluster {
    margin-bottom: 3rem;
    gap: 2rem;
  }
}

/* Animations */
@keyframes vf-gentle-drift {
  0%, 100% {
    transform: translateY(0px) rotate(-35deg);
  }
  50% {
    transform: translateY(-15px) rotate(-30deg);
  }
}

@keyframes vf-orbital-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(10px, -8px) rotate(120deg);
  }
  66% {
    transform: translate(-8px, 5px) rotate(240deg);
  }
}















/* Privacy Page Specific Styles */
.vf-privacy-realm {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(5rem, 10vw, 8rem);
  background: linear-gradient(155deg, var(--vf-light-embrace) 0%, var(--vf-neutral-mist) 30%, rgba(255, 255, 255, 0.97) 65%, var(--vf-light-embrace) 100%);
  overflow: hidden;
}

.vf-privacy-realm::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 45%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(30deg);
  animation: vf-privacy-float 22s ease-in-out infinite;
}

.vf-privacy-realm::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -15%;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.03) 0%, transparent 65%);
  border-radius: 50%;
  transform: rotate(-20deg);
  animation: vf-privacy-float 28s ease-in-out infinite reverse;
}

.vf-privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* Privacy Header */
.vf-privacy-header {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
}

.vf-privacy-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.vf-privacy-essence {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* Privacy Content Flow */
.vf-privacy-content {
  position: relative;
}

.vf-privacy-flow {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.vf-privacy-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 2px solid rgba(0, 180, 216, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--vf-transition-breath);
}

.vf-privacy-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  transition: var(--vf-transition-breath);
  z-index: 1;
}

.vf-privacy-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.2);
}

.vf-privacy-section:hover::before {
  transform: scale(1.3) rotate(90deg);
}

/* Section Markers */
.vf-section-marker {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
}

.vf-marker-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
}

.vf-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-deep-current);
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

/* Section Content */
.vf-section-content {
  position: relative;
  z-index: 2;
}

.vf-section-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  opacity: 0.9;
}

/* Data Types Bubbles */
.vf-data-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.vf-data-bubble {
  background: rgba(0, 180, 216, 0.1);
  color: var(--vf-primary-flow);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  font-weight: 600;
  border: 2px solid rgba(0, 180, 216, 0.2);
  transition: var(--vf-transition-breath);
}

.vf-data-bubble:hover {
  background: var(--vf-primary-flow);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

/* Purpose Grid */
.vf-purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.vf-purpose-card {
  background: rgba(0, 180, 216, 0.06);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  transition: var(--vf-transition-breath);
  position: relative;
  overflow: hidden;
}

.vf-purpose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: var(--vf-transition-breath);
}

.vf-purpose-card:hover {
  transform: translateY(-5px);
  border-color: var(--vf-primary-flow);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.15);
}

.vf-purpose-card:hover::before {
  left: 100%;
}

.vf-purpose-title {
  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  color: var(--vf-primary-flow);
  margin-bottom: 0.75rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.vf-purpose-detail {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.6;
  color: var(--vf-deep-current);
  margin: 0;
  opacity: 0.85;
  position: relative;
  z-index: 2;
}

/* Security Highlight */
.vf-security-highlight {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
  border: 2px solid rgba(46, 204, 113, 0.3);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
}

.vf-security-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(46, 204, 113, 0.1) 0%, transparent 60%);
}

.vf-highlight-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--vf-deep-current);
  margin: 0;
  font-weight: 600;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/* Rights List */
.vf-rights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.vf-right-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 180, 216, 0.15);
  transition: var(--vf-transition-breath);
}

.vf-right-item:hover {
  background: rgba(0, 180, 216, 0.08);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.1);
}

.vf-right-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.vf-right-icon::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

.vf-right-text {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: var(--vf-deep-current);
  font-weight: 600;
}

/* Trust Statement */
.vf-trust-statement {
  position: relative;
}

.vf-statement-content {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  padding: clamp(3rem, 6vw, 4rem);
  border-radius: clamp(3rem, 6vw, 4rem);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-statement-content::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -40%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  animation: vf-trust-pulse 15s ease-in-out infinite;
}

.vf-statement-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.vf-statement-message {
  font-size: clamp(1.125rem, 2.2vw, 1.25rem);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
  opacity: 0.95;
  font-style: italic;
  max-width: 750px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-section-marker {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .vf-purpose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vf-rights-list {
    grid-template-columns: 1fr;
  }
  
  .vf-right-item:hover {
    transform: translateY(-3px);
  }
  
  .vf-data-types {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .vf-privacy-realm {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4rem);
  }
  
  .vf-privacy-section {
    padding: clamp(2rem, 4vw, 2.5rem);
  }
  
  .vf-privacy-header {
    margin-bottom: 3rem;
  }
  
  .vf-privacy-flow {
    margin-bottom: 3rem;
    gap: 2rem;
  }
}

/* Animations */
@keyframes vf-privacy-float {
  0%, 100% {
    transform: translateY(0px) rotate(30deg);
  }
  50% {
    transform: translateY(-20px) rotate(25deg);
  }
}

@keyframes vf-trust-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.7;
  }
}














/* Thank You Page Specific Styles */
.vf-thankyou-realm {
  position: relative;
  min-height: 100vh;
  padding: clamp(8rem, 15vw, 12rem) 0 clamp(5rem, 10vw, 8rem);
  background: linear-gradient(145deg, var(--vf-light-embrace) 0%, var(--vf-neutral-mist) 25%, rgba(255, 255, 255, 0.95) 60%, var(--vf-light-embrace) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.vf-thankyou-realm::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-25deg);
  animation: vf-celebration-float 15s ease-in-out infinite;
}

.vf-thankyou-realm::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -25%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  transform: rotate(20deg);
  animation: vf-celebration-float 20s ease-in-out infinite reverse;
}

.vf-thankyou-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* Thank You Sanctuary */
.vf-thankyou-sanctuary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(25px);
  border-radius: clamp(3rem, 6vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem);
  border: 2px solid rgba(0, 180, 216, 0.15);
  box-shadow: 0 30px 70px rgba(0, 180, 216, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vf-thankyou-sanctuary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
  animation: vf-gentle-pulse 12s ease-in-out infinite;
}

/* Success Emblem */
.vf-success-emblem {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.vf-checkmark-circle {
  width: clamp(5rem, 10vw, 7rem);
  height: clamp(5rem, 10vw, 7rem);
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: vf-success-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
  box-shadow: 0 15px 35px rgba(46, 204, 113, 0.4);
}

.vf-checkmark-circle::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border: 3px solid rgba(46, 204, 113, 0.3);
  border-radius: 50%;
  animation: vf-ripple-effect 2s ease-out infinite;
}

.vf-checkmark {
  width: 40%;
  height: 40%;
  position: relative;
}

.vf-checkmark::before {
  content: '';
  position: absolute;
  left: 20%;
  top: 50%;
  width: 25%;
  height: 10%;
  background: white;
  transform: rotate(-45deg);
  transform-origin: left bottom;
  border-radius: 2px;
  animation: vf-checkmark-draw 0.3s ease-out 0.6s both;
}

.vf-checkmark::after {
  content: '';
  position: absolute;
  left: 20%;
  top: 50%;
  width: 50%;
  height: 10%;
  background: white;
  transform: rotate(45deg);
  transform-origin: left bottom;
  border-radius: 2px;
  animation: vf-checkmark-draw 0.4s ease-out 0.8s both;
}

/* Gratitude Content */
.vf-gratitude-content {
  position: relative;
  z-index: 2;
}

.vf-thankyou-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  animation: vf-title-fade-in 0.8s ease-out 1s both;
}

.vf-thankyou-message {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.7;
  color: var(--vf-deep-current);
  margin-bottom: clamp(3rem, 6vw, 4rem);
  opacity: 0.9;
  animation: vf-message-fade-in 0.8s ease-out 1.2s both;
}

/* Next Steps */
.vf-next-steps {
  margin-bottom: clamp(3rem, 6vw, 4rem);
  animation: vf-steps-fade-in 0.8s ease-out 1.4s both;
}

.vf-steps-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
}

.vf-steps-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.vf-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 200px;
  text-align: center;
}

.vf-step-number {
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

.vf-step-text {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: var(--vf-deep-current);
  margin: 0;
  opacity: 0.85;
}

.vf-step-connector {
  width: clamp(2rem, 4vw, 3rem);
  height: 3px;
  background: linear-gradient(90deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  border-radius: 9999px;
  opacity: 0.6;
}

/* Continue Journey */
.vf-continue-journey {
  animation: vf-journey-fade-in 0.8s ease-out 1.6s both;
}

.vf-journey-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--vf-deep-current);
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
  opacity: 0.85;
  font-style: italic;
}

.vf-action-cluster {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vf-action-button {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(2.5rem, 5vw, 3.5rem);
  border-radius: 9999px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  text-decoration: none;
  transition: var(--vf-transition-breath);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.vf-primary-action {
  background: linear-gradient(135deg, var(--vf-primary-flow) 0%, var(--vf-deep-current) 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
}

.vf-primary-action:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
}

.vf-secondary-action {
  background: rgba(255, 255, 255, 0.8);
  color: var(--vf-deep-current);
  border: 2px solid var(--vf-primary-flow);
  backdrop-filter: blur(10px);
}

.vf-secondary-action:hover {
  background: var(--vf-light-embrace);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .vf-steps-flow {
    flex-direction: column;
    gap: 2rem;
  }
  
  .vf-step-connector {
    width: 3px;
    height: clamp(2rem, 4vw, 3rem);
    transform: rotate(90deg);
  }
  
  .vf-action-cluster {
    flex-direction: column;
    align-items: center;
  }
  
  .vf-action-button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .vf-thankyou-realm {
    padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 4rem);
  }
  
  .vf-thankyou-sanctuary {
    padding: clamp(2rem, 4vw, 3rem);
  }
  
  .vf-steps-flow {
    gap: 1.5rem;
  }
}

/* Animations */
@keyframes vf-celebration-float {
  0%, 100% {
    transform: translateY(0px) rotate(-25deg);
  }
  50% {
    transform: translateY(-25px) rotate(-20deg);
  }
}

@keyframes vf-success-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes vf-ripple-effect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes vf-checkmark-draw {
  0% {
    width: 0;
  }
  100% {
    width: 25%;
  }
}

@keyframes vf-checkmark-draw {
  0% {
    width: 0;
  }
  100% {
    width: var(--final-width, 25%);
  }
}

@keyframes vf-title-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vf-message-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes vf-steps-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vf-journey-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vf-gentle-pulse {
  0%, 100% { 
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }
  50% { 
    transform: scale(1.1) rotate(180deg);
    opacity: 0.8;
  }
}

/* Cookie Alert Styles */
.vf-cookie-alert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 3px solid var(--vf-primary-flow, #00b4d8);
  box-shadow: 0 -10px 40px rgba(0, 180, 216, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.vf-cookie-alert.vf-show {
  transform: translateY(0);
}

.vf-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.vf-cookie-icon {
  flex-shrink: 0;
}

.vf-cookie-emblem {
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  background: linear-gradient(135deg, #ffd43b 0%, #ffe066 100%);
  border-radius: 50%;
  position: relative;
  animation: vf-cookie-float 3s ease-in-out infinite;
}

.vf-cookie-emblem::before {
  content: '🍪';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.vf-cookie-message {
  flex-grow: 1;
  min-width: 0;
}

.vf-cookie-title {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  color: var(--vf-deep-current, #007a92);
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  font-family: 'Georgia', serif;
}

.vf-cookie-text {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: var(--vf-deep-current, #007a92);
  margin: 0;
  opacity: 0.9;
}

.vf-cookie-link {
  color: var(--vf-primary-flow, #00b4d8);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.vf-cookie-link:hover {
  border-bottom-color: var(--vf-primary-flow, #00b4d8);
}

.vf-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vf-cookie-btn {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 9999px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vf-accept-btn {
  background: linear-gradient(135deg, var(--vf-primary-flow, #00b4d8) 0%, var(--vf-deep-current, #007a92) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.vf-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.vf-decline-btn {
  background: rgba(255, 255, 255, 0.8);
  color: var(--vf-deep-current, #007a92);
  border: 2px solid rgba(0, 180, 216, 0.3);
  backdrop-filter: blur(10px);
}

.vf-decline-btn:hover {
  background: rgba(0, 180, 216, 0.1);
  border-color: var(--vf-primary-flow, #00b4d8);
  transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vf-cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .vf-cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .vf-cookie-btn {
    flex: 1;
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .vf-cookie-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .vf-cookie-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Animation */
@keyframes vf-cookie-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Hide scrollbar when alert is shown on mobile */
body.vf-cookie-active {
  overflow-x: hidden;
}