@charset "UTF-8";
:root {
  --background: #fff;
  --foreground: #141414;
  --surface: #f8f8f8;
  --muted: #707070;
  --border: #e8e8e8;
  --primary: #dc1b1e;
  --primary-dark: #a01215;
  --primary-glow: #ef474a;
  --secondary: #6eb551;
  --secondary-dark: #559140;
  --green: #6eb551;
  --dark: #1d1d1e;
  --dark-2: #252528;
  --shadow-soft: 0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.06);
  --shadow-elevated: 0 8px 32px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-premium: 0 20px 60px -20px rgba(220,27,30,.3);
  --ease: cubic-bezier(.22,1,.36,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sh1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.12;
}

.sh2 {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.67;
}

.text-balance {
  text-wrap: balance;
}

.gradient-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 10px;
  padding: 16px 34px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: var(--shadow-premium);
}

.btn-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  color: var(--foreground);
  border: 1px solid rgba(220, 27, 30, 0.22);
  background: #fff;
}

.btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(220, 27, 30, 0.05);
}

.btn-hero {
  border-radius: 999px;
}

.reveal, .reveal-scale {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal {
  transform: translateY(30px);
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal.in-view, .reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1) translate(-1.5%, -1%);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}
@keyframes bounce {
  50% {
    transform: translateY(8px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes programFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.container-premium {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.section {
  padding: 96px 0 128px;
}

.section-surface {
  background: var(--surface);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  color: #fff;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rounded-media {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4/3;
}

.rounded-media img,
.rounded-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 8s linear;
}

.rounded-media:hover img,
.rounded-media:hover video {
  transform: scale(1.03);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  border: 1px solid rgba(220, 27, 30, 0.2);
  border-radius: 999px;
  background: rgba(220, 27, 30, 0.08);
  padding: 4px 14px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  color: #4b5568;
  font-size: 0.94rem;
  line-height: 1.5;
}

.check-list i, .mini-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}

.site-header.is-scrolled, .site-header.is-open {
  border-bottom: 1px solid rgba(232, 232, 232, 0.65);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  width: 64px;
  height: auto;
}

.dibo-logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 86px;
  line-height: 1;
}

.dibo-logo strong {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  text-transform: none;
}

.dibo-logo small {
  margin-top: 3px;
  color: #131215;
  font-size: 0.42rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header:not(.is-scrolled):not(.is-open) .dibo-logo small,
.footer-logo.dibo-logo small {
  color: #fff;
}

.footer-logo.dibo-logo strong {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu > a, .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
}

.site-header.is-scrolled .nav-menu > a,
.site-header.is-scrolled .nav-link,
.site-header.is-open .nav-menu > a,
.site-header.is-open .nav-link {
  color: rgba(20, 20, 20, 0.82);
}

.nav-menu > a:hover, .nav-link:hover {
  color: var(--primary);
}

.nav-link.is-active {
  color: var(--primary);
}

/* ── Desktop dropdown ───────────────────────────────────────── */
.nav-item {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.dropdown-chevron {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.nav-item.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

.nav-item.is-open .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  border-radius: 9px;
  padding: 10px 14px;
  color: rgba(20, 20, 20, 0.82);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.dropdown-link:hover {
  background: var(--surface);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle, .site-header.is-open .menu-toggle {
  color: var(--foreground);
}

.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: 0.25s;
  content: "";
}

.menu-toggle span:before {
  transform: translateY(-6px);
}

.menu-toggle span:after {
  transform: translateY(4px);
}

.site-header.is-open .menu-toggle span {
  background: transparent;
}

.site-header.is-open .menu-toggle span:before {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(232, 232, 232, 0.65);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
}

.mobile-panel a, .mobile-nav-link {
  display: block;
  padding: 13px 0;
  color: rgba(20, 20, 20, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

/* ── Mobile dropdown ────────────────────────────────────────── */
.mobile-nav-item {
  border-bottom: 1px solid rgba(232, 232, 232, 0.55);
}

.mobile-nav-item:last-child {
  border-bottom: 0;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 13px 0;
  color: rgba(20, 20, 20, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-dropdown-toggle .dropdown-chevron {
  transition: transform 0.25s var(--ease);
}

.mobile-nav-item.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  padding-bottom: 8px;
}

.mobile-dropdown-menu[hidden] {
  display: none;
}

.mobile-dropdown-link {
  padding: 9px 0;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-dropdown-link:hover {
  color: var(--primary);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  width: 30px;
  height: 20px;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.lang-switch:hover {
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.lang-flag {
  display: block;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero-media, .hero-media video, .hero-media:after, .hero-side {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.hero-media:after {
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.82));
}

.hero-side {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.62), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-kicker {
  display: inline-flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.hero-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-glow);
  animation: pulse 1.4s infinite;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 span {
  display: block;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  background: linear-gradient(90deg, #fff, #fff, var(--primary-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-stats {
  max-width: 750px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}

.hero-stat strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding-top: 6px;
  transform: translateX(-50%);
}

.scroll-indicator i {
  display: block;
  width: 4px;
  height: 9px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  animation: bounce 1s infinite;
}

.stats-red {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 96px 0;
  color: #fff;
}

.stats-red:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.06), transparent 65%);
}

.stats-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 0 64px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stats-title:before, .stats-title:after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  position: relative;
  padding: 0 24px;
  text-align: center;
}

.stat-item:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-num {
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 750;
}

.stat-desc {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.image-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.image-card.dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.image-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.image-card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.image-card:hover .image-card-media img {
  transform: scale(1.04);
}

.image-card-media:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(to top, #fff, transparent);
}

.image-card.dark .image-card-media:after {
  background: linear-gradient(to top, var(--dark), transparent);
}

.image-card-body {
  padding: 24px 28px 32px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(220, 27, 30, 0.1);
  color: var(--primary);
}

.image-card h3 {
  margin: 0 0 10px;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.32;
}

.image-card p {
  margin: 0;
  color: #4b5568;
  font-size: 0.85rem;
  line-height: 1.63;
}

.image-card.dark p {
  color: rgba(255, 255, 255, 0.55);
}

.pillar-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.pillar-heading h3 {
  flex: 1 1 auto;
}

.card-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(220, 27, 30, 0.35);
  transform: rotate(-6deg);
}

.card-badge-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.card-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), gap 0.3s var(--ease);
}

.card-more-link:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
  gap: 9px;
}

.card-more-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.card-more-link:hover svg {
  transform: translateX(2px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--border);
}

.feature-card {
  background: #fff;
  padding: 32px;
  transition: background 0.45s, transform 0.45s var(--ease);
}

.feature-card:hover {
  background: var(--surface);
}

.feature-card img {
  width: 28px;
  height: 28px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 14px;
  background: rgba(220, 27, 30, 0.05);
  box-shadow: inset 0 0 0 1px rgba(220, 27, 30, 0.1);
  transition: 0.45s;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.feature-card:hover img {
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.problem-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.problem-row {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
}

.problem-row:first-child {
  border-bottom: 1px solid rgba(220, 27, 30, 0.1);
  background: rgba(220, 27, 30, 0.03);
}

.problem-row i {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-style: normal;
}

.problem-row .problem-icon {
  color: var(--primary);
}

.problem-row .problem-icon svg {
  width: 18px;
  height: 18px;
}

.problem-row .label {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-row.solution .label {
  font-size: 1.25rem;
}

.problem-row.solution {
  background-color: #e8f7ef;
  height: 100%;
}

.problem-row p:last-child {
  margin: 0;
  color: #4b5568;
  font-size: 0.89rem;
  line-height: 1.57;
}

.problem-row.solution p:last-child {
  font-size: 1rem;
}

.problem-row strong {
  color: var(--foreground);
}

.small-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.small-card-carousel {
  position: relative;
  min-width: 0;
}

.small-card-viewport {
  overflow: hidden;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.small-card-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.small-card-track .small-card {
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--foreground);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-elevated);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.25);
}

.small-card {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.small-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.small-card .media {
  aspect-ratio: 5/4;
  overflow: hidden;
}

.small-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.small-card:hover img {
  transform: scale(1.06);
}

.small-card div:last-child {
  padding: 20px;
}

.small-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.3;
}

.small-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: start;
}

.timeline-col {
  display: flex;
  flex-direction: column;
  gap: 160px;
  padding-top: 40px;
}

.timeline-col.right {
  padding-top: 200px;
  gap: 160px;
}

.step-card {
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.step-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--primary);
}

.step-no {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 64px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.16;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
  color: var(--foreground);
}

.step-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-detail {
  display: inline-flex;
  border-radius: 999px;
  background: #fff;
  padding: 6px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.timeline-line {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 980px;
}

.timeline-line:before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.timeline-line i {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 52px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 950;
}

.timeline-line i + i {
  margin-top: 148px;
}

.timeline-fill {
  position: absolute;
  top: 32px;
  left: 50%;
  z-index: 0;
  width: 2px;
  height: 0;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  transition: height 0.15s linear;
  pointer-events: none;
}

.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.program-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.program-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: transparent;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}

.program-item:hover {
  background: rgba(255, 255, 255, 0.62);
}

.program-item.is-active {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.program-num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8e8e8;
  color: #777;
  font-size: 0.9rem;
  font-weight: 900;
}

.program-item strong {
  display: block;
  font-size: 0.94rem;
  color: var(--foreground);
}

.program-item span > span {
  display: block;
  color: #0a7a42;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-item.is-optional span > span {
  color: #a16207;
}

.program-detail {
  position: sticky;
  top: 96px;
  min-height: 360px;
  border-radius: 20px;
  padding: 44px 48px;
  background: #e8fbf0;
  transition: background 0.35s;
}

.program-detail.is-optional {
  background: #fbf8e8;
}

.program-detail.is-switching {
  animation: programFadeUp 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.program-badge {
  display: inline-flex;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 4px 12px;
  background: #dcfce7;
  color: #0a7a42;
  font-size: 0.76rem;
  font-weight: 900;
}

.program-badge.is-optional {
  background: #fef9c3;
  color: #a16207;
}

.program-detail h3 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.625rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  color: #0a7a42;
}

.program-detail.is-optional h3 {
  color: #a16207;
}

.program-detail p {
  margin: 0 0 20px;
}

.program-detail .detail {
  border-top: 1px solid rgba(10, 122, 66, 0.18);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.program-detail.is-optional .detail {
  border-top-color: rgba(161, 98, 7, 0.2);
}

.package-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-shell {
  display: flex;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: var(--dark-2);
  padding: 6px;
}

.pkg-tab {
  position: relative;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: 0.3s;
}

.pkg-tab.is-active {
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow-premium);
}

.package-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.package-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: 0.3s;
}

.package-dots button.is-active {
  width: 32px;
  background: var(--primary);
}

.package-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.package-panel.is-active {
  display: grid;
  animation: fadeUp 0.45s var(--ease) both;
}

.gold-logo {
  width: 128px;
  height: auto;
  margin-bottom: 24px;
}

.package-details-toggle {
  display: none;
} /* desktop: details always visible, toggle hidden */
.gold-badge {
  display: inline-flex;
  border: 1px solid #f4cf8d;
  border-radius: 999px;
  background: #fff7e6;
  padding: 5px 12px;
  color: #b7791f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gold-badge.red {
  color: var(--primary);
  border-color: rgba(220, 27, 30, 0.2);
  background: rgba(220, 27, 30, 0.05);
}

.package-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0 40px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 0.9rem;
}

.package-video {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
}

.package-video:before {
  content: "";
  position: absolute;
  inset: -32px;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, #f5f5f5, #ddd);
  opacity: 0.6;
  filter: blur(24px);
}

.package-video video {
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}

.package-video:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 55%);
  pointer-events: none;
}

.video-caption {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: #fff;
}

.badge-count {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-weight: 900;
}

.pkg-card-wrap {
  border: 1px solid rgba(244, 207, 141, 0.28);
  border-radius: 24px;
  padding: 56px 64px;
  box-shadow: 0 0 60px rgba(244, 207, 141, 0.06);
  margin-top: 40px;
}

.pkg-building {
  grid-column: 1/-1;
  padding-top: 56px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-building .sh2 {
  color: rgba(255, 255, 255, 0.62);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.payment-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  padding: 38px 30px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.payment-card .emoji {
  display: block;
  margin-bottom: 18px;
  font-size: 2.5rem;
  line-height: 1;
}

.payment-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.payment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.building-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 64px;
  align-items: start;
}

.investor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dark-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 36px;
}

.investor-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.investor-list li {
  display: flex;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.investor-list li:last-child {
  border-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-media {
  position: relative;
}

.service-media .img {
  overflow: hidden;
  height: 480px;
  border-radius: 20px;
}

.service-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.floating-stat {
  position: absolute;
  right: -24px;
  bottom: -24px;
  min-width: 200px;
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.floating-stat strong {
  display: block;
  color: var(--primary);
  font-size: 40px;
  line-height: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 18px;
}

.service-item i {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(220, 27, 30, 0.1);
  color: var(--primary);
  font-style: normal;
  font-size: 22px;
}

.service-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  padding: 40px;
  box-shadow: var(--shadow-elevated);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 750;
}

.field label span {
  color: var(--primary);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  resize: vertical;
  min-height: 116px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(220, 27, 30, 0.55);
  box-shadow: 0 0 0 3px rgba(220, 27, 30, 0.1);
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}

.form-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-success {
  margin-bottom: 20px;
  border: 1px solid rgba(110, 181, 81, 0.3);
  border-radius: 12px;
  background: rgba(110, 181, 81, 0.1);
  padding: 12px 14px;
  color: #32771f;
  font-weight: 800;
}

/* Pipedrive embedded web form (ajanlatkeres oldal) */
.pipedrive-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  padding: 40px;
  box-shadow: var(--shadow-elevated);
}

.pipedrive-card .pipedriveWebForms {
  width: 100%;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f0f11;
  padding: 64px 0 32px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 64px;
  filter: brightness(0) invert(1);
}

.footer-grid p, .footer-grid a, .footer-contact div {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.mid-cta {
  background: var(--dark);
  padding: 80px 0 96px;
  color: #fff;
}

.mid-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  align-items: center;
  gap: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: var(--dark-2);
  padding: 52px 56px;
}

.mid-cta-content {
  max-width: 620px;
}

.mid-cta-content .btn {
  margin-top: 16px;
}

.mid-cta-media {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.06);
}

.mid-cta-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 80px;
}

.trust-stat {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  display: block;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.045em;
}

.trust-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 700;
}

.refs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
}

.refs span,
.refs a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s var(--ease);
}

.refs a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.quote {
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  padding: 48px;
  text-align: center;
}

.quote p:first-child {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.quote p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.pricing-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 24px 64px rgba(220, 27, 30, 0.18);
}

.pricing-inner {
  border-radius: 25px;
  background: #fff;
  padding: 48px;
}

.pricing-gold-corner {
  position: absolute;
  top: 16px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  z-index: 1;
}

.pricing-gold-corner img {
  width: 80px;
  height: auto;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.pricing-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 8px;
}

.price strong {
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.included {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.included li {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: 0.45s var(--ease);
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 14px 24px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: var(--shadow-premium);
}

/* ── Side navigation — vízszintes sáv fejléc alatt ──────────────────────── */
.side-nav {
  position: fixed;
  left: 50%;
  top: 80px; /* desktop fejléc: 80px */
  max-width: 1200px;
  width: 100%;
  padding: 0;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  transform: translateX(-50%);
  z-index: 34; /* fejléc (z-50) alatt */
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  background: rgba(17, 17, 19, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.side-nav.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.side-nav__label,
.side-nav__label-short {
  display: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.58);
  text-shadow: none;
  transition: color 0.3s var(--ease);
}

.side-nav__label {
  display: block;
}

.side-nav__item.is-active .side-nav__label,
.side-nav__item.is-active .side-nav__label-short {
  color: #fff;
}

.side-nav__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}

.side-nav__item {
  flex: 1;
  height: 46px;
  pointer-events: auto;
}

.side-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 6px;
  text-decoration: none;
  white-space: nowrap;
}

.side-nav__indicator {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  right: auto;
  height: auto;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: rgba(220, 27, 30, 0.08);
  box-shadow: 0 6px 18px rgba(220, 27, 30, 0.28);
  transition: transform 0.32s var(--ease), width 0.32s var(--ease);
  will-change: transform, width;
}

/* Mobilon a fejléc 66px, és a rövid menünevek jelennek meg */
@media (max-width: 980px) {
  .side-nav {
    top: 66px;
  }
  body.admin-bar .side-nav {
    top: 112px;
  }
  .side-nav__label {
    display: none;
  }
  .side-nav__label-short {
    display: block;
  }
}
/* ── Befektetőknek page template ─────────────────────────────────────────── */
/* Hero */
.bef-hero {
  position: relative;
  padding: 160px 0 80px;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.bef-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 15, 16, 0.96) 0%, rgba(29, 29, 30, 0.88) 45%, rgba(29, 29, 30, 0.55) 70%, rgba(29, 29, 30, 0.3) 100%);
  pointer-events: none;
}

.bef-hero--has-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(220, 27, 30, 0.12), transparent 65%);
  pointer-events: none;
}

.bef-hero__inner {
  position: relative;
  z-index: 1;
}

.bef-hero__content {
  max-width: 760px;
}

.bef-hero__title {
  margin: 24px 0 0;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.bef-hero__sub {
  max-width: 620px;
  margin: 20px 0 40px;
  color: rgba(255, 255, 255, 0.65);
}

.bef-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 680px;
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
}

.bef-hero__stat {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.bef-hero__stat:last-child {
  border-right: 0;
}

.bef-hero__stat strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.bef-hero__stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Why-grid (section 2 & 4) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.why-card {
  border: 1px solid var(--muted-2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 28px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(220, 27, 30, 0.06);
  font-size: 1.5rem;
  line-height: 1;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.3;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Remote section (dark, 3 scenario cards) */
.bef-remote .section-head {
  max-width: 800px;
}

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

.remote-card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  padding: 36px 32px 40px;
  transition: background 0.35s, border-color 0.35s;
}

.remote-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(249, 115, 22, 0.35);
}

.remote-card__num {
  display: block;
  margin-bottom: 20px;
  color: #f97316;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.remote-card h3 {
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.3;
}

.remote-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.68;
}

.bef-remote__link {
  margin-top: 48px;
  text-align: center;
}

.bef-remote__link a {
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

/* Process accordion */
.process-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.accordion-item[open] {
  border-color: rgba(220, 27, 30, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.accordion-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-num {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.accordion-title {
  flex: 1;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.accordion-arrow {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.accordion-item[open] .accordion-arrow {
  transform: rotate(90deg);
}

.accordion-body {
  padding: 4px 24px 24px 64px;
}

.accordion-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .bef-hero {
    padding: 140px 0 64px;
  }
  .why-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .remote-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bef-hero__stats {
    grid-template-columns: 1fr 1fr;
  }
  .bef-hero__stat:nth-child(2) {
    border-right: 0;
  }
  .bef-hero__stat:nth-child(3) {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 767px) {
  .bef-hero {
    padding: 120px 0 56px;
  }
  .why-grid,
  .why-grid--4 {
    grid-template-columns: 1fr;
  }
  .bef-hero__stats {
    grid-template-columns: 1fr;
  }
  .bef-hero__stat {
    border-right: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .bef-hero__stat:first-child {
    border-top: 0;
  }
  .accordion-body {
    padding-left: 24px;
  }
}
.programs-mobile-table-wrap {
  display: none;
}

@media (max-width: 1180px) {
  .container-premium {
    padding: 0 40px;
  }
  .card-grid-4, .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-grid, .building-grid, .program-layout, .package-panel,
  .pricing-layout, .investor-grid, .service-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .timeline-col, .timeline-col.right {
    display: contents;
  }
  .timeline-line {
    display: none;
  }
}
@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 46px;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-panel.is-open {
    display: block;
  }
  .nav-inner {
    height: 66px;
  }
  .desktop-cta {
    display: none;
  }
  .stats-grid, .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }
  .stat-item:nth-child(2):after {
    display: none;
  }
  .program-head {
    display: block;
  }
  #pillerek {
    display: none;
  }
}
@media (max-width: 680px) {
  .scroll-indicator {
    display: none;
  }
  .container-premium {
    padding: 0 20px;
  }
  .section {
    padding: 72px 0 88px;
  }
  /* Redundant in-content "Ajánlatkérés" CTAs — the floating sticky CTA covers
     this on small screens. Hero CTA is kept (above the fold, before sticky shows). */
  .hide-on-mobile {
    display: none;
  }
  /* Hero a touch shorter than the viewport so the red stats section below
     always peeks in — a "scroll for more" cue. Type & spacing are scaled
     down so everything still fits on small screens. Desktop is untouched. */
  .hero {
    height: auto;
    min-height: 75svh;
  }
  .hero-content {
    height: auto;
    justify-content: center;
    padding: 92px 20px 36px;
  }
  .hero-kicker {
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 8.5vw, 3.1rem);
  }
  .hero-copy {
    margin-top: 14px;
    font-size: 1rem;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
    padding-top: 20px;
  }
  .hero-stat strong {
    font-size: 1.2rem;
  }
  .hero-stat span {
    font-size: 0.66rem;
  }
  .trust-stats, .card-grid-4, .feature-grid, .problem-grid,
  .payment-grid, .small-card-grid, .package-features, .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  /* Keep stats as 2 columns on mobile (shorter), with smaller type. */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
  .stat-item {
    padding: 0 8px;
  }
  .stat-num {
    font-size: clamp(30px, 9vw, 40px);
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 14px;
  }
  .stat-desc {
    font-size: 12px;
  }
  /* Épületszerkezet kártyák: 2x2 grid mobilon, slider helyett. */
  .small-card-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    transform: none;
  }
  .small-card-track .small-card {
    flex: none;
    min-width: 0;
  }
  .stat-item:after, .trust-stat {
    border: 0;
  }
  .mid-cta-box, .form-bottom, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .mid-cta-box {
    grid-template-columns: 1fr;
  }
  .mid-cta-box, .contact-form, .pipedrive-card, .pricing-inner, .quote {
    padding: 28px;
  }
  /* Probléma → Megoldás: collapsible cards on mobile (first stays open via JS). */
  .problem-card .problem-row:first-child {
    position: relative;
    cursor: pointer;
    padding-right: 46px;
  }
  .problem-card .problem-row:first-child::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s var(--ease);
  }
  .problem-card.is-open .problem-row:first-child::after {
    transform: translateY(-30%) rotate(-135deg);
  }
  .problem-card:not(.is-open) .problem-row:first-child {
    border-bottom: 0;
  }
  .problem-card .problem-row.solution {
    display: none;
  }
  .problem-card.is-open .problem-row.solution {
    display: flex;
  }
  .problem-row.solution .label {
    font-size: 1rem;
  }
  /* Épületszerkezet: a carousel a cím alá, a leíró bekezdések elé kerül mobilon.
     display:contents kilapítja a szöveg-blokkot, így a grid-item order átrendezhető. */
  .building-copy {
    display: contents;
  }
  .building-copy > .building-head {
    order: 1;
  }
  .building-grid .small-card-carousel {
    order: 2;
  }
  .building-copy > .building-paragraphs {
    order: 3;
  }
  /* Csomagok: video/image first on mobile, text (description etc.) below it. */
  .package-panel .package-video {
    order: -1;
  }
  /* Csomagok: leírás + jellemzők lenyíló a "Részletek" gomb mögött (csak mobilon). */
  .package-details-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
  }
  .package-details-toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.3s var(--ease);
  }
  .package-details-toggle.is-open::after {
    transform: translateY(2px) rotate(-135deg);
  }
  .package-details {
    display: none;
  }
  .package-details.is-open {
    display: block;
  }
  .pkg-card-wrap {
    padding: 28px 20px;
  }
  /* Programok: mobilon táblázat az accordion helyett. */
  .program-layout {
    display: none;
  }
  .programs-mobile-table-wrap {
    display: block;
    margin-top: 24px;
  }
  .programs-mobile-table {
    width: 100%;
    border-collapse: collapse;
  }
  .programs-mobile-table th {
    text-align: left;
    padding: 0 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  }
  .programs-mobile-table td {
    padding: 12px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: middle;
  }
  .programs-mobile-table td:last-child {
    color: var(--muted);
    font-size: 0.85rem;
  }
  .programs-mobile-link {
    margin-top: 20px;
    font-size: 0.9rem;
  }
  .programs-mobile-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
  }
  /* Hogyan valósul meg: a desktop cikcakkos idővonal helyett egy tömör, helyes
     sorrendű (1→5) számozott lista mobilon. A sorrendet a kártyák inline order-je
     adja; a nagy faint sorszám + ikon helyett kis színes számbadge balra. */
  .timeline {
    gap: 10px;
  }
  .step-card {
    position: relative;
    padding: 15px 16px 15px 58px;
    border-radius: 14px;
  }
  .step-card:hover {
    transform: none;
    box-shadow: none;
  }
  .step-top {
    display: block;
    margin: 0;
  }
  .step-icon {
    display: none;
  }
  .step-no {
    position: absolute;
    left: 14px;
    top: 15px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.06);
    font-size: 15px;
    line-height: 1;
    opacity: 1;
    letter-spacing: 0;
  }
  .step-card h3 {
    margin: 0 0 4px;
    font-size: 15px;
  }
  .step-card p {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.55;
  }
  .step-detail {
    padding: 4px 10px;
    font-size: 11px;
  }
  .floating-stat {
    right: 0;
  }
  .site-footer {
    padding-bottom: 96px;
  }
  /* Befektetőknek szekció: minden méretet visszafogunk, hogy a fejléc + az
     árkártya nagyjából egy nézetbe férjen mobilon. A 8 elemes "Benne van az
     árban" lista 2 oszlopos, apró betűs ráccsá válik — ez fogja a legtöbb
     helyet. Csak a front-page #befektetoknek szekcióra hat (a Befektetőknek
     oldal és a többi pricing-card érintetlen). Desktop nem változik. */
  #befektetoknek.section {
    padding: 40px 0 48px;
  }
  #befektetoknek .section-head {
    margin-bottom: 20px;
  }
  #befektetoknek .section-head .sh1 {
    font-size: 1.5rem;
  }
  #befektetoknek .section-head .sh2 {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  #befektetoknek .pricing-inner {
    padding: 22px 20px;
  }
  #befektetoknek .pricing-layout {
    gap: 22px;
  }
  #befektetoknek .price {
    margin: 2px 0 6px;
  }
  #befektetoknek .price strong {
    font-size: 2.4rem;
  }
  #befektetoknek .pricing-col p {
    font-size: 0.85rem;
  }
  #befektetoknek .pricing-actions {
    margin-top: 14px;
  }
  #befektetoknek h3 {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  #befektetoknek .included {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  #befektetoknek .included li {
    font-size: 0.72rem;
    gap: 8px;
    line-height: 1.3;
  }
  #befektetoknek .included .mini-check {
    width: 16px;
    height: 16px;
    font-size: 10px;
    margin-top: 1px;
  }
  /* Szerviz szekció képe alacsonyabb mobilon (desktop 480px túl magas itt). */
  #service .service-media .img {
    height: 240px;
  }
  /* Mosókereső: mobilon csak cím + gomb kell. A kép és a "Tekintse meg…"
     leírás elhagyható — a gomb úgyis kiviszi a Google Mapsre. */
  .mid-cta-media {
    display: none;
  }
  .mid-cta-content .sh2 {
    display: none;
  }
  /* KB single article: sidebar ne legyen sticky mobilon, ne takarja a cikket */
  .article-sidebar {
    position: relative;
    top: auto;
  }
  /* KB cikk plugin-táblázatok (kép + szöveg layout): mobilon stack */
  .article-prose table:has(img) {
    display: block;
  }
  .article-prose table:has(img) tbody, .article-prose table:has(img) tr {
    display: block;
  }
  .article-prose table:has(img) td {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
  }
  .article-prose table:has(img) td:empty {
    display: none;
  }
  .article-prose table:has(img) td:has(img) {
    text-align: center;
    margin-bottom: 16px;
  }
  .article-prose table:has(img) td:has(img) img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
  }
  .article-prose table:has(img) td:last-child:not(:has(img)) {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 16px;
    font-size: 0.92rem;
    line-height: 1.65;
  }
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.static{
  position: static;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.mb-16{
  margin-bottom: 4rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mt-0{
  margin-top: 0px;
}
.block{
  display: block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.w-auto{
  width: auto;
}
.shrink{
  flex-shrink: 1;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize{
  resize: both;
}
.items-center{
  align-items: center;
}
.gap-8{
  gap: 2rem;
}
.text-balance{
  text-wrap: balance;
}
.border{
  border-width: 1px;
}
.\!pb-8{
  padding-bottom: 2rem !important;
}
.\!pt-8{
  padding-top: 2rem !important;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
/*# sourceMappingURL=main.min.css.map */
