/* ========================================
   YOGA ANIMA — Homepage Custom CSS
   Prefix: ya-
   Organic warm: sage + lavender + peach
   ======================================== */

:root {
    --ya-bg: #faf8f6;
    --ya-bg-warm: #f5f0eb;
    --ya-bg-card: #ffffff;
    --ya-bg-sage: #e8ede6;
    --ya-bg-lavender: #ede8f2;
    --ya-bg-dark: #2c2a28;
    --ya-text: #2c2a28;
    --ya-text-mid: #7a756e;
    --ya-text-faint: #b5afa7;
    --ya-sage: #7a9e7e;
    --ya-sage-dark: #5a7e5e;
    --ya-sage-glow: rgba(122,158,126,0.1);
    --ya-lavender: #9b8bb4;
    --ya-lavender-glow: rgba(155,139,180,0.1);
    --ya-peach: #e8a87c;
    --ya-white: #ffffff;
    --ya-serif: 'Cormorant Garamond', Georgia, serif;
    --ya-sans: 'Nunito Sans', sans-serif;
    --ya-ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ═══ HERO ═══ */

/* ══════════════════════════════════════
   NAV — Custom homepage navbar
   ══════════════════════════════════════ */
.ya-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(250,248,246,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44,42,40,0.05);
  animation: ya-fadeD 0.8s var(--ya-ease) both;
}

.ya-nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.ya-nav-lotus { font-size: 28px; }

.ya-nav-name {
  font-family: var(--ya-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ya-text);
  letter-spacing: 0.5px;
}

.ya-nav-name em { color: var(--ya-sage); font-style: italic; }

.ya-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.ya-nav-links a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ya-text-mid);
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.ya-nav-links a:hover { color: var(--ya-sage); }

.ya-nav-acc {
  padding: 10px 24px !important;
  background: var(--ya-sage) !important;
  color: white !important;
  border-radius: var(--radius-full, 4px) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.ya-nav-acc:hover { background: var(--ya-sage-dark) !important; }

@media (max-width: 768px) {
}

/* Mobile nav toggle */
.ya-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.ya-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s;
}
/* Hamburger → X animation */
.ya-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ya-nav-toggle.active span:nth-child(2) { opacity: 0; }
.ya-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ya-nav-logout {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.ya-nav-logout:hover { opacity: 1; }
.ya-footer-powered {
    text-align: center;
    padding: 16px 0 0;
    font-size: 11px;
    opacity: 0.3;
}
.ya-footer-powered a {
    color: inherit;
    text-decoration: none;
}
.ya-footer-powered a:hover { opacity: 0.7; }

@media (max-width: 768px) {
    .ya-nav-toggle { display: flex; }
    .ya-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: inherit;
        flex-direction: column;
        padding: 20px;
        gap: 12px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    .ya-nav-links.active { display: flex; }
}


/* ══════════════════════════════════════
   FOOTER — Custom homepage footer
   ══════════════════════════════════════ */
.ya-fs { margin-top: 20px; }

.ya-fs .btn-sage { width: 100%; display: flex; justify-content: center; border-radius: var(--radius-lg, 4px); }

.ya-footer {
  color: rgba(255,255,255,0.85);
  padding: 40px 48px;
  background: var(--ya-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ya-footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}

.ya-footer-left { display: flex; align-items: center; gap: 10px; }

.ya-footer-left span:first-child { font-size: 22px; }

.ya-footer-name { font-family: var(--ya-serif); font-size: 18px; font-weight: 600; color: white; }

.ya-footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

.ya-footer-links { display: flex; gap: 20px; list-style: none; }

.ya-footer-links a { text-decoration: none; font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.3s; }

.ya-footer-links a:hover { color: var(--ya-sage); }

  .ya-footer { padding: 28px 20px; }

  .ya-footer-inner { flex-direction: column; text-align: center; }

@media (max-width: 768px) {
  .ya-footer { padding: 28px 20px; }
  .ya-footer-inner { flex-direction: column; text-align: center; }
}


.ya-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ya-bg) 0%, var(--ya-bg-warm) 100%);
}

/* Floating organic blobs */
.ya-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
}
.ya-blob-1 { width: 500px; height: 500px; top: -10%; right: -5%; background: var(--ya-bg-lavender); animation: blobFloat 12s ease-in-out infinite; }
.ya-blob-2 { width: 400px; height: 400px; bottom: -5%; left: -5%; background: var(--ya-bg-sage); animation: blobFloat 15s ease-in-out 3s infinite; }
.ya-blob-3 { width: 300px; height: 300px; top: 30%; left: 10%; background: rgba(232,168,124,0.15); animation: blobFloat 10s ease-in-out 6s infinite; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-20px) scale(1.05); }
  66% { transform: translate(-15px,15px) scale(0.95); }
}

.ya-hero-content { position: relative; z-index: 2; max-width: 720px; }

.ya-hero-icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block;
  animation: fadeU 0.8s 0.2s var(--ya-ease) both;
}

.ya-hero-title {
  font-family: var(--ya-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeU 0.8s 0.4s var(--ya-ease) both;
}
.ya-hero-title em { font-style: italic; color: var(--ya-sage); font-weight: 500; }
.ya-hero-title strong { font-weight: 700; }

.ya-hero-desc {
  font-size: 17px;
  line-height: 1.9;
  color: var(--ya-text-mid);
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 300;
  animation: fadeU 0.8s 0.6s var(--ya-ease) both;
}

.ya-hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeU 0.8s 0.8s var(--ya-ease) both;
}

@keyframes fadeU { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.ya-btn-sage {
  padding: 16px 36px;
  background: var(--ya-sage);
  color: white;
  border: none;
  border-radius: var(--radius-full, 4px);
  font-family: var(--ya-sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ya-ease);
  box-shadow: 0 6px 24px rgba(122,158,126,0.25);
}
.ya-btn-sage:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(122,158,126,0.35); }

.ya-btn-ghost {
  padding: 16px 36px;
  background: transparent;
  color: var(--ya-text);
  border: 1.5px solid rgba(44,42,40,0.15);
  border-radius: var(--radius-full, 4px);
  font-family: var(--ya-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ya-ease);
}
.ya-btn-ghost:hover { border-color: var(--ya-sage); color: var(--ya-sage); transform: translateY(-2px); }

/* ═══ SECTION UTILS ═══ */
.ya-sec-pad { padding: 100px 48px; }

.ya-stag {
  font-family: var(--ya-serif);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--ya-sage);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.ya-stitle {
  font-family: var(--ya-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ya-stitle em { color: var(--ya-sage); font-style: italic; font-weight: 500; }

.ya-sdesc {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ya-text-mid);
  font-weight: 300;
  max-width: 480px;
}

/* ═══ DISCIPLINES — Vertical Timeline ═══ */
.ya-disciplines {
  background: var(--ya-bg-warm);
  position: relative;
}

.ya-disc-inner { max-width: 1000px; margin: 0 auto; }

.ya-disc-header { text-align: center; margin-bottom: 72px; }
.ya-disc-header .ya-sdesc { margin: 0 auto; }

.ya-timeline { position: relative; }
.ya-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ya-sage), transparent);
  transform: translateX(-50%);
}

.ya-tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
}
.ya-tl-item:last-child { margin-bottom: 0; }

.ya-tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ya-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--ya-bg-warm), 0 4px 16px rgba(122,158,126,0.2);
  transition: transform 0.4s var(--ya-ease);
}
.ya-tl-item:hover .ya-tl-dot { transform: scale(1.15); }

.ya-tl-card {
  background: var(--ya-bg-card);
  border-radius: var(--radius-full, 4px);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(44,42,40,0.04);
  border: 1px solid rgba(44,42,40,0.04);
  transition: all 0.4s var(--ya-ease);
}
.ya-tl-item:hover .ya-tl-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44,42,40,0.08);
  border-color: rgba(122,158,126,0.15);
}

.ya-tl-num {
  font-family: var(--ya-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--ya-sage);
  opacity: 0.3;
  margin-bottom: 8px;
}

.ya-tl-name {
  font-family: var(--ya-serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ya-tl-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ya-text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.ya-tl-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ya-sage);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.ya-tl-link:hover { gap: 12px; }

/* Alternate sides */
.ya-tl-item:nth-child(odd) .ya-tl-card { grid-column: 1; grid-row: 1; text-align: right; }
.ya-tl-item:nth-child(odd) .ya-tl-dot { grid-column: 2; grid-row: 1; }
.ya-tl-item:nth-child(odd) .ya-tl-empty { grid-column: 3; grid-row: 1; }

.ya-tl-item:nth-child(even) .ya-tl-empty { grid-column: 1; grid-row: 1; }
.ya-tl-item:nth-child(even) .ya-tl-dot { grid-column: 2; grid-row: 1; }
.ya-tl-item:nth-child(even) .ya-tl-card { grid-column: 3; grid-row: 1; text-align: left; }

/* ═══ TEAM — Circular cards with organic layout ═══ */
.ya-team {
  background: var(--ya-bg);
  position: relative;
  overflow: hidden;
}

.ya-team-inner { max-width: 1100px; margin: 0 auto; }
.ya-team-header { text-align: center; margin-bottom: 64px; }
.ya-team-header .ya-sdesc { margin: 0 auto; }

.ya-team-flow {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ya-team-circle {
  text-align: center;
  max-width: 280px;
  transition: all 0.5s var(--ya-ease);
  cursor: pointer;
}
.ya-team-circle:hover { transform: translateY(-8px); }

.ya-tc-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Mandala ring effect */
.ya-tc-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px dashed var(--ya-sage);
  opacity: 0.3;
  animation: mandalaSpin 30s linear infinite;
}
.ya-tc-ring::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed var(--ya-lavender);
  opacity: 0.15;
  animation: mandalaSpin 45s linear infinite reverse;
}
@keyframes mandalaSpin { to { transform: rotate(360deg); } }

.ya-tc-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ya-serif);
  font-size: 48px;
  font-weight: 600;
  color: white;
  position: relative;
  z-index: 2;
}
.ya-team-circle:nth-child(1) .ya-tc-avatar { background: linear-gradient(135deg, var(--ya-sage), var(--ya-sage-dark)); }
.ya-team-circle:nth-child(2) .ya-tc-avatar { background: linear-gradient(135deg, var(--ya-lavender), #7b6b94); }
.ya-team-circle:nth-child(3) .ya-tc-avatar { background: linear-gradient(135deg, var(--ya-peach), #c88a5c); }

.ya-tc-role {
  font-family: var(--ya-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--ya-sage);
  margin-bottom: 8px;
}
.ya-tc-name {
  font-family: var(--ya-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ya-tc-bio {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ya-text-mid);
  font-weight: 300;
}

/* ═══ CENTRO ═══ */
.ya-centro { background: var(--ya-bg-warm); }
.ya-centro-inner { max-width: 1100px; margin: 0 auto; }

.ya-centro-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.ya-centro-visual {
  height: 380px;
  border-radius: var(--radius-full, 4px);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(160deg, var(--ya-bg-sage), var(--ya-bg-lavender));
}
.ya-centro-visual .ya-cv-i {
  font-size: 72px;
  animation: cvf 6s ease-in-out infinite;
}
@keyframes cvf { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ya-centro-visual .ya-cv-t {
  font-family: var(--ya-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--ya-text-mid);
}

.ya-centro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ya-cc {
  background: var(--ya-bg-card);
  border-radius: var(--radius-full, 4px);
  padding: 32px 24px;
  border: 1px solid rgba(44,42,40,0.04);
  transition: all 0.4s var(--ya-ease);
}
.ya-cc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44,42,40,0.06);
  border-color: rgba(122,158,126,0.15);
}
.ya-cc .ya-cc-i { font-size: 28px; margin-bottom: 14px; display: block; }
.ya-cc h3 { font-family: var(--ya-serif); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.ya-cc p { font-size: 13px; line-height: 1.8; color: var(--ya-text-mid); font-weight: 300; }

.ya-cc.ya-sage-cc {
  background: var(--ya-sage);
  border: none;
  color: white;
}
.ya-cc.ya-sage-cc h3 { color: white; }
.ya-cc.ya-sage-cc p { color: rgba(255,255,255,0.8); }
.ya-cc.ya-sage-cc .ya-cc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-weight: 700; font-size: 13px;
  color: white; text-decoration: none; transition: gap 0.3s;
}
.ya-cc.ya-sage-cc .ya-cc-link:hover { gap: 12px; }

/* ═══ CONTACT ═══ */
.ya-contact {
  background: var(--ya-bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.ya-contact::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,158,126,0.08), transparent 70%);
}

.ya-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.ya-contact .ya-stag { color: rgba(122,158,126,0.8); }
.ya-contact .ya-stitle { color: white; }
.ya-contact .ya-stitle em { color: var(--ya-sage); }
.ya-contact .ya-sdesc { color: rgba(255,255,255,0.4); margin-bottom: 36px; }

.ya-cd { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ya-cd-i {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(122,158,126,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ya-cd-t small { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 3px; font-weight: 600; }
.ya-cd-t strong { font-weight: 500; font-size: 15px; }

.ya-cf-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-full, 4px);
  padding: 44px;
}
.ya-cf-card h3 { font-family: var(--ya-serif); font-size: 28px; font-weight: 600; margin-bottom: 4px; }
.ya-cf-card .ya-cfd { font-size: 14px; color: rgba(255,255,255,0.35); margin-bottom: 28px; font-weight: 300; }

.ya-fg { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ya-fi { display: flex; flex-direction: column; gap: 5px; }
.ya-fi.ya-full { grid-column: 1 / -1; }
.ya-fi label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.ya-fi input, .ya-fi textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg, 4px);
  padding: 14px 16px;
  font-family: var(--ya-sans); font-size: 15px; color: white;
  transition: all 0.3s; width: 100%;
}
.ya-fi input:focus, .ya-fi textarea:focus { outline: none; border-color: var(--ya-sage); box-shadow: 0 0 0 3px var(--ya-sage-glow); }
.ya-fi input::placeholder, .ya-fi textarea::placeholder { color: rgba(255,255,255,0.2); }
.ya-fi textarea { resize: vertical; min-height: 100px; }

.ya-fs { margin-top: 20px; }
.ya-fs .ya-btn-sage { width: 100%; display: flex; justify-content: center; border-radius: var(--radius-lg, 4px); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .ya-timeline::before { left: 24px; }
  .ya-tl-item { grid-template-columns: 48px 1fr; gap: 20px; }
  .ya-tl-item .ya-tl-empty { display: none; }
  .ya-tl-item:nth-child(odd) .ya-tl-card, .ya-tl-item:nth-child(even) .ya-tl-card { grid-column: 2; text-align: left; }
  .ya-tl-item:nth-child(odd) .ya-tl-dot, .ya-tl-item:nth-child(even) .ya-tl-dot { grid-column: 1; }
  .ya-tl-dot { width: 40px; height: 40px; font-size: 18px; }
  .ya-team-flow { flex-direction: column; align-items: center; }
  .ya-centro-top { grid-template-columns: 1fr; }
  .ya-contact-inner { grid-template-columns: 1fr; }
  .ya-centro-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  
  
  .ya-sec-pad { padding: 72px 20px; }
  .ya-hero { padding: 100px 20px 60px; }
  .ya-fg { grid-template-columns: 1fr; }
  .ya-cf-card { padding: 28px 20px; }
  
  
}


/* ── CMS HELPERS ── */
.ya-team-avatar-img {
    width: 100%; height: 100%;
    border-radius: 50%; object-fit: cover;
    position: relative; z-index: 2;
}
.ya-centro-photo {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: var(--radius-full, 4px);
}
.ya-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 20px;
}
.bg-gradient { display: none; }

/* ══ Homepage Section Ordering (CMS Builder drag & drop) ══ */
.hp-sections-container { display: flex; flex-direction: column; width: 100%; }
.hp-section { width: 100%; }

/* ══ Registration Section ══ */
.registration-section {
    padding: 60px 20px;
    text-align: center;
    background: var(--color-bg-secondary, #f8f9fa);
}
.registration-inner {
    max-width: 600px;
    margin: 0 auto;
}
.registration-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary, #6366f1);
    margin-bottom: 8px;
}
.registration-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text, #1f2937);
    margin: 0 0 12px;
}
.registration-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted, #6b7280);
    margin: 0 0 24px;
}
.registration-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-primary, #6366f1);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.registration-note {
    font-size: 13px;
    color: var(--color-text-muted, #6b7280);
    margin-top: 16px;
    font-style: italic;
}

/* Fix: hero con immagine CMS */
.ya-hero--has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ya-hero--has-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

/* Fix: icona tab servizi */
.ya-cci {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}
