/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
    --yv-card-status-icon-color: #787878bf;
    --yv-coral: #D95F3B;
    --yv-amber: #E9960A;
    --yv-gold: #F2C12E;
    --yv-sienna: #B04A23;
    --yv-peach: #FADADC;
    --yv-blush: #FEF3EC;
    --yv-cream: #FFFCF7;
    --yv-sand: #F7EFE3;
    --yv-bark: #5C3317;
    --yv-ink: #231A10;
    --yv-muted: #6C513D;
    --yv-light: #C9A87C;
    --yv-grad-sun: linear-gradient(120deg, #D95F3B 0%, #E9960A 55%, #F2C12E 100%);
    --yv-grad-sun-light: linear-gradient(120deg, #E8906A 0%, #F0B045 55%, #F5CE60 100%);
    --yv-grad-warm: linear-gradient(160deg, #FFFCF7 0%, #FEF3EC 100%);
    --yv-grad-deep: linear-gradient(160deg, #231A10 0%, #3a2510 100%);
    --yv-shadow-card: 0 4px 32px rgba(92,51,23,.10);
    --yv-shadow-lift: 0 16px 56px rgba(92,51,23,.16);
    --yv-radius-sm: 12px;
    --yv-radius-md: 20px;
    --yv-radius-lg: 32px;
    --yv-font-display: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --yv-font-body: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --yv-font-mono: "Segoe UI", SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ── SVG icon base ── */
.yvi {
  display: inline-block;
  width: 1em; height: 1em;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BASE RESET
═══════════════════════════════════════════ */
.yv-home * { box-sizing: border-box; }
.yv-home {
  font-family: var(--yv-font-body);
  color: var(--yv-ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.yv-home img { max-width: 100%; display: block; }
.yv-home a { text-decoration: none; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.main-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  height: 68px; display: flex; align-items: center;
  background: rgba(255,252,247,.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(233,150,10,.12);
  box-shadow: 0 2px 20px rgba(92,51,23,.06);
  transition: box-shadow .3s;
}
.main-navbar.scrolled {
  box-shadow: 0 4px 28px rgba(92,51,23,.13);
  background: rgba(255,252,247,.98);
}

body { padding-top: 68px; }

.yv-nav-inner {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; gap: 0;
}

/* ── Logo ── */
.yv-logo-wrap {
  display: flex; align-items: center; gap: .45rem;
  text-decoration: none; margin-right: auto; flex-shrink: 0;
}
.yv-logo-text {
  font-family: var(--yv-font-display);
  font-size: 1.65rem; font-weight: 700;
  color: var(--yv-ink); letter-spacing: -.5px; line-height: 1;
}
.yv-logo-text span {
  background: var(--yv-grad-sun);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.yv-logo-badge {
  font-family: var(--yv-font-mono); font-size: .55rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--yv-muted);
  border: 1px solid rgba(156,117,88,.3);
  border-radius: 60px; padding: .2rem .55rem;
}

/* ── Desktop nav links ── */
.yv-nav-items {
  display: flex; align-items: center; gap: 2px; margin-right: 1rem;
}
.yv-nav-items a {
  padding: 6px 12px; font-size: .86rem; font-weight: 500;
  color: var(--yv-bark); border-radius: 8px;
  text-decoration: none;
  transition: background .18s, color .18s; white-space: nowrap;
}
.yv-nav-items a:hover { background: rgba(217,95,59,.08); color: var(--yv-coral); }

/* ── Auth area ── */
.yv-nav-auth { display: flex; align-items: center; gap: 8px; }

.yv-nav-login {
  padding: 7px 16px; font-size: .86rem; font-weight: 600;
  color: var(--yv-bark); border-radius: 8px;
  border: 1.5px solid rgba(92,51,23,.2); background: #fff;
  text-decoration: none; transition: all .18s; white-space: nowrap;
}
.yv-nav-login:hover { border-color: var(--yv-coral); color: var(--yv-coral); }

.yv-nav-signup {
  padding: 8px 18px; font-size: .86rem; font-weight: 600;
  background: var(--yv-grad-sun); color: #fff; border-radius: 8px;
  box-shadow: 0 4px 16px rgba(217,95,59,.32); text-decoration: none;
  transition: all .18s; white-space: nowrap;
}
.yv-nav-signup:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(217,95,59,.44); color: #fff; }

/* ── Icon buttons (bell, avatar) ── */
.yv-nav-icon-btn { position: relative; }
.yv-nav-icon-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--yv-bark); font-size: 1rem;
  /*border: 1.5px solid rgba(92,51,23,.12); */
  background: #fff;
  text-decoration: none; transition: background .18s, color .18s, border-color .18s;
  border: none;
  outline: none;
}
.yv-nav-icon-link:hover { background: rgba(217,95,59,.08); color: var(--yv-coral); border-color: rgba(217,95,59,.22); }

.yv-avatar-link { padding: 2px; border-color: rgba(217,95,59,.25); }
.yv-avatar-img  { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; display: block; }

/* ── User dropdown ── */
.yv-user-menu { position: relative; }

.yv-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 232px; background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(233,150,10,.14);
  box-shadow: 0 12px 40px rgba(92,51,23,.16);
  padding: .35rem;
  display: none;
  z-index: 1040;
}
/* open via JS click toggle only */
.yv-user-menu.open .yv-dropdown  { display: block; }

/* ── Notification dropdown ── */
.notification-pane { position: relative; }
.notification-pane .yv-notif-dropdown { display: none; }
.notification-pane.open .yv-notif-dropdown { display: block; }
.yv-notif-dropdown {
  position: fixed; top: 60px; right: 1rem;
  width: min(360px, calc(100vw - 2rem)); max-height: 480px;
  overflow-x: hidden; overflow-y: auto;
  padding: 0; list-style: none; margin: 0;
  border: 1.5px solid rgba(233,150,10,.15);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(92,51,23,.16);
  background: #fff;
  z-index: 1040;
  scrollbar-width: thin;
  scrollbar-color: rgba(233,150,10,.25) transparent;
}
.yv-notif-dropdown::-webkit-scrollbar { width: 4px; }
.yv-notif-dropdown::-webkit-scrollbar-thumb { background: rgba(233,150,10,.3); border-radius: 4px; }

.yv-dropdown-head {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem 1rem;
  background: var(--yv-grad-sun);
  border-radius: 12px;
  margin-bottom: .25rem;
}
.yv-dropdown-av {
  width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.5);
}
.yv-dropdown-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yv-dropdown-name {
  font-family: var(--yv-font-display);
  font-size: .97rem; font-weight: 700;
  color: #fff; line-height: 1.2; text-transform: capitalize;
}
.yv-dropdown-role {
    font-size: .73rem;
    color: rgba(255,255,255,.82);
    margin-top: .15rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-bottom: initial;
}

.yv-dd-sep { height: 1px; background: rgba(233,150,10,.1); margin: .25rem .5rem; }

.yv-dd-item {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--yv-font-body); font-size: .85rem;
  color: var(--yv-bark); border-radius: 9px;
  padding: .5rem .85rem; margin: .05rem 0;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.yv-dd-item .fa { width: 15px; text-align: center; color: var(--yv-coral); font-size: .88rem; }
.yv-dd-item:hover { background: rgba(217,95,59,.07); color: var(--yv-coral); }

.yv-dd-signout { color: #c0392b !important; }
.yv-dd-signout .fa { color: #c0392b !important; }
.yv-dd-signout:hover { background: rgba(192,57,43,.07) !important; color: #c0392b !important; }

/* ── Hamburger ── */
.yv-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1.5px solid rgba(92,51,23,.18);
  border-radius: 10px; cursor: pointer; padding: 9px 10px;
  margin-left: 12px; transition: border-color .18s;
}
.yv-hamburger:hover { border-color: var(--yv-coral); }
.yv-hamburger span { width: 20px; height: 2px; background: var(--yv-bark); border-radius: 2px; display: block; }

/* ── Mobile backdrop ── */
.yv-mob-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(35,26,16,.42); z-index: 1031;
  opacity: 0; transition: opacity .3s ease;
}
.yv-mob-backdrop.open { display: block; opacity: 1; }

/* ── Mobile slide-in overlay ── */
.yv-mob-nav {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 86vw;
  background: #fff; z-index: 1032;
/*  padding: 20px 0 40px;*/
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(35,26,16,.14);
}
.yv-mob-nav.open { transform: translateX(0); }

.yv-mob-close {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; font-size: 18px;
  color: var(--yv-bark); cursor: pointer; padding: 8px 10px;
  border-radius: 8px; line-height: 1; transition: background .2s, color .2s;
}
.yv-mob-close:hover { background: rgba(217,95,59,.08); color: var(--yv-coral); }

.yv-mob-logo {
  display: block; padding: 12px 24px 18px;
  border-bottom: 1px solid rgba(233,150,10,.12);
  font-family: var(--yv-font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--yv-ink); text-decoration: none; margin-bottom: 4px;
}
.yv-mob-logo span {
  background: var(--yv-grad-sun);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* nav links inside mobile overlay */
.yv-mob-nav a:not(.yv-mob-close):not(.yv-mob-logo):not(.yv-mob-link):not(.yv-mob-btn-login):not(.yv-mob-btn-signup):not(.yv-mob-signout):not(.yv-avatar-link):not(.yv-dd-item) {
  display: block; padding: 13px 24px;
  border-bottom: 1px solid rgba(233,150,10,.07);
  font-size: .97rem; font-weight: 600; color: var(--yv-ink);
  text-decoration: none; transition: color .18s, background .18s;
}
.yv-mob-nav a:not(.yv-mob-close):not(.yv-mob-logo):not(.yv-mob-link):not(.yv-mob-btn-login):not(.yv-mob-btn-signup):not(.yv-mob-signout):not(.yv-avatar-link):not(.yv-dd-item):hover {
  color: var(--yv-coral); background: rgba(217,95,59,.05);
}

/* Dropdown inside mobile nav — expand inline, not floating */
.yv-mob-nav .yv-user-menu { position: static; width: 100%; }
.yv-mob-nav .yv-user-menu:hover .yv-dropdown { display: none; }
.yv-mob-nav .yv-user-menu.open .yv-dropdown  { display: block; }
.yv-mob-nav .yv-dropdown {
  position: static; min-width: unset; width: 100%;
  border-radius: 0; box-shadow: none;
  border-top: 1px solid rgba(233,150,10,.12);
  margin: 0;
}
.yv-mob-nav .yv-dropdown-head {
  background: linear-gradient(135deg,var(--yv-bark) 0%,#8b5e3c 100%);
}
.yv-mob-nav .yv-avatar-link {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(233,150,10,.07);
  text-decoration: none;
}
.yv-mob-nav .yv-avatar-img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(217,95,59,.4); flex-shrink: 0;
}

.yv-mob-sep { height: 1px; background: rgba(233,150,10,.15); margin: 4px 0; }

/* Mobile user card */
.yv-mob-user {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  background: rgba(233,150,10,.05);
}
.yv-mob-av {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(217,95,59,.3); flex-shrink: 0;
}
.yv-mob-uname {
  font-weight: 600; font-size: .93rem; color: var(--yv-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.yv-mob-urole {
  font-size: .75rem; color: var(--yv-muted); margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Mobile auth action links */
.yv-mob-link {
  display: block; padding: 12px 24px;
  border-bottom: 1px solid rgba(233,150,10,.07);
  font-size: .92rem; font-weight: 500; color: var(--yv-muted);
  text-decoration: none; transition: color .18s, background .18s;
}
.yv-mob-link .fa { margin-right: .5rem; color: var(--yv-coral); width: 14px; text-align: center; }
.yv-mob-link:hover { color: var(--yv-coral); background: rgba(217,95,59,.05); }

.yv-mob-signout {
  display: block; padding: 12px 24px;
  font-size: .92rem; font-weight: 500; color: #c0392b;
  text-decoration: none; transition: background .18s;
}
.yv-mob-signout .fa { margin-right: .5rem; }
.yv-mob-signout:hover { background: rgba(192,57,43,.06); }

.yv-mob-btn-login {
  display: block; margin: 14px 24px 6px;
  padding: 11px 16px; text-align: center;
  border: 1.5px solid rgba(92,51,23,.2); border-radius: 8px;
  font-size: .93rem; font-weight: 600; color: var(--yv-bark);
  text-decoration: none; transition: all .18s;
}
.yv-mob-btn-login:hover { border-color: var(--yv-coral); color: var(--yv-coral); }

.yv-mob-btn-signup {
  display: block; margin: 6px 24px;
  padding: 12px 16px; text-align: center;
  background: var(--yv-grad-sun); border-radius: 8px;
  font-size: .93rem; font-weight: 600; color: #fff;
  text-decoration: none; box-shadow: 0 4px 16px rgba(217,95,59,.3);
  transition: box-shadow .18s, transform .18s;
}
.yv-mob-btn-signup:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(217,95,59,.4); }

/* ══════════════════════════════════════════
   UNDER REVIEW PAGE
══════════════════════════════════════════ */
.yv-ur-wrap {
  min-height: calc(100vh - 68px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 64px 24px;
  background: var(--yv-grad-warm);
  text-align: center;
}

/* Pulsing icon */
.yv-ur-icon-ring {
  position: relative; width: 104px; height: 104px; margin-bottom: 36px;
}
.yv-ur-pulse {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,95,59,.20) 0%, transparent 68%);
  animation: ur-pulse 2.2s ease-in-out infinite;
}
@keyframes ur-pulse {
  0%,100% { transform: scale(1);   opacity: .8; }
  50%      { transform: scale(1.4); opacity: .25; }
}
.yv-ur-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--yv-grad-sun);
  box-shadow: 0 8px 32px rgba(217,95,59,.38);
}
.yv-ur-icon .fa { font-size: 2.6rem; color: #fff; }

/* Heading */
.yv-ur-title {
  font-family: var(--yv-font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; color: var(--yv-bark);
  letter-spacing: -.5px; margin: 0 0 20px;
}

/* Message body */
.yv-ur-msg {
  font-size: 1.05rem; line-height: 1.8; color: var(--yv-ink);
  max-width: 560px; margin: 0 auto 10px;
}

/* Thanks */
.yv-ur-thanks {
  font-size: 1rem; font-weight: 600; color: var(--yv-muted);
  margin: 0 0 40px;
}

/* Action buttons */
.yv-ur-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.yv-ur-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 32px; border-radius: 50px;
  background: var(--yv-grad-sun); color: #fff;
  font-size: .97rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 6px 24px rgba(217,95,59,.35);
  transition: transform .2s, box-shadow .2s;
}
.yv-ur-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(217,95,59,.45); color: #fff; }
.yv-ur-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 32px; border-radius: 50px;
  border: 2px solid var(--yv-coral); color: var(--yv-coral);
  font-size: .97rem; font-weight: 700; text-decoration: none;
  background: transparent;
  transition: background .2s, color .2s, transform .2s;
}
.yv-ur-btn-outline:hover { background: var(--yv-coral); color: #fff; transform: translateY(-2px); }

/* Blocked variant */
.yv-ur-pulse--red {
  background: radial-gradient(circle, rgba(192,57,43,.22) 0%, transparent 68%);
}
.yv-ur-icon--red {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  box-shadow: 0 8px 32px rgba(192,57,43,.38);
}

/* ── Responsive breakpoints ── */
@media (max-width: 991px) {
  .yv-nav-items, .yv-nav-auth { display: none; }
  .yv-hamburger { display: flex; }
  .yv-nav-inner { padding: 0 1.2rem; }
}
@media (max-width: 480px) {
  .yv-nav-inner { padding: 0 1rem; }
  .yv-logo-text { font-size: 1.4rem; }
  .yv-logo-badge { display: none; }
}


/* FOOTER — THEME */
.yv-footer {
  background: #3A3434;
  color: #EEE;
}
.yv-footer-top { border-bottom: 1px solid rgba(255,255,255,.08); }
.yv-footer-title {
  font-family: var(--yv-font-display);
  font-weight: 700;
  color: #F3EEE7;
  margin-bottom: .6rem;
}
.yv-footer-text {
    color: #a1a1a1;
}
.yv-footer-accent { color: #ffffff; }
.yv-footer-divider { border-top: 1px dashed rgba(255,255,255,.12); }
.yv-footer-links { gap: .25rem; }

/* footer lists */
.yv-footer-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .45rem;
}
.yv-footer-list li { font-size: .84rem; }

/* contact rows with icon */
.yv-footer-contact li {
  display: flex; align-items: flex-start; gap: .55rem;
  color: #a1a1a1;
}
.yv-footer-ci {
  width: 14px; height: 14px;
  fill: var(--yv-amber);
  flex-shrink: 0;
  margin-top: .18rem;
}

.yv-footer-link {
    color: #a1a1a1;
    text-decoration: none;
    transition: color .18s;
}
.yv-footer-link:hover { color: #fff; }
.yv-footer-bottom {
  background: #2B2626;
  color: #E7DED6;
}
.yv-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(233,150,10,.3);
  background: rgba(233,150,10,.08);
  color: var(--yv-amber);
  margin: 0 .25rem;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.yv-footer-social:hover {
  background: var(--yv-grad-sun);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(217,95,59,.4);
}
.yv-footer-social.icon-fb:hover { background: #1877F2; border-color: transparent; box-shadow: 0 6px 18px rgba(24,119,242,.4); }
.yv-footer-social.icon-tw:hover { background: #000;    border-color: transparent; box-shadow: 0 6px 18px rgba(0,0,0,.4); }
.yv-footer-social.icon-ln:hover { background: #0A66C2; border-color: transparent; box-shadow: 0 6px 18px rgba(10,102,194,.4); }

/* ── Scroll-to-top button ── */
.yv-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--yv-grad-sun);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(217,95,59,.35);
  transition: transform .2s, box-shadow .2s;
}
.yv-scroll-top.visible { display: flex; }
.yv-scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(217,95,59,.45); }
.yv-scroll-top .yvi { width: 18px; height: 18px; }


/* ═══════════════════════════════════════════
   UTILITIES — TYPOGRAPHY
═══════════════════════════════════════════ */
.yv-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--yv-font-mono); font-size: .7rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--yv-coral);
  margin-bottom: 1rem;
}
.yv-tag::before {
  content: ''; width: 24px; height: 2px;
  background: var(--yv-grad-sun); border-radius: 2px; flex-shrink: 0;
}
.yv-tag.center { justify-content: center; }

.yv-display {
  font-family: var(--yv-font-display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.01em; color: var(--yv-ink);
}
.yv-display em {
  font-style: italic;
  background: var(--yv-grad-sun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yv-body-lg { font-size: 1.05rem; line-height: 1.85; color: var(--yv-muted); font-weight: 400; }
.yv-body-md { font-size: .93rem; line-height: 1.75; color: var(--yv-muted); }

/* ═══════════════════════════════════════════
   UTILITIES — BUTTONS
═══════════════════════════════════════════ */
.yv-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--yv-font-body); font-weight: 600; font-size: .88rem;
  border-radius: 60px; cursor: pointer; border: none;
  transition: transform .22s ease, box-shadow .22s ease;
  letter-spacing: .01em;
}
.yv-btn:hover { transform: translateY(-3px); }

.yv-btn-primary {
  background: var(--yv-grad-sun); color: #fff;
  padding: .85rem 2.2rem;
  box-shadow: 0 6px 28px rgba(217,95,59,.38);
}
.yv-btn-primary:hover { box-shadow: 0 12px 40px rgba(217,95,59,.48); color: #fff; }

.yv-btn-ghost {
  background: transparent; color: var(--yv-bark);
  padding: .82rem 2rem;
  border: 1.5px solid rgba(92,51,23,.22);
}
.yv-btn-ghost:hover {
  border-color: var(--yv-coral); color: var(--yv-coral);
  background: rgba(217,95,59,.05);
}

.yv-btn-white {
  background: #fff; color: var(--yv-coral);
  padding: .95rem 2.6rem;
  box-shadow: 0 8px 36px rgba(0,0,0,.15);
}
.yv-btn-white:hover { box-shadow: 0 16px 48px rgba(0,0,0,.22); color: var(--yv-coral); }

/* ═══════════════════════════════════════════
   UTILITIES — SCROLL REVEAL
═══════════════════════════════════════════ */
.yv-reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.yv-reveal.up { opacity: 1; transform: translateY(0); }
.yv-reveal-d1 { transition-delay: .1s; }
.yv-reveal-d2 { transition-delay: .2s; }
.yv-reveal-d3 { transition-delay: .3s; }
.yv-reveal-d4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════
   LAYOUT — SECTION WRAPPERS
═══════════════════════════════════════════ */
.yv-section { padding: 7rem 0; }
.yv-section-header { margin-bottom: 4rem; }
.yv-section-header.center { text-align: center; }
.yv-section-header.center .yv-body-lg { max-width: 580px; margin: 1rem auto 0; }
.yv-section-header .yv-body-lg { max-width: 540px; margin-top: .8rem; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.yv-hero {
  min-height: 92vh;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: var(--yv-cream);
  display: flex;
  align-items: center;
}

/* Decorative blobs */
.yv-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}
.yv-hero-blob-1 {
  width: 560px; height: 560px;
  background: rgba(217,95,59,.13);
  top: -160px; right: -120px;
}
.yv-hero-blob-2 {
  width: 400px; height: 400px;
  background: rgba(233,150,10,.10);
  bottom: -100px; left: -80px;
}
.yv-hero-blob-3 {
  width: 280px; height: 280px;
  background: rgba(242,193,46,.12);
  top: 40%; left: 38%;
}

/* Content wrapper */
.yv-hero-content { width: 100%; }

.yv-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Badge */
.yv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--yv-font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yv-coral);
  background: rgba(217,95,59,.08);
  border: 1px solid rgba(217,95,59,.2);
  border-radius: 60px;
  padding: .4rem 1rem;
  margin-bottom: 1.6rem;
}

/* Title */
.yv-hero-title {
  font-family: var(--yv-font-display);
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--yv-ink);
  margin: 0 0 1.4rem;
}
.yv-hero-title .line-grad {
  background: var(--yv-grad-sun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sub / body */
.yv-hero-sub { max-width: 500px; margin-bottom: 2.4rem; }

/* CTAs */
.yv-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

/* Metrics chips */
.yv-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.yv-metric-chip {
  background: rgba(255,255,255,.72);
  border: 1.5px solid rgba(233,150,10,.2);
  border-radius: var(--yv-radius-sm);
  padding: .9rem 1.2rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}
.yv-metric-chip-num {
  font-family: var(--yv-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--yv-grad-sun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .2rem;
}
.yv-metric-chip-lbl {
  font-size: .68rem;
  line-height: 1.4;
  color: var(--yv-muted);
  font-family: var(--yv-font-mono);
  letter-spacing: .06em;
}

/* Hero visual */
.yv-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

/* Orb */
.yv-hero-orb {
  width: 340px; height: 340px;
  border-radius: 50%;
  background: var(--yv-grad-sun);
  opacity: .12;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: yv-orb-pulse 6s ease-in-out infinite;
}
@keyframes yv-orb-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: .12; }
  50%       { transform: translate(-50%,-50%) scale(1.12); opacity: .18; }
}

/* Floating cards */
.yv-fcard {
  position: absolute;
  background: #fff;
  border-radius: var(--yv-radius-md);
  box-shadow: var(--yv-shadow-lift);
  padding: 1.5rem;
}

.yv-fcard-1 {
  width: 220px;
  top: 30px; left: 20px;
  animation: yv-fc1 5s ease-in-out infinite;
}
.yv-fcard-2 {
  width: 200px;
  bottom: 60px; right: 10px;
  background: var(--yv-grad-sun-light);
  animation: yv-fc2 6.5s ease-in-out 1s infinite;
}
.yv-fcard-3 {
  width: 170px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-1deg);
  background: var(--yv-sand);
  animation: yv-fc3 7s ease-in-out .4s infinite;
}
.yv-fcard-4 {
  width: 160px;
  bottom: 20px; left: 30px;
  animation: yv-fc4 5.5s ease-in-out .7s infinite;
}

@keyframes yv-fc1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-16px) rotate(-3deg); }
}
@keyframes yv-fc2 {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%       { transform: translateY(-12px) rotate(4deg); }
}
@keyframes yv-fc3 {
  0%, 100% { transform: translate(-50%,-50%) rotate(-1deg) scale(1); }
  50%       { transform: translate(-50%,-50%) rotate(-1deg) scale(1.04); }
}
@keyframes yv-fc4 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}

.yv-fcard-icon {
  font-size: 1.8rem;
  margin-bottom: .6rem;
  display: block;
}
.yv-fcard-title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .2rem;
  color: var(--yv-ink);
}
.yv-fcard-sub {
  font-size: .75rem;
  color: var(--yv-muted);
}
.yv-fcard-2 .yv-fcard-title { color: #fff; }
.yv-fcard-2 .yv-fcard-sub   { color: rgba(255,255,255,.8); }

.yv-fcard-num {
  font-family: var(--yv-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: .3rem;
  color: #fff;
}


/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.yv-about-bg { background: var(--yv-sand); }

.yv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.yv-about-visual { position: relative; }

.yv-about-main {
  background: var(--yv-grad-sun-light);
  border-radius: var(--yv-radius-lg);
  padding: 4rem 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.yv-about-main::before {
  content: 'YV';
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  font-family: var(--yv-font-display);
  font-size: 12rem;
  font-weight: 700;
  color: rgba(255,255,255,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.yv-about-big {
  font-family: var(--yv-font-display);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.yv-about-sub-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: .85;
  margin-top: .4rem;
  color: #fff;
}

.yv-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.yv-about-tag {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 60px;
  padding: .4rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  color: #fff;
}

.yv-about-accent {
  position: absolute;
  bottom: -30px; right: -24px;
  background: #fff;
  border-radius: var(--yv-radius-md);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--yv-shadow-lift);
  min-width: 200px;
}
.yv-about-accent-icon {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}
.yv-about-accent-label {
  font-family: var(--yv-font-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yv-muted);
}
.yv-about-accent-val {
  font-family: var(--yv-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yv-ink);
  line-height: 1.2;
}

.yv-about-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.yv-apoint {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #fff;
  border-radius: var(--yv-radius-sm);
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--yv-amber);
  transition: transform .22s ease, box-shadow .22s ease;
}
.yv-apoint:hover {
  transform: translateX(8px);
  box-shadow: var(--yv-shadow-card);
}
.yv-apoint-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(217,95,59,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.yv-apoint h4 {
  font-weight: 700;
  font-size: .93rem;
  color: var(--yv-ink);
  margin: 0 0 .25rem;
}
.yv-apoint p {
  font-size: .82rem;
  line-height: 1.6;
  color: var(--yv-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════ */
.yv-stats-band {
  background: var(--yv-grad-deep);
  padding: 4rem 0;
}
.yv-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.yv-stat-box {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.yv-stat-box:last-child { border-right: none; }
.yv-stat-n {
  font-family: var(--yv-font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  background: var(--yv-grad-sun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .4rem;
  line-height: 1;
}
.yv-stat-l {
  font-family: var(--yv-font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.yv-features-bg { background: var(--yv-cream); }

.yv-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.yv-feat-card {
  background: #fff;
  border-radius: var(--yv-radius-md);
  padding: 2.4rem 2.2rem;
  border: 1.5px solid rgba(233,150,10,.1);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.yv-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yv-grad-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.yv-feat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--yv-shadow-lift);
  border-color: rgba(217,95,59,.25);
}
.yv-feat-card:hover::before { transform: scaleX(1); }

.yv-feat-card.featured {
  grid-column: 1 / -1;
  background: var(--yv-grad-sun-light);
  color: #fff;
  border: none;
}
.yv-feat-card.featured::before { display: none; }
.yv-feat-card.featured:hover   { border-color: transparent; }

.yv-feat-num {
  font-family: var(--yv-font-mono);
  font-size: .85rem;
  letter-spacing: .2em;
  /*color: rgba(156,117,88,.4);*/
  margin-bottom: 1.2rem;
}
.yv-feat-card.featured .yv-feat-num { color: rgba(255,255,255,.5); }

.yv-feat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.yv-feat-icon-a { background: rgba(217,95,59,.10); }
.yv-feat-icon-b { background: rgba(233,150,10,.12); }
.yv-feat-icon-c { background: rgba(242,193,46,.15); }
.yv-feat-icon-d { background: rgba(176,74,35,.10); }
.yv-feat-card.featured .yv-feat-icon { background: rgba(255,255,255,.20); }

.yv-feat-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yv-ink);
  margin-bottom: .5rem;
}
.yv-feat-card.featured .yv-feat-name { color: #fff; }

.yv-feat-desc {
  font-size: .85rem;
  line-height: 1.75;
  color: var(--yv-muted);
}
.yv-feat-card.featured .yv-feat-desc { color: rgba(255,255,255,.92); }

.yv-feat-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
}
.yv-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .83rem;
  color: var(--yv-muted);
  line-height: 1.6;
}
.yv-feat-list li::before {
  content: '→';
  color: var(--yv-coral);
  flex-shrink: 0;
  font-size: .8rem;
  margin-top: .05rem;
}
.yv-feat-card.featured .yv-feat-list li           { color: rgba(255,255,255,.8); }
.yv-feat-card.featured .yv-feat-list li::before   { color: rgba(255,255,255,.9); }

.yv-feat-arrow {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: 1.4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--yv-coral);
  transition: gap .2s ease;
  border: 1px solid inherit;
}
.yv-feat-arrow:hover { gap: .6rem; }
.yv-feat-card.featured .yv-feat-arrow { color: rgba(255,255,255,.9); }
.yv-feat-card.featured .yv-feat-arrow:hover { color: #fff; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.yv-services-bg { background: var(--yv-sand); }

.yv-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.yv-svc-card {
  background: #fff;
  border-radius: var(--yv-radius-md);
  padding: 2rem 1.8rem;
  border: 1.5px solid rgba(233,150,10,.1);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.yv-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yv-grad-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.yv-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--yv-shadow-lift);
}
.yv-svc-card:hover::before { transform: scaleX(1); }

.yv-svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.yv-svc-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--yv-ink);
  margin-bottom: .5rem;
}
.yv-svc-desc {
  font-size: .83rem;
  line-height: 1.7;
  color: var(--yv-muted);
}
.yv-svc-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-family: var(--yv-font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yv-coral);
  background: rgba(217,95,59,.07);
  border: 1px solid rgba(217,95,59,.15);
  border-radius: 60px;
  padding: .3rem .8rem;
}

/* ═══════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════ */
.yv-newsletter-section {
  background: var(--yv-cream);
  padding: 5rem 0;
}
.yv-newsletter-box {
  background: var(--yv-grad-deep);
  border-radius: var(--yv-radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.yv-newsletter-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(217,95,59,.22) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 100%, rgba(233,150,10,.15) 0%, transparent 60%);
  pointer-events: none;
}
.yv-newsletter-box h2 {
  font-family: var(--yv-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .8rem;
  position: relative;
  z-index: 1;
}
.yv-newsletter-box h2 em {
  font-style: italic;
  background: var(--yv-grad-sun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.yv-newsletter-box p {
  color: rgba(255,255,255,.6);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.yv-newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.yv-newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: .9rem 1.4rem;
  border-radius: 60px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--yv-font-body);
  font-size: .9rem;
  backdrop-filter: blur(10px);
  outline: none;
  transition: border-color .2s ease;
}
.yv-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.yv-newsletter-input:focus { border-color: rgba(242,193,46,.5); }

/* ═══════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════ */
.yv-cta-banner {
  background: var(--yv-grad-sun-light);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.yv-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.yv-cta-banner h2 {
  font-family: var(--yv-font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.yv-cta-banner h2 em {
  font-style: italic;
  color: rgba(255,255,255,.85);
  -webkit-text-fill-color: rgba(255,255,255,.85);
}
.yv-cta-banner p {
  color: rgba(255,255,255,.8);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
.yv-cta-banner .yv-btn-white {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .yv-hero-grid    { grid-template-columns: 1fr; }
  .yv-hero-visual  { display: none; }
  .yv-hero-title   { font-size: clamp(2.5rem, 8vw, 4rem); }
  .yv-about-grid   { grid-template-columns: 1fr; }
  .yv-about-visual { display: none; }
  .yv-stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .yv-stat-box:nth-child(2) { border-right: none; }
}
@media (max-width: 700px) {
  .yv-features-grid            { grid-template-columns: 1fr; }
  .yv-feat-card.featured       { grid-column: 1; }
}
@media (max-width: 600px) {
  .yv-services-grid    { grid-template-columns: 1fr; }
  .yv-newsletter-box   { padding: 2.5rem 1.5rem; }
  .yv-cta-banner       { padding: 4rem 0; }
}


label:has(+input[required])::after, label:has(+select[required])::after, label:has(+textarea[required])::after, label:has(+input[data-val-required])::after, label:has(+select[data-val-required])::after, label:has(+textarea[data-val-required])::after, label:has(+input[type="checkbox"][required])::after, label:has(+input[type="radio"][required])::after, label:has(+input[type="checkbox"][data-val-required])::after, label:has(+input[type="radio"][data-val-required])::after, input[required] + label::after, select[required] + label::after, textarea[required] + label::after, input[type="checkbox"][required] + label::after, input[type="radio"][required] + label::after, input:required + label::after, select:required + label::after, textarea:required + label::after, label.required::after,
.ms-req, .ms-label.required::after, .form-label.star::after {
    content: " *";
    color: #f00;
    font-weight: bold;
}