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

:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --bg-panel: #020617;
  --txt: #e5e7eb;
  --txt-muted: #9ca3af;
  --accent: #22c55e;
  --accent-soft: rgba(34,197,94,0.18);
  --accent-alt: #38bdf8;
  --border-soft: rgba(148,163,184,0.35);
  --card-bg: rgba(15,23,42,0.95);
  --shadow-soft: 0 18px 45px rgba(15,23,42,0.85);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-full: 999px;
  --nav-h: 64px;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: #020617; /* fundal uniform, lăsăm efectele doar pe parallax */
  color: var(--txt);
  display: flex;
  flex-direction: column;
}


/* PARALLAX BACKGROUND LAYERS HOOKS */
.parallax-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.parallax-layer {
  position: absolute;
  inset: -10%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.25;
  transform: translate3d(0,0,0);
}
.parallax-layer.mountains {
  /* Fundal tematic "Marea de la munte" + gradient de întunecare pentru text */
  background-image:
    linear-gradient(to top, rgba(2,6,23,0.55), rgba(15,23,42,0.25)),
    url('/assets/img/hero-marea-de-la-munte.webp');
}
.parallax-layer.forest {
  background-image: radial-gradient(circle at bottom, rgba(16,185,129,0.4), transparent);
}
.parallax-layer.fog {
  background-image: radial-gradient(circle at top, rgba(148,163,184,0.4), transparent);
}

/* HEADER / NAVBAR */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.75));
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(16px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: conic-gradient(from 180deg, #22c55e, #38bdf8, #a855f7, #22c55e);
  box-shadow: 0 0 20px rgba(56,189,248,0.7);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-subtitle {
  font-size: 0.75rem;
  color: var(--txt-muted);
}

.main-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}



.main-nav a {
  position: relative;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--txt-muted);
  padding: 4px 8px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent), var(--accent-alt));
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent-alt);
  background: rgba(15,23,42,0.8);
}

.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  font-size: 0.8rem;
}
.lang-switch a {
  text-decoration: none;
  color: var(--txt-muted);
}
.lang-switch a.active {
  color: var(--accent);
  font-weight: 600;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, rgba(56,189,248,0.25), rgba(15,23,42,1));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}


.regional-switch {
  display:flex;
  align-items:center;
  gap:6px;
}
.regional-switch a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(125,211,252,.26);
  background:linear-gradient(135deg, rgba(34,197,94,.16), rgba(56,189,248,.12));
  color:#dbeafe;
  text-decoration:none;
  font-size:.78rem;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 10px 28px rgba(2,6,23,.22);
}
.regional-switch a:hover {
  color:#ffffff;
  border-color:rgba(56,189,248,.55);
  background:linear-gradient(135deg, rgba(34,197,94,.28), rgba(56,189,248,.24));
}
@media (max-width: 1120px) {
  .regional-switch { display:none; }
}

/* MOBILE NAV */

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background: rgba(15,23,42,0.9);
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--txt);
}

/* HERO */

.hero-wrap {
  padding: 90px 16px 80px;
  position: relative;
  z-index: 1;
}
.hero {
  max-width: 1120px;
  margin: 0 auto;
  display: block;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 32px;
  border-radius: 28px;
  background: radial-gradient(circle at top left, rgba(15,23,42,0.96), rgba(15,23,42,0.84));
  box-shadow: 0 32px 90px rgba(15,23,42,0.95);
  backdrop-filter: blur(8px);
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}


.hero-badges {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  font-size:0.85rem;
}

.hero-cta {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:4px;
}

.hero-cta-secondary {
  margin-top:6px;
}







.hero-badge {
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148,163,184,0.5);
  background: rgba(15,23,42,0.9);
}
.hero h1 {
  font-size: clamp(1.8rem, 2.3vw + 1rem, 2.6rem);
}
.hero p {
  color: var(--txt-muted);
  font-size: 0.95rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: linear-gradient(to right, #22c55e, #38bdf8);
  color: #020617;
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}
.btn-outline {
  background: transparent;
  border-color: var(--border-soft);
  color: var(--txt);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

/* HERO SIDE CARD */

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.15), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.6);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-card h2 {
  font-size: 1rem;
}
.hero-card p {
  color: var(--txt-muted);
  font-size: 0.9rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px;
  margin-top: 4px;
}
.hero-stats .stat {
  padding: 6px 8px;
  border-radius: var(--radius-md);
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(37,99,235,0.4);
  font-size: 0.75rem;
}
.hero-stats span {
  color: var(--txt-muted);
}
.hero-stats strong {
  display: block;
  margin-top: 2px;
}

/* SECTION GENERIC */

.section {
  padding: 6px 16px 16px;
}
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.section h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.section p.lead {
  color: var(--txt-muted);
  font-size: 0.9rem;
}

/* CARDS GRID */

.cards-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 14px;
}
.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(15,23,42,0.95), #020617);
  border: 1px solid rgba(30,64,175,0.7);
  box-shadow: var(--shadow-soft);
  padding: 12px 12px 14px;
  overflow: hidden;
  transform: translate3d(0,0,0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}



.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top, rgba(56,189,248,0.18), transparent);
  pointer-events: none;   /* ← linia nouă, importantă */
  /* restul proprietăților tale */
}




.card:hover {
  transform: translateY(-4px) rotate3d(1,1,0,2deg);
  box-shadow: 0 30px 60px rgba(15,23,42,0.95);
  border-color: rgba(56,189,248,0.9);
}
.card:hover::before {
  opacity: 1;
}
.card .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(22,163,74,0.1);
  color: #bbf7d0;
  margin-bottom: 5px;
}
.card .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}
.card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.card p {
  font-size: 0.85rem;
  color: var(--txt-muted);
}
.card-footer {
  margin-top: 8px;
  font-size: 0.8rem;
}
.card-footer a {
  color: var(--accent-alt);
  text-decoration: none;
}

/* TIMELINE BASIC */

.timeline {
  margin-top: 12px;
  border-left: 1px solid rgba(148,163,184,0.5);
  padding-left: 14px;
}
.timeline-item {
  position: relative;
  margin-bottom: 10px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(34,197,94,0.8);
}
.timeline-year {
  font-size: 0.8rem;
  color: var(--txt-muted);
}
.timeline-title {
  font-size: 0.95rem;
  font-weight: 600;
}
.timeline-text {
  font-size: 0.85rem;
  color: var(--txt-muted);
}

/* FOOTER */

.site-footer {
  margin-top: auto;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
}
.footer-main {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 14px;
}
.f-col h4, .f-col h5 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.f-col p, .f-col ul {
  font-size: 0.8rem;
  color: var(--txt-muted);
}
.f-col ul {
  list-style: none;
}
.f-col li+li {
  margin-top: 4px;
}
.f-col a {
  color: var(--accent-alt);
  text-decoration: none;
}
.footer-bottom {
  max-width: 1120px;
  margin: 10px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--txt-muted);
}
.footer-bottom .bullet {
  opacity: 0.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-card {
    order: -1;
  }
}

@media (max-width: 720px) {

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }


  .main-nav {
    position: absolute;
    top: var(--nav-h);
    right: 12px;
    left: 12px;
    flex-direction: column;
    padding: 8px;
    border-radius: var(--radius-lg);
    background: rgba(15,23,42,0.98);
    border: 1px solid var(--border-soft);
    display: none;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .header-right {
    gap: 6px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}


.logo-mark img{width:100%;height:100%;display:block;border-radius:12px;}


@keyframes float-soft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0px); }
}

.hero-badge {
  animation: float-soft 6s ease-in-out infinite;
}

.btn-primary {
  animation: float-soft 7s ease-in-out infinite;
}



@media (max-width: 800px) {
  .hero-wrap {
    padding: 72px 16px 56px;
  }
}

/* Mic efect de scalare pentru titlul principal din hero */
.hero h1 {
  font-size: clamp(2.4rem, 3vw + 1.6rem, 3.4rem);
}

.hero p {
  font-size: 0.98rem;
}


.hero-title-center {
  text-align: center;
}


/* PAGE LAYOUT (CONTENT PAGES) */

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 16px 80px;
}

.page-hero {
  padding: 40px 0 32px;
  text-align: center;
}

.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-hero-inner h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.page-hero-inner p {
  font-size: 1rem;
  color: var(--txt-muted);
}

.page-section {
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 8px;
}

.section-header .lead {
  font-size: 0.98rem;
  color: var(--txt-muted);
}

/* FILTER CHIPS */

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 24px;
}

.chip {
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  padding: 6px 14px;
  font-size: 0.9rem;
  background: transparent;
  color: var(--txt);
  cursor: pointer;
}

.chip-active {
  background: var(--accent-soft);
  border-color: var(--accent);
}

/* TABLE WRAPPER */

.table-wrapper {
  margin-top: 18px;
  overflow-x: auto;
}

.page-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.page-table th,
.page-table td {
  border-bottom: 1px solid var(--border-soft);
  padding: 9px 8px;
  text-align: left;
  font-size: 0.9rem;
}

.page-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--txt-muted);
}

.small-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--txt-muted);
  text-align: center;
}

/* CARDS GRID ON CONTENT PAGES */

.page-section .cards-grid,
.page-section .card-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 14px;
}


/* MAP SECTIONS */

.map-wrapper{
  max-width:1100px;
  margin:0 auto 18px auto;
}

.map-container{
  border-radius:20px;
  overflow:hidden;
}

.map-note{
  margin-top:8px;
  font-size:0.85rem;
  text-align:center;
  color:var(--txt-muted);
}

.map-note a{
  color:var(--accent-alt);
  text-decoration:none;
}

.map-note a:hover{
  text-decoration:underline;
}




/* ===  modificari  === */





/* override: nu mai vrem linie de separare între secțiuni */
.page-section {
  border-top: none !important;
}











/* === LacColibita.ro V2: Colaboratori & Parteneri === */
.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 18px;
  align-items: center;
  margin: 22px 0 8px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(56,189,248,0.35);
  background: radial-gradient(circle at top left, rgba(34,197,94,0.16), rgba(15,23,42,0.9) 52%, rgba(2,6,23,0.95));
  box-shadow: 0 22px 60px rgba(2,6,23,0.72);
}
.cta-strip h2 { margin: 0 0 6px; font-size: clamp(1.2rem,2vw,1.7rem); }
.cta-strip p { color: var(--txt-muted); font-size: .92rem; }
.cta-actions { display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; }
.badge-list { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:16px; }
.soft-badge { border:1px solid rgba(148,163,184,.38); background:rgba(15,23,42,.72); border-radius:999px; padding:6px 11px; font-size:.84rem; color:#cbd5e1; }
.feature-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap:14px; margin-top:14px; }
.profile-card { min-height:100%; }
.profile-card .meta { display:flex; flex-wrap:wrap; gap:6px; margin:8px 0; }
.profile-card .meta span { font-size:.75rem; border:1px solid rgba(148,163,184,.35); border-radius:999px; padding:3px 8px; color:#cbd5e1; background:rgba(2,6,23,.42); }
.form-panel { border-radius:24px; border:1px solid rgba(148,163,184,.42); background:rgba(15,23,42,.88); padding:18px; box-shadow:var(--shadow-soft); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.form-field.full { grid-column:1/-1; }
.form-field label { display:block; font-size:.86rem; color:#cbd5e1; margin-bottom:5px; }
.form-field input,.form-field select,.form-field textarea { width:100%; border-radius:12px; border:1px solid rgba(148,163,184,.38); background:rgba(2,6,23,.72); color:var(--txt); padding:10px 12px; font:inherit; outline:none; }
.form-field textarea { min-height:150px; resize:vertical; }
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { border-color:rgba(56,189,248,.85); box-shadow:0 0 0 3px rgba(56,189,248,.12); }
.form-hidden { position:absolute; left:-9999px; opacity:0; }
.form-consent { display:flex; gap:8px; align-items:flex-start; color:var(--txt-muted); font-size:.84rem; line-height:1.4; }
.form-alert { border-radius:14px; padding:12px 14px; margin-bottom:14px; font-size:.9rem; }
.form-alert.success { border:1px solid rgba(34,197,94,.55); background:rgba(34,197,94,.13); color:#bbf7d0; }
.form-alert.error { border:1px solid rgba(248,113,113,.6); background:rgba(248,113,113,.12); color:#fecaca; }
.list-note { color:var(--txt-muted); font-size:.9rem; text-align:center; max-width:780px; margin:10px auto 0; }
@media (max-width: 760px) { .cta-strip { grid-template-columns:1fr; } .cta-actions { justify-content:flex-start; } .form-grid { grid-template-columns:1fr; } }

/* === LacColibita.ro V2.1: formulare premium Devino partener / colaborator === */
.join-body .parallax-layer.mountains { opacity: .34; }
.join-body::before {
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 14%, rgba(56,189,248,.18), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(34,197,94,.14), transparent 34%),
    linear-gradient(180deg, rgba(2,6,23,.44), rgba(2,6,23,.78) 54%, rgba(2,6,23,.92));
}
.join-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 42px;
}
.join-hero {
  text-align: center;
  padding: 22px 0 20px;
}
.join-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 12px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,.62);
  background: rgba(8,20,38,.62);
  box-shadow: 0 0 26px rgba(56,189,248,.18), inset 0 0 22px rgba(34,197,94,.08);
  color: #dff6ff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-weight: 750;
}
.join-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.055em;
  color: #f8fafc;
  text-shadow: 0 16px 42px rgba(2,6,23,.8);
}
.join-hero p {
  max-width: 790px;
  margin: 16px auto 0;
  color: #dbeafe;
  font-size: clamp(.98rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}
.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .92fr);
  gap: 24px;
  align-items: start;
}
.join-form-card,
.join-info-card,
.reason-grid > div,
.join-stats {
  border: 1px solid rgba(125,211,252,.26);
  background: linear-gradient(145deg, rgba(15,45,70,.78), rgba(8,23,42,.76));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(2,6,23,.68), inset 0 1px 0 rgba(255,255,255,.08);
}
.join-form-card {
  border-radius: 24px;
  padding: 24px;
}
.join-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.join-icon,
.big-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #e0f2fe;
  background: radial-gradient(circle at 30% 20%, rgba(125,211,252,.58), rgba(14,116,144,.24));
  border: 1px solid rgba(125,211,252,.38);
  box-shadow: 0 12px 30px rgba(14,165,233,.22);
}
.big-icon {
  float: left;
  margin-right: 16px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #bbf7d0, #22c55e 48%, rgba(21,128,61,.3));
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 0 34px rgba(34,197,94,.48);
}
.join-card-title h2,
.join-info-card h3,
.join-subtitle {
  margin: 0;
  color: #f8fafc;
}
.join-card-title p,
.join-info-card p {
  margin: 4px 0 0;
  color: #b6c9dc;
  font-size: .88rem;
}
.join-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 16px;
}
.join-field.full,
.join-consent.full,
.join-actions.full { grid-column: 1 / -1; }
.join-field label {
  display: block;
  margin: 0 0 7px;
  color: #e5edf7;
  font-size: .88rem;
  font-weight: 650;
}
.input-wrap {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  border-radius: 13px;
  border: 1px solid rgba(148,197,230,.26);
  background: rgba(8,27,48,.62);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  overflow: hidden;
}
.input-wrap:focus-within {
  border-color: rgba(56,189,248,.78);
  box-shadow: 0 0 0 4px rgba(56,189,248,.12), 0 16px 38px rgba(2,6,23,.36);
  background: rgba(8,31,55,.82);
}
.input-wrap > span {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: #93c5fd;
  opacity: .92;
}
.join-field input,
.join-field select,
.join-field textarea {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f8fafc;
  font: inherit;
  padding: 11px 12px 11px 0;
}
.join-field select { cursor: pointer; color-scheme: dark; }
.join-field input::placeholder,
.join-field textarea::placeholder { color: rgba(203,213,225,.58); }
.textarea-wrap { align-items: start; }
.textarea-wrap > span { padding-top: 10px; }
.join-field textarea {
  min-height: 88px;
  resize: vertical;
  line-height: 1.45;
}
.join-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 2px;
  color: #cbd5e1;
  font-size: .87rem;
  line-height: 1.45;
}
.join-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: #22c55e; }
.join-consent a { color: #4ade80; font-weight: 700; text-decoration: none; }
.join-consent a:hover { text-decoration: underline; }
.join-actions {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 14px;
  margin-top: 6px;
}
.join-btn {
  min-height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(125,211,252,.26);
  cursor: pointer;
}
.join-btn.ghost {
  color: #e0f2fe;
  background: rgba(8,27,48,.42);
}
.join-btn.ghost:hover { background: rgba(14,116,144,.24); }
.join-btn.primary {
  color: #f8fafc;
  border: 0;
  background: linear-gradient(135deg, #22c55e, #22d3ee 58%, #38bdf8);
  box-shadow: 0 18px 42px rgba(34,211,238,.25);
}
.join-btn.primary:hover { filter: brightness(1.06); transform: translateY(-1px); }
.join-info-stack {
  display: grid;
  gap: 16px;
}
.join-info-card {
  border-radius: 24px;
  padding: 22px;
  overflow: hidden;
}
.join-info-card.highlight,
.join-info-card.benefit {
  border-color: rgba(74,222,128,.34);
  background:
    radial-gradient(circle at 12% 24%, rgba(34,197,94,.24), transparent 32%),
    linear-gradient(145deg, rgba(12,52,45,.72), rgba(8,35,55,.72));
}
.join-info-card ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #d8edf7;
  font-size: .92rem;
}
.join-info-card li::before {
  content: "✓";
  color: #4ade80;
  margin-right: 8px;
  font-weight: 900;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.mini-grid div,
.pill-grid span {
  border-radius: 16px;
  border: 1px solid rgba(148,197,230,.22);
  background: rgba(8,27,48,.42);
  padding: 13px;
  text-align: center;
}
.mini-grid strong,
.reason-grid strong { display: block; color: #f8fafc; font-size: .9rem; }
.mini-grid small,
.reason-grid small { display: block; color: #b9ccdc; line-height: 1.35; margin-top: 4px; }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.pill-grid span {
  padding: 9px 13px;
  text-align: left;
  color: #e0f2fe;
  font-size: .86rem;
}
.join-subtitle {
  font-size: 1.15rem;
  margin: 0 0 -4px;
}
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.reason-grid > div {
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
}
.reason-grid span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.35), rgba(56,189,248,.32));
  font-size: 1.5rem;
}
.join-stats {
  margin-top: 22px;
  border-radius: 22px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.join-stats > div {
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-right: 1px solid rgba(203,213,225,.22);
}
.join-stats > div:last-child { border-right: 0; }
.join-stats span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.34), rgba(34,197,94,.32));
  border: 1px solid rgba(125,211,252,.24);
}
.join-stats strong { display: block; color: #f8fafc; font-size: 1.55rem; line-height: 1; }
.join-stats small { display: block; color: #d1e5ef; line-height: 1.25; }
.join-footer-note {
  text-align: center;
  color: #bfd4e3;
  margin: 16px 0 0;
  font-size: .93rem;
}
@media (max-width: 1160px) {
  .join-layout { grid-template-columns: 1fr; }
  .join-info-stack { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .join-shell { width: min(100% - 22px, 760px); padding-top: 14px; }
  .join-hero h1 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .join-form-grid,
  .join-actions,
  .mini-grid,
  .reason-grid,
  .join-stats { grid-template-columns: 1fr; }
  .join-stats > div { border-right: 0; border-bottom: 1px solid rgba(203,213,225,.18); padding: 12px 4px; }
  .join-stats > div:last-child { border-bottom: 0; }
  .join-form-card,
  .join-info-card { padding: 18px; border-radius: 20px; }
}

/* === LacColibita.ro V2.2: Acasă + Galerie visual upgrade === */
.home-v2::before,
.gallery-v2::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(56,189,248,.18), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(34,197,94,.16), transparent 34%),
    linear-gradient(180deg, rgba(2,6,23,.38), rgba(2,6,23,.78) 62%, rgba(2,6,23,.95));
}
.home-v2 .parallax-layer.mountains,
.gallery-v2 .parallax-layer.mountains { opacity: .38; }
.home-shell,
.gallery-shell-v2 {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}
.home-hero-v2,
.gallery-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .86fr);
  gap: 24px;
  align-items: stretch;
  min-height: 560px;
  padding: 34px 0 24px;
}
.home-hero-copy,
.home-hero-panel,
.home-glass-card,
.home-mini-card,
.home-feature-card,
.home-cta-band,
.gallery-mosaic,
.gallery-category-card,
.gallery-photo-tile,
.gallery-contribute-band {
  border: 1px solid rgba(125,211,252,.24);
  background: linear-gradient(145deg, rgba(15,45,70,.78), rgba(8,23,42,.74));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(2,6,23,.62), inset 0 1px 0 rgba(255,255,255,.08);
}
.home-hero-copy,
.gallery-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  padding: clamp(26px, 4vw, 54px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.home-hero-copy::before,
.gallery-hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(2,6,23,.78), rgba(2,6,23,.26)),
    url('/assets/img/hero-marea-de-la-munte.webp') center/cover no-repeat;
  opacity: .82;
}
.home-kicker {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(56,189,248,.56);
  background: rgba(8,20,38,.62);
  color: #e0f2fe;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  box-shadow: 0 0 26px rgba(56,189,248,.14), inset 0 0 18px rgba(34,197,94,.07);
}
.home-kicker.small { font-size: .78rem; margin-bottom: 12px; }
.home-hero-copy h1,
.gallery-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 5.4vw, 5.6rem);
  line-height: .96;
  letter-spacing: -.055em;
  color: #f8fafc;
  text-shadow: 0 18px 50px rgba(2,6,23,.82);
}
.home-hero-copy p,
.gallery-hero-copy p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #dbeafe;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.58;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.home-hero-actions .join-btn,
.home-cta-actions .join-btn { min-height: 48px; padding: 0 18px; }
.home-hero-panel {
  border-radius: 30px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}
.home-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,23,.08), rgba(2,6,23,.78)),
    url('/assets/img/mancare/panoramic-3-beach-lake.webp') center/cover no-repeat;
  opacity: .78;
}
.home-hero-panel > * { position: relative; z-index: 1; }
.home-panel-badge {
  width: max-content;
  margin-bottom: auto;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(74,222,128,.34);
  color: #dcfce7;
  font-weight: 800;
  font-size: .82rem;
}
.home-hero-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1;
  color: #f8fafc;
}
.home-hero-panel p { margin: 0; color: #dbeafe; line-height: 1.55; }
.home-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.home-mini-stats div {
  border-radius: 16px;
  padding: 13px 10px;
  background: rgba(2,6,23,.46);
  border: 1px solid rgba(125,211,252,.24);
  text-align: center;
}
.home-mini-stats strong { display:block; font-size: 1.35rem; color:#f8fafc; }
.home-mini-stats span { display:block; margin-top:3px; color:#cbd5e1; font-size:.78rem; line-height:1.25; }
.home-section-v2,
.gallery-section-v2 { padding: 38px 0 20px; }
.home-section-head { max-width: 820px; margin: 0 auto 22px; text-align: center; }
.home-section-head.compact { margin-bottom: 18px; }
.home-section-head > span,
.home-cta-band > div > span,
.gallery-contribute-band > div > span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #86efac;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.home-section-head h2,
.home-glass-card h2,
.home-cta-band h2,
.gallery-contribute-band h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  letter-spacing: -.025em;
}
.home-section-head p,
.home-glass-card p,
.home-cta-band p,
.gallery-contribute-band p { color:#cbd5e1; line-height:1.58; }
.home-section-head p { margin: 8px auto 0; max-width: 760px; }
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.home-feature-card,
.gallery-category-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  border-radius: 24px;
  padding: 20px;
  text-decoration: none;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-feature-card::before,
.gallery-category-card::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(2,6,23,.18), rgba(2,6,23,.86)),
    var(--card-img, var(--gallery-img)) center/cover no-repeat;
  z-index:-2;
  transition: transform .28s ease, opacity .28s ease;
}
.home-feature-card::after,
.gallery-category-card::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: radial-gradient(circle at 18% 18%, rgba(56,189,248,.22), transparent 34%);
}
.home-feature-card:hover,
.gallery-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,.78);
  box-shadow: 0 34px 80px rgba(2,6,23,.74);
}
.home-feature-card:hover::before,
.gallery-category-card:hover::before { transform: scale(1.045); }
.home-feature-tag,
.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #dcfce7;
  background: rgba(8,27,48,.58);
  border: 1px solid rgba(125,211,252,.28);
  font-weight: 800;
  font-size: .78rem;
}
.home-feature-icon,
.gallery-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  font-size: 1.6rem;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.38), rgba(34,197,94,.32));
  border: 1px solid rgba(125,211,252,.25);
  box-shadow: 0 14px 34px rgba(2,6,23,.42);
}
.home-feature-card h3,
.gallery-category-card h3 { margin: 0 0 8px; font-size: 1.22rem; }
.home-feature-card p,
.gallery-category-card p { margin: 0; color:#dbeafe; line-height:1.45; font-size:.93rem; }
.home-feature-card strong,
.gallery-category-card strong { margin-top: 14px; color:#7dd3fc; }
.home-split-v2 {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 18px;
  padding: 34px 0 18px;
}
.home-glass-card { border-radius: 26px; padding: 26px; }
.home-map-card {
  background:
    linear-gradient(145deg, rgba(15,45,70,.78), rgba(8,23,42,.74)),
    radial-gradient(circle at 20% 20%, rgba(34,197,94,.18), transparent 34%);
}
.home-map-card .join-btn { margin-top: 18px; width: max-content; padding-inline: 18px; }
.home-season-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.home-mini-card { border-radius: 22px; padding: 20px; }
.home-mini-card span { font-size: 2rem; display:block; margin-bottom:10px; }
.home-mini-card h3 { margin:0 0 8px; color:#f8fafc; font-size:1.05rem; }
.home-mini-card p { margin:0; color:#cbd5e1; line-height:1.48; font-size:.9rem; }
.home-cta-band,
.gallery-contribute-band {
  margin-top: 32px;
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background:
    radial-gradient(circle at 15% 25%, rgba(34,197,94,.18), transparent 30%),
    linear-gradient(145deg, rgba(15,45,70,.82), rgba(8,23,42,.78));
}
.home-cta-actions { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:12px; }
.gallery-hero-v2 { grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); }
.gallery-mosaic {
  border-radius: 30px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
  min-height: 520px;
}
.gallery-mosaic-item,
.gallery-photo-tile {
  margin: 0;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(125,211,252,.18);
  box-shadow: inset 0 -80px 90px rgba(2,6,23,.55);
}
.gallery-mosaic-item::before,
.gallery-photo-tile::before {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 38%, rgba(2,6,23,.78));
}
.gallery-mosaic-item figcaption,
.gallery-photo-tile figcaption {
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:1;
  color:#f8fafc;
  font-weight:800;
  text-shadow:0 8px 22px rgba(2,6,23,.8);
}
.gallery-mosaic .item-1 { grid-column: 1 / 4; grid-row: 1 / 3; }
.gallery-mosaic .item-2 { grid-column: 4 / 7; grid-row: 1 / 2; }
.gallery-mosaic .item-3 { grid-column: 4 / 7; grid-row: 2 / 4; }
.gallery-mosaic .item-4 { grid-column: 1 / 3; grid-row: 3 / 5; }
.gallery-mosaic .item-5 { grid-column: 3 / 7; grid-row: 4 / 5; }
.gallery-category-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px; }
.gallery-category-card { min-height: 360px; }
.gallery-photo-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.gallery-photo-tile { min-height: 245px; }
.gallery-photo-tile:nth-child(1),
.gallery-photo-tile:nth-child(6) { min-height: 300px; }
@media (max-width: 1160px) {
  .home-hero-v2,
  .gallery-hero-v2,
  .home-split-v2,
  .home-cta-band,
  .gallery-contribute-band { grid-template-columns: 1fr; }
  .home-feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-category-grid { grid-template-columns: 1fr; }
  .home-cta-actions { justify-content:flex-start; }
}
@media (max-width: 760px) {
  .home-shell,
  .gallery-shell-v2 { width: min(100% - 22px, 720px); padding-top: 18px; }
  .home-hero-v2,
  .gallery-hero-v2 { min-height: unset; padding-top: 18px; }
  .home-hero-copy,
  .gallery-hero-copy,
  .home-hero-panel,
  .home-glass-card,
  .home-cta-band,
  .gallery-contribute-band { border-radius: 22px; padding: 20px; }
  .home-hero-copy h1,
  .gallery-hero-copy h1 { font-size: clamp(2.18rem, 12vw, 3.7rem); }
  .home-feature-grid,
  .home-season-grid,
  .gallery-photo-grid,
  .home-mini-stats { grid-template-columns: 1fr; }
  .home-feature-card,
  .gallery-category-card { min-height: 270px; }
  .gallery-mosaic { min-height: unset; grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-mosaic .item-1,
  .gallery-mosaic .item-2,
  .gallery-mosaic .item-3,
  .gallery-mosaic .item-4,
  .gallery-mosaic .item-5 { grid-column: auto; grid-row: auto; min-height: 180px; }
  .gallery-photo-tile,
  .gallery-photo-tile:nth-child(1),
  .gallery-photo-tile:nth-child(6) { min-height: 210px; }
}

/* V2.3 — profile lists, local business page, promotion plans */
.profile-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}
.profile-row {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: stretch;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(125,211,252,.24);
  background:
    radial-gradient(circle at 15% 20%, rgba(34,197,94,.14), transparent 30%),
    linear-gradient(135deg, rgba(15,45,70,.78), rgba(5,18,36,.82));
  box-shadow: 0 24px 70px rgba(2,6,23,.42);
  overflow: hidden;
}
.profile-row::before {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(56,189,248,.08), transparent 40%, rgba(34,197,94,.08));
  pointer-events:none;
}
.profile-row-image {
  position: relative;
  min-height: 150px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(2,6,23,.18), rgba(2,6,23,.72)), var(--row-img) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 -60px 90px rgba(2,6,23,.45);
}
.profile-row-main { position:relative; z-index:1; align-self:center; }
.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  padding: 6px 11px;
  margin-bottom: 8px;
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(8,47,73,.58);
  border: 1px solid rgba(125,211,252,.26);
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.profile-pill::before { content:""; width:7px; height:7px; border-radius:50%; background:#22c55e; box-shadow:0 0 12px rgba(34,197,94,.9); }
.profile-row h3 { margin: 0 0 8px; font-size: clamp(1.18rem, 2vw, 1.65rem); color:#f8fafc; }
.profile-row .meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 10px; }
.profile-row .meta span {
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(15,23,42,.62);
  border: 1px solid rgba(148,163,184,.18);
  color:#cbd5e1;
  font-size:.84rem;
}
.profile-row p { margin:0; color:#dbeafe; line-height:1.55; }
.profile-row-actions {
  position: relative;
  z-index: 1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:stretch;
  gap:10px;
  min-width: 170px;
}
.profile-row-actions .btn { min-height: 42px; }
.list-hero-premium .page-hero-inner { max-width: 820px; }
.detail-hero-card {
  display: grid;
  grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr);
  gap: 24px;
  align-items: stretch;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(125,211,252,.24);
  background:
    radial-gradient(circle at 10% 12%, rgba(56,189,248,.16), transparent 32%),
    linear-gradient(145deg, rgba(15,45,70,.80), rgba(5,18,36,.84));
  box-shadow: 0 30px 90px rgba(2,6,23,.52);
}
.detail-photo {
  min-height: 430px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(2,6,23,.04), rgba(2,6,23,.68)), var(--detail-img) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 -120px 140px rgba(2,6,23,.52);
}
.detail-content { padding: 22px 10px 22px 0; align-self: center; }
.detail-content h1 { margin: 0 0 12px; font-size: clamp(2.1rem, 4vw, 4.4rem); line-height: .95; }
.detail-content .lead { color:#dbeafe; font-size: 1.02rem; line-height: 1.65; }
.detail-meta-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:12px; margin:22px 0; }
.detail-meta-grid div { border-radius: 18px; padding: 14px; background:rgba(15,23,42,.54); border:1px solid rgba(125,211,252,.18); }
.detail-meta-grid strong { display:block; color:#7dd3fc; margin-bottom:4px; }
.detail-meta-grid span { color:#e2e8f0; font-size:.9rem; }
.detail-actions { display:flex; flex-wrap:wrap; gap:10px; }
.detail-feature-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.local-business-shell { max-width: 1180px; }
.local-hero-v2 {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) 360px;
  gap: 22px;
  align-items: center;
  padding: 34px 0 28px;
}
.local-hero-copy {
  border-radius: 32px;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(34,197,94,.18), transparent 34%),
    linear-gradient(145deg, rgba(15,45,70,.72), rgba(5,18,36,.74));
  border: 1px solid rgba(125,211,252,.22);
  box-shadow: 0 30px 85px rgba(2,6,23,.48);
}
.local-hero-copy h1,
.promo-hero h1 { font-size: clamp(2.5rem, 6vw, 6rem); line-height:.94; margin: 10px 0 16px; letter-spacing:-.055em; }
.local-hero-copy p,
.promo-hero p { color:#dbeafe; font-size:1.08rem; line-height:1.65; max-width: 850px; }
.local-hero-panel { display:grid; gap:14px; }
.local-panel-card {
  min-height: 128px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(15,45,70,.75), rgba(8,23,42,.72));
  border: 1px solid rgba(125,211,252,.22);
  box-shadow: 0 22px 60px rgba(2,6,23,.4);
}
.local-panel-card strong { font-size:2.2rem; color:#7dd3fc; line-height:1; }
.local-panel-card span { color:#dbeafe; margin-top: 8px; }
.local-category-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:18px; }
.local-category-card {
  min-height: 390px;
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#f8fafc;
  text-decoration:none;
  border:1px solid rgba(125,211,252,.22);
  box-shadow:0 26px 70px rgba(2,6,23,.45);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.local-category-card::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background: linear-gradient(180deg, rgba(2,6,23,.12), rgba(2,6,23,.86)), var(--card-img) center/cover no-repeat;
  transition: transform .3s ease;
}
.local-category-card::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: radial-gradient(circle at 25% 18%, rgba(34,197,94,.24), transparent 34%);
}
.local-category-card:hover { transform:translateY(-6px); border-color:rgba(56,189,248,.78); box-shadow:0 36px 90px rgba(2,6,23,.62); }
.local-category-card:hover::before { transform: scale(1.045); }
.local-category-card h3 { margin: 0 0 8px; font-size:1.35rem; }
.local-category-card p { margin:0 0 14px; color:#dbeafe; line-height:1.5; }
.local-category-card strong { color:#7dd3fc; }
.local-business-split { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:18px; padding:28px 0 12px; }
.local-info-card { min-height: 320px; }
.local-info-card h2 { font-size: clamp(1.55rem, 2.8vw, 2.5rem); margin:8px 0 12px; }
.local-info-card p { color:#dbeafe; line-height:1.62; }
.local-chip-row { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.local-chip-row span { border-radius:999px; padding:8px 12px; background:rgba(15,23,42,.62); border:1px solid rgba(125,211,252,.18); color:#e0f2fe; }
.local-promo-card { background: radial-gradient(circle at 18% 20%, rgba(34,197,94,.18), transparent 36%), linear-gradient(145deg, rgba(15,45,70,.78), rgba(8,23,42,.78)); }
.promo-shell { max-width: 1200px; }
.promo-hero {
  text-align:center;
  padding: 58px 18px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 10%, rgba(56,189,248,.16), transparent 35%),
    linear-gradient(145deg, rgba(15,45,70,.62), rgba(5,18,36,.62));
  border:1px solid rgba(125,211,252,.18);
  box-shadow:0 28px 80px rgba(2,6,23,.44);
}
.promo-hero .home-hero-actions { justify-content:center; }
.pricing-grid-v2 { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:18px; padding:34px 0; }
.pricing-card-v2 {
  position:relative;
  border-radius: 28px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(15,45,70,.80), rgba(8,23,42,.86));
  border: 1px solid rgba(125,211,252,.22);
  box-shadow:0 24px 65px rgba(2,6,23,.42);
  overflow:hidden;
}
.pricing-card-v2.featured { transform: translateY(-10px); border-color: rgba(34,197,94,.58); box-shadow: 0 34px 90px rgba(34,197,94,.16), 0 28px 80px rgba(2,6,23,.5); }
.pricing-card-v2::before { content:""; position:absolute; inset:-30%; background: radial-gradient(circle at 20% 10%, rgba(34,197,94,.15), transparent 32%); pointer-events:none; }
.pricing-icon { width:58px; height:58px; display:grid; place-items:center; border-radius:50%; margin-bottom:14px; font-size:1.7rem; background:radial-gradient(circle at 35% 25%, rgba(255,255,255,.36), rgba(56,189,248,.28)); border:1px solid rgba(125,211,252,.24); }
.pricing-card-v2 h2 { margin:8px 0 8px; font-size:1.26rem; }
.price-line { font-size:1.55rem; font-weight:900; color:#7dd3fc; margin-bottom:10px; }
.pricing-card-v2 p { color:#cbd5e1; line-height:1.52; min-height: 92px; }
.pricing-card-v2 ul { list-style:none; padding:0; margin:18px 0 22px; display:grid; gap:9px; }
.pricing-card-v2 li { color:#e2e8f0; font-size:.92rem; padding-left:22px; position:relative; }
.pricing-card-v2 li::before { content:"✓"; position:absolute; left:0; color:#22c55e; font-weight:900; }
.recommended-badge { position:absolute; top:16px; right:16px; border-radius:999px; padding:6px 10px; background:linear-gradient(90deg,#22c55e,#38bdf8); color:#020617; font-weight:900; font-size:.74rem; }
.promo-process { padding:22px 0 36px; }
@media (max-width: 1100px) {
  .profile-row { grid-template-columns: 170px minmax(0,1fr); }
  .profile-row-actions { grid-column: 1 / -1; flex-direction:row; justify-content:flex-start; }
  .local-hero-v2, .local-business-split, .detail-hero-card { grid-template-columns:1fr; }
  .local-hero-panel { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .local-category-grid, .pricing-grid-v2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .detail-content { padding: 6px; }
}
@media (max-width: 760px) {
  .profile-row { grid-template-columns: 1fr; padding:14px; border-radius:22px; }
  .profile-row-image { min-height: 190px; }
  .profile-row-actions { flex-direction:column; }
  .detail-photo { min-height: 260px; }
  .detail-meta-grid, .local-hero-panel, .local-category-grid, .pricing-grid-v2, .detail-feature-grid { grid-template-columns:1fr; }
  .local-hero-copy, .promo-hero, .detail-hero-card { border-radius:24px; padding:20px; }
  .local-hero-copy h1, .promo-hero h1 { font-size: clamp(2.25rem, 12vw, 4rem); }
  .local-category-card { min-height: 300px; }
  .pricing-card-v2.featured { transform:none; }
}

/* V2.4 — compact professional polish + verified local businesses
   Keeps the existing visual identity, but reduces oversized titles and uses vertical space better. */
:root {
  --lc-compact-radius: 22px;
  --lc-card-bg: linear-gradient(145deg, rgba(15,45,70,.76), rgba(5,18,36,.82));
  --lc-line: rgba(125,211,252,.20);
}
.page-shell, .home-shell { padding-top: 18px; }
.page-section { padding: 24px 0; }
.section-header { margin-bottom: 16px; }
.section-header h2,
.home-section-head h2,
.cta-strip h2,
.local-info-card h2,
.detail-content h1 {
  letter-spacing: -0.025em;
}
.section-header h2 { font-size: clamp(1.45rem, 2.2vw, 2.25rem); line-height: 1.12; margin-bottom: 6px; }
.section-header .lead, .section-header p, .home-section-head p { max-width: 820px; line-height: 1.55; }
.compact-head { margin-bottom: 12px; }

/* Compact heroes: less empty space, more useful content visible above the fold */
.home-hero-v2 { min-height: auto; padding: 28px 0 22px; gap: 18px; }
.home-hero-copy { padding: 28px; border-radius: 28px; }
.home-hero-copy h1 { font-size: clamp(2rem, 4.8vw, 4.45rem); line-height: .98; margin: 8px 0 12px; }
.home-hero-copy p { font-size: 1rem; line-height: 1.58; max-width: 760px; }
.home-hero-panel { border-radius: 26px; padding: 22px; }
.home-hero-panel h2 { font-size: clamp(1.5rem, 2.8vw, 2.4rem); line-height: 1.05; }
.home-mini-stats { gap: 10px; }
.home-mini-stats div { padding: 12px; }
.home-section-v2 { padding: 28px 0; }
.home-feature-card, .local-category-card { border-radius: var(--lc-compact-radius); }
.home-feature-card { min-height: 310px; padding: 20px; }
.home-feature-card h3 { font-size: 1.22rem; }
.home-feature-card p { line-height: 1.48; }

.list-hero-premium { padding: 24px 0 12px; }
.list-hero-premium .page-hero-inner { padding: 24px; border-radius: 28px; }
.list-hero-premium h1,
.page-hero h1 { font-size: clamp(2rem, 4.3vw, 4.15rem); line-height: .98; margin: 8px 0 10px; }
.list-hero-premium p, .page-hero p { font-size: 1rem; line-height: 1.56; }

/* Local businesses page polish */
.local-hero-v2 { min-height: auto; padding: 24px 0 18px; grid-template-columns: minmax(0,1.25fr) 330px; gap: 18px; }
.local-hero-copy { padding: 28px; border-radius: 28px; }
.local-hero-copy h1,
.promo-hero h1 { font-size: clamp(2rem, 4.8vw, 4.4rem); line-height: .98; margin: 8px 0 12px; }
.local-hero-copy p,
.promo-hero p { font-size: 1rem; line-height: 1.56; }
.local-panel-card { min-height: 96px; padding: 18px; border-radius: 22px; }
.local-panel-card strong { font-size: 1.85rem; }
.local-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.local-category-card { min-height: 305px; padding: 18px; }
.local-category-card h3 { font-size: 1.16rem; }
.local-category-card p { font-size: .94rem; line-height: 1.45; }
.local-business-split { gap: 14px; padding: 22px 0 8px; }
.local-info-card { min-height: 250px; }
.local-info-card h2 { font-size: clamp(1.35rem, 2.2vw, 2.05rem); }

.featured-businesses-section { padding-top: 18px; }
.featured-business-list { display: grid; gap: 14px; }
.featured-business-row {
  display: grid;
  grid-template-columns: 170px minmax(0,1fr) 178px;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 14px;
  background: var(--lc-card-bg);
  border: 1px solid var(--lc-line);
  box-shadow: 0 20px 58px rgba(2,6,23,.38);
}
.featured-business-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(34,197,94,.14), transparent 32%), linear-gradient(90deg, rgba(56,189,248,.06), transparent 52%);
  pointer-events: none;
}
.featured-business-media {
  min-height: 118px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(2,6,23,.08), rgba(2,6,23,.65)), var(--biz-img) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
  z-index: 1;
}
.featured-business-media span {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(2,6,23,.62);
  border: 1px solid rgba(125,211,252,.20);
  color: #dffcff;
  font-weight: 800;
  font-size: .76rem;
  text-transform: uppercase;
}
.featured-business-copy { position: relative; z-index: 1; }
.featured-business-copy h3 { margin: 6px 0 6px; font-size: clamp(1.16rem, 1.8vw, 1.55rem); }
.featured-business-copy p { margin: 8px 0 0; color: #dbeafe; line-height: 1.5; }
.featured-business-copy .meta { display: flex; flex-wrap: wrap; gap: 8px; }
.featured-business-copy .meta span { color: #cbd5e1; background: rgba(15,23,42,.56); border: 1px solid rgba(148,163,184,.17); border-radius: 999px; padding: 5px 9px; font-size: .84rem; }
.featured-business-actions { display: grid; gap: 9px; position: relative; z-index: 1; }
.featured-business-actions .btn { width: 100%; min-height: 40px; }

/* Partner / collaborator rows: keep one per row, more compact and readable */
.profile-list { gap: 14px; }
.profile-row { grid-template-columns: 180px minmax(0,1fr) 168px; gap: 16px; padding: 14px; border-radius: 24px; }
.profile-row-image { min-height: 118px; border-radius: 18px; }
.profile-row h3 { font-size: clamp(1.12rem, 1.8vw, 1.5rem); margin-bottom: 6px; }
.profile-row p { line-height: 1.5; }
.profile-row-actions .btn { min-height: 40px; }
.profile-pill { padding: 5px 9px; font-size: .72rem; margin-bottom: 6px; }

/* Promotion page: reduce oversized heading and improve density */
.promo-shell { max-width: 1180px; }
.promo-hero { padding: 30px 18px 24px; border-radius: 28px; }
.pricing-grid-v2 { gap: 14px; padding: 24px 0; }
.pricing-card-v2 { padding: 20px; border-radius: 24px; }
.pricing-card-v2 h2 { font-size: 1.12rem; }
.price-line { font-size: 1.35rem; }
.pricing-card-v2 p { min-height: 78px; font-size: .93rem; }
.pricing-card-v2.featured { transform: translateY(-6px); }

/* Legacy active business cards inside category pages */
.featured-active-business {
  border-color: rgba(34,197,94,.36) !important;
  background: radial-gradient(circle at 10% 10%, rgba(34,197,94,.14), transparent 32%), linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.84)) !important;
  box-shadow: 0 22px 64px rgba(2,6,23,.42) !important;
}
.featured-active-business .partner-title-link { color: #f8fafc; text-decoration: none; }
.featured-active-business .partner-title-link:hover { color: #7dd3fc; }

/* Better buttons and menu density */
.join-btn, .btn { border-radius: 999px; }
.site-header nav a, .main-nav a { white-space: nowrap; }
.cta-strip { padding: 20px; border-radius: 24px; }
.cta-strip h2 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.cta-strip p { line-height: 1.5; }

@media (max-width: 1180px) {
  .local-category-grid, .pricing-grid-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-hero-v2 { grid-template-columns: 1fr; }
  .local-hero-panel { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .featured-business-row, .profile-row { grid-template-columns: 150px minmax(0,1fr); }
  .featured-business-actions, .profile-row-actions { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-hero-v2 { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .page-shell, .home-shell { padding-inline: 14px; }
  .home-hero-copy, .local-hero-copy, .promo-hero, .list-hero-premium .page-hero-inner { padding: 18px; border-radius: 22px; }
  .home-hero-copy h1, .local-hero-copy h1, .promo-hero h1, .list-hero-premium h1 { font-size: clamp(1.85rem, 10vw, 3.05rem); }
  .local-category-grid, .pricing-grid-v2, .local-hero-panel { grid-template-columns: 1fr; }
  .local-category-card { min-height: 250px; }
  .featured-business-row, .profile-row { grid-template-columns: 1fr; }
  .featured-business-media, .profile-row-image { min-height: 180px; }
  .featured-business-actions, .profile-row-actions { grid-template-columns: 1fr; }
}


/* =========================================================
   LacColibita.ro V2.7 — global visual polish / compact heroes
   ========================================================= */
:root {
  --lc-radius-lg: 26px;
  --lc-radius-md: 18px;
  --lc-card-border: rgba(125,211,252,.18);
  --lc-card-bg: linear-gradient(145deg, rgba(15,45,70,.68), rgba(5,18,36,.76));
}
.page-shell { padding-top: clamp(18px, 2.6vw, 34px); padding-bottom: clamp(34px, 4vw, 58px); }
.page-section { margin-top: clamp(24px, 3.4vw, 42px); }
.section-header { margin-bottom: clamp(14px, 2vw, 22px); }
.section-header h2,
.cta-strip h2,
.local-info-card h2,
.home-glass-card h2,
.home-hero-panel h2 { font-size: clamp(1.28rem, 1.7vw, 2.02rem) !important; line-height:1.12; letter-spacing:-.025em; }
.section-header .lead,
.page-hero-inner p,
.home-hero-copy p,
.gallery-hero-copy p,
.local-hero-copy p,
.promo-hero p,
.detail-content .lead { font-size: clamp(.94rem, .78vw + .72rem, 1.04rem) !important; line-height:1.55; }
.hero h1,
.page-hero h1,
.page-hero-inner h1,
.home-hero-copy h1,
.gallery-hero-copy h1,
.join-hero h1,
.list-hero-premium h1,
.local-hero-copy h1,
.promo-hero h1,
.detail-content h1 { font-size: clamp(1.85rem, 3.1vw, 3.35rem) !important; line-height:1.02 !important; letter-spacing:-.045em; margin: 6px 0 10px !important; }
.hero,
.page-hero,
.home-hero-v2,
.gallery-hero-v2,
.local-hero-v2,
.promo-hero,
.join-hero,
.list-hero-premium { min-height: auto !important; padding-top: clamp(20px, 3vw, 38px) !important; padding-bottom: clamp(20px, 3vw, 38px) !important; }
.local-hero-v2 { grid-template-columns: minmax(0,1.25fr) 320px; }
.local-hero-copy,
.promo-hero,
.home-hero-copy,
.gallery-hero-copy,
.detail-hero-card,
.cta-strip,
.card,
.home-glass-card,
.pricing-card-v2,
.profile-row,
.featured-business-row { border-radius: var(--lc-radius-lg); }
.card,
.home-glass-card,
.pricing-card-v2 { padding: clamp(18px, 2vw, 24px); }
.feature-grid,
.local-category-grid,
.pricing-grid-v2 { gap: clamp(14px, 1.8vw, 20px); }
.home-hero-actions,
.cta-actions,
.detail-actions { gap: 9px; }
.btn,
.join-btn { min-height: 40px; padding: 10px 16px; }
.pricing-card-v2 .price-line { font-size: clamp(1.48rem, 2.4vw, 2.2rem); letter-spacing:-.035em; }
.pricing-card-v2 h2 { font-size: clamp(1.18rem, 1.5vw, 1.55rem); }
.pricing-card-v2 ul { margin-top: 14px; }
.pricing-card-v2 li { margin: 8px 0; }
.detail-gallery-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:18px; }
.detail-gallery-card { border-radius: 24px; overflow:hidden; border:1px solid rgba(125,211,252,.18); background: var(--lc-card-bg); box-shadow: 0 18px 48px rgba(2,6,23,.34); }
.detail-gallery-card img { display:block; width:100%; height:280px; object-fit:cover; }
.detail-gallery-section { margin-top: clamp(22px, 3vw, 36px); }
.featured-business-row { padding: clamp(14px, 1.8vw, 18px); }
.featured-business-media { min-height: 150px; }
.partner-card .partner-photos .photo-slot img,
.photo-slot img { object-fit: cover; }
@media (max-width: 980px) {
  .local-hero-v2 { grid-template-columns:1fr; }
  .detail-gallery-grid { grid-template-columns: 1fr; }
  .detail-gallery-card img { height: 240px; }
}
@media (max-width: 680px) {
  .hero h1,
  .page-hero h1,
  .page-hero-inner h1,
  .home-hero-copy h1,
  .gallery-hero-copy h1,
  .join-hero h1,
  .list-hero-premium h1,
  .local-hero-copy h1,
  .promo-hero h1,
  .detail-content h1 { font-size: clamp(1.65rem, 8vw, 2.45rem) !important; }
  .page-shell { padding-left: 14px; padding-right: 14px; }
  .card,
  .home-glass-card,
  .pricing-card-v2 { padding: 16px; }
}

/* V2.8 — Platform Core Listings */
.v28-compact-hero {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:22px 0 14px;
  min-height:auto;
}
.v28-compact-hero h1 {
  margin:8px 0 8px;
  font-size:clamp(2rem, 4.4vw, 4.6rem);
  line-height:1;
  letter-spacing:-.05em;
}
.v28-compact-hero p { max-width:820px; color:#dbeafe; line-height:1.62; margin:0; }
.v28-hero-actions { display:flex; flex-direction:column; gap:10px; min-width:220px; }
.v28-filter-card {
  margin:14px 0 20px;
  padding:16px;
  border-radius:24px;
  border:1px solid rgba(125,211,252,.18);
  background:linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.76));
  box-shadow:0 20px 55px rgba(2,6,23,.32);
}
.v28-filter-form { display:grid; grid-template-columns:1.4fr .8fr auto auto; gap:12px; align-items:end; }
.v28-filter-form label, .v28-form label { display:flex; flex-direction:column; gap:6px; color:#cbd5e1; font-size:.88rem; }
.v28-filter-form input, .v28-filter-form select,
.v28-form input, .v28-form select, .v28-form textarea {
  min-height:44px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.26);
  background:rgba(2,6,23,.36);
  color:#fff;
  padding:10px 12px;
  outline:none;
}
.v28-form textarea { min-height:120px; resize:vertical; }
.v28-listing-list { display:grid; gap:16px; }
.v28-listing-row {
  position:relative;
  display:grid;
  grid-template-columns:220px minmax(0,1fr) 180px;
  gap:18px;
  align-items:stretch;
  padding:14px;
  border-radius:26px;
  border:1px solid rgba(125,211,252,.2);
  background:linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.78));
  box-shadow:0 22px 65px rgba(2,6,23,.34);
  overflow:hidden;
}
.v28-listing-row::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 14% 12%, rgba(34,197,94,.14), transparent 35%); pointer-events:none; }
.v28-listing-img { position:relative; z-index:1; min-height:150px; border-radius:20px; background:linear-gradient(180deg, transparent, rgba(2,6,23,.58)), var(--listing-img) center/cover no-repeat; border:1px solid rgba(255,255,255,.12); overflow:hidden; }
.v28-listing-img span { position:absolute; left:12px; bottom:12px; padding:7px 10px; border-radius:999px; background:rgba(2,6,23,.7); border:1px solid rgba(125,211,252,.2); color:#dff7ff; font-size:.78rem; }
.v28-listing-copy, .v28-listing-actions { position:relative; z-index:1; }
.v28-row-top { display:flex; flex-wrap:wrap; align-items:center; gap:10px; margin-bottom:8px; }
.v28-row-top small { color:#cbd5e1; }
.v28-listing-copy h3 { margin:0 0 8px; font-size:1.45rem; }
.v28-listing-copy h3 a { color:#e0f2fe; text-decoration:none; }
.v28-listing-copy p { color:#dbeafe; line-height:1.55; margin:0 0 10px; }
.v28-chipline { display:flex; flex-wrap:wrap; gap:8px; }
.v28-chipline span { border-radius:999px; padding:6px 10px; background:rgba(125,211,252,.12); border:1px solid rgba(125,211,252,.18); color:#dbeafe; font-size:.82rem; }
.v28-listing-actions { display:flex; flex-direction:column; justify-content:center; gap:10px; }
.v28-form { max-width:860px; margin:0 auto; }
.v28-form h2 { margin:0 0 14px; font-size:1.65rem; }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.form-grid .full { grid-column:1/-1; }
.hp-field { position:absolute !important; left:-9999px !important; opacity:0 !important; }
.consent-line { flex-direction:row !important; align-items:flex-start; margin:14px 0; line-height:1.45; }
.consent-line input { min-height:auto; margin-top:4px; }
.form-actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
.form-success, .form-error { border-radius:14px; padding:12px 14px; margin-bottom:14px; }
.form-success { background:rgba(34,197,94,.16); border:1px solid rgba(34,197,94,.28); color:#bbf7d0; }
.form-error { background:rgba(239,68,68,.16); border:1px solid rgba(239,68,68,.28); color:#fecaca; }
.v28-profile-hero .detail-content h1 { font-size:clamp(2rem, 4vw, 4.2rem); }
.detail-gallery-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.detail-gallery-card { border-radius:24px; overflow:hidden; border:1px solid rgba(125,211,252,.18); background:rgba(15,45,70,.54); box-shadow:0 18px 48px rgba(2,6,23,.32); }
.detail-gallery-card img { display:block; width:100%; height:280px; object-fit:cover; }
.v28-admin-table { width:100%; border-collapse:collapse; margin-top:14px; overflow:hidden; border-radius:18px; }
.v28-admin-table th, .v28-admin-table td { padding:10px; border-bottom:1px solid rgba(148,163,184,.18); text-align:left; vertical-align:top; }
.v28-admin-table th { color:#7dd3fc; background:rgba(15,23,42,.34); }
.v28-admin-table td { color:#dbeafe; }
.v28-core-cta { margin:24px 0; }
@media (max-width: 980px) {
  .v28-compact-hero, .v28-filter-form { grid-template-columns:1fr; display:grid; }
  .v28-hero-actions { flex-direction:row; flex-wrap:wrap; min-width:0; }
  .v28-listing-row { grid-template-columns:160px minmax(0,1fr); }
  .v28-listing-actions { grid-column:1/-1; flex-direction:row; }
  .detail-gallery-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .v28-listing-row { grid-template-columns:1fr; }
  .v28-listing-img { min-height:220px; }
  .form-grid { grid-template-columns:1fr; }
  .v28-compact-hero h1 { font-size:2.1rem; }
}


/* V2.8.3 promotion pricing polish */
.promo-v283-shell { max-width: 1220px; }
.promo-hero-v283 {
  min-height: auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:18px;
  align-items:stretch;
  padding:28px;
  border-radius:30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(34,197,94,.18), transparent 34%),
    linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.74));
  border:1px solid rgba(125,211,252,.22);
  box-shadow:0 28px 80px rgba(2,6,23,.44);
}
.promo-hero-v283 h1 { font-size:clamp(2rem,4.2vw,4.6rem); line-height:.96; margin:10px 0 12px; letter-spacing:-.05em; }
.promo-hero-v283 p { max-width:760px; color:#dbeafe; line-height:1.62; font-size:1rem; }
.promo-pay-box {
  display:flex; flex-direction:column; justify-content:center; gap:10px;
  border-radius:24px; padding:22px;
  background:linear-gradient(145deg, rgba(8,47,73,.72), rgba(6,78,59,.50));
  border:1px solid rgba(52,211,153,.25);
}
.promo-pay-box strong { color:#bbf7d0; font-size:1.25rem; }
.promo-pay-box p { margin:0; color:#dbeafe; font-size:.94rem; }
.promo-pay-box span { display:inline-flex; width:max-content; max-width:100%; border-radius:999px; padding:8px 12px; background:rgba(34,197,94,.16); color:#86efac; border:1px solid rgba(34,197,94,.28); font-weight:800; }
.promo-guidance-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin:16px 0 22px; }
.promo-guidance-grid article { border-radius:18px; padding:16px; background:rgba(15,45,70,.62); border:1px solid rgba(125,211,252,.18); }
.promo-guidance-grid strong { display:block; color:#7dd3fc; margin-bottom:5px; }
.promo-guidance-grid span { color:#cbd5e1; font-size:.9rem; line-height:1.45; }
.pricing-grid-v283 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; align-items:stretch; }
.pricing-card-v283 { position:relative; display:flex; flex-direction:column; gap:12px; border-radius:26px; padding:20px; background:linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.82)); border:1px solid rgba(125,211,252,.18); box-shadow:0 22px 64px rgba(2,6,23,.38); }
.pricing-card-v283.featured { border-color:rgba(52,211,153,.55); box-shadow:0 28px 80px rgba(16,185,129,.18), 0 22px 64px rgba(2,6,23,.44); }
.plan-topline { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.plan-topline .pricing-icon { width:46px; height:46px; display:grid; place-items:center; border-radius:16px; background:rgba(14,165,233,.13); border:1px solid rgba(125,211,252,.22); font-size:1.35rem; }
.plan-badge { border-radius:999px; padding:6px 10px; background:rgba(34,197,94,.14); border:1px solid rgba(34,197,94,.24); color:#86efac; font-size:.76rem; font-weight:900; text-transform:uppercase; letter-spacing:.06em; }
.pricing-card-v283 h2 { margin:0; font-size:1.55rem; letter-spacing:-.025em; }
.plan-type { margin:0; color:#7dd3fc; font-weight:800; }
.plan-prices { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.plan-prices div { border-radius:16px; padding:12px; background:rgba(15,23,42,.44); border:1px solid rgba(148,163,184,.16); }
.plan-prices small { display:block; color:#94a3b8; margin-bottom:4px; }
.plan-prices strong { color:#fff; font-size:1.05rem; }
.plan-desc, .plan-fit span, .plan-note { color:#dbeafe; line-height:1.55; font-size:.92rem; }
.plan-fit { border-radius:16px; padding:12px; background:rgba(14,165,233,.10); border:1px solid rgba(125,211,252,.16); }
.plan-fit strong { display:block; color:#bae6fd; margin-bottom:4px; }
.plan-details { border-radius:16px; padding:10px 12px; background:rgba(2,6,23,.22); border:1px solid rgba(148,163,184,.14); }
.plan-details summary { cursor:pointer; color:#e0f2fe; font-weight:900; }
.plan-details ul { margin:10px 0 0; padding:0; list-style:none; display:grid; gap:7px; }
.plan-details li { color:#dbeafe; font-size:.88rem; line-height:1.35; }
.plan-details:not(.muted) li::before { content:'✓ '; color:#4ade80; font-weight:900; }
.plan-details.muted li::before { content:'– '; color:#fbbf24; font-weight:900; }
.plan-note { margin-top:auto; padding-top:4px; color:#bfdbfe; }
.comparison-v283, .commercial-note-v283 { margin-top:28px; border-radius:26px; padding:22px; background:rgba(15,45,70,.58); border:1px solid rgba(125,211,252,.18); }
.comparison-table-wrap { overflow-x:auto; }
.comparison-table-v283 { width:100%; border-collapse:separate; border-spacing:0 8px; min-width:760px; }
.comparison-table-v283 th { text-align:left; color:#7dd3fc; padding:8px 12px; }
.comparison-table-v283 td { padding:14px 12px; background:rgba(15,23,42,.50); color:#dbeafe; border-top:1px solid rgba(148,163,184,.12); border-bottom:1px solid rgba(148,163,184,.12); }
.comparison-table-v283 td:first-child { border-left:1px solid rgba(148,163,184,.12); border-radius:14px 0 0 14px; color:#fff; font-weight:900; }
.comparison-table-v283 td:last-child { border-right:1px solid rgba(148,163,184,.12); border-radius:0 14px 14px 0; }
.comparison-table-v283 .recommended-row td { background:rgba(34,197,94,.13); border-color:rgba(34,197,94,.24); }
.commercial-note-v283 h2 { margin:0 0 10px; font-size:1.35rem; }
.commercial-note-v283 p { margin:0; color:#dbeafe; line-height:1.65; }
@media (max-width: 980px) {
  .promo-hero-v283 { grid-template-columns:1fr; padding:20px; }
  .promo-guidance-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .pricing-grid-v283 { grid-template-columns:1fr; }
}
@media (max-width: 620px) {
  .promo-guidance-grid { grid-template-columns:1fr; }
  .plan-prices { grid-template-columns:1fr; }
}


/* V2.8.5 — form polish, dropdown visibility, dynamic stat layout */
.join-field select,
.v28-filter-form select {
  color: #f8fafc !important;
  background: rgba(8,27,48,.92) !important;
  appearance: auto;
}
.join-field select option,
.v28-filter-form select option {
  background: #0f2d46;
  color: #f8fafc;
}
.join-stats > div { align-content: center; }
.join-stats span { grid-row: 1 / span 2; }
.join-stats strong,
.join-stats small { grid-column: 2; min-width: 0; }
.join-stats small { max-width: 180px; }
.listing-plan-pill {
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  border-radius:999px;
  padding:5px 9px;
  background:rgba(34,197,94,.13);
  border:1px solid rgba(34,197,94,.25);
  color:#86efac;
  font-size:.75rem;
  font-weight:900;
}
.v28-row-top { flex-wrap: wrap; }
@media (max-width:860px){
  .join-stats > div { grid-template-columns:48px 1fr; }
  .join-stats small { max-width:none; }
}

/* V2.8.6 — logos colaboratori + abonament discret parteneri */
.profile-row-badges {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:8px;
}
.profile-row-badges .profile-pill { margin-bottom:0; }
.subtle-plan-pill {
  background: rgba(125,211,252,.10);
  border-color: rgba(125,211,252,.22);
  color: #bae6fd;
  letter-spacing:.01em;
}
.collaborator-row .profile-row-image,
.v28-listing-row .v28-listing-img[style*="colaboratori"] {
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: rgba(2,6,23,.55);
  box-shadow: inset 0 0 0 999px rgba(2,6,23,.08);
}
.collaborator-detail .detail-photo,
.v28-profile-hero .detail-photo[style*="colaboratori"] {
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: rgba(2,6,23,.55);
  box-shadow: inset 0 0 0 999px rgba(2,6,23,.12);
}
.collab-logo-strip {
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  margin-bottom:14px;
  border-radius:18px;
  background:rgba(2,6,23,.42);
  border:1px solid rgba(125,211,252,.16);
}
.collab-logo-strip.light-logo { background:rgba(255,255,255,.88); }
.collab-logo-strip img {
  max-width:100%;
  max-height:64px;
  object-fit:contain;
}
.detail-meta-grid { grid-template-columns: repeat(auto-fit,minmax(145px,1fr)); }


/* V2.9 branding, compact footer and activities polish */
.logo-wrap.logo-only { text-decoration:none; min-width: 178px; }
.site-logo-wide { display:block; width: clamp(150px, 14vw, 235px); height:auto; max-height:54px; object-fit:contain; filter: drop-shadow(0 8px 18px rgba(56,189,248,.20)); }
.logo-wrap.logo-only .site-logo-wide { border-radius:0; }
.site-header { gap: 12px; padding: 8px 16px; }
.main-nav ul { gap: 8px; }
.main-nav a { font-size: .84rem; padding: 4px 7px; }
.header-right { gap: 8px; }
.home-hero-v29 { position:relative; overflow:hidden; }
.home-hero-v29::before { content:""; position:absolute; inset:0; border-radius:32px; background: linear-gradient(90deg, rgba(2,6,23,.70), rgba(2,6,23,.34)), url('/assets/img/website/pagini/home/hero-apus-lacul-colibita.webp') center/cover no-repeat; opacity:.34; pointer-events:none; }
.home-hero-v29 > * { position:relative; z-index:1; }
.footer-v29 { padding: 18px 18px 14px; background: linear-gradient(180deg, rgba(8,21,38,.96), rgba(4,13,25,.98)); }
.footer-compact { max-width:1180px; margin:0 auto; display:grid; grid-template-columns: minmax(240px,1.35fr) minmax(280px,1.5fr) minmax(160px,.7fr) minmax(170px,.75fr); gap:18px; align-items:start; }
.footer-brand img { width:min(260px, 100%); height:auto; display:block; filter: drop-shadow(0 12px 22px rgba(56,189,248,.18)); }
.footer-brand p { color:#b7c7d9; font-size:.86rem; line-height:1.5; margin:8px 0 0; max-width:370px; }
.footer-link-group h5 { margin: 4px 0 10px; color:#dff7ff; letter-spacing:.03em; text-transform:uppercase; font-size:.78rem; }
.footer-chips { display:flex; flex-wrap:wrap; gap:8px; }
.footer-chips a { display:inline-flex; align-items:center; min-height:30px; border-radius:999px; padding:6px 10px; color:#dbeafe; text-decoration:none; background:rgba(15,45,70,.55); border:1px solid rgba(125,211,252,.18); font-size:.8rem; transition:.2s ease; }
.footer-chips a:hover { color:#fff; border-color:rgba(56,189,248,.55); transform:translateY(-1px); }
.footer-chips.regional a { background:linear-gradient(135deg, rgba(34,197,94,.18), rgba(56,189,248,.14)); font-weight:700; }
.footer-chips.legal a { font-size:.76rem; opacity:.9; }
.footer-bottom { border-top:1px solid rgba(125,211,252,.12); padding-top:10px; }
.activities-shell-v29 { max-width:1180px; }
.activities-hero-v29 { border-radius:32px; padding:34px; margin:26px 0 22px; min-height:390px; display:flex; align-items:end; background: linear-gradient(90deg, rgba(2,6,23,.68), rgba(2,6,23,.26)), url('/assets/img/website/pagini/home/activitati-glamping-colibita.webp') center/cover no-repeat; border:1px solid rgba(125,211,252,.22); box-shadow:0 28px 80px rgba(2,6,23,.42); }
.activities-hero-v29 h1 { margin:8px 0 10px; font-size:clamp(2rem,4.8vw,4.4rem); letter-spacing:-.045em; line-height:.94; }
.activities-hero-v29 p { max-width:720px; color:#dbeafe; font-size:1.04rem; line-height:1.58; }
.activities-grid-v29 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.activities-card-v29 { display:flex; flex-direction:column; min-height:230px; padding:20px; border-radius:24px; text-decoration:none; color:#e5f7ff; background:linear-gradient(145deg, rgba(15,45,70,.74), rgba(5,18,36,.82)); border:1px solid rgba(125,211,252,.18); box-shadow:0 18px 48px rgba(2,6,23,.32); transition:.2s ease; }
.activities-card-v29:hover { transform:translateY(-3px); border-color:rgba(56,189,248,.52); }
.activities-card-v29 span { width:44px; height:44px; border-radius:16px; display:grid; place-items:center; background:rgba(56,189,248,.16); font-size:1.35rem; margin-bottom:14px; }
.activities-card-v29 h3 { margin:0 0 8px; font-size:1.12rem; }
.activities-card-v29 p { margin:0; color:#cbd5e1; line-height:1.52; font-size:.92rem; }
.activities-card-v29 strong { margin-top:auto; padding-top:16px; color:#7dd3fc; }
@media (max-width: 1180px) { .site-logo-wide { width:150px; } .main-nav a { font-size:.79rem; padding:4px 5px; } .footer-compact { grid-template-columns:1fr 1fr; } }
@media (max-width: 900px) { .footer-compact { grid-template-columns:1fr; } .activities-grid-v29 { grid-template-columns:1fr 1fr; } }
@media (max-width: 720px) { .logo-wrap.logo-only { min-width:130px; } .site-logo-wide { width:136px; max-height:44px; } .activities-grid-v29 { grid-template-columns:1fr; } .activities-hero-v29 { min-height:320px; padding:24px; border-radius:24px; } }


/* V2.9.1 - professional menu, events page, simple footer links */
.site-header {
  background: linear-gradient(180deg, rgba(4,18,33,.94), rgba(7,27,49,.82));
  border-bottom: 1px solid rgba(125,211,252,.18);
  box-shadow: 0 12px 34px rgba(2,6,23,.22);
}
.main-nav {
  flex: 1 1 auto;
  justify-content: center;
}
.main-nav ul {
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(2, 12, 24, .34);
  border: 1px solid rgba(125,211,252,.12);
}
.main-nav a {
  display:inline-flex;
  align-items:center;
  min-height: 31px;
  padding: 5px 9px;
  font-size: .82rem;
  color: #dbeafe;
  border: 1px solid transparent;
  background: transparent;
}
.main-nav a::after { display:none; }
.main-nav a:hover,
.main-nav a:focus-visible {
  color:#fff;
  background: linear-gradient(135deg, rgba(56,189,248,.18), rgba(34,197,94,.12));
  border-color: rgba(125,211,252,.24);
  box-shadow: 0 8px 20px rgba(2,6,23,.16);
}
.header-right .regional-switch a,
.lang-switch a,
.theme-toggle {
  border:1px solid rgba(125,211,252,.18);
  background: rgba(15,45,70,.42);
  border-radius:999px;
}
.lang-switch { display:flex; align-items:center; gap:3px; padding:3px; border-radius:999px; background:rgba(2,12,24,.30); border:1px solid rgba(125,211,252,.12); }
.lang-switch a { padding:4px 7px; line-height:1; }
.lang-switch span { color:#7dd3fc; opacity:.55; }
.lang-switch a.active { color:#fff; background:linear-gradient(135deg, rgba(56,189,248,.32), rgba(34,197,94,.20)); object-fit:initial; }
.regional-switch { display:flex; gap:5px; }
.regional-switch a { color:#dbeafe; text-decoration:none; padding:6px 9px; font-size:.78rem; font-weight:700; }
.regional-switch a:hover { color:#fff; border-color:rgba(56,189,248,.44); }

.footer-v291 {
  margin-top: 34px;
  padding: 30px 18px 16px;
  background: linear-gradient(180deg, rgba(8,21,38,.96), rgba(3,11,20,.99));
  border-top: 1px solid rgba(125,211,252,.14);
}
.footer-v291-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px,1.5fr) repeat(4, minmax(140px,.75fr));
  gap: 28px;
  align-items:start;
}
.footer-v291-brand img { width:min(255px,100%); display:block; height:auto; filter: drop-shadow(0 12px 22px rgba(56,189,248,.16)); }
.footer-v291-brand p { margin:10px 0 0; color:#b6c9db; font-size:.88rem; line-height:1.55; max-width:390px; }
.footer-v291-links { display:flex; flex-direction:column; gap:7px; }
.footer-v291-links h5 { margin:0 0 6px; color:#e0f7ff; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; }
.footer-v291-links a { color:#bcd0e4; text-decoration:none; font-size:.88rem; line-height:1.35; padding:1px 0; }
.footer-v291-links a:hover { color:#7dd3fc; text-decoration:underline; text-underline-offset:3px; }
.footer-v291-bottom { max-width:1180px; margin:22px auto 0; padding-top:12px; border-top:1px solid rgba(125,211,252,.10); display:flex; gap:14px; flex-wrap:wrap; justify-content:space-between; color:#91a8bd; font-size:.82rem; }
.footer-v29 .footer-chips { display:none; }

.events-shell-v291 { max-width:1180px; }
.events-hero-v291 {
  margin: 24px 0 22px;
  min-height: 410px;
  display:flex;
  align-items:flex-end;
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(90deg, rgba(2,6,23,.72), rgba(2,6,23,.25)), url('/assets/img/website/pagini/home/parteneri-turism-colaborare.webp') center/cover no-repeat;
  border:1px solid rgba(125,211,252,.22);
  box-shadow:0 28px 80px rgba(2,6,23,.42);
}
.events-hero-copy h1 { margin:8px 0 10px; font-size:clamp(2rem,4.6vw,4.2rem); line-height:.95; letter-spacing:-.045em; }
.events-hero-copy p { max-width:760px; color:#dbeafe; font-size:1.04rem; line-height:1.58; }
.events-grid-v291 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.events-card-v291 { min-height:210px; border-radius:24px; padding:20px; background:linear-gradient(145deg, rgba(15,45,70,.74), rgba(5,18,36,.82)); border:1px solid rgba(125,211,252,.18); box-shadow:0 18px 48px rgba(2,6,23,.30); }
.events-card-v291 span { width:44px; height:44px; display:grid; place-items:center; border-radius:16px; background:rgba(56,189,248,.16); font-size:1.35rem; margin-bottom:14px; }
.events-card-v291 h3 { margin:0 0 8px; font-size:1.1rem; color:#e5f7ff; }
.events-card-v291 p { margin:0; color:#cbd5e1; line-height:1.52; font-size:.92rem; }
.events-flow-v291 { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:18px; margin:22px 0; }
.events-flow-copy, .events-steps-v291 article { border-radius:24px; padding:22px; background:linear-gradient(145deg, rgba(15,45,70,.68), rgba(5,18,36,.76)); border:1px solid rgba(125,211,252,.16); }
.events-flow-copy h2 { margin:8px 0 10px; }
.events-flow-copy p { color:#cbd5e1; line-height:1.58; }
.events-steps-v291 { display:grid; gap:12px; }
.events-steps-v291 article { display:flex; gap:14px; align-items:flex-start; }
.events-steps-v291 strong { width:38px; height:38px; display:grid; place-items:center; border-radius:50%; background:linear-gradient(135deg, #22c55e, #38bdf8); color:#061421; flex:0 0 auto; }
.events-steps-v291 h3 { margin:0 0 5px; }
.events-steps-v291 p { margin:0; color:#cbd5e1; line-height:1.5; }
@media (max-width: 1280px) { .main-nav a { font-size:.76rem; padding:4px 6px; } .regional-switch a { font-size:.72rem; padding:5px 7px; } }
@media (max-width: 1180px) { .main-nav ul { border-radius:20px; } .footer-v291-grid { grid-template-columns:1fr 1fr 1fr; } }
@media (max-width: 900px) { .events-grid-v291, .events-flow-v291 { grid-template-columns:1fr; } .footer-v291-grid { grid-template-columns:1fr 1fr; } }
@media (max-width: 720px) { .footer-v291-grid { grid-template-columns:1fr; gap:20px; } .events-hero-v291 { min-height:320px; padding:24px; border-radius:24px; } .regional-switch { display:none; } }

/* V2.9.3 — active navigation, page polish and light theme fixes */
.main-nav a.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(56,189,248,.24));
  border-color: rgba(125,211,252,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 10px 24px rgba(2,6,23,.22);
}
.main-nav a.active::before {
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:3px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, #22c55e, #38bdf8);
}
.events-season-v293,
.activities-plan-v293 { margin-top: 20px; }
.events-season-grid-v293,
.activities-plan-grid-v293 {
  display:grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap:16px;
}
.activities-plan-grid-v293 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.events-season-grid-v293 article,
.activities-plan-grid-v293 article {
  border-radius:24px;
  padding:20px;
  background:linear-gradient(145deg, rgba(15,45,70,.70), rgba(5,18,36,.82));
  border:1px solid rgba(125,211,252,.18);
  box-shadow:0 18px 48px rgba(2,6,23,.30);
}
.events-season-grid-v293 strong {
  display:inline-flex;
  min-width:42px;
  min-height:42px;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(34,197,94,.35), rgba(56,189,248,.30));
  color:#eaffff;
  margin-bottom:12px;
}
.activities-plan-grid-v293 span {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(56,189,248,.16);
  font-size:1.32rem;
  margin-bottom:12px;
}
.events-season-grid-v293 h3,
.activities-plan-grid-v293 h3 { margin:0 0 8px; color:#e5f7ff; font-size:1.06rem; }
.events-season-grid-v293 p,
.activities-plan-grid-v293 p { margin:0; color:#cbd5e1; line-height:1.55; font-size:.92rem; }
.history-shell-v293 { max-width:1180px; }
.history-hero-v293 {
  margin: 24px 0 18px;
  min-height: 395px;
  display:flex;
  align-items:flex-end;
  border-radius:32px;
  padding:34px;
  background: linear-gradient(90deg, rgba(2,6,23,.72), rgba(2,6,23,.25)), url('/assets/img/website/pagini/home/istoric-case-traditionale.webp') center/cover no-repeat;
  border:1px solid rgba(125,211,252,.22);
  box-shadow:0 28px 80px rgba(2,6,23,.42);
}
.history-hero-v293 h1 { margin:8px 0 10px; font-size:clamp(2rem,4.6vw,4.2rem); line-height:.95; letter-spacing:-.045em; max-width:900px; }
.history-hero-v293 p { max-width:780px; color:#dbeafe; font-size:1.04rem; line-height:1.58; }
.history-summary-v293 {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-bottom:22px;
}
.history-summary-v293 article {
  border-radius:22px;
  padding:18px;
  background:linear-gradient(145deg, rgba(15,45,70,.68), rgba(5,18,36,.76));
  border:1px solid rgba(125,211,252,.16);
}
.history-summary-v293 strong { display:block; color:#7dd3fc; margin-bottom:4px; }
.history-summary-v293 span { color:#e2e8f0; }
body.theme-light {
  color:#0f172a;
  background:#f4f8fb;
}
body.theme-light .parallax-wrap { opacity:.10; }
body.theme-light .site-header {
  background:rgba(255,255,255,.92);
  border-bottom-color:rgba(15,23,42,.12);
  box-shadow:0 10px 28px rgba(15,23,42,.08);
}
body.theme-light .main-nav ul,
body.theme-light .lang-switch { background:rgba(241,245,249,.78); border-color:rgba(15,23,42,.12); }
body.theme-light .main-nav a { color:#334155; }
body.theme-light .main-nav a:hover,
body.theme-light .main-nav a.active { color:#06263a; background:linear-gradient(135deg, rgba(14,165,233,.18), rgba(22,163,74,.14)); border-color:rgba(14,165,233,.32); }
body.theme-light .regional-switch a,
body.theme-light .theme-toggle,
body.theme-light .lang-switch a { color:#0f172a; background:rgba(255,255,255,.86); border-color:rgba(15,23,42,.14); }
body.theme-light .card,
body.theme-light .home-glass-card,
body.theme-light .events-card-v291,
body.theme-light .events-season-grid-v293 article,
body.theme-light .activities-card-v29,
body.theme-light .activities-plan-grid-v293 article,
body.theme-light .history-summary-v293 article,
body.theme-light .cta-strip,
body.theme-light .profile-row,
body.theme-light .featured-business-row,
body.theme-light .listing-row,
body.theme-light .pricing-card,
body.theme-light .join-form-panel,
body.theme-light .detail-hero-card {
  color:#0f172a;
  background:linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,246,255,.94));
  border-color:rgba(15,23,42,.12);
  box-shadow:0 16px 38px rgba(15,23,42,.10);
}
body.theme-light .card p,
body.theme-light .lead,
body.theme-light .home-glass-card p,
body.theme-light .events-card-v291 p,
body.theme-light .events-season-grid-v293 p,
body.theme-light .activities-card-v29 p,
body.theme-light .activities-plan-grid-v293 p,
body.theme-light .profile-row p,
body.theme-light .featured-business-copy p,
body.theme-light .listing-row p,
body.theme-light .detail-content .lead,
body.theme-light .footer-v291-brand p,
body.theme-light .footer-v291-links a { color:#334155; }
body.theme-light h1, body.theme-light h2, body.theme-light h3, body.theme-light h4,
body.theme-light .events-card-v291 h3,
body.theme-light .activities-card-v29 h3,
body.theme-light .activities-plan-grid-v293 h3,
body.theme-light .events-season-grid-v293 h3 { color:#082f49; }
body.theme-light .home-kicker,
body.theme-light .profile-pill,
body.theme-light .tag { color:#075985; background:rgba(14,165,233,.10); border-color:rgba(14,165,233,.24); }
body.theme-light .site-footer,
body.theme-light .footer-v291 { background:linear-gradient(180deg, #ffffff, #eaf3f8); color:#0f172a; border-top-color:rgba(15,23,42,.12); }
body.theme-light .footer-v291-links h5 { color:#075985; }
body.theme-light input,
body.theme-light select,
body.theme-light textarea { color:#0f172a; background:#fff; border-color:rgba(15,23,42,.18); }
body.theme-light select option { color:#0f172a; background:#fff; }
@media (max-width: 980px) {
  .events-season-grid-v293,
  .activities-plan-grid-v293,
  .history-summary-v293 { grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px) {
  .events-season-grid-v293,
  .activities-plan-grid-v293,
  .history-summary-v293 { grid-template-columns:1fr; }
  .history-hero-v293 { min-height:320px; padding:24px; border-radius:24px; }
}

/* ===== V2.9.4 GLOBAL FINAL POLISH ===== */
:root { scroll-behavior: smooth; }
.site-header {
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(125,211,252,.12);
  box-shadow: 0 18px 60px rgba(2,6,23,.30);
}
.main-nav ul {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 14px 42px rgba(2,6,23,.20);
}
.main-nav a {
  position: relative;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.main-nav a:hover { transform: translateY(-1px); }
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: #eaffff;
  background: linear-gradient(135deg, rgba(34,211,238,.22), rgba(34,197,94,.16));
  border-color: rgba(125,211,252,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 10px 26px rgba(14,165,233,.16);
}
.main-nav a[aria-current="page"]::after {
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:3px;
  height:2px;
  border-radius:99px;
  background:linear-gradient(90deg,#22d3ee,#22c55e);
  display:block;
}
.home-hero-v2.home-hero-v29,
.events-hero-v291,
.activities-hero-v29,
.page-hero,
.list-hero-premium,
.promo-hero {
  min-height: auto;
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: clamp(28px, 4vw, 54px);
}
.home-hero-copy h1,
.events-hero-copy h1,
.activities-hero-v29 h1,
.page-hero h1,
.page-hero-inner h1,
.promo-hero h1 {
  letter-spacing: -.045em;
  line-height: .98;
}
.home-hero-copy p,
.events-hero-copy p,
.activities-hero-v29 p,
.page-hero p,
.page-hero-inner p {
  max-width: 820px;
}
.home-feature-card,
.events-card-v291,
.activities-card-v29,
.card,
.profile-row,
.listing-row,
.detail-hero-card,
.cta-strip {
  box-shadow: 0 22px 70px rgba(2,6,23,.36);
}
.events-practical-grid-v294,
.activities-safety-grid-v294 {
  display:grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap:16px;
}
.events-practical-grid-v294 article,
.activities-safety-grid-v294 article,
.history-context-card-v294 {
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15,45,70,.72), rgba(5,18,36,.78));
  border: 1px solid rgba(125,211,252,.18);
  padding: 22px;
  color:#dbeafe;
}
.events-practical-grid-v294 h3,
.activities-safety-grid-v294 h3 { margin:0 0 8px; color:#e0f7ff; }
.events-practical-grid-v294 p,
.activities-safety-grid-v294 p { margin:0; color:#cbd5e1; line-height:1.62; }
.activities-safety-grid-v294 strong { color:#7dd3fc; display:block; margin-bottom:10px; }
.history-context-card-v294 {
  display:grid;
  grid-template-columns: minmax(0,1.2fr) minmax(260px,.8fr);
  gap:20px;
  align-items:center;
  background:
    radial-gradient(circle at 12% 18%, rgba(34,197,94,.14), transparent 34%),
    linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.82));
}
.history-context-card-v294 h2 { margin:8px 0 10px; }
.history-context-card-v294 p { margin:0; color:#dbeafe; line-height:1.68; }
.history-context-card-v294 ul { margin:0; padding-left:20px; color:#cbd5e1; line-height:1.8; }
.footer-v291 { border-top:1px solid rgba(125,211,252,.16); }
.footer-v291-links a { display:block; width:max-content; max-width:100%; }
.footer-v291-bottom { opacity:.9; }
img { max-width:100%; height:auto; }

/* Light theme readability hardening */
body.theme-light { color:#0f172a; background:#f7fbff; }
body.theme-light .home-hero-copy,
body.theme-light .home-hero-panel,
body.theme-light .local-hero-copy,
body.theme-light .events-hero-copy,
body.theme-light .activities-hero-v29,
body.theme-light .page-hero-inner,
body.theme-light .promo-hero,
body.theme-light .join-hero-copy,
body.theme-light .detail-content,
body.theme-light .events-flow-copy,
body.theme-light .history-context-card-v294,
body.theme-light .events-practical-grid-v294 article,
body.theme-light .activities-safety-grid-v294 article {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(231,243,250,.88));
  border-color: rgba(15,23,42,.12);
  color:#0f172a;
}
body.theme-light p,
body.theme-light li,
body.theme-light span,
body.theme-light label,
body.theme-light .meta,
body.theme-light .listing-meta,
body.theme-light .partner-note,
body.theme-light .profile-row p,
body.theme-light .detail-meta-grid span,
body.theme-light .events-practical-grid-v294 p,
body.theme-light .activities-safety-grid-v294 p,
body.theme-light .history-context-card-v294 p,
body.theme-light .history-context-card-v294 li {
  color:#334155;
}
body.theme-light .home-kicker,
body.theme-light .home-panel-badge,
body.theme-light .profile-pill,
body.theme-light .tag,
body.theme-light .home-feature-tag {
  color:#075985;
  background:rgba(14,165,233,.11);
  border-color:rgba(14,165,233,.26);
}
body.theme-light .join-btn.ghost,
body.theme-light .btn.btn-outline,
body.theme-light .regional-switch a,
body.theme-light .lang-switch,
body.theme-light .theme-toggle {
  color:#0f172a;
  background:rgba(255,255,255,.90);
  border-color:rgba(15,23,42,.16);
}
body.theme-light .join-btn.primary,
body.theme-light .btn.btn-primary { color:#031827; }
body.theme-light .home-feature-card::before,
body.theme-light .local-category-card::before { background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.74)); }
body.theme-light .home-feature-card h3,
body.theme-light .local-category-card h3 { color:#082f49; }
body.theme-light .home-feature-card p,
body.theme-light .local-category-card p { color:#1f2937; }
body.theme-light .footer-v291-bottom { color:#475569; }
body.theme-light a { color:#0369a1; }
body.theme-light select option { color:#0f172a; background:#fff; }

@media (max-width: 920px) {
  .events-practical-grid-v294,
  .activities-safety-grid-v294,
  .history-context-card-v294 { grid-template-columns:1fr; }
}

/* V2.9.5 — Contact modernizat + contrast/security UI */
.contact-shell-v295 { max-width: 1180px; }
.contact-hero-v295 {
  display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:18px; align-items:stretch;
  margin:22px 0; padding:24px; border-radius:28px;
  background:linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.82));
  border:1px solid rgba(125,211,252,.22); box-shadow:0 28px 80px rgba(2,6,23,.42);
}
.contact-hero-v295 h1 { margin:.35rem 0 .7rem; font-size:clamp(2rem,4.2vw,4.4rem); line-height:.98; letter-spacing:-.045em; }
.contact-hero-v295 p { max-width:820px; color:#dbeafe; line-height:1.65; }
.contact-quick-card { border-radius:22px; padding:20px; background:rgba(15,23,42,.52); border:1px solid rgba(125,211,252,.20); display:flex; flex-direction:column; justify-content:center; gap:10px; }
.contact-quick-card strong { color:#7dd3fc; font-size:1.05rem; }
.contact-quick-card span { color:#dbeafe; line-height:1.55; }
.contact-layout-v295 { display:grid; grid-template-columns:340px minmax(0,1fr); gap:20px; align-items:start; }
.contact-info-v295 { display:grid; gap:14px; }
.contact-info-v295 article, .contact-form-v295 {
  border-radius:24px; background:linear-gradient(145deg, rgba(15,45,70,.70), rgba(5,18,36,.76));
  border:1px solid rgba(125,211,252,.18); box-shadow:0 18px 50px rgba(2,6,23,.30);
}
.contact-info-v295 article { padding:20px; }
.contact-info-v295 article span { width:46px; height:46px; display:grid; place-items:center; border-radius:16px; background:rgba(34,211,238,.13); border:1px solid rgba(125,211,252,.20); margin-bottom:12px; }
.contact-info-v295 h2 { margin:0 0 8px; font-size:1.05rem; color:#e0f2fe; }
.contact-info-v295 p { margin:0; color:#cbd5e1; line-height:1.55; }
.contact-form-v295 { padding:22px; }
.contact-form-title { display:flex; gap:12px; align-items:center; margin-bottom:18px; }
.contact-form-title > span { width:46px; height:46px; display:grid; place-items:center; border-radius:16px; background:linear-gradient(135deg,#22c55e,#38bdf8); color:#062032; font-weight:900; }
.contact-form-title h2 { margin:0 0 4px; font-size:1.35rem; }
.contact-form-title p { margin:0; color:#cbd5e1; }
.contact-form-v295 .form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.contact-form-v295 label { color:#e5f3ff; font-size:.92rem; font-weight:650; }
.contact-form-v295 label.full { grid-column:1/-1; }
.contact-form-v295 input, .contact-form-v295 select, .contact-form-v295 textarea {
  width:100%; margin-top:7px; border-radius:14px; border:1px solid rgba(125,211,252,.20);
  background:rgba(3,12,26,.72); color:#eef8ff; padding:12px 13px; font:inherit; outline:none;
}
.contact-form-v295 select option { color:#0f172a; background:#fff; }
.contact-form-v295 textarea { min-height:145px; resize:vertical; }
.contact-form-v295 input:focus, .contact-form-v295 select:focus, .contact-form-v295 textarea:focus { border-color:#7dd3fc; box-shadow:0 0 0 3px rgba(56,189,248,.16); }
.contact-form-v295 .consent-line { display:flex; gap:10px; margin:16px 0; color:#dbeafe; font-weight:500; line-height:1.45; }
.contact-form-v295 .form-actions { display:flex; justify-content:flex-end; }
.hp-field { position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; opacity:0!important; pointer-events:none!important; }
body:not(.theme-dark), body.theme-light { color:#102033; }
body:not(.theme-dark) .card, body.theme-light .card,
body:not(.theme-dark) .home-glass-card, body.theme-light .home-glass-card,
body:not(.theme-dark) .pricing-card-v283, body.theme-light .pricing-card-v283,
body:not(.theme-dark) .profile-row, body.theme-light .profile-row,
body:not(.theme-dark) .featured-business-row, body.theme-light .featured-business-row {
  color:#102033; background:rgba(255,255,255,.88); border-color:rgba(15,45,70,.16);
}
body:not(.theme-dark) .lead, body.theme-light .lead,
body:not(.theme-dark) p, body.theme-light p,
body:not(.theme-dark) small, body.theme-light small { color:#294057; }
@media (max-width: 900px) { .contact-hero-v295, .contact-layout-v295 { grid-template-columns:1fr; } .contact-form-v295 .form-grid { grid-template-columns:1fr; } }

/* V2.9.6 — fixes: contact compact, promo mobile, light theme images/maps */
html, body { max-width: 100%; overflow-x: hidden; }
.home-hero-copy h1 { max-width: 980px; }
.contact-compact-v296 { max-width: 980px; padding-top: clamp(18px,3vw,34px); }
.contact-form-panel-v296 { margin: 18px auto 36px; }
.contact-form-v296 { padding: clamp(18px, 3vw, 30px); }
.contact-compact-head-v296 { margin-bottom: 18px; border-bottom:1px solid rgba(125,211,252,.16); padding-bottom:14px; }
.contact-compact-head-v296 h1 { margin:8px 0 8px; font-size:clamp(1.65rem,3vw,2.55rem); line-height:1.04; letter-spacing:-.025em; }
.contact-compact-head-v296 p { margin:0; color:#cbd5e1; line-height:1.55; max-width:760px; }
.contact-form-v296 .form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.contact-form-v296 label.full { grid-column:1/-1; }
.contact-form-v296 input,
.contact-form-v296 select,
.contact-form-v296 textarea,
.promo-v283-shell,
.pricing-card-v283,
.plan-prices,
.comparison-table-wrap { min-width:0; max-width:100%; }
.promo-v283-shell { width:100%; box-sizing:border-box; }
.promo-hero-v283, .pricing-grid-v283, .promo-guidance-grid, .feature-grid, .comparison-v283, .commercial-note-v283, .cta-strip { width:100%; box-sizing:border-box; }
.pricing-card-v283 { overflow-wrap:anywhere; word-break:normal; }
.plan-prices strong { overflow-wrap:anywhere; }
.comparison-table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; border-radius:18px; }
.comparison-table-v283 { width:100%; min-width:720px; }
.promo-hero-v283 { overflow:hidden; }
body.theme-light .home-feature-card,
body.theme-light .local-category-card,
body.theme-light .featured-business-media,
body.theme-light .detail-photo,
body.theme-light .listing-thumb,
body.theme-light .profile-row-media,
body.theme-light .events-hero-media,
body.theme-light .activities-hero-media,
body.theme-light .photo-slot img,
body:not(.theme-dark) .home-feature-card,
body:not(.theme-dark) .local-category-card,
body:not(.theme-dark) .featured-business-media,
body:not(.theme-dark) .detail-photo,
body:not(.theme-dark) .listing-thumb,
body:not(.theme-dark) .profile-row-media {
  opacity: 1 !important;
  filter: none !important;
}
body.theme-light .home-feature-card::before,
body.theme-light .local-category-card::before {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.58));
}
body.theme-light .contact-form-v295,
body.theme-light .contact-form-v296 {
  background:rgba(255,255,255,.92);
  border-color:rgba(15,45,70,.14);
  color:#0f172a;
}
body.theme-light .contact-form-v295 label,
body.theme-light .contact-form-v296 label,
body.theme-light .contact-compact-head-v296 h1 { color:#0f172a; }
body.theme-light .contact-compact-head-v296 p,
body.theme-light .contact-form-title p { color:#334155; }
body.theme-light .contact-form-v295 input,
body.theme-light .contact-form-v295 select,
body.theme-light .contact-form-v295 textarea,
body.theme-light .contact-form-v296 input,
body.theme-light .contact-form-v296 select,
body.theme-light .contact-form-v296 textarea {
  color:#0f172a; background:#fff; border-color:rgba(15,45,70,.18);
}
body.theme-light .pricing-card-v283,
body:not(.theme-dark) .pricing-card-v283 {
  background:rgba(255,255,255,.94); color:#0f172a; border-color:rgba(15,45,70,.15);
}
body.theme-light .pricing-card-v283 h2,
body.theme-light .plan-prices strong,
body.theme-light .plan-details summary,
body.theme-light .commercial-note-v283 h2 { color:#0f172a; }
body.theme-light .plan-type,
body.theme-light .plan-desc,
body.theme-light .plan-fit span,
body.theme-light .plan-note,
body.theme-light .plan-details li,
body.theme-light .promo-pay-box p,
body.theme-light .promo-guidance-grid span,
body.theme-light .commercial-note-v283 p { color:#334155; }
body.theme-light .plan-prices div,
body.theme-light .plan-fit,
body.theme-light .plan-details,
body.theme-light .promo-pay-box,
body.theme-light .promo-guidance-grid article,
body.theme-light .commercial-note-v283 {
  background:rgba(248,250,252,.96); border-color:rgba(15,45,70,.14);
}
@media (max-width: 760px) {
  .contact-form-v296 .form-grid { grid-template-columns:1fr; }
  .contact-form-v296 { border-radius:20px; padding:16px; }
  .contact-compact-head-v296 h1 { font-size:1.7rem; }
  .promo-v283-shell { padding-left: 12px; padding-right: 12px; }
  .promo-hero-v283 { padding:16px; border-radius:20px; }
  .promo-hero-v283 h1 { font-size: clamp(1.6rem, 8vw, 2.35rem); letter-spacing:-.025em; }
  .promo-hero-v283 p { font-size:.94rem; }
  .pricing-grid-v283 { grid-template-columns:1fr !important; gap:14px; }
  .pricing-card-v283 { padding:16px; border-radius:20px; transform:none !important; }
  .plan-topline { align-items:flex-start; }
  .plan-prices { grid-template-columns:1fr; }
  .comparison-table-v283 { min-width:620px; font-size:.88rem; }
  .home-hero-actions, .cta-actions { flex-direction:column; align-items:stretch; }
  .home-hero-actions a, .cta-actions a { width:100%; justify-content:center; }
  .map-container iframe, .map3d-iframe, .localizare-page iframe { width:100% !important; min-height:280px; }
}

/* V2.9.6 corrected — sliders, contact consent, promo responsive, day theme, add location pro */
.lc-auto-slider {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: clamp(16px, 3vw, 28px) auto;
  border-radius: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(125,211,252,.22);
  box-shadow: 0 28px 90px rgba(2,6,23,.48);
  background: rgba(5,18,36,.72);
}
.home-business-slider { min-height: clamp(420px, 58vw, 620px); }
.gallery-top-slider { min-height: clamp(330px, 46vw, 520px); }
.lc-slider-track, .lc-slide { position:absolute; inset:0; }
.lc-slide {
  opacity:0; pointer-events:none;
  background: linear-gradient(90deg, rgba(2,6,23,.84), rgba(2,6,23,.28), rgba(2,6,23,.12)), var(--slide-img) center/cover no-repeat;
  transition: opacity .75s ease, transform 1.1s ease;
  transform: scale(1.015);
  display:flex; align-items:flex-end;
}
.lc-slide.active { opacity:1; pointer-events:auto; transform: scale(1); z-index:2; }
.lc-slide-overlay {
  width:min(720px, 92%);
  margin: clamp(18px, 4vw, 44px);
  padding: clamp(18px, 3vw, 32px);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.78));
  border: 1px solid rgba(125,211,252,.22);
  backdrop-filter: blur(12px);
}
.lc-slide-overlay.compact { width:min(560px, 92%); }
.lc-slide-overlay h2 { margin:.35rem 0 .6rem; color:#f8fbff; font-size:clamp(1.9rem,4vw,4rem); line-height:1; letter-spacing:-.04em; }
.lc-slide-overlay p { color:#dbeafe; line-height:1.6; margin:0 0 1rem; }
.lc-slider-dots { position:absolute; left:0; right:0; bottom:14px; z-index:5; display:flex; justify-content:center; gap:8px; }
.lc-slider-dots span { width:9px; height:9px; border-radius:999px; background:rgba(255,255,255,.46); border:1px solid rgba(255,255,255,.55); transition:.3s ease; }
.lc-slider-dots span.active { width:28px; background:#38bdf8; border-color:#7dd3fc; }
.lc-consent-row {
  display:grid !important;
  grid-template-columns: 20px minmax(0,1fr);
  gap:12px;
  align-items:flex-start;
  width:100%;
  margin:18px 0 20px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(15,45,70,.38);
  border:1px solid rgba(125,211,252,.16);
  color:#dbeafe !important;
  line-height:1.5;
  font-weight:500 !important;
}
.lc-consent-row input { width:18px !important; height:18px !important; min-width:18px; margin:2px 0 0 !important; accent-color:#22c55e; }
.lc-consent-row span { display:block; min-width:0; }
.lc-consent-row a { color:#7dd3fc; text-decoration:underline; text-underline-offset:3px; }
.promo-v283-shell { max-width:1280px; overflow:hidden; }
.promo-hero-v283 { display:grid; grid-template-columns:minmax(0,1fr) minmax(260px,340px); gap:18px; }
.pricing-grid-v283 { display:grid !important; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; align-items:stretch; }
.pricing-card-v283 { min-width:0; overflow:hidden; }
.plan-prices { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.comparison-table-wrap { width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch; }
.comparison-table-v283 { width:100%; min-width:0; table-layout:fixed; }
.comparison-table-v283 th, .comparison-table-v283 td { overflow-wrap:anywhere; word-break:normal; }
.add-location-shell-v296 { max-width:1180px; }
.add-location-hero-v296 {
  display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:18px; align-items:stretch;
  padding:24px; border-radius:28px; margin:22px 0;
  background:linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.82));
  border:1px solid rgba(125,211,252,.22); box-shadow:0 28px 80px rgba(2,6,23,.42);
}
.add-location-hero-v296 h1 { margin:.3rem 0 .7rem; font-size:clamp(2rem,4vw,4rem); line-height:1; }
.add-location-hero-v296 p, .add-location-hero-v296 aside span { color:#dbeafe; line-height:1.6; }
.add-location-hero-v296 aside { border-radius:22px; padding:20px; background:rgba(15,23,42,.54); border:1px solid rgba(125,211,252,.18); display:flex; flex-direction:column; justify-content:center; gap:10px; }
.add-location-hero-v296 aside strong { color:#7dd3fc; }
.add-location-form-v296 { padding:clamp(18px,3vw,30px); }
.form-section-title { display:flex; align-items:flex-start; gap:12px; margin:22px 0 14px; padding-top:14px; border-top:1px solid rgba(125,211,252,.14); }
.form-section-title:first-of-type { margin-top:0; padding-top:0; border-top:0; }
.form-section-title > span { width:38px; height:38px; border-radius:14px; display:grid; place-items:center; flex:0 0 auto; background:linear-gradient(135deg,#22c55e,#38bdf8); color:#042033; font-weight:900; }
.form-section-title h2 { margin:0 0 4px; font-size:1.25rem; color:#e0f2fe; }
.form-section-title p { margin:0; color:#cbd5e1; }
.add-location-form-v296 .form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.add-location-form-v296 label { color:#e5f3ff; font-size:.92rem; font-weight:650; }
.add-location-form-v296 label.full { grid-column:1/-1; }
.add-location-form-v296 input, .add-location-form-v296 select, .add-location-form-v296 textarea {
  width:100%; margin-top:7px; border-radius:14px; border:1px solid rgba(125,211,252,.20);
  background:rgba(3,12,26,.72); color:#eef8ff; padding:12px 13px; font:inherit; outline:none;
}
.add-location-form-v296 select option { color:#0f172a; background:#fff; }
.add-location-form-v296 textarea { resize:vertical; }
body.theme-light, body.theme-light main, body.theme-light .page-shell, body.theme-light .home-shell { color:#0f172a; }
body.theme-light h1, body.theme-light h2, body.theme-light h3, body.theme-light h4, body.theme-light strong, body.theme-light label { color:#0f172a; }
body.theme-light p, body.theme-light .lead, body.theme-light span, body.theme-light li, body.theme-light small { color:#334155; }
body.theme-light .home-kicker, body.theme-light .profile-pill, body.theme-light .tag, body.theme-light .home-feature-tag { color:#075985; }
body.theme-light .lc-slide-overlay, body.theme-light .home-hero-copy, body.theme-light .home-hero-panel, body.theme-light .home-glass-card,
body.theme-light .gallery-hero-copy, body.theme-light .local-hero-copy, body.theme-light .promo-hero-v283, body.theme-light .add-location-hero-v296,
body.theme-light .premium-form-card, body.theme-light .contact-form-v296, body.theme-light .contact-form-v295, body.theme-light .card, body.theme-light .cta-strip {
  background:rgba(255,255,255,.92) !important; color:#0f172a !important; border-color:rgba(15,45,70,.15) !important;
}
body.theme-light .lc-slide-overlay h2, body.theme-light .lc-slide-overlay p, body.theme-light .home-hero-copy h1, body.theme-light .home-hero-copy p,
body.theme-light .gallery-hero-copy h1, body.theme-light .gallery-hero-copy p, body.theme-light .add-location-hero-v296 h1, body.theme-light .add-location-hero-v296 p,
body.theme-light .form-section-title h2, body.theme-light .form-section-title p { color:#0f172a !important; }
body.theme-light input, body.theme-light select, body.theme-light textarea { background:#fff !important; color:#0f172a !important; border-color:rgba(15,45,70,.20) !important; }
body.theme-light ::placeholder { color:#64748b !important; opacity:1; }
body.theme-light .lc-consent-row { background:rgba(248,250,252,.96); color:#0f172a !important; border-color:rgba(15,45,70,.16); }
body.theme-light .lc-consent-row span, body.theme-light .lc-consent-row a { color:#0f172a !important; }
body.theme-light .home-feature-card, body.theme-light .local-category-card { background-color:#fff !important; }
body.theme-light .home-feature-card::before, body.theme-light .local-category-card::before { background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.70)); }
@media (max-width: 980px) { .promo-hero-v283, .add-location-hero-v296 { grid-template-columns:1fr; } .pricing-grid-v283 { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 760px) {
  .home-business-slider { min-height:480px; border-radius:20px; }
  .gallery-top-slider { min-height:390px; border-radius:20px; }
  .lc-slide { background-position:center; }
  .lc-slide-overlay { margin:14px; padding:16px; width:calc(100% - 28px); border-radius:18px; }
  .lc-slide-overlay h2 { font-size:clamp(1.55rem,8vw,2.4rem); }
  .lc-slide-overlay p { font-size:.94rem; }
  .pricing-grid-v283 { grid-template-columns:1fr !important; }
  .comparison-table-v283 { font-size:.84rem; table-layout:auto; min-width:560px; }
  .promo-v283-shell { padding-left:10px !important; padding-right:10px !important; }
  .promo-hero-v283, .pricing-card-v283 { padding:14px !important; }
  .add-location-form-v296 .form-grid { grid-template-columns:1fr; }
  .add-location-form-v296 { padding:16px; }
  .lc-consent-row { grid-template-columns:18px minmax(0,1fr); padding:12px; }
}

/* V2.9.6.1 — critical fixes: promotion responsive, slider captions below images, stronger day theme */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width:100%; overflow-x:hidden; }

/* Slider: show image cleanly, details below the image */
.lc-auto-slider.v2961-slider,
.lc-auto-slider {
  overflow: hidden;
  display:block;
  background: linear-gradient(145deg, rgba(15,45,70,.82), rgba(5,18,36,.90));
}
.home-business-slider { min-height: clamp(620px, 72vw, 820px) !important; }
.gallery-top-slider { min-height: clamp(560px, 64vw, 720px) !important; }
.lc-slider-track, .lc-slide { position:absolute; inset:0; }
.lc-slide {
  background: none !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  justify-content:stretch !important;
  transform:none !important;
}
.lc-slide::before {
  content:"";
  flex:1 1 auto;
  min-height:0;
  display:block;
  background: var(--slide-img) center/contain no-repeat;
  background-color: rgba(2,6,23,.45);
  border-bottom: 1px solid rgba(125,211,252,.14);
}
.lc-slide-overlay,
.lc-slide-overlay.compact {
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  border-radius:0 !important;
  padding: clamp(16px, 2.2vw, 26px) clamp(18px, 4vw, 46px) 44px !important;
  background: linear-gradient(145deg, rgba(15,45,70,.94), rgba(5,18,36,.96)) !important;
  border:0 !important;
  backdrop-filter:none !important;
}
.lc-slide-overlay h2 { font-size:clamp(1.45rem,3vw,2.6rem) !important; line-height:1.05 !important; margin:.3rem 0 .45rem !important; }
.lc-slide-overlay p { max-width:920px; margin-bottom:.8rem !important; }
.lc-slide-overlay .home-hero-actions { justify-content:flex-start; }
.lc-slider-dots { bottom:12px !important; }
@media (max-width: 720px) {
  .home-business-slider { min-height: 620px !important; }
  .gallery-top-slider { min-height: 560px !important; }
  .lc-slide::before { background-size: contain; }
  .lc-slide-overlay { padding: 14px 14px 42px !important; }
  .lc-slide-overlay .home-hero-actions { flex-direction:column; align-items:stretch; gap:8px; }
  .lc-slide-overlay .join-btn { width:100%; justify-content:center; }
}

/* Promotion page responsive hard-fix */
.promotion-page .page-shell,
.promo-shell,
.promo-v283-shell {
  width:min(100% - 24px, 1220px) !important;
  max-width:1220px !important;
  margin-inline:auto !important;
  padding-inline:0 !important;
  overflow:visible !important;
}
.promo-hero-v283,
.promo-guidance-grid,
.pricing-grid-v283,
.comparison-v283,
.commercial-note-v283,
.promo-process,
.promotion-page .cta-strip {
  max-width:100% !important;
  overflow:hidden !important;
}
.promo-hero-v283 { grid-template-columns:minmax(0,1fr) minmax(240px,320px) !important; }
.pricing-grid-v283 { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
.pricing-card-v283, .promo-pay-box, .promo-guidance-grid article { min-width:0 !important; overflow:hidden !important; }
.pricing-card-v283 * { overflow-wrap:anywhere; word-break:normal; }
.plan-prices { grid-template-columns:1fr !important; }
.plan-topline { align-items:flex-start; }
.comparison-table-wrap { overflow-x:auto !important; max-width:100% !important; }
.comparison-table-v283 { min-width:720px !important; table-layout:auto !important; }
@media (max-width: 980px) {
  .promo-hero-v283 { grid-template-columns:1fr !important; padding:18px !important; border-radius:22px !important; }
  .promo-guidance-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  .pricing-grid-v283 { grid-template-columns:1fr !important; gap:14px !important; }
}
@media (max-width: 620px) {
  .promotion-page .page-shell,
  .promo-shell,
  .promo-v283-shell { width:calc(100% - 20px) !important; }
  .promo-guidance-grid { grid-template-columns:1fr !important; }
  .promo-hero-v283 h1 { font-size: clamp(1.45rem, 8vw, 2.15rem) !important; }
  .promo-hero-v283 p, .plan-desc, .plan-fit span, .plan-note { font-size:.92rem !important; }
  .pricing-card-v283 { padding:15px !important; border-radius:20px !important; }
  .plan-badge { white-space:normal !important; text-align:right; }
  .comparison-table-v283 { min-width:640px !important; }
  .promotion-page .home-hero-actions, .promotion-page .cta-actions { flex-direction:column; align-items:stretch; }
  .promotion-page .join-btn, .promotion-page .btn { width:100%; justify-content:center; }
}

/* Stronger day theme readability */
body.theme-light,
body.theme-light main,
body.theme-light .page-shell,
body.theme-light .home-shell { color:#0f172a !important; }
body.theme-light p,
body.theme-light .lead,
body.theme-light label,
body.theme-light span,
body.theme-light li,
body.theme-light td,
body.theme-light .plan-desc,
body.theme-light .plan-note,
body.theme-light .plan-fit span,
body.theme-light .section-header p,
body.theme-light .card p,
body.theme-light .profile-row p,
body.theme-light .local-info-card p { color:#1e293b !important; }
body.theme-light h1,
body.theme-light h2,
body.theme-light h3,
body.theme-light h4,
body.theme-light strong,
body.theme-light .card h3 { color:#07111f !important; }
body.theme-light .card,
body.theme-light .home-glass-card,
body.theme-light .profile-row,
body.theme-light .pricing-card-v283,
body.theme-light .promo-guidance-grid article,
body.theme-light .comparison-v283,
body.theme-light .commercial-note-v283,
body.theme-light .premium-form-card,
body.theme-light .v28-compact-hero,
body.theme-light .contact-compact-card,
body.theme-light .add-location-hero-v296,
body.theme-light .detail-hero-card {
  background: rgba(255,255,255,.92) !important;
  border-color: rgba(15,23,42,.14) !important;
  box-shadow:0 18px 48px rgba(15,23,42,.12) !important;
}
body.theme-light input,
body.theme-light select,
body.theme-light textarea {
  background:#ffffff !important;
  color:#0f172a !important;
  border-color:rgba(15,23,42,.25) !important;
}
body.theme-light input::placeholder,
body.theme-light textarea::placeholder { color:#64748b !important; }
body.theme-light .btn-outline,
body.theme-light .join-btn.ghost { color:#0f172a !important; border-color:rgba(15,23,42,.28) !important; background:rgba(255,255,255,.75) !important; }
body.theme-light .home-kicker,
body.theme-light .tag,
body.theme-light .plan-type,
body.theme-light .profile-pill { color:#0369a1 !important; }
body.theme-light .lc-auto-slider,
body.theme-light .lc-slide-overlay { color:#f8fbff !important; background:linear-gradient(145deg, rgba(15,45,70,.94), rgba(5,18,36,.96)) !important; }
body.theme-light .lc-slide-overlay p,
body.theme-light .lc-slide-overlay span,
body.theme-light .lc-slide-overlay h2 { color:#f8fbff !important; }

/* V2.9.6.1 — tourist request form pro */
.tourist-request-shell { max-width:1180px; }
.tourist-request-hero {
  display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:18px; align-items:stretch;
  margin:22px 0; padding:24px; border-radius:28px;
  background:linear-gradient(145deg, rgba(15,45,70,.78), rgba(5,18,36,.86));
  border:1px solid rgba(125,211,252,.22); box-shadow:0 28px 80px rgba(2,6,23,.42);
}
.tourist-request-hero h1 { margin:.35rem 0 .7rem; font-size:clamp(2rem,4vw,4.1rem); line-height:1; letter-spacing:-.04em; }
.tourist-request-hero p, .tourist-request-hero aside span { color:#dbeafe; line-height:1.6; }
.tourist-request-hero aside { display:flex; flex-direction:column; justify-content:center; gap:8px; border-radius:22px; padding:18px; background:rgba(15,23,42,.52); border:1px solid rgba(125,211,252,.18); }
.tourist-request-hero aside strong { color:#7dd3fc; margin-bottom:4px; }
.form-title-row { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; margin-bottom:16px; }
.form-title-row h2 { margin:.2rem 0 0; }
.form-section-title { display:flex; align-items:center; gap:10px; margin:18px 0 12px; padding-top:14px; border-top:1px solid rgba(125,211,252,.14); }
.form-section-title strong { display:grid; place-items:center; width:30px; height:30px; border-radius:999px; background:linear-gradient(135deg,#22c55e,#38bdf8); color:#03131f; }
.form-section-title span { color:#e0f2fe; font-weight:900; }
.checkbox-grid-v2961 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; margin-bottom:14px; }
.checkbox-grid-v2961 label { display:flex; align-items:center; gap:9px; padding:10px 12px; border-radius:14px; background:rgba(15,23,42,.44); border:1px solid rgba(125,211,252,.14); color:#dbeafe; }
.checkbox-grid-v2961 input { width:16px; height:16px; accent-color:#22c55e; }
body.theme-light .tourist-request-hero,
body.theme-light .tourist-request-hero aside,
body.theme-light .checkbox-grid-v2961 label { background:rgba(255,255,255,.92) !important; color:#0f172a !important; border-color:rgba(15,23,42,.16) !important; }
body.theme-light .tourist-request-hero p,
body.theme-light .tourist-request-hero aside span,
body.theme-light .checkbox-grid-v2961 label,
body.theme-light .form-section-title span { color:#1e293b !important; }
@media (max-width: 900px) { .tourist-request-hero { grid-template-columns:1fr; } .checkbox-grid-v2961 { grid-template-columns:repeat(2,minmax(0,1fr)); } .form-title-row { flex-direction:column; } }
@media (max-width: 560px) { .tourist-request-hero { padding:18px; border-radius:22px; } .checkbox-grid-v2961 { grid-template-columns:1fr; } }

/* V2.9.6.2 — fix formular Cerere turist: sectiuni fara suprapuneri */
.tourist-request-page-v2961 .premium-form-card {
  overflow: visible;
}
.tourist-request-page-v2961 .form-section-title {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 26px 0 16px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(125,211,252,.18) !important;
  clear: both;
}
.tourist-request-page-v2961 .form-section-title:first-of-type {
  margin-top: 6px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
.tourist-request-page-v2961 .form-section-title strong {
  display: inline-grid !important;
  place-items: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  flex: 0 0 34px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg,#22c55e,#38bdf8) !important;
  color: #03131f !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  font-size: .95rem !important;
}
.tourist-request-page-v2961 .form-section-title > span {
  display: block !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #e0f2fe !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  font-size: 1rem !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.tourist-request-page-v2961 .form-grid {
  align-items: start;
}
.tourist-request-page-v2961 .checkbox-grid-v2961 label {
  min-height: 74px;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.tourist-request-page-v2961 .checkbox-grid-v2961 label input {
  margin: 0 !important;
  flex: 0 0 auto;
}
.tourist-request-page-v2961 .lc-consent-row {
  grid-template-columns: 20px minmax(0,1fr) !important;
  align-items: flex-start !important;
  text-align: left !important;
}
.tourist-request-page-v2961 .lc-consent-row input {
  margin-top: 3px !important;
}
body.theme-light .tourist-request-page-v2961 .form-section-title > span {
  color: #0f172a !important;
}
@media (max-width: 700px) {
  .tourist-request-page-v2961 .premium-form-card {
    padding: 18px !important;
  }
  .tourist-request-page-v2961 .form-section-title {
    gap: 10px !important;
    margin: 22px 0 14px !important;
  }
  .tourist-request-page-v2961 .form-section-title strong {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    flex-basis: 32px !important;
  }
  .tourist-request-page-v2961 .form-section-title > span {
    font-size: .98rem !important;
  }
  .tourist-request-page-v2961 .checkbox-grid-v2961 label {
    min-height: 58px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
}
