/* ═══════════════════════════════════════════════════════
   KRIOBODY — Teljes Design Rendszer
   Téma: Hideg / Jég / Modern Wellness
═══════════════════════════════════════════════════════ */

:root {
  /* BABAKÉK light theme — a nevek megmaradtak, de a jelentés világos:
     --deep = near-white (háttér-alap + világos szöveg accent-gombon)
     --dark/--navy = babakék szekció-hátterek
     --white = elsődleges SÖTÉT szöveg (most már nem fehér!) */
  --deep:       #f4faff;
  --dark:       #e6f2fb;
  --navy:       #dbedf9;
  --ice:        #2a93d8;
  --ice-light:  #1f87cf;
  --cyan:       #38b6d8;
  --frost:      #7cc3e8;
  --frost-pale: #cfe8f7;
  --white:      #14323f;
  --ink-strong: #0c2330;
  --gold:       #e0922a;
  --card:       rgba(255,255,255,.82);
  --muted:      rgba(34, 74, 96, 0.66);
  --ff-head:    'Rajdhani', 'Oswald', sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: linear-gradient(180deg, #eaf6fe 0%, #ddeffb 100%);
  background-attachment: fixed;
  color: var(--white);
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--ice); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.15;
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
p  { line-height: 1.75; }

/* ── Utility ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice-light);
  background: rgba(14, 165, 233, .12);
  border: 1px solid rgba(14, 165, 233, .3);
  border-radius: 50px;
  padding: .35rem 1rem;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--ice-light) 0%, var(--cyan) 50%, var(--frost) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  border: none;
  white-space: nowrap;
}
.btn-ice {
  background: linear-gradient(135deg, var(--ice) 0%, var(--cyan) 100%);
  color: var(--deep);
  box-shadow: 0 0 30px rgba(14, 165, 233, .4);
}
.btn-ice:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(14, 165, 233, .65);
}
.btn-outline {
  background: transparent;
  color: var(--ice-light);
  border: 1.5px solid rgba(14, 165, 233, .5);
}
.btn-outline:hover {
  background: rgba(14, 165, 233, .1);
  border-color: var(--ice-light);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: #3a2606;
  box-shadow: 0 0 25px rgba(251, 191, 36, .3);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(251, 191, 36, .5);
}

/* ══════════════════════════════════════════════════
   CANVAS PARTICLES (snow / ice crystals)
══════════════════════════════════════════════════ */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 5;            /* tartalom fölött, de nav/modál alatt — essen a hó az egész oldalon */
  opacity: .6;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(244,250,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(14, 165, 233, .12);
  padding: .8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-logo .krio { color: var(--ice-light); }
.nav-logo .body { color: var(--white); }
.nav-logo .dot  { color: var(--gold); font-size: 2rem; line-height: 0; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(22,54,68,.82);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ice-light);
  transition: width .25s;
}
.nav-links a:hover { color: var(--ice-light); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  z-index: 2;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ice-light);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(237,246,253,.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  color: rgba(22,54,68,.84);
  text-decoration: none;
  letter-spacing: .1em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--ice-light); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--muted);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

/* Multi-layer atmospheric background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(6, 182, 212, .18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(14, 165, 233, .12) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 90%, rgba(203,231,247,.55) 0%, transparent 60%),
    linear-gradient(160deg, #eaf6fe 0%, #dceffb 40%, #cfe7f8 100%);
}

/* Animated frost rings */
.frost-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14, 165, 233, .15);
  animation: expandRing linear infinite;
  pointer-events: none;
}
@keyframes expandRing {
  0%   { transform: scale(0); opacity: .8; }
  100% { transform: scale(4); opacity: 0; }
}

/* Big temperature visual */
.temp-display {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  pointer-events: none;
}
.temp-num {
  font-family: var(--ff-head);
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, rgba(42,147,216,.55) 0%, rgba(14,165,233,.28) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(14,165,233,.5));
}
.temp-label {
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(40,82,104,.72);
  margin-top: .5rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-content .badge { margin-bottom: 1.5rem; }
.hero-content h1 {
  margin-bottom: 1.8rem;
  color: var(--white);
}
.hero-content h1 span { display: block; color: var(--ice-light); }
.hero-content p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(14,165,233,.15);
}
.hero-stat .num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ice-light);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
  opacity: .5;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.scroll-arrow {
  width: 28px; height: 28px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .temp-display { display: none; }
}

/* ══════════════════════════════════════════════════
   HOW IT WORKS — Steps
══════════════════════════════════════════════════ */
.steps { background: var(--dark); position: relative; overflow: hidden; }
.steps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.8rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--ice) 0%, var(--cyan) 50%, var(--ice) 100%);
  opacity: .3;
  z-index: 0;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice) 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(14,165,233,.4);
}
.step-item h3 { font-size: 1rem; margin-bottom: .6rem; color: var(--ice-light); letter-spacing: .04em; }
.step-item p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   MAIN SERVICE — KRIOSZAUNA
══════════════════════════════════════════════════ */
.main-service {
  position: relative;
  overflow: hidden;
}
.main-service-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(6,182,212,.08) 0%, transparent 70%),
    var(--deep);
}
.main-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Cryo Chamber Visual */
.cryo-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cryo-chamber {
  width: 280px;
  height: 420px;
  border-radius: 140px 140px 50px 50px;
  background: linear-gradient(180deg,
    rgba(14,165,233,.15) 0%,
    rgba(6,182,212,.08) 40%,
    rgba(14,165,233,.2) 100%
  );
  border: 1.5px solid rgba(14,165,233,.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    0 0 60px rgba(14,165,233,.15),
    inset 0 0 60px rgba(14,165,233,.06);
  overflow: hidden;
}
.cryo-chamber::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.06) 0%,
    transparent 40%
  );
  border-radius: 0 0 50% 50%;
}
.cryo-temp-big {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1f87cf 0%, #38b6d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  text-align: center;
}
.cryo-temp-sub {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .4rem;
  text-align: center;
}
.cryo-steam {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top,
    rgba(14,165,233,.12) 0%,
    transparent 100%
  );
  animation: steamPulse 3s ease-in-out infinite;
}
@keyframes steamPulse {
  0%, 100% { opacity: .6; }
  50%       { opacity: 1; }
}

.cryo-ring-outer {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(14,165,233,.15);
  animation: spinSlow 30s linear infinite;
}
.cryo-ring-mid {
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px dashed rgba(6,182,212,.1);
  animation: spinSlow 50s linear infinite reverse;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.cryo-badge {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(14,165,233,.3);
  border-radius: 12px;
  padding: .8rem 1.2rem;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  animation: floatUD 3s ease-in-out infinite;
}
@keyframes floatUD {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.cryo-badge-1 { top: 40px; right: -30px; color: var(--ice-light); animation-delay: 0s; }
.cryo-badge-2 { bottom: 80px; left: -40px; color: var(--gold); animation-delay: -1.5s; }
.cryo-badge-3 { top: 50%; right: -50px; transform: translateY(-50%); color: var(--cyan); animation-delay: -.8s; }

.main-service-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.main-service-text p  { color: var(--muted); font-size: 1rem; margin-bottom: 1rem; }
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .95rem;
  color: rgba(22,54,68,.86);
}
.benefit-list li::before {
  content: '✦';
  color: var(--ice-light);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: .3rem;
}

@media (max-width: 900px) {
  .main-service-grid { grid-template-columns: 1fr; }
  .cryo-visual { margin-bottom: 3rem; }
}

/* ══════════════════════════════════════════════════
   USE CASES — 4 tabs
══════════════════════════════════════════════════ */
.use-cases { background: var(--navy); position: relative; overflow: hidden; }
.use-cases::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}

.tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  padding: .65rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid rgba(14,165,233,.25);
  background: transparent;
  color: var(--muted);
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.tab-btn:hover  { border-color: var(--ice); color: var(--ice-light); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--ice) 0%, var(--cyan) 100%);
  border-color: transparent;
  color: var(--deep);
  box-shadow: 0 0 20px rgba(14,165,233,.35);
}

.tab-panel { display: none; }
.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  animation: fadePanel .4s ease;
}
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tab-panel-visual {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.tab-img {
  width: 100%;
  padding-bottom: 65%;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tab-img-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  filter: drop-shadow(0 0 30px rgba(14,165,233,.6));
}
.tab-text h3 { font-size: 2rem; margin-bottom: 1rem; }
.tab-text p  { color: var(--muted); font-size: .97rem; line-height: 1.8; margin-bottom: 1.5rem; }
.tab-items {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.tab-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.2rem;
  background: rgba(14,165,233,.06);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 12px;
  transition: all .25s;
}
.tab-item:hover {
  background: rgba(14,165,233,.1);
  border-color: rgba(14,165,233,.25);
  transform: translateX(5px);
}
.tab-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.tab-item-text { font-size: .9rem; color: rgba(22,54,68,.86); font-weight: 500; }

@media (max-width: 768px) {
  .tab-panel.active { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════ */
.services-section { position: relative; }
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(6,182,212,.04) 0%, transparent 70%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--card);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 20px;
  padding: 2rem;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 20px 50px rgba(14,165,233,.12);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  display: block;
  filter: drop-shadow(0 0 15px rgba(14,165,233,.4));
}
.service-card h3 { font-size: 1.2rem; color: var(--ice-light); margin-bottom: .7rem; }
.service-card p  { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.service-card-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  border-top: 1px solid rgba(14,165,233,.2);
  padding-top: .8rem;
  width: 100%;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
.pricing { background: var(--dark); position: relative; overflow: hidden; }
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.price-card {
  background: var(--card);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: linear-gradient(145deg, rgba(14,165,233,.15) 0%, rgba(6,182,212,.08) 100%);
  border-color: rgba(14,165,233,.4);
  transform: scale(1.03);
  box-shadow: 0 0 50px rgba(14,165,233,.2);
}
.price-card:hover:not(.featured) {
  border-color: rgba(14,165,233,.3);
  transform: translateY(-4px);
}
.price-card:hover.featured {
  box-shadow: 0 0 70px rgba(14,165,233,.3);
}
.price-tag {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: linear-gradient(135deg, var(--ice), var(--cyan));
  color: var(--deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 50px;
}
.price-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.price-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: .5rem; }
.price-desc { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.price-amount {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ice-light);
  line-height: 1;
  margin-bottom: .3rem;
}
.price-amount span { font-family: var(--ff-body); font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-duration {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .05em;
  margin-bottom: 1.8rem;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
  text-align: left;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .85rem;
  color: rgba(22,54,68,.84);
}
.price-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(14,165,233,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--ice-light);
  flex-shrink: 0;
}
.price-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); }
}

/* ══════════════════════════════════════════════════
   TEMPERATURE SCIENCE
══════════════════════════════════════════════════ */
.science { position: relative; overflow: hidden; }
.science-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(14,165,233,.06) 0%, transparent 70%),
    var(--deep);
}
.science-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.thermometer-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.thermometer {
  width: 60px;
  background: rgba(14,165,233,.08);
  border: 1.5px solid rgba(14,165,233,.25);
  border-radius: 30px;
  height: 400px;
  position: relative;
  overflow: hidden;
}
.thermo-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--ice) 0%, var(--cyan) 50%, rgba(40,82,104,.5) 100%);
  border-radius: 30px;
  animation: thermoFill 3s ease-out forwards;
}
@keyframes thermoFill {
  from { height: 0%; }
  to   { height: 85%; }
}
.thermo-marks {
  position: absolute;
  top: 0; left: 75px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}
.thermo-mark {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
}
.thermo-mark .line {
  width: 12px;
  height: 1px;
  background: rgba(14,165,233,.4);
}
.thermo-mark .val { color: var(--muted); white-space: nowrap; }
.thermo-mark.highlight .val { color: var(--ice-light); font-weight: 700; }

.science-text h2 { margin-bottom: 1.5rem; }
.science-text p  { color: var(--muted); margin-bottom: 1.2rem; font-size: .97rem; }
.science-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.science-fact {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(14,165,233,.05);
  border: 1px solid rgba(14,165,233,.1);
  border-radius: 12px;
  transition: all .25s;
}
.science-fact:hover {
  background: rgba(14,165,233,.08);
  border-color: rgba(14,165,233,.2);
}
.science-fact-icon { font-size: 1.5rem; flex-shrink: 0; }
.science-fact-text strong { display: block; color: var(--ice-light); font-size: .9rem; margin-bottom: .2rem; }
.science-fact-text span  { font-size: .83rem; color: var(--muted); }

@media (max-width: 900px) {
  .science-grid { grid-template-columns: 1fr; }
  .thermometer-wrap { margin-bottom: 3rem; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonials { background: var(--navy); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid rgba(14,165,233,.1);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all .3s;
  position: relative;
}
.testi-card::after {
  content: '"';
  position: absolute;
  top: .8rem; right: 1.2rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(14,165,233,.1);
  line-height: 1;
}
.testi-card:hover {
  border-color: rgba(14,165,233,.25);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
}
.testi-stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testi-card p { font-size: .9rem; color: rgba(22,54,68,.82); font-style: italic; line-height: 1.75; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(14,165,233,.2);
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: .88rem; color: var(--white); }
.testi-role { font-size: .75rem; color: var(--muted); margin-top: .1rem; }

@media (max-width: 900px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .testi-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   BOOKING / CONTACT
══════════════════════════════════════════════════ */
.contact { position: relative; overflow: hidden; }
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(14,165,233,.08) 0%, transparent 60%),
    var(--deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-text h2 { margin-bottom: 1.5rem; }
.contact-text p  { color: var(--muted); font-size: .97rem; margin-bottom: 2rem; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: rgba(14,165,233,.06);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 14px;
  text-decoration: none;
  color: var(--white);
  transition: all .25s;
}
.contact-item:hover {
  background: rgba(14,165,233,.1);
  border-color: rgba(14,165,233,.3);
  transform: translateX(5px);
}
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.contact-item-text span { font-size: .97rem; color: var(--white); font-weight: 500; }

.booking-form {
  background: var(--card);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.booking-form h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  background: rgba(14,165,233,.06);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: .93rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ice);
  background: rgba(14,165,233,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(40,82,104,.5); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   SECTION HEADER (shared)
══════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4.5rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--muted); font-size: 1rem; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(14,165,233,.1);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.75; max-width: 260px; margin-top: .75rem; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: all .2s;
}
.social-btn:hover { background: rgba(14,165,233,.2); border-color: var(--ice); transform: translateY(-2px); }
.footer-col h4 { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ice-light); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--ice-light); }
.footer-bottom {
  border-top: 1px solid rgba(14,165,233,.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(40,82,104,.55);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════
   MODALS
══════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16,40,58,.45);
  backdrop-filter: blur(8px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--navy);
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: modalIn .3s ease;
  box-shadow: 0 0 80px rgba(14,165,233,.15);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: rgba(14,165,233,.2); color: var(--white); }

/* ══════════════════════════════════════════════════
   ANIMATIONS — shared
══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════
   MISC UI
══════════════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--cyan));
  z-index: 999;
  box-shadow: 0 0 8px var(--ice);
  transition: width .1s;
}
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--ice), var(--cyan));
  color: var(--deep);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(14,165,233,.4);
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 0 30px rgba(14,165,233,.6); }

.toast {
  position: fixed;
  bottom: 2rem; left: 2rem;
  background: var(--navy);
  border: 1px solid rgba(14,165,233,.3);
  color: var(--white);
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .7rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.3), 0 0 20px rgba(14,165,233,.1);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }


/* ══════════════════════════════════════════════════
   SERVICE SUBPAGES
══════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 1rem 0;
  font-size: .82rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--ice-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }

/* ── Service Hero ── */
.sp-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1.08) saturate(.92);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.sp-hero:hover .sp-hero-bg { transform: scale(1); }
.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234,246,254,.90) 0%, rgba(207,231,248,.80) 55%, rgba(190,222,245,.74) 100%);
}
.sp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.sp-hero-content h1 { margin: 1rem 0 1.5rem; }
.sp-hero-content p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2rem;
}
.sp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.sp-meta-pill {
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.25);
  border-radius: 50px;
  padding: .4rem 1.1rem;
  font-size: .85rem;
  color: var(--ice-light);
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ── Intro split ── */
.sp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sp-intro-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.sp-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp-intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 20px;
  pointer-events: none;
}
.sp-intro-text h2 { margin: .8rem 0 1.5rem; }
.sp-intro-text p { color: var(--muted); margin-bottom: 1rem; }

/* ── Benefits ── */
.sp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sp-benefit-card {
  background: rgba(14,165,233,.05);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  transition: border-color .3s, transform .3s;
}
.sp-benefit-card:hover {
  border-color: rgba(14,165,233,.35);
  transform: translateY(-4px);
}
.sp-benefit-icon {
  font-size: 2rem;
  margin-bottom: .8rem;
  display: block;
}
.sp-benefit-card h4 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: var(--ice-light);
  margin-bottom: .5rem;
}
.sp-benefit-card p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── Process ── */
.sp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}
.sp-process-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  opacity: .3;
}
.sp-step {
  text-align: center;
  position: relative;
}
.sp-step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--ice), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(14,165,233,.35);
}
.sp-step h4 { font-family: var(--ff-head); font-size: 1rem; color: var(--white); margin-bottom: .5rem; }
.sp-step p  { font-size: .83rem; color: var(--muted); }

/* ── FAQ ── */
.sp-faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.sp-faq-item {
  background: rgba(14,165,233,.05);
  border: 1px solid rgba(14,165,233,.1);
  border-radius: 14px;
  overflow: hidden;
}
.sp-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.sp-faq-q::after { content: '+'; font-size: 1.4rem; color: var(--ice); flex-shrink: 0; transition: transform .3s; }
.sp-faq-item.open .sp-faq-q::after { transform: rotate(45deg); }
.sp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.75;
  padding: 0 1.5rem;
}
.sp-faq-item.open .sp-faq-a { max-height: 300px; padding: 0 1.5rem 1.2rem; }

/* ── CTA banner ── */
.sp-cta {
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(6,182,212,.06));
  border: 1px solid rgba(14,165,233,.2);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  margin-top: 5rem;
}
.sp-cta h2 { margin-bottom: 1rem; }
.sp-cta p { color: var(--muted); max-width: 520px; margin: 0 auto 2rem; }
.sp-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Photo gallery strip ── */
.sp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .8rem;
  border-radius: 20px;
  overflow: hidden;
  margin: 3rem 0;
}
.sp-gallery-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sp-gallery-img:first-child { aspect-ratio: 16/9; grid-row: span 2; }
.sp-gallery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.sp-gallery-img:hover img { transform: scale(1.05); }

/* ── Contraindications ── */
.sp-contra {
  background: rgba(239,68,68,.05);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
}
.sp-contra h4 { color: #fca5a5; font-family: var(--ff-head); margin-bottom: 1rem; font-size: 1.1rem; }
.sp-contra ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.sp-contra li { font-size: .85rem; color: var(--muted); padding-left: 1.2rem; position: relative; }
.sp-contra li::before { content: '✗'; position: absolute; left: 0; color: #f87171; font-size: .75rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .sp-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .sp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-process-grid::before { display: none; }
  .sp-gallery { grid-template-columns: 1fr 1fr; }
  .sp-gallery-img:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .sp-cta { padding: 2.5rem 1.5rem; }
  .sp-contra ul { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .sp-benefits-grid { grid-template-columns: 1fr; }
  .sp-process-grid  { grid-template-columns: 1fr; }
  .sp-gallery { grid-template-columns: 1fr; }
  .sp-gallery-img:first-child { grid-column: auto; }
}

/* ══════════════════════════════════════════════════
   v2 — Social Proof Strip (Cryoniq mintára)
══════════════════════════════════════════════════ */
.proof-strip {
  background: linear-gradient(180deg, var(--deep) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(14,165,233,.1);
  border-bottom: 1px solid rgba(14,165,233,.1);
  padding: 1.4rem 0;
  overflow: hidden;
  position: relative;
}
.proof-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}
.proof-strip-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ice-light);
  white-space: nowrap;
}
.proof-strip-icon { font-size: 1.1rem; }
.proof-strip-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.proof-strip-track {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  animation: proofScroll 38s linear infinite;
  white-space: nowrap;
}
.proof-name {
  font-size: .92rem;
  color: rgba(22,54,68,.82);
  font-weight: 500;
  letter-spacing: .02em;
}
.proof-dot { color: rgba(14,165,233,.35); font-weight: 700; }
@keyframes proofScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 700px) {
  .proof-strip-label { font-size: .65rem; }
  .proof-strip-inner { gap: 1rem; }
  .proof-name { font-size: .82rem; }
}

/* ══════════════════════════════════════════════════
   v2 — Pricing Tabs
══════════════════════════════════════════════════ */
.price-tabs {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.price-tab-btn {
  padding: .75rem 1.6rem;
  border-radius: 50px;
  border: 1.5px solid rgba(14,165,233,.25);
  background: transparent;
  color: var(--muted);
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .25s;
}
.price-tab-btn:hover { border-color: var(--ice); color: var(--ice-light); }
.price-tab-btn.active {
  background: linear-gradient(135deg, var(--ice) 0%, var(--cyan) 100%);
  border-color: transparent;
  color: var(--deep);
  box-shadow: 0 0 22px rgba(14,165,233,.4);
}
.price-panel { display: none; }
.price-panel.active {
  display: grid;
  animation: fadePanel .4s ease;
}

/* ══════════════════════════════════════════════════
   v2 — Team Section (Restore mintára)
══════════════════════════════════════════════════ */
.team-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(14,165,233,.06) 0%, transparent 70%);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}
.team-card {
  background: var(--card);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 24px;
  overflow: hidden;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 20px 50px rgba(14,165,233,.15);
}
.team-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.team-photo-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 0 25px rgba(14,165,233,.4));
  transition: transform .5s ease;
}
.team-card:hover .team-emoji { transform: scale(1.08); }
.team-badge-overlay {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--ice), var(--cyan));
  color: var(--deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(14,165,233,.4);
}
.team-info {
  padding: 1.6rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-info h3 { font-size: 1.25rem; color: var(--white); margin-bottom: .3rem; }
.team-role {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ice-light);
  margin-bottom: 1rem;
}
.team-info p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}
.team-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.team-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  color: var(--ice-light);
}

.team-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(6,182,212,.04));
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ice-light);
  line-height: 1;
  margin-bottom: .4rem;
}
.trust-lbl {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .team-trust { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ══════════════════════════════════════════════════
   v2 — Blog Section
══════════════════════════════════════════════════ */
.blog-section { background: var(--deep); position: relative; }
.blog-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,.35);
  box-shadow: 0 20px 50px rgba(14,165,233,.12);
}
.blog-cover {
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-cover-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 0 25px rgba(14,165,233,.5));
  transition: transform .5s ease;
}
.blog-card:hover .blog-cover-icon { transform: scale(1.1) rotate(-3deg); }
.blog-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(14,165,233,.3);
  color: var(--ice-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 50px;
}
.blog-body {
  padding: 1.6rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: .8rem;
}
.blog-meta-dot { color: rgba(14,165,233,.4); }
.blog-body h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .8rem;
  line-height: 1.3;
}
.blog-body p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex: 1;
}
.blog-arrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ice-light);
  transition: transform .25s;
  display: inline-block;
}
.blog-card:hover .blog-arrow { transform: translateX(6px); }
.blog-cta {
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════
   v2 — FAQ Accordion (krioklinika.hu mintára, modern)
══════════════════════════════════════════════════ */
.faq-section { background: var(--navy); position: relative; overflow: hidden; }
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(14,165,233,.05) 0%, transparent 70%);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  z-index: 1;
}
.faq-item {
  background: var(--card);
  border: 1px solid rgba(14,165,233,.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.faq-item:hover { border-color: rgba(14,165,233,.25); }
.faq-item[open] {
  border-color: rgba(14,165,233,.35);
  background: rgba(14, 165, 233, .04);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--ice-light); }
.faq-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14,165,233,.12);
  color: var(--ice-light);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .3s ease, background .25s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--ice), var(--cyan));
  color: var(--deep);
}
.faq-body {
  padding: 0 1.6rem 1.4rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  animation: faqSlide .35s ease;
}
.faq-body strong { color: var(--ice-light); }
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   v2 — Sticky Mobile CTA
══════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 1rem;
  left: 1rem; right: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.2rem;
  background: linear-gradient(135deg, var(--ice) 0%, var(--cyan) 100%);
  color: var(--deep);
  text-decoration: none;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(14,165,233,.45), 0 0 20px rgba(14,165,233,.3);
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.sticky-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sticky-cta-text strong {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.sticky-cta-text span {
  font-size: .72rem;
  opacity: .8;
  font-weight: 500;
  margin-top: .1rem;
}
.sticky-cta-arrow {
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  .back-top { bottom: 6rem; }
}

/* ══════════════════════════════════════════════════
   v2 — Benefit list MAY HELP checkmark upgrade
══════════════════════════════════════════════════ */
.benefit-list li {
  padding: .55rem .85rem;
  background: rgba(14,165,233,.04);
  border: 1px solid rgba(14,165,233,.08);
  border-radius: 10px;
  transition: all .25s ease;
  align-items: center;
  font-weight: 500;
}
.benefit-list li:hover {
  background: rgba(14,165,233,.09);
  border-color: rgba(14,165,233,.2);
  transform: translateX(4px);
}
.benefit-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--ice), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0;
  box-shadow: 0 0 10px rgba(14,165,233,.35);
}

/* ══════════════════════════════════════════════════
   v2 — Service-card hover upgrade (Remedy Place mintára)
══════════════════════════════════════════════════ */
.service-card {
  position: relative;
}
.service-card .service-card-icon {
  transition: transform .4s ease, filter .35s ease;
}
.service-card:hover .service-card-icon {
  transform: scale(1.12) translateY(-2px);
  filter: drop-shadow(0 0 25px rgba(14,165,233,.6));
}
.service-card h3 {
  transition: color .25s, transform .35s ease;
}
.service-card:hover h3 {
  color: var(--white);
  transform: translateX(3px);
}
.service-card .service-card-tag {
  transition: color .25s, border-color .25s;
}
.service-card:hover .service-card-tag {
  color: var(--ice-light);
  border-color: rgba(14,165,233,.4);
}

/* ══════════════════════════════════════════════════
   v5 — VALÓS KÉPEK a főoldalon (kártyák, use-cases, csapat, blog)
══════════════════════════════════════════════════ */
.service-card.has-photo { padding-top: 0; }
.svc-photo {
  height: 178px;
  margin: 0 -2rem 1.3rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.svc-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--card) 100%);
}
.service-card.has-photo .service-card-icon {
  position: relative; z-index: 1;
  margin-top: -3.6rem; margin-bottom: .9rem;
  width: 54px; height: 54px;
  border-radius: 15px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(14,127,180,.20);
  filter: none;
}
.service-card.has-photo:hover .svc-photo { transform: none; }

/* use-cases tab kép fölötti emoji = lebegő chip */
.tab-img-icon {
  font-size: 2.6rem !important;
  top: auto !important; left: 1.1rem !important;
  bottom: 1rem; transform: none !important;
  width: 56px; height: 56px;
  background: rgba(255,255,255,.92);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(14,127,180,.22);
  filter: none !important;
}

/* blog cover fölötti emoji = chip */
.blog-cover-icon {
  font-size: 2.2rem !important;
  width: 52px; height: 52px;
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(14,127,180,.2);
  filter: none !important;
}

/* csapat-fotó: arc fókusz felül */
.team-photo-inner { background-color: #dcedf9; }

/* ══════════════════════════════════════════════════
   v6 — Aloldal extra szekciók (javallatok, árak, ellenjavallatok)
══════════════════════════════════════════════════ */
.sp-list { display:grid; grid-template-columns:1fr 1fr; gap:.4rem 2.2rem; margin-top:1.6rem; }
.sp-list li {
  position:relative; padding:.7rem 0 .7rem 1.9rem;
  border-bottom:1px solid rgba(14,127,180,.1);
  color:var(--white); font-size:.96rem; line-height:1.5;
}
.sp-list li::before {
  content:"✓"; position:absolute; left:0; top:.78rem;
  width:20px; height:20px; border-radius:50%;
  background:linear-gradient(135deg,var(--ice),var(--cyan));
  color:#fff; font-size:.66rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
}
@media(max-width:680px){ .sp-list{ grid-template-columns:1fr; } }

.sp-price-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:1.3rem; margin-top:.5rem; }
.sp-price {
  background:var(--card); border:1px solid rgba(14,127,180,.15);
  border-radius:18px; padding:1.8rem; position:relative;
  transition:transform .3s var(--ease,ease), box-shadow .3s, border-color .3s;
}
.sp-price:hover { transform:translateY(-4px); box-shadow:0 16px 40px -22px rgba(14,127,180,.5); border-color:rgba(14,127,180,.3); }
.sp-price.feat { border-color:var(--ice); box-shadow:0 0 0 1px var(--ice), 0 14px 36px -20px rgba(14,127,180,.5); }
.sp-price-flag { position:absolute; top:-12px; left:1.8rem; background:linear-gradient(135deg,var(--ice),var(--cyan)); color:#fff; font-family:var(--ff-head); font-size:.7rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:.3rem .8rem; border-radius:50px; }
.sp-price h4 { font-size:1.1rem; color:var(--white); margin-bottom:.2rem; }
.sp-price .sp-price-sub { font-size:.82rem; color:var(--muted); margin-bottom:1rem; min-height:2.4em; }
.sp-price .sp-price-amt { font-family:var(--ff-head); font-size:2rem; font-weight:700; color:var(--ice-light); line-height:1; }
.sp-price .sp-price-amt span { font-size:.95rem; font-weight:500; color:var(--muted); }
.sp-price .sp-price-unit { font-size:.8rem; color:var(--cyan); margin-top:.4rem; font-weight:500; }

.sp-contra {
  background:rgba(224,146,42,.08); border:1px solid rgba(224,146,42,.28);
  border-radius:18px; padding:1.6rem 1.9rem; margin-top:1.8rem;
}
.sp-contra h4 { color:#b96f12; font-size:1.05rem; margin-bottom:.7rem; display:flex; align-items:center; gap:.5rem; }
.sp-contra p { color:var(--ink-strong); font-size:.92rem; line-height:1.7; }
.sp-contra p strong { color:#b96f12; }

.sp-note-box {
  background:rgba(14,127,180,.06); border:1px solid rgba(14,127,180,.16);
  border-radius:18px; padding:1.6rem 1.9rem; margin-top:1.8rem;
}
.sp-note-box h4 { color:var(--ice-light); font-size:1.05rem; margin-bottom:.7rem; }
.sp-note-box p, .sp-note-box li { color:var(--white); font-size:.92rem; line-height:1.7; }
.sp-note-box ul { margin:.4rem 0 0 1.2rem; list-style:disc; }

/* ══════════════════════════════════════════════════
   v7 — Cikk / blog aloldal
══════════════════════════════════════════════════ */
.art-meta { display:flex; flex-wrap:wrap; gap:.5rem .9rem; align-items:center; font-size:.88rem; color:var(--muted); margin-top:1.2rem; }
.art-meta .art-cat { font-family:var(--ff-head); font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ice-light); }
.art-meta .dot { color:rgba(14,127,180,.4); }
.art-wrap { max-width:760px; margin:0 auto; }
.art-body { font-size:1.07rem; line-height:1.85; }
.art-body > p { color:#2b4a59; margin-bottom:1.4rem; }
.art-body h2 { font-size:clamp(1.5rem,3vw,2rem); margin:2.6rem 0 1rem; color:var(--ink-strong); }
.art-body h3 { font-size:1.2rem; margin:2rem 0 .6rem; color:var(--ice-light); }
.art-body ul { margin:0 0 1.5rem 0; list-style:none; }
.art-body ul li { position:relative; padding:.5rem 0 .5rem 1.9rem; color:#2b4a59; border-bottom:1px solid rgba(14,127,180,.08); }
.art-body ul li::before { content:"❄"; position:absolute; left:0; top:.6rem; color:var(--ice); font-size:.85rem; }
.art-body strong { color:var(--ink-strong); font-weight:600; }
.art-figure { margin:2rem 0; }
.art-figure img { width:100%; border-radius:18px; display:block; box-shadow:0 18px 40px -24px rgba(14,40,60,.4); }
.art-figure figcaption { text-align:center; font-size:.82rem; color:var(--muted); margin-top:.7rem; }
.art-lead { font-size:1.18rem; line-height:1.7; color:var(--ink-strong); font-weight:500; margin-bottom:1.8rem; }

/* lépés-idővonal (tudomány cikk) */
.art-timeline { display:flex; flex-direction:column; gap:.9rem; margin:1.5rem 0 2rem; }
.art-tl { display:flex; gap:1.1rem; align-items:flex-start; background:var(--card); border:1px solid rgba(14,127,180,.14); border-radius:16px; padding:1.1rem 1.3rem; }
.art-tl .art-tl-t { flex:none; font-family:var(--ff-head); font-weight:700; color:#fff; background:linear-gradient(135deg,var(--ice),var(--cyan)); border-radius:12px; padding:.5rem .8rem; font-size:.8rem; letter-spacing:.02em; white-space:nowrap; }
.art-tl-c strong { display:block; color:var(--ink-strong); margin-bottom:.2rem; }
.art-tl-c span { color:#41606e; font-size:.95rem; }

/* kapcsolódó cikkek */
.art-related { display:grid; grid-template-columns:repeat(2,1fr); gap:1.3rem; margin-top:1.5rem; }
@media(max-width:680px){ .art-related{ grid-template-columns:1fr; } }

/* ══════════════════════════════════════════════════
   v8 — Kép-logó (kriobody hivatalos logó)
══════════════════════════════════════════════════ */
.nav-logo { gap:0; }
.nav-logo .logo-img { height:54px; width:auto; display:block; transition:height .3s ease; }
nav.scrolled .nav-logo .logo-img { height:46px; }
.footer-brand .nav-logo .logo-img { height:58px; margin-bottom:.2rem; }
@media (max-width:600px){ .nav-logo .logo-img { height:44px; } }

/* ══════════════════════════════════════════════════
   v9 — MOBIL finomhangolás
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* lépések összekötő vonal elrejtése függőleges elrendezésnél */
  .steps-grid::before { display: none; }
  .step-item { padding-bottom: .5rem; }
}
@media (max-width: 640px) {
  /* kevesebb függőleges térköz mobilon — kevesebb görgetés */
  .section { padding-block: 3.6rem; }
  .section-sm { padding-block: 2.6rem; }
  .container { padding-inline: 1.15rem; }
  h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  h2 { font-size: clamp(1.7rem, 7.5vw, 2.4rem); }
  .section-header { margin-bottom: 2.4rem; }

  /* árazás / tabok teljes szélességben, görgethető tab-sor */
  .price-tabs, .tabs { gap: .5rem; }
  .price-tab-btn { flex: 1 1 auto; text-align: center; }

  /* a hero alsó margója, hogy a sticky CTA ne takarjon kritikus tartalmat */
  .hero { padding-bottom: 2rem; }

  /* aloldal hero kompaktabb */
  .sp-hero { min-height: 56vh; }
  .sp-hero-content h1 { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* cikk tipográfia mobilon */
  .art-body { font-size: 1.02rem; }
  .art-body h2 { font-size: 1.45rem; margin-top: 2rem; }
  .art-tl { flex-direction: column; gap: .6rem; }
  .art-tl .art-tl-t { align-self: flex-start; }

  /* csapat trust 2 oszlop maradjon szellős */
  .team-trust { padding: 1.5rem 1rem; gap: 1.2rem; }
  .trust-num { font-size: 1.7rem; }

  /* idézet/badge ne lógjon ki */
  .badge { font-size: .68rem; }
}
@media (max-width: 380px) {
  .nav-cta { display: none; }
  .price-amount { font-size: 2.4rem; }
}


/* ══════════════════════════════════════════════════
   v10 — Hero -140° áthelyezés (ne ütközzön a címmel, mínusz látszódjon)
══════════════════════════════════════════════════ */
.hero .container { position: relative; z-index: 3; }
.temp-display {
  right: 5%; left: auto; top: auto; bottom: 7%;
  transform: none; z-index: 1; opacity: 1;
}
.temp-num {
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  background: linear-gradient(180deg, rgba(31,135,207,.46) 0%, rgba(31,135,207,.28) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 1;
  filter: drop-shadow(0 2px 12px rgba(14,165,233,.12));
}
.temp-label { color: rgba(34,74,96,.55); }
@media (max-width: 1100px){ .temp-display { bottom: 4%; right: 3%; } }
@media (max-width: 900px){ .temp-display { display: none; } }

/* ══════════════════════════════════════════════════
   v11 — Bemer logó-kártya + -140° a címmel egy vonalban
══════════════════════════════════════════════════ */
.svc-photo--logo {
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}
.svc-photo--logo::after { display: none; }

/* -140° vissza a hero jobb oldalára, a címmel egy vonalban (eye-catching) */
.temp-display {
  right: 3%; left: auto; top: 44%; bottom: auto;
  transform: translateY(-50%); z-index: 1; opacity: 1; text-align: right;
}
.hero-content { max-width: 600px; }
.hero-content h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); }
.temp-num {
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  background: linear-gradient(180deg, rgba(31,135,207,.52) 0%, rgba(31,135,207,.30) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 1; filter: drop-shadow(0 2px 14px rgba(14,165,233,.12));
}
.temp-label { color: rgba(34,74,96,.5); }
@media (max-width: 980px) { .hero-content { max-width: 100%; } .temp-display { display: none; } }

/* ══════════════════════════════════════════════════
   TÉRKÉP — Google Maps embed a footer felett
══════════════════════════════════════════════════ */
.map-section {
  position: relative;
  padding: 0;
  background: var(--dark);
}
.map-embed {
  width: 100%;
  height: 420px;
  filter: saturate(.85) brightness(1.02);
}
.map-embed iframe { display: block; width: 100%; height: 100%; }
.map-pill {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--card, #fff);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14,127,180,.16);
  border-radius: 16px;
  padding: .9rem 1.4rem;
  box-shadow: 0 14px 34px -14px rgba(14,40,60,.35);
  text-decoration: none;
  max-width: calc(100% - 2rem);
  transition: transform .25s ease, box-shadow .25s ease;
}
.map-pill:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 20px 44px -14px rgba(14,40,60,.45); }
.map-pill-icon { font-size: 1.5rem; flex-shrink: 0; }
.map-pill-text { display: flex; flex-direction: column; line-height: 1.3; }
.map-pill-text strong { color: var(--ink, #14323f); font-size: .98rem; }
.map-pill-text span { color: rgba(34,74,96,.65); font-size: .82rem; margin-top: .15rem; }
@media (max-width: 640px) {
  .map-embed { height: 320px; }
  .map-pill { bottom: 1rem; padding: .8rem 1.1rem; }
  .map-pill-text span { font-size: .76rem; }
}

/* ══════════════════════════════════════════════════
   v10 — MOBIL EXTRA POLISH (375px-es auditból)
══════════════════════════════════════════════════ */
@media (max-width: 760px) {

  /* 1) "Görgess" nyíl ráúszott a hero-statisztikákra → mobilon el */
  .scroll-hint { display: none; }

  /* 2) Hero statisztikák: rendezett 2×2 rács, arányos méretekkel */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 1rem;
    padding-top: 2rem;
  }
  .hero-stat .num { font-size: 1.65rem; }
  .hero-stat .lbl { font-size: .7rem; }

  /* hero alsó térköz, hogy a stats ne érjen a szekcióhatárig */
  .hero { padding-bottom: 3rem; }

  /* 3) Nav: mindig frosted háttér mobilon → a logó és a hamburger
     mindig tisztán olvasható, nem olvad bele a hero-ba
     (#nav ID-szelektor: biztosan felülírja az alap nav szabályt) */
  #nav {
    background-color: rgba(244, 250, 255, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 127, 180, .08);
    padding: .7rem 0;
  }

  /* 4) A hero cím ne érjen túl közel a nav-hoz */
  .hero { padding-top: 6rem; }
}

@media (max-width: 760px) {
  /* 5) Krio-kabin lebegő címkéi: mobilon a képernyőn BELÜL maradjanak
     (desktopon negatív offsettel lógnak ki a kabin mellé, mobilon levágná a szél) */
  .cryo-badge-1 { right: 4px; }
  .cryo-badge-2 { left: 4px; }
  .cryo-badge-3 { right: 4px; top: auto; bottom: 24px; transform: none; }
}

@media (max-width: 380px) {
  /* nagyon keskeny kijelzőn (SE, mini) még kompaktabb stats */
  .hero-stat .num { font-size: 1.45rem; }
  .hero-stats { gap: 1.3rem .8rem; }
}
