/* ===== COLOR PALETTE ===== */
:root {
  /* --accent:        #ECA1B5; */

  --logo-color:        #ef9ab8;
  --accent:        #C0546E;
  --accent-dark:   #9A3A52;
  --accent-light:  #fde8ef;
  --accent-text:   #7c3f53;
  --basic:        #1e2130;

  --bg:            #ffffff;
  --bg-warm:       #FDF2F5;
  --bg-muted:      #f5e0e8;
  --bg-dark:       #3D455C;

  --border:        #f0dde5;
  --border-warm:   #ecd4de;

  --text:          #3D455C;
  --text-light:    #6b7280;
  --text-muted:    #6b7280;
  --text-faint:    #9ca3af;
  --text-strong:   #3D455C;

  --white:         #fff;
  --error:         #c0392b;

  --border-radius: 1rem;
  --border-radius-large: 0rem;

}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 2.2rem; font-size: 1.2rem; }
main {
  position: relative;
  isolation: isolate;
  margin-bottom: 6rem;
}
main > .section:first-child > .container::before{
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
  top: 0%;
  left: 0%;
  width: 800px;
  height: 420px;
  background: radial-gradient(ellipse 88% 75% at 50% 50%, #f1a9c280 0%, transparent 65%);
  
}
/* h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; } */
h1, h2 { font-family: 'Montserrat', sans-serif; }
h2 { font-size: 2.5rem; margin-bottom: 3rem; line-height: 1.2; color: var(--accent-text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container.rounded-block { border-radius: 2rem; background-color: var(--bg-warm); padding: 2rem; }
.container.bordered-block { border: 2px solid var(--border); border-radius: 2rem; padding: 2rem; }
p { margin-bottom: 3rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 3rem; }
li { margin-bottom: 0.5rem; }


/* ===== NAV — mobile first ===== */
.nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-warm);
  padding: 0 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #2F3A56;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo img { height: 30px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text { font-family: 'Montserrat', sans-serif; display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-main { font-size: 16px; font-weight: 700; color: #2F3A56; }
.nav-logo-sub { font-size: 12px; font-weight: 500; color: #9ca3af; letter-spacing: 0.3px; }

/* hamburger — visible by default (mobile) */
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  border-radius: 8px;
  transition: background .15s;
  margin-left: auto;
}
.nav-hamburger:hover { background: var(--bg-warm); }

/* nav links — hidden by default, shown as dropdown when .nav-open */
.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav.nav-open .nav-links { display: flex; min-height: 100vh;}
.nav-links a {
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-bottom: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent-dark); }
.nav-links a.nav--active { color: var(--accent); }
.nav-cta {
  margin-top: 8px;
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 12px 22px !important;
  border-radius: 50px !important;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(236,161,181,0.4);
  text-align: center;
  display: block;
  width: fit-content;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 6px 16px rgba(212,136,156,0.5) !important;
}

/* nav dropdown — mobile */
.nav-dropdown { display: block; }
.nav-dropdown-menu:empty { display: none !important; }
.nav-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.nav-dropdown-toggle::after {
  content: '›';
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .2s;
  display: inline-block;
}
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(90deg); }
.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--text-muted) !important;
  padding: 8px 8px !important;
}
.nav-dropdown-menu a:hover { color: var(--accent-dark) !important; }

.nav-end { display: flex; flex-direction: column; gap: 4px; padding: 8px 0; }
.lang-switcher { display: flex; align-items: center; padding: 8px 0; }
.lang-dropdown { position: relative; }
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  transition: border-color .15s, color .15s;
}
.lang-dropdown-btn:hover { border-color: var(--accent); color: var(--text); }
.lang-dropdown-btn .fi { width: 21px; height: 16px; vertical-align: middle; }
.lang-dropdown-arrow { transition: transform .2s; flex-shrink: 0; }
.lang-dropdown.open .lang-dropdown-arrow { transform: rotate(180deg); }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  min-width: 60px;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s;
}
.lang-dropdown-item .fi { width: 21px; height: 16px; vertical-align: middle; }
.lang-dropdown-item:hover { background: var(--bg-warm); color: var(--text); }
.lang-dropdown-item.active { color: var(--accent); background: var(--bg-warm); }

/* ===== LAYOUT — mobile first ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; /*border-bottom: 1px solid var(--border);*/ /*min-height: 100vh;*/ display: flex; flex-direction: column; }
.section:last-of-type { border-bottom: none; }
.section--white { background: var(--white); }
.section--alt { background: var(--bg-warm); }
.section--dots {
  background-image: radial-gradient(circle, rgb(212 136 156 / 68%) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-strong);
  line-height: 1.25;
}

/* ===== GRID — mobile first (single column) ===== */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-2--sm { gap: 12px; }
.with-sidebar { display: grid; grid-template-columns: 1fr; gap: 32px; }

/* ===== CARD ===== */
div.card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-top: 3px solid transparent;
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: 0 4px 24px rgba(61, 69, 92, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
div.card:hover { box-shadow: 0 8px 32px rgba(61, 69, 92, 0.13); transform: translateY(-3px); border-top-color: var(--accent); }
.card h3 { font-size: 2rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-muted); line-height: 1.65; overflow-wrap: break-word; margin-bottom: 0rem;}
.grid-3 > .card, .grid-2 > .card { min-width: 0; }
.card-img { width: 100%; height: 180px; object-fit: cover; display: block; margin-bottom: 16px; background: var(--bg-muted); border-radius: 10px; }
.card--center { text-align: center; }
.card--link { display: block; }
.card-link { color: var(--accent); display: block; margin-top: 14px; font-weight: 800; letter-spacing: 0.3px; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 0.1rem 2.5rem; font-size: 1.2rem; cursor: pointer; border: none; font-family: inherit; border-radius: 50px; font-weight: 600; transition: background .2s, transform .15s, box-shadow .2s; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(236, 161, 181, 0.45); padding: 0.4rem 2.5rem; }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 6px 18px rgba(212, 136, 156, 0.5); }
.btn-secondary { background: var(--white); color: var(--text); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { font-size: 1rem; padding: 0.1rem 2.5rem; }
.btn-block { display: block; text-align: center; width: 100%; }
.btn-light { background: var(--white); color: var(--accent); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 10px 0; font-size: 12px; color: var(--text-faint); }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== HERO SUB (inner pages) — mobile first ===== */
.hero-sub{
  /* background: linear-gradient(135deg, #3d455c 0%, #4a5470 60%, #3d455c 100%); */
  /* background: linear-gradient(135deg, #ef9ab8 0%, #ffffff 60%, #ef9ab8 100%); */
  /* background: radial-gradient(ellipse at 60% 40%, #fff5f8 0%, #fde8ef 50%, #f5dde8 100%); */
  padding: 40px 0;
  border-bottom: none;
  position: relative;
  overflow: visible;
  /* border-top: 2px solid #8c0202; */
  /* margin: 3rem; */
  
  
}
.hero-sub .container {
  /* background: radial-gradient(ellipse 31% 74% at 75% 70%, #f1a9c2a8 0%, transparent 69%); */
  position: relative;
  z-index: 1;
  padding: 3rem;
  border-radius: var(--border-radius-large);
  /* border: 2px solid #8c0202; */
}
.hero-sub .section-label {
  color: var(--accent);
  margin-bottom: 10px;
}
.hero-sub h1 {
  font-size: 1.75rem;
  
  /* color: var(--white); */
  color:var(--accent-text);
  margin-bottom: 2rem;
  /* font-family: "Playfair Display", ui-serif, Georgia, serif; */
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.06em;
  font-weight: 400;
  /* font-family: "Playfair Display", serif; */
  line-height: 0.95;  
  max-width: 10ch;

}
.hero-sub p {
  /* font-style: italic; */
  /* color: var(--accent-text); */
  color: var(--text-color);
  font-weight: 400;
  letter-spacing: 0.05rem;
}

.hero-sub::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 260px;
  background: url('../img/nemec_up.jpg') no-repeat center bottom / contain;
  mix-blend-mode: multiply;
  pointer-events: none;
  display: none;
}

/* ===== HERO MAIN (home) — mobile first ===== */
.hero-main {
  /* background: radial-gradient(ellipse at 60% 40%, #fff5f8 0%, #fde8ef 50%, #f5dde8 100%); */
  padding: 24px 0 0;
  /* border-bottom: 1px solid var(--border-warm); */
  overflow: hidden;
  margin: 0rem;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* border-radius: 3rem;
  border: 2px solid #8c0202; */
}
.hero-split { display: grid; grid-template-columns: 1fr; align-items: flex-end; gap: 32px; }
.hero-text { padding-bottom: 40px; }
.hero-main h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-strong);
}
.hero-main h1 .highlight { position: relative; white-space: nowrap; }
.hero-main h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.6;
}
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.45; }
.hero-actions { display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; align-items: flex-start; }
.hero-visual { display: flex; align-items: flex-end; }
.hero-visual img { height: 280px; width: auto; mix-blend-mode: multiply; display: block; }
.hero-doctor-img {
  height: 320px;
  width: auto;
  object-fit: cover;
  border-radius: var(--border-radius);
  /* box-shadow: 0 8px 32px rgba(61,69,92,0.15); */
  mix-blend-mode: normal !important;
}

/* hero duo — hidden on mobile, shown on desktop */
.hero-duo { display: none; position: relative; }
.hero-duo::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 340px; height: 340px;
  background: radial-gradient(ellipse at center bottom, var(--accent-light) 0%, rgba(253,232,239,0.4) 55%, transparent 80%);
  border-radius: 50%;
  z-index: 0;
}
.hero-duo img { position: relative; z-index: 1; }
.hero-duo img:first-child { height: 300px; width: auto; mix-blend-mode: multiply; }
.hero-duo img:last-child  { height: 270px; width: auto; mix-blend-mode: multiply; margin-bottom: 18px; }
.hero-duo-badge {
  position: absolute;
  bottom: 60px; left: -8px;
  background: var(--white);
  border-radius: 40px;
  padding: 8px 14px 8px 10px;
  box-shadow: 0 4px 18px rgba(61,69,92,0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
  white-space: nowrap;
  z-index: 2;
  border: 1.5px solid var(--border-warm);
}
.hero-duo-badge::before {
  content: '';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4889C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.7C5.8 17.4 2 13.2 2 9a6 6 0 0 1 10-4.5A6 6 0 0 1 22 9c0 4.2-3.8 8.4-10 12.7z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== GLASSMORPHISM utility ===== */
.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}
.glass--light {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(61, 69, 92, 0.08);
  border-radius: 16px;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 36px 0;
}
.stats-band .grid-3 { text-align: center; gap: 12px; }
.stat-card {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 24px 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform .2s, box-shadow .2s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.3); }
.stat-value {
  font-size: 52px;
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -1px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.88); margin-top: 10px; font-weight: 500; letter-spacing: 0.3px; }

/* ===== CTA BOX (inline) — mobile first ===== */
.cta-box {
  background: linear-gradient(135deg, #f9e4ec 0%, var(--bg-warm) 100%);
  border-radius: 24px;
  padding: 32px 20px;
  text-align: center;
  border: 2px solid #8c0202;
  box-shadow: 0 4px 24px rgba(236,161,181,0.15);
}
.cta-box h2 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.cta-box p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 20px; }

/* ===== CTA BAND (full-width) — mobile first ===== */
.cta-band {
  /* background: linear-gradient(150deg, #3d455c 0%, #52607a 50%, #3d455c 100%); */
  padding: 60px 0 80px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  margin-bottom: -2px;
  /* color: var(--white); */
  color: var(--accent);
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-band h2 { font-size: 26px; font-weight: 700; margin-bottom: 12px; color: var(--basic); }
.cta-band p { font-size: 16px; margin-bottom: 28px; color: var(--basic); }

.cta-band-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.cta-band-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-band-figure img {
  height: 260px;
  width: auto;
  mix-blend-mode: multiply;
}
.cta-band-content { display: flex; flex-direction: column; align-items: center; }

/* ===== CTA BLOCK (after content) ===== */
.cta-block {
  background: linear-gradient(135deg, #f9e4ec 0%, var(--bg-warm) 100%);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  margin-top: 40px;
  border: 1px solid rgba(236,161,181,0.25);
}
.cta-block strong { font-size: 16px; }
.cta-block p { font-size: 13px; color: var(--text-muted); margin: 8px 0 20px; }

/* ===== SIDEBAR BOX ===== */
.sidebar-box { background: var(--white); border-radius: 16px; padding: 20px; margin-bottom: 16px; box-shadow: 0 2px 16px rgba(61, 69, 92, 0.08); border: 1px solid var(--border); }
.sidebar-box h3 { font-size: 1rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); padding-left: 0rem;}
.sidebar-box ul { list-style: none; color: var(--text-muted);}
.sidebar-box ul li { padding: 0px; /*border-bottom: 1px solid var(--border);*/ /*margin-bottom: 0.1rem;*/}
.sidebar-text { color: var(--text-muted); margin-bottom: 14px; }
.sidebar-stat-item { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; }
.sidebar-stat-value { color: var(--accent); }

/* ===== QUOTE ===== */
.quote {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 24px 20px;
  /* box-shadow: 0 2px 16px rgba(61,69,92,0.08); */
  font-style: italic;
  /* font-size: 15px; */
  color: var(--text);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.quote:hover { XXXbox-shadow: 0 8px 28px rgba(61,69,92,0.13); transform: translateY(-2px); }
.quote::before { content: '\201C'; font-size: 48px; color: var(--accent); font-style: normal; line-height: 1; display: block; margin-bottom: 8px; font-family: Georgia, serif; opacity: 0.7; }
.quote::after { content: '\201D'; position: absolute; bottom: -54px; right: 20px; font-size: 48px; color: var(--accent); font-style: normal; line-height: 1; font-family: Georgia, serif; opacity: 0.7; }
.quote p { line-height: 1.7; }
.quote cite { display: flex; align-items: center; gap: 10px; font-style: normal; font-size: 13px; color: var(--text-faint); margin-top: 16px; font-weight: 500; }
.quote cite::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { font-weight: 400; 
  width: 100%; 
  background: none; 
  border: none; 
  text-align: left; 
  padding: 16px 0; 
  font-family: inherit; 
  cursor: pointer; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  /* color: var(--accent-text); */
  font-size: 1.2rem;
}
.faq-question::after { content: "+"; font-size: 20px; color: var(--accent); flex-shrink: 0; margin-left: 12px; }
.faq-answer { padding-bottom: 16px; display: none; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-item.open .faq-answer { display: block; }
.faq-wrapper { max-width: 700px; }
.faq-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 6rem; }
.faq-filter-btn { font-size: 1.2rem; padding: 0.1rem 2.5rem; border: 1px solid #ccc; background: var(--white); color: #555; cursor: pointer; text-decoration: none; border-radius: 50px;line-height: 2rem; }
.faq-filter-btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }
.faq-category-group { margin-bottom: 36px; }
.faq-category-heading { font-size: 1.3rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-text); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bg-warm); }
.faq-empty { color: var(--text-faint); font-size: 13px; font-style: italic; }

/* ===== FORM ===== */
.form-field { width: 100%; padding: 12px 16px; font-size: 15px; font-family: inherit; border: 1.5px solid var(--border); background: var(--white); margin-bottom: 14px; border-radius: 12px; transition: border-color .2s, box-shadow .2s; color: var(--text); }
.form-field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(236,161,181,0.22); }
.form-field::placeholder { color: var(--text-faint); }
.form-errors { color: var(--error); font-size: 13px; margin-bottom: 4px; }
.form-gdpr { font-size: 12px; color: #aaa; margin-top: 12px; text-align: center; }
.form-submit { margin-top: 8px; }

/* ===== FOOTER — mobile first ===== */
footer {
  background: var(--accent-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 24px;
  margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}
footer ul { list-style: none; padding-left: 0; margin-bottom: 0; }
footer ul li { margin-bottom: 0px; font-size: 0.95rem; }
footer ul li a { color: rgba(255,255,255,0.75); transition: color .2s; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-desc { margin-bottom: 20px; font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.7rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-img { height: 52px; width: auto; }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; display: flex; flex-direction: column; line-height: 1.3; letter-spacing: 0.3px; }
.footer-logo-main { font-size: 13px; color: #fff; }
.footer-logo-sub { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; }
.footer-social { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s, transform .2s;
}
.footer-social-link:hover { opacity: 0.85; transform: scale(1.08); }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 32px 0; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--border-warm); font-size: 13px; border-radius: 8px; }
.pagination .current { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ===== FILTER BAR ===== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

/* ===== ARTICLE ===== */
.article-category { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.article-date { font-size: 12px; color: #aaa; margin-top: 12px; }
.article-meta { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.article-title { font-size: 24px; font-weight: 700; margin-bottom: 16px; line-height: 1.3; }
.article-perex { font-size: 15px; color: #555; margin-bottom: 24px; line-height: 1.6; border-left: 3px solid var(--accent); padding-left: 16px; }
.article-img { width: 100%; height: auto; display: block; margin-bottom: 24px; }
.article-sidebar-img { width: 100%; height: auto; display: block; border-radius: var(--border-radius); margin-bottom: 16px; }
.article-body { font-size: 15px; line-height: 1.85; color: #333; }

/* ===== TEAM ===== */
.team-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; display: block; }
.team-avatar-placeholder { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-muted); margin: 0 auto 12px; }
.team-name { font-size: 15px; }
.team-role { color: var(--accent); font-size: 12px; }
.team-spec { margin-top: 6px; font-size: 13px; }

/* ===== STORY ===== */
.story-avatar { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; }
.story-avatar-placeholder {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--bg-muted);
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
}
.story-avatar-placeholder svg { width: 42px; height: 42px; }
.story-name { font-size: 15px; }
.story-detail { font-size: 12px; color: var(--text-faint); margin-bottom: 12px; }

/* ===== SYMPTOMS ===== */
.symptom-list { list-style: none; padding: 0; }
.symptom-list li { padding: 12px 0; border-bottom: 1px solid var(--border); display: flex; XXalign-items: center; gap: 14px; margin-bottom: 1rem;}
.symptom-list li:last-child { border-bottom: none; }
.symptom-check { width: 22px; height: 22px; background: var(--accent); border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; 
  justify-content: center; color: var(--white); font-size: 12px; font-weight: 700; margin-top: 6px;}
.symptom-check::after { content: '✓'; }

/* ===== FACT BOX ===== */
.fact-box { display: flex; flex-direction: column; gap: 16px; }
.fact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 2px 12px rgba(61,69,92,0.07);
}
.fact-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1;
}
.fact-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ===== PLACEHOLDERS ===== */
.img-placeholder { background: var(--bg-muted); height: 200px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.img-placeholder p { color: #aaa; font-size: 13px; }
.video-thumb { background: var(--bg-muted); height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 32px; border-radius: 10px; }

/* ===== CONTENT PAGE BLOCKS ===== */
.block-caption { font-size: 13px; color: var(--text-faint); margin-top: 8px; font-style: italic; }
.block-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #000; border-radius: 12px; }
.block-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.block-video-wrapper--shorts { padding-bottom: 177.78%; max-width: 360px; margin: 0 auto; }
.block-pdf { border: 1px solid var(--border); padding: 16px; display: flex; align-items: center; gap: 14px; border-radius: 12px; }
.block-pdf-icon { font-size: 28px; }
.block-pdf-body { font-size: 14px; margin-bottom: 8px; }

/* ===== SUCCESS PAGE ===== */
.section--success { text-align: center; min-height: 50vh; display: flex; align-items: center; }
.success-icon { font-size: 48px; margin-bottom: 24px; }
.success-title { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.success-desc { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto 32px; }

/* ===== UTILITIES ===== */
.text-empty { color: var(--text-faint); font-style: italic; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* ===== GUIDE CHARACTERS — mobile first ===== */
.guide-section { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.guide-section--reverse { flex-direction: column; }
.guide-figure { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.guide-figure img { max-height: 240px; width: auto; mix-blend-mode: multiply; display: block; }
.guide-name { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); text-align: center; }
.guide-content { flex: 1; width: 100%; }

/* Speech bubble */
.guide-bubble {
  position: relative;
  background: var(--white);
  border-radius: 20px 20px 20px 4px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(61, 69, 92, 0.1);
  margin-bottom: 12px;
}
.guide-bubble::before {
  content: '';
  position: absolute;
  bottom: -10px; left: 22px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: var(--white) transparent transparent transparent;
  filter: drop-shadow(0 3px 4px rgba(61,69,92,0.07));
}
.guide-bubble p { font-size: 1.2rem; color: var(--text-muted); line-height: 1.65; }
.guide-bubble strong { color: var(--text-strong); }
.guide-section--reverse .guide-bubble { border-radius: 20px 20px 4px 20px; }
.guide-section--reverse .guide-bubble::before { left: auto; right: 22px; border-width: 10px 0 0 10px; border-color: var(--white) transparent transparent transparent; }

/* Guide on dark CTA band */
.guide-section--light .guide-bubble { background: rgba(255,255,255,0.15); box-shadow: none; border: 1px solid rgba(255,255,255,0.3); }
.guide-section--light .guide-bubble::before { border-color: rgba(255,255,255,0.15) transparent transparent transparent; }
.guide-section--light .guide-bubble p { color: rgba(255,255,255,0.9); }
.guide-section--light .guide-bubble strong { color: var(--white); }
.guide-section--light .guide-name { color: rgba(255,255,255,0.6); }
/* Standalone light bubble (e.g. on CTA band without a wrapping guide-section) */
.guide-bubble--light { background: rgba(255,255,255,0.15); box-shadow: none; border: 1px solid rgba(255,255,255,0.3); }
.guide-bubble--light::before { border-color: rgba(255,255,255,0.15) transparent transparent transparent; }
.guide-bubble--light p { color: rgba(255,255,255,0.9) !important; }
.guide-bubble--light strong { color: var(--white) !important; }

/* ===== FLOATING CHARACTER OVERLAP ===== */
/* Sections that host a floating character need overflow:visible */
.section-float { position: relative; overflow: visible; }

/* The floating figure — hidden on mobile, positioned absolutely on desktop */
.guide-float {
  display: none;
  position: absolute;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 10;
  pointer-events: none;
}
.guide-float img { mix-blend-mode: multiply; width: auto; display: block; }
.guide-float .guide-name { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-faint); text-align: center; }

/* ============================================================
   TABLET — min-width: 640px
   ============================================================ */
@media (min-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }

  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-band .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .hero-main { padding: 56px 0 0; min-height: 100vh; }
  .hero-main h1 { font-size: 2.5rem; }
  .hero-desc { font-size: 1.6rem; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 12px; align-items: flex-start; }

  .hero-sub { padding: 52px 0; }
  .hero-sub h1 { font-size: 2rem; }
  .hero-sub::after { display: block; width: 220px; height: 320px; }

  body::before {
    top: 171px;
    left: -800px;
    width: 100%;
    height: 608px;
    position: absolute;
  }

  .cta-box { padding: 40px 32px; }
  .cta-box h2 { font-size: 22px; }
  .cta-band h2 { font-size: 30px; }
  .cta-band { padding: 72px 0 64px; }

  .article-title { font-size: 28px; }
  .success-title { font-size: 26px; }

  .guide-figure img { height: 180px; }
}

/* ============================================================
   DESKTOP — min-width: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  /* Nav — switch to horizontal flex, hide hamburger */
  .nav {
    padding: 0 16px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
  }
  .nav-logo {
    font-size: 14px;
    position: static;
    transform: none;
    flex-shrink: 0;
    transition: all .3s ease;
  }
  .nav-logo img { height: 3rem; transition: height .3s ease; }
  .nav-hamburger { display: none; }

  .nav--scrolled .nav-logo img { height: 2rem; }
  .nav--scrolled .nav-links a { padding: 10px 8px; }
  .nav-end {
    position: static;
    transform: none;
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    flex: 1;
    justify-content: center;
    background: none;
    border-top: none;
    padding: 0 8px;
    align-items: center;
    min-width: 0;
  }
  .nav-links a {
    padding: 24px 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.2px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s, padding .3s ease;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--accent-dark); border-bottom-color: var(--accent); }
  .nav-cta {
    display: inline-block !important;
    width: auto !important;
    margin-top: 0 !important;
    padding: 0.4rem 1rem !important;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* nav dropdown — desktop hover flyout */
  .nav-dropdown {
    display: flex;
    align-items: stretch;
    position: relative;
  }
  .nav-dropdown > a { display: flex; align-items: center; }
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 8px 0;
    z-index: 200;
    flex-direction: column;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: flex; }
  .nav-dropdown-menu a {
    padding: 10px 18px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    border-bottom: none !important;
    white-space: nowrap;
  }
  .nav-dropdown-menu a:hover {
    color: var(--accent-dark) !important;
    background: var(--bg-warm);
    border-bottom-color: transparent !important;
  }

  /* Layout */
  .container { padding: 0 0px; }
  .section { padding: 2rem 0; }
  .section-title { font-size: 32px; margin-bottom: 28px; }
}

@media (min-width: 1280px) {
  .nav { padding: 0 32px; }
  .nav-logo { font-size: 16px; }
  .nav-logo img { height: 3.5rem; }
  .nav--scrolled .nav-logo img { height: 2.5rem; }
  .nav--scrolled .nav-links a { padding: 12px 12px; }
  .nav-links a { padding: 26px 12px; font-size: 0.92rem; }
  .nav-cta { padding: 0.45rem 1.4rem !important; font-size: 0.9rem !important; }
}

@media (min-width: 1600px) {
  .nav { padding: 0 48px; }
  .nav-logo { font-size: 18px; }
  .nav-logo img { height: 4.5rem; }
  .nav--scrolled .nav-logo img { height: 3rem; }
  .nav-links a { padding: 28px 16px; font-size: 1.05rem; }
  .nav-cta { padding: 0.5rem 2rem !important; font-size: 1rem !important; }
}

@media (min-width: 1024px) {
  /* Grids */
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .grid-2 { gap: 32px; }
  .with-sidebar { grid-template-columns: 2fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }

  /* Cards */
  div.card { padding: 32px; }

  .hero-sub::after { width: 280px; height: 400px; }

  /* Hero */
  .hero-main { padding: 0px 0 0; }
  .hero-split { grid-template-columns: 1fr auto; gap: 48px; }
  .hero-text { padding-bottom: 80px; }
  .hero-main h1 { font-size: 3.875rem; line-height: 1.1; margin-bottom: 20px; }
  .hero-desc { max-width: 520px; margin-bottom: 40px; }
  .hero-visual { display: flex; align-items: flex-end; justify-content: center; align-self: center; }
  .hero-doctor-img { height: 460px; }
  .hero-duo { display: flex; align-items: flex-end; gap: 0; }

  /* Hero sub */
  .hero-sub { padding: 2rem 0 4rem; margin-bottom: 5rem; min-height: 400px;}
  .hero-sub h1 {font-size: clamp(3rem, 5vw, 4.5rem);}
  .hero-sub p { font-size: 1.6rem;
    line-height: 2.2rem;
    /* font-weight: 400; */
    max-width: 36ch;}

  /* Stats */
  .stats-band { padding: 56px 0; }
  .stats-band .grid-3 { gap: 20px; }
  .stat-card { padding: 32px 36px; }
  .stat-value { font-size: 80px; letter-spacing: -3px; }

  /* CTA */
  .cta-box { padding: 48px 160px 48px 40px; }
  .cta-band { padding: 0px 0 0px; 
     clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
  }
  .cta-band h2 { font-size: 34px; }
  .cta-band p { font-size: 17px; margin-bottom: 36px; }
  .cta-block { padding: 36px; }
  .cta-band-split { flex-direction: row; align-items: center; text-align: left; gap: 64px; }
  .cta-band-figure img { height: 360px; }
  .cta-band-content { align-items: flex-start; }

  /* Footer */
  footer { padding: 124px 0 124px; }
  .footer-grid { margin-bottom: 6rem;}

  /* Article */
  .article-title { font-size: 30px; }

  /* Guide characters */
  .guide-section { flex-direction: row; align-items: flex-end; gap: 32px; }
  .guide-section--reverse { flex-direction: row-reverse; }
  .guide-figure img { height: 100%; max-height: 440px; width: auto; } 

  /* Floating characters — activated on desktop */
  .guide-float { display: flex; }
  /* Hide the mobile-only inline figure row on desktop */
  .guide-inline-mobile { display: none; }

  /* CTA box: doctor at right edge, feet at bottom of card */
  .guide-float--cta-box { right: -30px; bottom: 0; }
  .guide-float--cta-box img { height: 240px; }

  /* FAQ: doctor peeks over top-right edge of section */
  .guide-float--faq { right: 32px; top: -100px; }
  .guide-float--faq img { height: 200px; }

  /* CTA band: nurse rises from top center of band */
  .guide-float--cta-band { top: -130px; left: 50%; transform: translateX(-50%); pointer-events: none; }
  .guide-float--cta-band img { height: 200px; }

  /* Extra padding for sections adjacent to floating characters */
  .section--before-faq { padding-bottom: 120px; }
  .cta-band--with-float { padding-top: 120px; padding-bottom: 180px;}

  /* Img placeholder */
  .img-placeholder { height: 100%; min-height: 280px; }

  /* Block */
  .success-title { font-size: 28px; }

}

/* ===== GRAIN TEXTURE OVERLAY ===== */
.hero-main,
.stats-band,
.cta-band {
  position: relative;
}
.hero-main::after,
.stats-band::after,
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
.hero-main .container,
.stats-band .container,
.cta-band .container {
  position: relative;
  z-index: 1;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ===== ŠIKMÝ ŘEZ (wave-bottom / wave-top utility) ===== */
.wave-bottom {
  /* clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -48px;
  padding-bottom: 80px; */
}

.wave-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  padding-top: 80px;
}

/* ===== JOURNEY STEP — custom třídy ===== */
.journey-step.pink {
  background: radial-gradient(ellipse 55% 45% at 35% 55%, #f5c8d85e 0%, transparent 70%);
}
.journey-step.blue {
  background: radial-gradient(ellipse 55% 45% at 65% 45%, #c8d4f55e 0%, transparent 70%);
}

/* ===== CESTA PACIENTKY ===== */
.journey-section {
  padding: 0;
  position: relative;
}

.journey-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  display: none;
  z-index: 0;
}

.journey-step-visual,
.journey-step-content {
  position: relative;
  z-index: 1;
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 24px;
  /* min-height: 100vh; */
  scroll-snap-align: start;
}

.journey-step-visual {
  display: flex;
  justify-content: center;
}

.journey-img {
  max-height: 24rem;
  object-fit: cover;
  border-radius: 24px;
  /* box-shadow: 0 8px 32px rgba(61,69,92,0.12); */
}

.journey-img-placeholder {
  width: 100%;
  max-width: 380px;
  height: 280px;
  border-radius: 24px;
  background: var(--bg-muted);
}

.journey-num-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  position: relative;
}

/* Tečka + vlnovka před číslem */
.journey-path-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--accent-light);
  position: relative;
}


.journey-num {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.journey-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 16px;
}

.journey-body { font-size: 1.3rem; color: var(--text-muted); line-height: 1.8; }

.journey-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0 -24px;
}
.journey-wave svg { display: block; width: 100%; height: 48px; }

@media (min-width: 1024px) {
  .journey-step {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 72px 0;
  }
  .journey-step--reverse .journey-step-visual { order: 2; }
  .journey-step--reverse .journey-step-content { order: 1; }
  .journey-num { font-size: 96px; }
  .journey-title { font-size: 30px; }
  .journey-path-svg { display: block; }
}

