/* Critical CSS for homepage above-the-fold (header + hero + info strip). */
:root {
  --vt-footer-overlap: clamp(64px, 10vw, 118px);
  --vt-accent-text: #f3f6a6;
  --vt-accent-border: rgba(214, 232, 75, 0.72);
  --vt-accent-glow: rgba(214, 232, 75, 0.58);
  --vt-accent-bg: linear-gradient(180deg, rgba(78, 98, 50, 0.96), rgba(38, 50, 30, 0.92) 60%, rgba(24, 32, 23, 0.94));
  --vt-secondary-bg: linear-gradient(180deg, rgba(54, 70, 41, 0.9), rgba(30, 40, 30, 0.88) 60%, rgba(22, 30, 24, 0.9));
  --vt-ghost-border: rgba(220, 214, 200, 0.28);
  --vt-ghost-bg: linear-gradient(180deg, rgba(220, 214, 200, 0.08), rgba(220, 214, 200, 0.03));
}

html,
body {
  overflow-x: clip;
}

body {
  max-width: 100%;
}

#wrapper {
  overflow-x: clip;
  max-width: 100%;
  padding-bottom: var(--vt-footer-overlap);
}

#header.header {
  overflow: visible !important;
  position: relative !important;
  top: auto !important;
  z-index: 40 !important;
  background: none !important;
}

.vt-home-dev {
  position: relative;
  padding: 0 0 40px;
}

.vt-header-shell.container-md,
.vt-home-dev .vt-container {
  width: min(96%, 1600px);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.vt-home-dev .vt-hero-premium {
  position: relative;
  isolation: isolate;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 28px;
  min-height: 240px;
  padding: 50px max(5vw, 24px) 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #102219 0%, #1e3a2a 100%);
  color: #fff;
}

.vt-home-dev .vt-hero-premium__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.vt-home-dev .vt-hero-premium__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.vt-home-dev .vt-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 14, 10, 0.56) 0%, rgba(8, 14, 10, 0.42) 34%, rgba(8, 14, 10, 0.16) 66%, rgba(8, 14, 10, 0.08) 100%);
  pointer-events: none;
}

.vt-home-dev .vt-hero-premium__content,
.vt-home-dev .vt-hero-premium__visual {
  position: relative;
  z-index: 2;
}

.vt-home-dev .vt-hero-premium__title {
  margin: 0 0 18px;
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.vt-home-dev .vt-hero-premium__text {
  margin: 0;
  max-width: 650px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.vt-home-dev .vt-hero-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.vt-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--vt-accent-border);
  background: var(--vt-secondary-bg);
  color: var(--vt-accent-text);
  text-decoration: none;
}

.vt-btn-light {
  border-color: var(--vt-ghost-border);
  background: var(--vt-ghost-bg);
}

.vt-btn-secondary {
  background: var(--vt-secondary-bg);
}

.vt-info-strip {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: -26px;
  margin-bottom: 34px;
}

.vt-info-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vt-info-strip__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 11px;
  min-height: 84px;
  padding: 15px 18px;
  border: 1px solid rgba(108, 137, 95, 0.24);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(254, 253, 248, 0.98) 0%, rgba(249, 247, 240, 0.96) 100%);
}

.vt-info-strip__text {
  color: #243227;
  font-size: 1rem;
  line-height: 1.36;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  :root {
    --vt-footer-overlap: 56px;
  }

  .vt-home-dev {
    padding-bottom: 24px;
  }

  .vt-home-dev .vt-hero-premium {
    left: auto;
    right: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 26px 16px 28px;
  }

  .vt-info-strip {
    margin-top: -16px;
    margin-bottom: 22px;
  }

  .vt-info-strip__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
}
