﻿/* ============================================
   SANAVIE – Custom Styles
   Bootstrap 5.3 | Minimalist Wellness Theme
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --sv-blue:        #2E52A3;
  --sv-blue-dark:   #1D3A80;
  --sv-blue-mid:    #7B9DD4;
  --sv-blue-light:  #EBF0FA;
  --sv-bg:          #FAFBFE;
  --sv-bg-alt:      #F2F5FB;
  --sv-text:        #1A1C2E;
  --sv-text-muted:  #5A6372;
  --sv-border:      #E2E7F0;
  --sv-white:       #FFFFFF;
  --sv-radius:      16px;
  --sv-radius-sm:   10px;
  --sv-shadow:      0 4px 24px rgba(46,82,163,0.08);
  --sv-shadow-md:   0 8px 40px rgba(46,82,163,0.13);
  --sv-font-body:   'Inter', sans-serif;
  --sv-font-head:   'Cormorant Garamond', serif;
  --sv-transition:  0.3s ease;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sv-font-body);
  background-color: var(--sv-bg);
  color: var(--sv-text);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

/* ---------- Navbar ---------- */
.sv-navbar {
  background: rgba(250, 251, 254, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sv-border);
  padding: 1rem 0;
  transition: box-shadow var(--sv-transition);
}
.sv-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.sv-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sv-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.sv-nav-cta {
  animation: sv-heartbeat 2.4s ease-in-out infinite;
}

@keyframes sv-heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.08); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.05); }
  56%       { transform: scale(1); }
}
.sv-footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.sv-nav-link {
  color: var(--sv-text) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: 8px;
  transition: all var(--sv-transition);
}
.sv-nav-link:hover {
  background: var(--sv-blue-light);
  color: var(--sv-blue) !important;
}

/* ---------- Navbar contact ---------- */
.sv-nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sv-text) !important;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all var(--sv-transition);
}
.sv-nav-contact i { color: var(--sv-blue); font-size: 0.85rem; }
.sv-nav-contact:hover { background: var(--sv-blue-light); color: var(--sv-blue) !important; }
.sv-nav-social {
  width: 34px;
  height: 34px;
  background: var(--sv-blue-light);
  color: var(--sv-blue);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--sv-transition);
  flex-shrink: 0;
}
.sv-nav-social:hover { background: var(--sv-blue); color: #fff; }

/* ---------- Nav active + CTA ---------- */
.sv-nav-link.active {
  background: var(--sv-blue-light);
  color: var(--sv-blue) !important;
  font-weight: 600;
}
.sv-nav-cta {
  padding: 0.45rem 1.1rem !important;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .sv-nav-cta { width: 100%; text-align: center; }
  .sv-nav-contact { display: flex; width: 100%; justify-content: center; white-space: normal; border: 1px solid var(--sv-border); }
  #svNav .navbar-nav { padding: 1rem 0; border-top: 1px solid var(--sv-border); margin-top: 0.5rem; }
  #svNav .d-flex { flex-wrap: wrap; width: 100%; padding-bottom: 1rem; gap: 0.6rem; }
}

/* ---------- Page hero (aloldalak) ---------- */
.sv-page-hero {
  background: linear-gradient(135deg, var(--sv-blue-light) 0%, #dce8f8 100%);
  padding: 7.5rem 0 3.5rem;
}
.sv-page-hero-title {
  font-family: var(--sv-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sv-text);
  line-height: 1.2;
}
.sv-page-hero-sub {
  color: var(--sv-text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 0.75rem;
}
.sv-page-hero-breadcrumb {
  font-size: 0.82rem;
  color: var(--sv-text-muted);
  margin-bottom: 1rem;
}
.sv-page-hero-breadcrumb a { color: var(--sv-blue); text-decoration: none; }
.sv-page-hero-breadcrumb a:hover { text-decoration: underline; }

/* ---------- Buttons ---------- */
.sv-btn-primary {
  background: var(--sv-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--sv-transition);
  box-shadow: 0 4px 15px rgba(46,82,163,0.3);
}
.sv-btn-primary:hover {
  background: var(--sv-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,82,163,0.4);
}
.sv-btn-outline {
  background: transparent;
  color: var(--sv-blue);
  border: 2px solid var(--sv-blue);
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--sv-transition);
}
.sv-btn-outline:hover {
  background: var(--sv-blue);
  color: #fff;
  transform: translateY(-2px);
}
.sv-btn-white {
  background: #fff;
  color: var(--sv-blue);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--sv-transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.sv-btn-white:hover {
  background: var(--sv-blue-light);
  color: var(--sv-blue-dark);
  transform: translateY(-2px);
}

/* ---------- Badge ---------- */
.sv-badge {
  display: inline-block;
  background: var(--sv-blue-light);
  color: var(--sv-blue);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
}

/* ---------- Section headings ---------- */
.sv-section {
  padding: 6rem 0;
}
.sv-section-alt {
  background: var(--sv-bg-alt);
}
.sv-section-title {
  font-family: var(--sv-font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--sv-text);
  line-height: 1.25;
}
.sv-section-sub {
  color: var(--sv-text-muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}
.sv-body-text {
  color: var(--sv-text-muted);
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.sv-hero {
  min-height: 100vh;
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, #FAFBFE 0%, #EEF2FA 100%);
  position: relative;
  overflow: hidden;
}
.sv-hero-title {
  font-family: var(--sv-font-head);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--sv-text);
}
.sv-hero-title em {
  font-style: italic;
  color: var(--sv-blue);
}
.sv-hero-sub {
  color: var(--sv-text-muted);
  font-size: 1.15rem;
  max-width: 500px;
}
.sv-hero-stats {
  border-top: 1px solid var(--sv-border);
}
.sv-stat {
  display: flex;
  flex-direction: column;
}
.sv-stat-num {
  font-family: var(--sv-font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sv-blue);
  line-height: 1;
}
.sv-stat-label {
  font-size: 0.85rem;
  color: var(--sv-text-muted);
  margin-top: 0.2rem;
}
.sv-stat-divider {
  width: 1px;
  background: var(--sv-border);
}
.sv-hero-img-wrap {
  position: relative;
  display: inline-block;
  max-width: 480px;
  margin: 0 auto;
}
.sv-hero-blob {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 60% 40%, rgba(46,82,163,0.12) 0%, transparent 70%);
  border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
  z-index: 0;
  animation: blobFloat 6s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.04) rotate(3deg); }
}
.sv-hero-img {
  position: relative;
  z-index: 1;
  border-radius: 40% 60% 50% 70% / 60% 40% 70% 50%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.1;
  box-shadow: var(--sv-shadow-md);
}
.sv-hero-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  background: var(--sv-blue-light);
  border-radius: 40% 60% 50% 70% / 60% 40% 70% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--sv-blue);
}
.sv-hero-persons {
  max-width: 520px;
  margin: 0.9rem auto 0;
}
.sv-hero-persons-names {
  font-family: var(--sv-font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--sv-text);
  line-height: 1.35;
}
.sv-hero-persons-role {
  margin-top: 0.2rem;
  font-size: 0.88rem;
  color: var(--sv-text-muted);
}
.sv-hero-badge-float {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--sv-shadow);
  white-space: nowrap;
}
.sv-float-1 { bottom: 15%; left: -8%; animation: floatBadge 4s ease-in-out infinite; }
.sv-float-2 { top: 18%; right: -6%; animation: floatBadge 4s ease-in-out infinite 1.5s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.sv-hero-statsbar {
  border-top: 1px solid rgba(46,82,163,0.12);
  margin-top: 4rem;
  padding: 2.5rem 0 1.5rem;
  position: relative;
  z-index: 1;
}
.sv-hstat {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sv-hstat-border {
  border-left: 1px solid var(--sv-border);
}
.sv-hstat-num {
  font-family: var(--sv-font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--sv-blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sv-hstat-label {
  color: var(--sv-text-muted);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  margin-top: 0.5rem;
}
.sv-hero-footnote {
  color: var(--sv-text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.sv-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.sv-hero-wave svg { width: 100%; height: 80px; display: block; }

/* ---------- Cards ---------- */
.sv-card {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 2rem;
  transition: all var(--sv-transition);
  cursor: default;
}
.sv-card:hover {
  border-color: var(--sv-blue);
  box-shadow: var(--sv-shadow-md);
  transform: translateY(-4px);
}
.sv-card-icon {
  width: 56px;
  height: 56px;
  background: var(--c, #EBF0FA);
  color: var(--cc, #2E52A3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: transform var(--sv-transition);
}
.sv-card:hover .sv-card-icon {
  transform: scale(1.1) rotate(-5deg);
}
.sv-card-title {
  font-family: var(--sv-font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.sv-card-text {
  color: var(--sv-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.sv-card-link {
  color: var(--sv-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--sv-transition);
}
.sv-card-link:hover { gap: 0.6rem; color: var(--sv-blue-dark); }

/* ---------- Image Cards ---------- */
.sv-img-card {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  overflow: hidden;
  transition: all var(--sv-transition);
}
.sv-img-card:hover {
  border-color: var(--sv-blue);
  box-shadow: var(--sv-shadow-md);
  transform: translateY(-4px);
}
.sv-img-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.sv-img-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sv-img-card:hover .sv-img-card-photo img {
  transform: scale(1.05);
}
.sv-img-card-body {
  padding: 1.75rem;
}

/* ---------- About ---------- */
.sv-about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.sv-about-blob {
  position: absolute;
  inset: -30px 20px -30px -30px;
  background: var(--sv-blue-light);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 70%;
  z-index: 0;
}
.sv-about-img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--sv-shadow-md);
}
.sv-about-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--sv-blue-light);
  border-radius: var(--sv-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--sv-blue);
}
.sv-about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  z-index: 2;
  background: #fff;
  border-radius: var(--sv-radius-sm);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--sv-shadow);
  font-size: 0.9rem;
}
.sv-about-badge i { color: var(--sv-blue); font-size: 1.2rem; }

.sv-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.sv-feature-item i { color: var(--sv-blue); font-size: 1.1rem; }

.sv-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sv-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sv-text);
}
.sv-check-list li i {
  color: var(--sv-blue);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ---------- Reference Card ---------- */
.sv-ref-card {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  overflow: hidden;
  box-shadow: var(--sv-shadow);
  transition: all var(--sv-transition);
}
.sv-ref-card:hover {
  box-shadow: var(--sv-shadow-md);
  transform: translateY(-4px);
}
.sv-ref-photo {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}
.sv-ref-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.sv-ref-card:hover .sv-ref-photo img {
  transform: scale(1.03);
}
.sv-ref-body {
  padding: 1.75rem;
}
.sv-ref-title {
  font-family: var(--sv-font-head);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.25rem 0 0.5rem;
}
.sv-ref-text {
  color: var(--sv-text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Stats section ---------- */
.sv-section-green {
  background: linear-gradient(135deg, var(--sv-blue) 0%, var(--sv-blue-dark) 100%);
  padding: 5rem 0;
}
.sv-result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}
.sv-result-num {
  font-family: var(--sv-font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.sv-result-plus {
  font-size: 0.65em;
  vertical-align: super;
}
.sv-result-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 500;
}
.sv-stats-footnote {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.sv-testimonial {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 2rem;
  height: 100%;
  transition: all var(--sv-transition);
}
.sv-testimonial:hover,
.sv-testimonial-featured {
  border-color: var(--sv-blue);
  box-shadow: 0 8px 32px rgba(46,82,163,0.12);
}
.sv-testimonial-featured {
  transform: translateY(-8px);
}
.sv-stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 2px; }
.sv-testimonial-text {
  color: var(--sv-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.sv-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sv-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.sv-testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}
.sv-testimonial-author span {
  font-size: 0.82rem;
  color: var(--sv-text-muted);
}

/* ---------- Google / Facebook értékelések ---------- */
.sv-review-card {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--sv-shadow);
  transition: all var(--sv-transition);
  display: flex;
  flex-direction: column;
}
.sv-review-card:hover { box-shadow: var(--sv-shadow-md); transform: translateY(-3px); }
.sv-review-platform {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sv-text-muted);
  margin-bottom: 0.75rem;
}
.sv-review-platform i { font-size: 1rem; }
.sv-review-platform .bi-google { color: #4285F4; }
.sv-review-platform .bi-facebook { color: #1877F2; }
.sv-review-text {
  color: var(--sv-text);
  font-size: 0.97rem;
  line-height: 1.7;
  flex-grow: 1;
}

/* ---------- CTA ---------- */
.sv-cta {
  background: linear-gradient(135deg, #1D3A80 0%, var(--sv-blue) 60%, #5578C7 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.sv-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.sv-cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.sv-cta-title {
  font-family: var(--sv-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sv-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* ---------- Location Cards ---------- */
.sv-location-card {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 1.75rem;
  height: 100%;
  transition: all var(--sv-transition);
}
.sv-location-card:hover {
  border-color: var(--sv-blue);
  box-shadow: var(--sv-shadow-md);
  transform: translateY(-3px);
}
.sv-location-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sv-location-icon {
  width: 40px;
  height: 40px;
  background: var(--sv-blue-light);
  color: var(--sv-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sv-location-city {
  font-family: var(--sv-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--sv-text);
}
.sv-location-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sv-blue);
  margin-bottom: 0.5rem;
}
.sv-location-address {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--sv-text);
  margin-bottom: 0.4rem;
}
.sv-location-note {
  font-size: 0.85rem;
  color: var(--sv-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.sv-location-map {
  width: 100%;
  height: 160px;
  border-radius: var(--sv-radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--sv-border);
}
.sv-location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.sv-location-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sv-border);
}
.sv-location-contacts a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sv-text-muted);
  text-decoration: none;
  transition: color var(--sv-transition);
}
.sv-location-contacts a:hover { color: var(--sv-blue); }
.sv-location-contacts a i { color: var(--sv-blue); font-size: 0.9rem; }

/* ---------- Contact ---------- */
.sv-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.sv-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sv-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--sv-blue-light);
  color: var(--sv-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sv-contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--sv-text-muted);
  font-weight: 500;
}
.sv-contact-item span {
  font-size: 0.95rem;
  font-weight: 500;
}
.sv-form-card {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 2.5rem;
  box-shadow: var(--sv-shadow);
}
.sv-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sv-text);
  margin-bottom: 0.4rem;
  display: block;
}
.sv-input {
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: var(--sv-text);
  background: var(--sv-bg);
  transition: all var(--sv-transition);
}
.sv-input:focus {
  border-color: var(--sv-blue);
  box-shadow: 0 0 0 3px rgba(46,82,163,0.1);
  background: #fff;
  outline: none;
}
.sv-check .form-check-input:checked {
  background-color: var(--sv-blue);
  border-color: var(--sv-blue);
}
.sv-check-label { font-size: 0.9rem; color: var(--sv-text-muted); }
.sv-check-label a { color: var(--sv-blue); }

/* ---------- Pricing ---------- */
.sv-price-group-title {
  font-family: var(--sv-font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sv-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.sv-price-group-title i { color: var(--sv-blue); }
.sv-price-table {
  background: var(--sv-white);
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
  overflow: hidden;
}
.sv-price-table-head,
.sv-price-table-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px;
  align-items: center;
}
.sv-price-table-head {
  background: var(--sv-blue);
  padding: 0.65rem 1.25rem;
}
.sv-price-table-row {
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--sv-border);
  transition: background var(--sv-transition);
}
.sv-price-table-row:hover { background: var(--sv-bg-alt); }
.sv-price-table-row--highlight { background: var(--sv-blue-light); }
.sv-price-table-row--highlight:hover { background: #dce8f8; }
.sv-price-table-row--best { background: var(--sv-blue-light); }
.sv-price-table-row--best:hover { background: #dce8f8; }
.sv-ptc--label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sv-ptc--label strong { font-size: 1rem; color: var(--sv-text); }
.sv-ptc--label span { font-size: 0.85rem; color: var(--sv-text-muted); }
.sv-ptc--loc {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-align: right;
}
.sv-ptc--val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sv-blue);
  text-align: right;
  white-space: nowrap;
}
.sv-price-best-badge {
  display: inline-block;
  background: var(--sv-blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.55rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.4rem;
}
@media (max-width: 575px) {
  .sv-price-table-head,
  .sv-price-table-row {
    grid-template-columns: 1fr 110px 110px;
  }
  .sv-ptc--val { font-size: 0.82rem; }
}

/* ---------- Összehasonlító táblázat ---------- */
.sv-compare-table {
  background: var(--sv-white);
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
  overflow: hidden;
}
.sv-compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sv-compare-head-cell {
  padding: 0.9rem 1.25rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--sv-blue);
}
.sv-compare-head-cell--new { background: var(--sv-blue-dark); }
.sv-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--sv-border);
}
.sv-compare-cell {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--sv-text-muted);
}
.sv-compare-cell--new {
  background: var(--sv-blue-light);
  color: var(--sv-text);
  font-weight: 500;
}
@media (max-width: 767px) {
  .sv-compare-head { display: none; }
  .sv-compare-row { grid-template-columns: 1fr; }
  .sv-compare-cell {
    position: relative;
    padding-top: 2.1rem;
  }
  .sv-compare-cell::before {
    content: attr(data-label);
    position: absolute;
    top: 0.6rem;
    left: 1.25rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sv-blue);
  }
  .sv-compare-cell--new::before { color: var(--sv-blue-dark); }
  .sv-compare-cell--old { border-bottom: 1px dashed var(--sv-border); }
}

/* ---------- Footer ---------- */
.sv-footer {
  background: #0D1628;
  padding: 5rem 0 0;
}
.sv-footer-text { color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.7; }
.sv-footer-heading {
  font-family: var(--sv-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.25rem;
}
.sv-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.sv-footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--sv-transition);
}
.sv-footer-links a:hover { color: #fff; }
.sv-social { display: flex; gap: 0.75rem; }
.sv-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--sv-transition);
}
.sv-social-link:hover { background: var(--sv-blue); color: #fff; }
.sv-social-link-text {
  width: auto;
  height: 38px;
  padding: 0 0.75rem;
  gap: 0.4rem;
  white-space: nowrap;
}
.sv-footer-newsletter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.sv-footer-newsletter-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.sv-footer-newsletter-list li i {
  color: var(--sv-blue-mid);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.sv-newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: var(--sv-radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.sv-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.sv-newsletter-input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--sv-blue);
  box-shadow: none;
  color: #fff;
  outline: none;
}
.sv-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.sv-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--sv-transition);
}
.sv-footer-contact a i { color: var(--sv-blue-mid); flex-shrink: 0; }
.sv-footer-contact a:hover { color: #fff; }

.sv-footer-divider { border-color: rgba(255,255,255,0.08); margin: 3rem 0 0; }
.sv-footer-copy { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.sv-footer-policy { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none; transition: color var(--sv-transition); }
.sv-footer-policy:hover { color: #fff; }

/* ---------- Disease cards ---------- */
.sv-disease-card {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--sv-shadow);
  transition: all var(--sv-transition);
  display: flex;
  flex-direction: column;
}
.sv-disease-card:hover { box-shadow: var(--sv-shadow-md); transform: translateY(-4px); }
.sv-disease-icon {
  width: 52px;
  height: 52px;
  background: var(--c);
  color: var(--cc);
  border-radius: var(--sv-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.sv-disease-title { font-size: 1rem; font-weight: 600; color: var(--sv-text); margin-bottom: 0.65rem; }
.sv-disease-text { font-size: 0.88rem; color: var(--sv-text-muted); line-height: 1.65; flex: 1; margin-bottom: 0.75rem; }

/* ---------- Info block ---------- */
.sv-info-block {
  background: var(--sv-blue-light);
  border-radius: var(--sv-radius);
  padding: 1.75rem;
}
.sv-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sv-blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
.sv-info-text { font-size: 0.9rem; color: var(--sv-text-muted); line-height: 1.65; margin: 0; }

/* ---------- Reason cards ---------- */
.sv-reason-card {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--sv-shadow);
  transition: all var(--sv-transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sv-reason-card:hover { box-shadow: var(--sv-shadow-md); transform: translateY(-3px); }
.sv-reason-icon {
  font-size: 1.4rem;
  color: var(--sv-blue);
  line-height: 1;
}
.sv-reason-title { font-size: 0.95rem; font-weight: 600; color: var(--sv-text); margin: 0; }
.sv-reason-text { font-size: 0.87rem; color: var(--sv-text-muted); line-height: 1.65; margin: 0; }

/* ---------- Célcsoportok ---------- */
.sv-target-card {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  overflow: hidden;
  box-shadow: var(--sv-shadow);
  transition: all var(--sv-transition);
  display: flex;
  flex-direction: column;
}
.sv-target-card:hover { box-shadow: var(--sv-shadow-md); transform: translateY(-4px); }
.sv-target-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.sv-target-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sv-target-card:hover .sv-target-img img { transform: scale(1.05); }
.sv-target-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,22,40,0.55) 0%, transparent 60%);
}
.sv-target-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 1rem;
  background: var(--sv-blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.sv-target-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sv-target-title { font-size: 1rem; font-weight: 600; color: var(--sv-text); margin-bottom: 0.65rem; }
.sv-target-text { font-size: 0.88rem; color: var(--sv-text-muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }

/* ---------- Személyre szabott pillérek ---------- */
.sv-pillar-card {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--sv-shadow);
  transition: all var(--sv-transition);
}
.sv-pillar-card:hover { box-shadow: var(--sv-shadow-md); transform: translateY(-4px); }
.sv-pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--c);
  color: var(--cc);
  border-radius: var(--sv-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.sv-pillar-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sv-text);
  margin-bottom: 1rem;
}
.sv-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sv-pillar-list li {
  font-size: 0.88rem;
  color: var(--sv-text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.sv-pillar-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--sv-blue-mid);
}

/* ---------- INSUMED Lépések ---------- */
.sv-step-card {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: var(--sv-shadow);
  border-top: 4px solid var(--sv-blue);
  transition: all var(--sv-transition);
}
.sv-step-card:hover { box-shadow: var(--sv-shadow-md); transform: translateY(-4px); }
.sv-step-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--sv-blue);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--sv-font-head);
}
.sv-step-title { font-size: 1.1rem; font-weight: 600; color: var(--sv-text); margin-bottom: 0.75rem; }
.sv-step-text { font-size: 0.9rem; color: var(--sv-text-muted); line-height: 1.65; margin: 0; }

/* ---------- INSUMED Fázisok ---------- */
.sv-phase-card {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--sv-shadow);
  padding: 2rem 1.5rem;
  transition: all var(--sv-transition);
  display: flex;
  flex-direction: column;
}
.sv-phase-card:hover { box-shadow: var(--sv-shadow-md); transform: translateY(-4px); }
.sv-phase-card--img { padding: 0; }
.sv-phase-card--img .sv-phase-img {
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}
.sv-phase-card--img .sv-phase-img img {
  width: 100%;
  height: 200px;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.sv-phase-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sv-phase-badge {
  width: 36px;
  height: 36px;
  background: var(--sv-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.sv-phase-title { font-size: 1.05rem; font-weight: 600; color: var(--sv-text); margin-bottom: 0.6rem; }
.sv-phase-text { font-size: 0.9rem; color: var(--sv-text-muted); line-height: 1.65; margin: 0; }

/* ---------- Statisztikák ---------- */
.sv-stat-block {
  background: var(--sv-white);
  border-radius: var(--sv-radius);
  padding: 2.5rem;
  box-shadow: var(--sv-shadow);
}
.sv-stat-headline { }
.sv-stat-number {
  display: block;
  font-family: var(--sv-font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--sv-blue);
  line-height: 1;
}
.sv-stat-label {
  font-size: 1rem;
  color: var(--sv-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.sv-stat-method {
  background: var(--sv-bg-alt);
  border-left: 4px solid var(--sv-blue-mid);
  border-radius: 0 var(--sv-radius-sm) var(--sv-radius-sm) 0;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: var(--sv-text-muted);
  line-height: 1.7;
}
.sv-stat-method-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sv-text);
  margin-bottom: 0.75rem;
}

/* ---------- GYIK ---------- */
.sv-faq-category {
  font-family: var(--sv-font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sv-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sv-blue-light);
}
.sv-accordion { border-radius: var(--sv-radius); overflow: hidden; }
.sv-accordion-item {
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius-sm) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.sv-accordion-btn {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sv-text);
  background: var(--sv-white);
  padding: 1rem 1.25rem;
  box-shadow: none !important;
}
.sv-accordion-btn:not(.collapsed) {
  color: var(--sv-blue);
  background: var(--sv-blue-light);
}
.sv-accordion-btn::after { filter: none; }
.sv-accordion-btn:not(.collapsed)::after { filter: invert(27%) sepia(60%) saturate(800%) hue-rotate(200deg); }
.sv-accordion-body {
  font-size: 0.92rem;
  color: var(--sv-text-muted);
  line-height: 1.7;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--sv-white);
}
.sv-accordion-body ol { padding-left: 1.25rem; }
.sv-accordion-body li { margin-bottom: 0.35rem; }

/* ---------- Video ---------- */
.sv-video-player {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
  background: #000;
  box-shadow: var(--sv-shadow-md);
}
.sv-video-quote {
  font-family: var(--sv-font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--sv-text);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Siker galéria ---------- */
.sv-siker-item {
  border-radius: var(--sv-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sv-shadow);
  transition: all var(--sv-transition);
}
.sv-siker-item:hover {
  box-shadow: var(--sv-shadow-md);
  transform: translateY(-3px);
}
.sv-siker-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.sv-siker-item:hover img { transform: scale(1.04); }

.sv-siker-portrait .sv-siker-item { aspect-ratio: 3/4; background: #f5f5f5; }
.sv-siker-portrait .sv-siker-item img { height: 100%; object-fit: contain; }
.sv-siker-square .sv-siker-item { aspect-ratio: 1; background: #f5f5f5; }
.sv-siker-square .sv-siker-item img { height: 100%; object-fit: contain; }

/* ---------- Team ---------- */
.sv-team-card {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: all var(--sv-transition);
  height: 100%;
}
.sv-team-card:hover {
  border-color: var(--sv-blue);
  box-shadow: var(--sv-shadow-md);
  transform: translateY(-4px);
}
.sv-team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--sv-blue-light);
  box-shadow: 0 4px 16px rgba(46,82,163,0.14);
  flex-shrink: 0;
}
.sv-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.sv-team-card:hover .sv-team-photo img {
  transform: scale(1.06);
}
.sv-team-name {
  font-family: var(--sv-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sv-text);
  margin-bottom: 0.3rem;
}
.sv-team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sv-blue);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}
.sv-team-bio {
  font-size: 0.9rem;
  color: var(--sv-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Partner ---------- */
.sv-partner-card {
  background: var(--sv-white);
  border: 2px solid var(--sv-blue);
  border-radius: var(--sv-radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--sv-shadow-md);
}
.sv-partner-icon {
  width: 64px;
  height: 64px;
  background: var(--sv-blue-light);
  color: var(--sv-blue);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}
.sv-partner-name {
  font-family: var(--sv-font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sv-text);
  margin-bottom: 0.4rem;
}
.sv-partner-sub {
  color: var(--sv-text-muted);
  font-size: 0.97rem;
  margin: 0;
}
.sv-partner-locations-title {
  font-family: var(--sv-font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sv-text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .sv-hero { padding: 7rem 0 4rem; min-height: auto; }
  .sv-float-1, .sv-float-2 { display: none; }
  .sv-about-blob { display: none; }
  .sv-about-badge { right: 0.5rem; }
  .sv-testimonial-featured { transform: none; }
}
@media (max-width: 575px) {
  .sv-section { padding: 4rem 0; }
  .sv-hero { padding: 6rem 0 3rem; }
  .sv-form-card { padding: 1.5rem; }
  .sv-cta { padding: 4rem 0; }
}

/* ---------- Smooth scroll offset for fixed nav ---------- */
[id] { scroll-margin-top: 80px; }


/* ---------- Legal / Adatkezeles ---------- */
.sv-legal-block { display: flex; flex-direction: column; gap: 1.5rem; }
.sv-legal-title {
  font-family: var(--sv-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sv-text);
  border-bottom: 2px solid var(--sv-blue-light);
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}
.sv-legal-subtitle {
  font-family: var(--sv-font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sv-blue);
  margin-bottom: 0;
}

/* ---------- Cookie consent ---------- */
/* ---------- BMI kalkulátor ---------- */
.sv-bmi-card {
  background: var(--sv-white);
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
  padding: 2.5rem;
}

/* --- Mezők sor --- */
.sv-bmi-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 575px) {
  .sv-bmi-fields { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* --- Egy mező --- */
.sv-bmi-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sv-bmi-field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sv-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Stepper (− érték + egység +) --- */
.sv-bmi-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius-sm);
  overflow: hidden;
  background: var(--sv-white);
  transition: border-color 0.2s;
}
.sv-bmi-field--error .sv-bmi-stepper {
  border-color: #E05252;
}
.sv-bmi-stepper:focus-within {
  border-color: var(--sv-blue);
  box-shadow: 0 0 0 3px rgba(46,82,163,0.1);
}
.sv-bmi-step {
  flex-shrink: 0;
  width: 2.4rem;
  height: 3rem;
  background: var(--sv-bg-alt);
  border: none;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--sv-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--sv-transition), color var(--sv-transition);
  user-select: none;
  -webkit-user-select: none;
}
.sv-bmi-step:hover { background: var(--sv-blue-light); color: var(--sv-blue); }
.sv-bmi-step:active { background: var(--sv-blue); color: #fff; }
.sv-bmi-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0 0.25rem;
  background: var(--sv-white);
}
.sv-bmi-input {
  width: 3.5rem;
  min-width: 0;
  text-align: center;
  font-size: 1.2rem;
  font-family: var(--sv-font-head);
  font-weight: 600;
  color: var(--sv-text);
  border: none;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
  padding: 0.65rem 0;
}
.sv-bmi-input::-webkit-outer-spin-button,
.sv-bmi-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sv-bmi-unit {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sv-text-muted);
  white-space: nowrap;
}
.sv-bmi-err {
  font-size: 0.75rem;
  color: #E05252;
  min-height: 1em;
}

/* --- Eredmény --- */
.sv-bmi-result {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sv-border);
}
.sv-bmi-scale { margin-bottom: 0.5rem; }
.sv-bmi-bar {
  position: relative;
  height: 10px;
  border-radius: 50px;
  background: linear-gradient(to right, #5BA9E8 0%, #4CB87A 28%, #F5A623 56%, #E05252 100%);
  overflow: visible;
  margin-bottom: 0.5rem;
}
.sv-bmi-marker {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: var(--sv-white);
  border: 3px solid var(--sv-blue);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(46,82,163,0.3);
  transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sv-bmi-scale-labels {
  display: flex;
  font-size: 0.7rem;
  color: var(--sv-text-muted);
  text-align: center;
  line-height: 1.3;
  margin-top: 0.5rem;
}
.sv-bmi-scale-labels span { flex: 1; }
.sv-bmi-value-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sv-bmi-value-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sv-text-muted);
  margin-bottom: 0.15rem;
}
.sv-bmi-value-num {
  font-family: var(--sv-font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sv-text);
  line-height: 1;
}
.sv-bmi-category {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.sv-bmi-category--underweight { background: #EBF5FF; color: #1A6FA8; }
.sv-bmi-category--normal      { background: #E6F7EE; color: #2E7D52; }
.sv-bmi-category--overweight  { background: #FFF4E5; color: #B05A00; }
.sv-bmi-category--obese       { background: #FDECEC; color: #B02020; }
.sv-bmi-message {
  font-size: 0.95rem;
  color: var(--sv-text-muted);
  line-height: 1.7;
}
.sv-bmi-cta {
  background: var(--sv-blue-light);
  border-radius: var(--sv-radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.sv-bmi-cta-text {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  color: var(--sv-text);
  line-height: 1.6;
}
@media (max-width: 575px) {
  .sv-bmi-card { padding: 1.25rem 1rem; }
  .sv-bmi-cta { flex-direction: column; }
  .sv-bmi-cta .btn { width: 100%; text-align: center; }
}

/* ---------- Interaktív idővonal ---------- */
.sv-timeline-card {
  background: var(--sv-white);
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
  padding: 2.5rem;
}
.sv-timeline-stage {
  text-align: center;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sv-timeline-stage.sv-timeline-stage--fading {
  opacity: 0;
  transform: translateY(6px);
}
.sv-timeline-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sv-blue-light);
  color: var(--sv-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.sv-timeline-stage-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.sv-timeline-stage-text {
  color: var(--sv-text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 480px;
}
.sv-timeline-slider-wrap {
  max-width: 560px;
  margin: 1.5rem auto 0;
}
.sv-timeline-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 50px;
  background: var(--sv-border);
  outline: none;
  cursor: pointer;
}
.sv-timeline-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sv-blue);
  border: 3px solid var(--sv-white);
  box-shadow: 0 2px 8px rgba(46,82,163,0.35);
  cursor: pointer;
}
.sv-timeline-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sv-blue);
  border: 3px solid var(--sv-white);
  box-shadow: 0 2px 8px rgba(46,82,163,0.35);
  cursor: pointer;
}
.sv-timeline-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.sv-timeline-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sv-text-muted);
  transition: color var(--sv-transition);
}
.sv-timeline-label--active { color: var(--sv-blue); }
.sv-timeline-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--sv-text-muted);
  margin: 1.5rem 0 0;
}

/* ---------- Kontroll-gyakoriság összehasonlítás ---------- */
.sv-control-compare {
  background: var(--sv-white);
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
  padding: 2rem 2.5rem;
}
.sv-control-row {
  display: grid;
  grid-template-columns: 200px 1fr 110px;
  align-items: center;
  gap: 1.25rem;
}
.sv-control-row + .sv-control-row { margin-top: 1.25rem; }
.sv-control-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sv-text);
}
.sv-control-bar-track {
  background: var(--sv-bg-alt);
  border-radius: 50px;
  height: 14px;
  overflow: hidden;
}
.sv-control-bar {
  height: 100%;
  border-radius: 50px;
  background: var(--sv-blue-mid);
  transition: width 0.8s ease;
}
.sv-control-bar--highlight { background: var(--sv-blue); }
.sv-control-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sv-blue);
  text-align: right;
  white-space: nowrap;
}
.sv-control-footnote {
  font-size: 0.85rem;
  color: var(--sv-text-muted);
  margin: 1.5rem 0 0;
  text-align: center;
}
@media (max-width: 575px) {
  .sv-timeline-card { padding: 1.5rem 1.25rem; }
  .sv-control-compare { padding: 1.5rem 1.25rem; }
  .sv-control-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    text-align: center;
  }
  .sv-control-value { text-align: center; }
}

/* ---------- Mini teszt (Mi állhat a túlsúly hátterében?) ---------- */
.sv-quiz-result {
  background: var(--sv-white);
  border: 1.5px dashed var(--sv-border);
  border-radius: var(--sv-radius);
  padding: 1.5rem 1.75rem;
  text-align: left;
}
.sv-quiz-result--done {
  border-style: solid;
  border-color: var(--sv-blue-light);
  background: var(--sv-blue-light);
}
.sv-quiz-result-placeholder {
  color: var(--sv-text-muted);
  font-size: 0.92rem;
  font-style: italic;
  margin: 0;
  text-align: center;
}
.sv-quiz-result-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sv-blue);
  margin-bottom: 0.4rem;
}
.sv-quiz-result-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sv-text);
  margin-bottom: 0.35rem;
}
.sv-quiz-result-subtitle {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--sv-blue-dark);
  margin-bottom: 0.5rem;
}
.sv-quiz-result-text {
  font-size: 0.9rem;
  color: var(--sv-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Modal progress */
.sv-quiz-progress { display: flex; align-items: center; gap: 0.85rem; }
.sv-quiz-progress-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 50px;
  background: var(--sv-bg-alt);
  overflow: hidden;
}
.sv-quiz-progress-bar {
  height: 100%;
  border-radius: 50px;
  background: var(--sv-blue);
  transition: width 0.35s ease;
}
.sv-quiz-progress-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sv-text-muted);
  white-space: nowrap;
}

/* Modal kérdés + válaszok */
.sv-quiz-question-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sv-text);
  margin-bottom: 0.4rem;
}
.sv-quiz-question-note {
  font-size: 0.82rem;
  color: var(--sv-text-muted);
  margin-bottom: 1rem;
}
.sv-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sv-quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius-sm);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color var(--sv-transition), background var(--sv-transition);
}
.sv-quiz-option:hover { border-color: var(--sv-blue-mid); background: var(--sv-bg-alt); }
.sv-quiz-option input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--sv-blue);
  flex-shrink: 0;
}
.sv-quiz-option-text { font-size: 0.92rem; color: var(--sv-text); }
.sv-quiz-option--selected { border-color: var(--sv-blue); background: var(--sv-blue-light); }

/* ---------- Skip-link (akadálymentesség) ---------- */
.sv-skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}
.sv-skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: 0.5rem 1.25rem;
  background: var(--sv-blue);
  color: #fff;
  border-radius: var(--sv-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  outline: 3px solid #fff;
}

/* ---------- Sticky mobil CTA ---------- */
.sv-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 0.75rem 1rem;
  background: var(--sv-white);
  border-top: 1px solid var(--sv-border);
  box-shadow: 0 -4px 16px rgba(46,82,163,0.12);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sv-sticky-cta.sv-sticky-cta--visible {
  display: block;
}
.sv-sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--sv-blue);
  color: #fff;
  font-family: var(--sv-font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--sv-radius-sm);
  text-decoration: none;
  transition: background var(--sv-transition);
}
.sv-sticky-cta-btn:hover,
.sv-sticky-cta-btn:focus { background: var(--sv-blue-dark); color: #fff; }
@media (min-width: 768px) {
  .sv-sticky-cta { display: none !important; }
}

.sv-footer-policy--btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Süti beállítások – lebegő gomb ---------- */
.sv-cookie-fab-wrap {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1041;
}
@media (max-width: 767px) {
  .sv-cookie-fab-wrap { bottom: 5.5rem; } /* a mobil sticky foglalás-sáv fölött */
}
.sv-cookie-fab {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--sv-blue);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(46,82,163,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background var(--sv-transition), transform var(--sv-transition);
}
.sv-cookie-fab:hover,
.sv-cookie-fab:focus {
  background: var(--sv-blue-dark);
  color: #fff;
  transform: translateY(-2px);
}
.sv-cookie-bubble {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.6rem);
  width: max-content;
  max-width: 220px;
  background: var(--sv-white);
  color: var(--sv-text);
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 0.75rem 1.75rem 0.75rem 0.9rem;
  border-radius: var(--sv-radius-sm);
  box-shadow: 0 4px 20px rgba(46,82,163,0.18);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sv-cookie-bubble.sv-cookie-bubble--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sv-cookie-bubble-close {
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  background: none;
  border: none;
  font-size: 1rem;
  line-height: 1;
  color: var(--sv-text-muted);
  cursor: pointer;
  padding: 0.2rem;
}

/* ============================================
   Form Card Styles (Partner & Paciens)
   ============================================ */
.pt-form-card {
  background: var(--sv-white);
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow);
  padding: 2.75rem 3rem;
}
.pt-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sv-blue-light);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sv-blue);
  margin-bottom: 1.25rem;
}
.pt-form-title {
  font-family: var(--sv-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sv-text);
  margin-bottom: 0.75rem;
}
.pt-form-desc {
  font-size: 0.95rem;
  color: var(--sv-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.pt-form-group { margin-bottom: 1.25rem; }
.pt-form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.pt-form-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: var(--sv-font-body);
  border: 1.5px solid var(--sv-border);
  border-radius: var(--sv-radius-sm);
  background: var(--sv-bg-alt);
  color: var(--sv-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pt-form-input:focus {
  outline: none;
  border-color: var(--sv-blue);
  box-shadow: 0 0 0 3px rgba(46,82,163,0.1);
  background: #fff;
}
.pt-form-privacy {
  font-size: 0.75rem;
  color: var(--sv-text-muted);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 575px) {
  .pt-form-card { padding: 1.5rem 1.25rem; }
}
