/* ============================================
   Vylentro — Main Stylesheet
   vy- prefix on all custom classes
   ============================================ */

:root {
  --vy-cream: #F7F4EF;
  --vy-warm-white: #FDFBF8;
  --vy-sage: #7A9E8E;
  --vy-sage-light: #A8C4B8;
  --vy-sage-dark: #4E7A6A;
  --vy-blue: #4A7FA5;
  --vy-blue-light: #7BAEC8;
  --vy-blue-pale: #EBF4FA;
  --vy-terracotta: #C07B5A;
  --vy-terracotta-light: #E4AC90;
  --vy-text-dark: #1C2B2A;
  --vy-text-mid: #3D5050;
  --vy-text-light: #6B8080;
  --vy-border: #D8E4DF;
  --vy-shadow: rgba(74, 127, 105, 0.12);
  --vy-font-display: 'Playfair Display', Georgia, serif;
  --vy-font-body: 'Source Serif 4', Georgia, serif;
  --vy-font-ui: 'DM Sans', sans-serif;
  --vy-radius: 12px;
  --vy-radius-lg: 20px;
  --vy-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--vy-warm-white);
  color: var(--vy-text-dark);
  font-family: var(--vy-font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vy-font-display);
  color: var(--vy-text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.25rem; color: var(--vy-text-mid); }
p:last-child { margin-bottom: 0; }

a { color: var(--vy-sage-dark); text-decoration: none; transition: color var(--vy-transition); }
a:hover { color: var(--vy-terracotta); }

.vy-lead {
  font-size: 1.2rem;
  color: var(--vy-text-mid);
  line-height: 1.8;
  font-weight: 400;
}

.vy-section-label {
  font-family: var(--vy-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vy-sage);
  display: block;
  margin-bottom: 0.75rem;
}

/* ============ NAVIGATION ============ */
.vy-navbar {
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vy-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: box-shadow var(--vy-transition);
}

.vy-navbar.vy-scrolled {
  box-shadow: 0 4px 24px var(--vy-shadow);
}

.vy-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.vy-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.vy-logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--vy-sage-dark), var(--vy-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-family: var(--vy-font-display);
  font-weight: 700;
}

.vy-logo-text {
  font-family: var(--vy-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vy-text-dark);
  letter-spacing: -0.02em;
}

.vy-logo-text span { color: var(--vy-sage-dark); }

.vy-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.vy-nav-links a {
  font-family: var(--vy-font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vy-text-mid);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all var(--vy-transition);
}

.vy-nav-links a:hover {
  color: var(--vy-sage-dark);
  background: rgba(122, 158, 142, 0.1);
}

.vy-nav-links a.vy-active {
  color: var(--vy-sage-dark);
  background: rgba(122, 158, 142, 0.12);
}

.vy-nav-cta {
  background: var(--vy-sage-dark) !important;
  color: white !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 8px !important;
}

.vy-nav-cta:hover {
  background: var(--vy-sage) !important;
}

.vy-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.vy-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vy-text-dark);
  border-radius: 2px;
  transition: all var(--vy-transition);
}

/* ============ BUTTONS ============ */
.vy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--vy-font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--vy-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--vy-transition);
  line-height: 1;
}

.vy-btn-primary {
  background: var(--vy-sage-dark);
  color: white;
}

.vy-btn-primary:hover {
  background: var(--vy-sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 122, 106, 0.3);
  color: white;
}

.vy-btn-outline {
  background: transparent;
  color: var(--vy-sage-dark);
  border: 2px solid var(--vy-sage-dark);
}

.vy-btn-outline:hover {
  background: var(--vy-sage-dark);
  color: white;
  transform: translateY(-2px);
}

.vy-btn-light {
  background: white;
  color: var(--vy-sage-dark);
}

.vy-btn-light:hover {
  background: var(--vy-cream);
  color: var(--vy-sage-dark);
  transform: translateY(-2px);
}

.vy-btn-sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
}

/* ============ HERO ============ */
.vy-hero-editorial {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--vy-cream) 0%, #EEF5F2 50%, var(--vy-blue-pale) 100%);
  overflow: hidden;
}

.vy-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.vy-shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.vy-shape-blob-1 {
  width: 600px; height: 600px;
  background: var(--vy-sage);
  top: -200px; right: -100px;
}

.vy-shape-blob-2 {
  width: 400px; height: 400px;
  background: var(--vy-blue);
  bottom: -100px; left: -150px;
}

.vy-shape-blob-3 {
  width: 300px; height: 300px;
  background: var(--vy-terracotta);
  top: 40%; left: 30%;
  opacity: 0.08;
}

.vy-hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--vy-sage) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.06;
}

.vy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.vy-hero-text { }

.vy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 158, 142, 0.15);
  border: 1px solid rgba(122, 158, 142, 0.3);
  color: var(--vy-sage-dark);
  font-family: var(--vy-font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.vy-hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.vy-hero-title em {
  font-style: italic;
  color: var(--vy-sage-dark);
}

.vy-hero-description {
  font-size: 1.15rem;
  color: var(--vy-text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.vy-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.vy-hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--vy-border);
}

.vy-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--vy-font-ui);
  font-size: 0.85rem;
  color: var(--vy-text-light);
}

.vy-hero-trust-item i {
  color: var(--vy-sage);
  font-size: 1rem;
}

.vy-hero-visual {
  position: relative;
}

.vy-hero-image-main {
  width: 100%;
  border-radius: var(--vy-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  position: relative;
}

.vy-hero-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.vy-hero-image-float {
  position: absolute;
  width: 180px;
  border-radius: var(--vy-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border: 4px solid white;
}

.vy-hero-image-float img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.vy-hero-float-1 { bottom: -30px; left: -30px; }
.vy-hero-float-2 { top: -20px; right: -20px; }

.vy-hero-stat-card {
  position: absolute;
  background: white;
  border-radius: var(--vy-radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 1px solid var(--vy-border);
  bottom: 40px;
  right: -20px;
  min-width: 160px;
}

.vy-hero-stat-card .vy-stat-number {
  font-family: var(--vy-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vy-sage-dark);
  line-height: 1;
}

.vy-hero-stat-card .vy-stat-label {
  font-family: var(--vy-font-ui);
  font-size: 0.75rem;
  color: var(--vy-text-light);
  margin-top: 0.2rem;
}

/* ============ WAVE DIVIDER ============ */
.vy-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.vy-wave svg { display: block; }

/* ============ SECTIONS ============ */
.vy-section {
  padding: 5rem 0;
}

.vy-section-sm { padding: 3rem 0; }
.vy-section-lg { padding: 7rem 0; }

.vy-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vy-section-header {
  margin-bottom: 3.5rem;
}

.vy-section-header.vy-centered {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.vy-section-subtitle {
  font-size: 1.1rem;
  color: var(--vy-text-light);
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* ============ LEARNING PATH SELECTOR ============ */
.vy-path-selector {
  background: var(--vy-cream);
  border-radius: var(--vy-radius-lg);
  padding: 3rem;
}

.vy-path-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.vy-path-tab {
  font-family: var(--vy-font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--vy-border);
  background: white;
  color: var(--vy-text-mid);
  cursor: pointer;
  transition: all var(--vy-transition);
}

.vy-path-tab:hover, .vy-path-tab.vy-active {
  background: var(--vy-sage-dark);
  border-color: var(--vy-sage-dark);
  color: white;
}

.vy-path-content { display: none; }
.vy-path-content.vy-active { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.vy-path-info h3 { margin-bottom: 1rem; }
.vy-path-info p { color: var(--vy-text-mid); }

.vy-path-steps { list-style: none; }
.vy-path-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--vy-border);
  font-family: var(--vy-font-ui);
  font-size: 0.95rem;
  color: var(--vy-text-mid);
}

.vy-path-steps li:last-child { border-bottom: none; }

.vy-step-num {
  width: 28px;
  height: 28px;
  background: var(--vy-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.vy-path-visual {
  border-radius: var(--vy-radius);
  overflow: hidden;
}

.vy-path-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ============ CONFIDENCE SLIDER ============ */
.vy-slider-section {
  background: linear-gradient(135deg, var(--vy-sage-dark), var(--vy-blue));
  color: white;
  border-radius: var(--vy-radius-lg);
  padding: 3rem;
}

.vy-slider-section h3 { color: white; margin-bottom: 0.5rem; }
.vy-slider-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.vy-confidence-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  outline: none;
  margin-bottom: 1rem;
}

.vy-confidence-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.vy-slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--vy-font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.vy-slider-suggestion {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--vy-radius);
  padding: 1.5rem;
  transition: all var(--vy-transition);
}

.vy-slider-suggestion h4 { color: white; margin-bottom: 0.5rem; }
.vy-slider-suggestion p { color: rgba(255,255,255,0.85); margin-bottom: 0; font-size: 0.95rem; }

/* ============ STATS ============ */
.vy-stats-section {
  background: var(--vy-cream);
}

.vy-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.vy-stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: var(--vy-radius);
  border: 1px solid var(--vy-border);
  transition: transform var(--vy-transition), box-shadow var(--vy-transition);
}

.vy-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--vy-shadow);
}

.vy-stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--vy-sage-light), var(--vy-sage));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: white;
}

.vy-stat-number {
  font-family: var(--vy-font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--vy-sage-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vy-stat-suffix {
  font-size: 1.5rem;
  color: var(--vy-terracotta);
}

.vy-stat-label {
  font-family: var(--vy-font-ui);
  font-size: 0.9rem;
  color: var(--vy-text-light);
}

/* ============ SERVICE CARDS ============ */
.vy-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vy-service-card {
  background: white;
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius-lg);
  overflow: hidden;
  transition: all var(--vy-transition);
  cursor: pointer;
}

.vy-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px var(--vy-shadow);
  border-color: var(--vy-sage-light);
}

.vy-service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.vy-service-card-body {
  padding: 1.75rem;
}

.vy-service-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--vy-sage-light), var(--vy-blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1.25rem;
}

.vy-service-card-body h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.vy-service-card-body p { font-size: 0.95rem; color: var(--vy-text-light); }

.vy-service-expand {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.vy-service-expand.vy-open { max-height: 300px; }

.vy-service-expand-inner {
  padding: 1rem 1.75rem 1.75rem;
  border-top: 1px solid var(--vy-border);
  font-size: 0.9rem;
  color: var(--vy-text-mid);
}

.vy-service-toggle-btn {
  font-family: var(--vy-font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vy-sage-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

/* ============ TESTIMONIALS ============ */
.vy-testimonials-section {
  background: linear-gradient(180deg, var(--vy-warm-white) 0%, var(--vy-cream) 100%);
}

.vy-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.vy-testimonial-card {
  background: white;
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--vy-transition);
}

.vy-testimonial-card:hover {
  box-shadow: 0 16px 48px var(--vy-shadow);
  transform: translateY(-3px);
}

.vy-testimonial-card::before {
  content: '\201C';
  font-family: var(--vy-font-display);
  font-size: 5rem;
  color: var(--vy-sage-light);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  opacity: 0.4;
}

.vy-testimonial-stars {
  color: #F4A823;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.vy-testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--vy-text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.vy-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.vy-testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--vy-sage-light);
}

.vy-testimonial-name {
  font-family: var(--vy-font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vy-text-dark);
}

.vy-testimonial-role {
  font-family: var(--vy-font-ui);
  font-size: 0.8rem;
  color: var(--vy-text-light);
}

/* ============ TEAM ============ */
.vy-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vy-team-card {
  text-align: center;
  transition: transform var(--vy-transition);
}

.vy-team-card:hover { transform: translateY(-4px); }

.vy-team-photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.vy-team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.vy-team-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  background: var(--vy-sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  border: 3px solid white;
}

.vy-team-name {
  font-family: var(--vy-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.vy-team-role {
  font-family: var(--vy-font-ui);
  font-size: 0.85rem;
  color: var(--vy-sage-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.vy-team-bio {
  font-size: 0.92rem;
  color: var(--vy-text-light);
  line-height: 1.7;
}

/* ============ QUOTE CAROUSEL ============ */
.vy-quote-carousel {
  background: var(--vy-sage-dark);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vy-quote-item {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.vy-quote-item.vy-active {
  display: block;
  opacity: 1;
}

.vy-quote-text {
  font-family: var(--vy-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  max-width: 740px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
}

.vy-quote-author {
  font-family: var(--vy-font-ui);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.vy-quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.vy-quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--vy-transition);
  padding: 0;
}

.vy-quote-dot.vy-active { background: white; width: 24px; border-radius: 4px; }

/* ============ TRANSPARENCY SECTION ============ */
.vy-transparency {
  background: var(--vy-cream);
  border-top: 1px solid var(--vy-border);
  border-bottom: 1px solid var(--vy-border);
}

.vy-transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.vy-transparency-item {
  text-align: center;
  padding: 1.5rem;
}

.vy-transparency-icon {
  width: 56px;
  height: 56px;
  background: rgba(122, 158, 142, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--vy-sage-dark);
}

.vy-transparency-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.vy-transparency-item p {
  font-size: 0.85rem;
  color: var(--vy-text-light);
}

/* ============ IMAGE GRID ============ */
.vy-image-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.vy-mosaic-img {
  border-radius: var(--vy-radius);
  overflow: hidden;
  width: 100%;
}

.vy-mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.vy-mosaic-img:hover img { transform: scale(1.04); }
.vy-mosaic-img-lg { grid-row: span 2; height: 400px; }
.vy-mosaic-img-sm { height: 190px; }

/* ============ FOOTER ============ */
.vy-footer {
  background: var(--vy-text-dark);
  color: rgba(255,255,255,0.7);
}

.vy-footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vy-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.vy-footer-brand .vy-logo-text { color: white; }
.vy-footer-brand .vy-logo-text span { color: var(--vy-sage-light); }

.vy-footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: rgba(255,255,255,0.55);
}

.vy-footer-heading {
  font-family: var(--vy-font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.vy-footer-links { list-style: none; }
.vy-footer-links li { margin-bottom: 0.6rem; }
.vy-footer-links a {
  color: rgba(255,255,255,0.6);
  font-family: var(--vy-font-ui);
  font-size: 0.9rem;
  transition: color var(--vy-transition);
}
.vy-footer-links a:hover { color: var(--vy-sage-light); }

.vy-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-family: var(--vy-font-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.vy-footer-contact-item i { color: var(--vy-sage-light); margin-top: 3px; flex-shrink: 0; }

.vy-footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.vy-footer-bottom p {
  font-family: var(--vy-font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.vy-footer-legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.vy-footer-legal-links a {
  font-family: var(--vy-font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.vy-footer-legal-links a:hover { color: var(--vy-sage-light); }

/* ============ COOKIE BANNER ============ */
.vy-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vy-text-dark);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid var(--vy-sage);
}

.vy-cookie-banner.vy-show { transform: translateY(0); }

.vy-cookie-text {
  flex: 1;
  min-width: 280px;
  font-family: var(--vy-font-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}

.vy-cookie-text a { color: var(--vy-sage-light); }

.vy-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.vy-cookie-accept {
  background: var(--vy-sage-dark);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-family: var(--vy-font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.vy-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-family: var(--vy-font-ui);
  font-size: 0.88rem;
  cursor: pointer;
}

/* ============ FORMS ============ */
.vy-form-group { margin-bottom: 1.5rem; }

.vy-form-label {
  display: block;
  font-family: var(--vy-font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vy-text-dark);
  margin-bottom: 0.5rem;
}

.vy-form-label .vy-required { color: var(--vy-terracotta); margin-left: 3px; }

.vy-form-input,
.vy-form-select,
.vy-form-textarea {
  width: 100%;
  background: white;
  border: 1.5px solid var(--vy-border);
  border-radius: var(--vy-radius);
  padding: 0.875rem 1.125rem;
  font-family: var(--vy-font-ui);
  font-size: 0.95rem;
  color: var(--vy-text-dark);
  transition: border-color var(--vy-transition), box-shadow var(--vy-transition);
  outline: none;
}

.vy-form-input:focus,
.vy-form-select:focus,
.vy-form-textarea:focus {
  border-color: var(--vy-sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 142, 0.15);
}

.vy-form-input.vy-error,
.vy-form-textarea.vy-error {
  border-color: #E05555;
  box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.12);
}

.vy-form-error-msg {
  font-family: var(--vy-font-ui);
  font-size: 0.82rem;
  color: #C0392B;
  margin-top: 0.4rem;
  display: none;
}

.vy-form-error-msg.vy-show { display: block; }
.vy-form-textarea { min-height: 140px; resize: vertical; }

/* ============ PAGE HERO ============ */
.vy-page-hero {
  background: linear-gradient(135deg, var(--vy-cream), #EEF5F2);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--vy-border);
  position: relative;
  overflow: hidden;
}

.vy-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122,158,142,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.vy-breadcrumb {
  font-family: var(--vy-font-ui);
  font-size: 0.85rem;
  color: var(--vy-text-light);
  margin-bottom: 1rem;
}

.vy-breadcrumb a { color: var(--vy-sage-dark); }
.vy-breadcrumb span { margin: 0 0.4rem; }

/* ============ ARTICLE LAYOUT ============ */
.vy-article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.vy-article-body h2, .vy-article-body h3 { margin-top: 2rem; margin-bottom: 1rem; }
.vy-article-body img { width: 100%; border-radius: var(--vy-radius); margin: 1.5rem 0; }
.vy-article-body p { font-size: 1.05rem; line-height: 1.85; }
.vy-article-body ul, .vy-article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.vy-article-body li { margin-bottom: 0.5rem; color: var(--vy-text-mid); }

.vy-article-sidebar { position: sticky; top: 100px; }

.vy-sidebar-card {
  background: var(--vy-cream);
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.vy-article-img-pull {
  float: right;
  width: 45%;
  margin: 0 0 1.5rem 2rem;
  border-radius: var(--vy-radius);
}

.vy-article-img-pull img { width: 100%; border-radius: var(--vy-radius); }

.vy-callout {
  background: var(--vy-blue-pale);
  border-left: 4px solid var(--vy-blue);
  border-radius: 0 var(--vy-radius) var(--vy-radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.vy-callout p { margin: 0; color: var(--vy-blue); font-size: 0.95rem; }

/* ============ ABOUT TIMELINE ============ */
.vy-timeline { position: relative; padding: 2rem 0; }

.vy-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vy-border);
  transform: translateX(-50%);
}

.vy-timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

.vy-timeline-content {
  background: white;
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius);
  padding: 1.5rem;
}

.vy-timeline-item:nth-child(even) .vy-timeline-content:first-child { order: 3; }
.vy-timeline-item:nth-child(even) .vy-timeline-dot { order: 2; }
.vy-timeline-item:nth-child(even) .vy-timeline-empty { order: 1; }

.vy-timeline-dot {
  width: 44px;
  height: 44px;
  background: var(--vy-sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  justify-self: center;
  border: 4px solid var(--vy-warm-white);
  position: relative;
  z-index: 1;
}

.vy-timeline-year {
  font-family: var(--vy-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vy-sage);
  margin-bottom: 0.4rem;
}

/* ============ FAQ ACCORDION ============ */
.vy-faq-item {
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.vy-faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--vy-font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vy-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--vy-transition);
}

.vy-faq-question:hover { background: var(--vy-cream); }
.vy-faq-question i { color: var(--vy-sage); font-size: 0.85rem; flex-shrink: 0; transition: transform var(--vy-transition); }
.vy-faq-question.vy-open i { transform: rotate(180deg); }

.vy-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.vy-faq-answer.vy-open { max-height: 400px; }

.vy-faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--vy-text-mid);
  line-height: 1.75;
}

/* ============ MAP ============ */
.vy-map-wrap {
  border-radius: var(--vy-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vy-border);
}

.vy-map-wrap iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============ LEGAL PAGES ============ */
.vy-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.vy-legal-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.vy-legal-content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; font-size: 1.2rem; }
.vy-legal-content p { line-height: 1.85; }
.vy-legal-content ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.vy-legal-content li { margin-bottom: 0.5rem; color: var(--vy-text-mid); }

.vy-legal-meta {
  background: var(--vy-cream);
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--vy-font-ui);
  font-size: 0.88rem;
  color: var(--vy-text-light);
}

/* ============ SERVICES PAGE ============ */
.vy-service-full {
  background: white;
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.vy-service-full-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.vy-service-full-body { padding: 2.5rem; }

.vy-service-disclaimer {
  background: var(--vy-cream);
  border: 1px solid var(--vy-border);
  border-radius: var(--vy-radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--vy-font-ui);
  font-size: 0.88rem;
  color: var(--vy-text-light);
}

.vy-service-suitability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.vy-suitability-box {
  border-radius: var(--vy-radius);
  padding: 1.25rem;
}

.vy-suitability-box.vy-suitable { background: rgba(122, 158, 142, 0.08); border: 1px solid rgba(122, 158, 142, 0.2); }
.vy-suitability-box.vy-not-suitable { background: rgba(192, 123, 90, 0.06); border: 1px solid rgba(192, 123, 90, 0.15); }

.vy-suitability-box h4 { margin-bottom: 0.75rem; font-size: 0.95rem; }
.vy-suitability-box ul { padding-left: 1.25rem; margin: 0; }
.vy-suitability-box li { font-size: 0.88rem; color: var(--vy-text-mid); margin-bottom: 0.35rem; }

/* ============ THANK YOU PAGE ============ */
.vy-thankyou-center {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.vy-thankyou-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--vy-sage-light), var(--vy-sage-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .vy-hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .vy-hero-visual { max-width: 500px; margin: 0 auto; }
  .vy-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vy-services-grid { grid-template-columns: 1fr 1fr; }
  .vy-article-layout { grid-template-columns: 1fr; }
  .vy-article-sidebar { position: static; }
  .vy-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .vy-transparency-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vy-nav-links { display: none; }
  .vy-nav-links.vy-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--vy-warm-white);
    border-bottom: 1px solid var(--vy-border);
    padding: 1rem;
    gap: 0.25rem;
    z-index: 999;
  }
  .vy-hamburger { display: flex; }
  .vy-navbar-inner { flex-wrap: wrap; position: relative; }
  .vy-services-grid { grid-template-columns: 1fr; }
  .vy-testimonials-grid { grid-template-columns: 1fr; }
  .vy-team-grid { grid-template-columns: 1fr 1fr; }
  .vy-stats-grid { grid-template-columns: 1fr 1fr; }
  .vy-footer-grid { grid-template-columns: 1fr; }
  .vy-path-content.vy-active { grid-template-columns: 1fr; }
  .vy-transparency-grid { grid-template-columns: 1fr 1fr; }
  .vy-image-mosaic { grid-template-columns: 1fr 1fr; }
  .vy-mosaic-img-lg { grid-column: span 2; grid-row: auto; height: 250px; }
  .vy-timeline::before { left: 22px; }
  .vy-timeline-item { grid-template-columns: 44px 1fr; }
  .vy-timeline-item .vy-timeline-empty { display: none; }
  .vy-service-suitability { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vy-hero-content { padding: 4rem 1.5rem 3rem; }
  .vy-hero-actions { flex-direction: column; }
  .vy-team-grid { grid-template-columns: 1fr; }
  .vy-transparency-grid { grid-template-columns: 1fr; }
  .vy-footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ UTILITY ============ */
.vy-text-center { text-align: center; }
.vy-text-sage { color: var(--vy-sage-dark); }
.vy-bg-cream { background: var(--vy-cream); }
.vy-bg-dark { background: var(--vy-text-dark); }
.vy-mt-1 { margin-top: 0.5rem; }
.vy-mt-2 { margin-top: 1rem; }
.vy-mt-3 { margin-top: 1.5rem; }
.vy-mb-4 { margin-bottom: 2rem; }
.vy-gap-1 { gap: 0.5rem; }
.vy-d-flex { display: flex; }
.vy-align-center { align-items: center; }
.vy-justify-center { justify-content: center; }

.vy-divider {
  height: 1px;
  background: var(--vy-border);
  margin: 2rem 0;
}


.vy-logo img{
  max-width: 150px;
  object-fit: contain;
}

footer .vy-logo img{
  filter: brightness(0) invert(1);
}