:root {
  --bg-base: #07111f;
  --text-main: rgba(255, 255, 255, 0.96);
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.56);
  --line-soft: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --panel-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07));
  --panel-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  --glass-blur: blur(12px) saturate(180%);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-border-strong: rgba(255, 255, 255, 0.24);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  --header-h: 74px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

strong {
  font-weight: 900;
}

.fixed-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/PatriotLandingImages/BackGroundIMG.png");
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.fixed-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 36, 0.52);
}

.container {
  width: 100%;
  overflow: hidden;
}

.intro-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
  padding-bottom: 25%;
  text-align: left;
}

.intro-main {
  display: block;
}

.intro-content h1 {
  font-weight: 1200;
  font-size: 4.8rem;
  line-height: 1.05;

  text-transform: none;
  letter-spacing: 0.01em;

  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #fff;

  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.intro-content p {
  font-weight: 300;
  font-size: 1.5rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  line-height: 1.5;
}

.glass-panel {
  background: var(--panel-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-strong);
  box-shadow: var(--glass-highlight), var(--panel-shadow);
  padding: 60px;
  position: relative;
  border-radius: 40px;
}

.glass-panel h2 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #fff;
  letter-spacing: 0.02em;
}

.glass-panel p {
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.glass-panel h3 {
  font-weight: 1000;
  font-size: 2.5rem;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
  color: #fff;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 70vh;
  width: 100%;
  margin-bottom: 150px;
  padding: 0;
  column-gap: 5%;
}

.tp-left,
.tp-right {
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background: var(--panel-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-strong);
  box-shadow: var(--glass-highlight), 0 26px 60px rgba(0, 0, 0, 0.34);
}

.tp-left {
  border-radius: 0 40px 40px 0;
  padding: 60px 60px 60px 10%;
  border-left: none;
}

.tp-right {
  border-radius: 40px 0 0 40px;
  padding: 60px 60px 60px 10%;
  border-right: none;
}

@media (max-width: 1200px) {
.tp-left { height: auto; padding: 52px 48px 52px 8%; }.tp-right { height: auto; padding: 52px 48px 52px 8%;}
}

@media (max-width: 1024px) {
.tp-left,
  .tp-right {
    height: auto;
    padding: 40px 34px;
    margin: 0;
    border-radius: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.12); 
    border-right: 1px solid rgba(255, 255, 255, 0.12); 
  }.tp-left p,
  .tp-right p {
    font-size: 1.25rem; 
    line-height: 1.55;
  }
}

@media (max-width: 720px) {
.tp-left,
  .tp-right { padding: 28px 24px; }
}

.tp-left {
  --glass-grad: linear-gradient(
    135deg,
    
    rgba(10, 25, 60, 0.68)
  );
}

.tp-right {
  --glass-grad: linear-gradient(
    225deg,
    
    rgba(10, 25, 60, 0.68)
  );
}

.img-right {
  border-radius: 40px 0 0 40px;
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: center;
  opacity: 1;

  padding: 24px;
  background: var(--panel-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);

  mix-blend-mode: normal;
  filter: none;

  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-strong);
  border-right: none;
  box-shadow: var(--glass-highlight), 0 26px 60px rgba(0, 0, 0, 0.34);

  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
  cursor: zoom-in;
}

.img-right {
  --glass-grad: linear-gradient(
    225deg,
    
    rgba(10, 25, 60, 0.68)
  );
}

.split-row--stack {
  align-items: stretch;
}

.text-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tp-left--title {
  height: auto;
  padding: 50px 50px 50px 10%;
}

.tp-left--title h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 800;
}

.tp-left--body {
  height: auto;
  padding: 50px 50px 50px 10%;
}

.tp-left--body h3 {
  margin: 0 0 18px;
  font-size: 2.1rem;
  font-weight: 700;
}

.delay-1 {
  transition-delay: 0s;
}

.delay-2 {
  transition-delay: 0.14s;
}

.fly-left {
  transform: translateX(-120%);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fly-right {
  transform: translateX(120%);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.active .fly-left,
.active .fly-right {
  transform: translateX(0);
  opacity: 1;
}

.stages-section,
.features-section {
  padding: 100px 50px;
  text-align: center;
}

.section-title {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.stage-card {
  border-radius: 30px;
  padding: 40px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.stage-card h3 {
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.feat-card {
  border-radius: 30px;
  text-align: left;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-big {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.05);
}

.scale-up {
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.active .scale-up {
  transform: scale(1);
  opacity: 1;
}

.intro-dp {
  display: inline-block;
  font-size: 10.2rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 2200;
}

.intro-sub {
  display: block;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  opacity: 0.9;
  text-transform: none;
  margin-top: 1px;
}

.intro-section {
  position: relative;
}

.intro-hero-subtitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  bottom: 8vh;

  width: min(1200px, 92vw);
  text-align: center;

  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
.intro-hero-subtitle {
    font-size: 1.6rem;
    bottom: 10vh;
  }
}

@media (max-width: 720px) {
.intro-hero-subtitle {
    font-size: 1.25rem;
    bottom: 12vh;
  }
}

.comparison-section {
  padding: 90px 50px 120px;
}

.comparison-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 35px;
}

.comp-head-title {
  margin: 0;
  text-align: left;
  letter-spacing: 1px;
  font-size: 2.6rem;
  text-transform: none;
  -webkit-text-fill-color: unset;
  background: none;
  color: #fff;
}

.comp-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
}

.bad-item {
  border-left: 3px solid rgba(255, 94, 94, 0.8);
}

.examples-section {
  padding: 90px 50px 120px;
  text-align: center;
}

.examples-single {
  padding-top: 40px;
}

.example-trio {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.shot::before,
.shot::after {
  content: none !important;
}

.shot-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;

  border-radius: 38px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);

  background: rgba(255, 255, 255, 0.03);

  background-image: radial-gradient(
    120% 70% at 20% 8%,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0) 55%
  );
  background-blend-mode: screen;

  
  filter: none;
}

.shot-cap {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.vasilisa-section {
  position: relative;
  min-height: 100vh;
  padding: 90px 50px 10px;
}

.vasilisa-grid {
  width: 100%;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  column-gap: 5%;
}

.vasilisa-panel {
  border-radius: 0 40px 40px 0;
  border-left: none;
  height: 460px;
  width: 620px;
  padding: 60px 60px 60px 10%;
  margin-left: -50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vasilisa-panel h2 {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 18px;
}

.vasilisa-panel h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.vasilisa-slogan {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 50px;

  max-width: 1200px;
  margin: 0 auto;

  padding: 38px 50px;
  text-align: center;
  border-radius: 38px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.vasilisa-list {
  list-style: none;
  display: grid;
  gap: 6px;
  padding-left: 0;
}

.vasilisa-list li {
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  padding-left: 18px;
}

.vasilisa-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.7;
}

.vasilisa-renders {
  position: relative;

  width: 100%;
  z-index: 6;
}

.vasilisa-track {
  --card-w: 140px;
  display: flex;
  gap: 14px;

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;

  padding: 18px 60px;
  scrollbar-width: none;
}

.vasilisa-track::-webkit-scrollbar {
  display: none;
}

.vasilisa-card.glass-panel {
  flex: 0 0 var(--card-w);
  scroll-snap-align: center;

  padding: 1px;
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(236, 230, 230, 0.05);

  display: grid;
  place-items: center;

  overflow: hidden;

  transform: scale(0.86);
  opacity: 0.65;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.vasilisa-card.is-active {
  transform: scale(1);
  opacity: 1;
}

.vasilisa-img {
  width: 100%;
  height: 380px;

  display: block;

  border: none;
  background: transparent;
  border-radius: 0;

  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.35));
  cursor: zoom-in;
}

@media (min-width: 1525px) {
.vasilisa-card .vasilisa-img {
    object-fit: contain;
    object-position: 50% 50%;

    padding: 50px;
    --render-y: -0px;
    transform: translateY(var(--render-y)) scale(1.3);
    transform-origin: 50% 50%;
    will-change: transform;
  }.vasilisa-renders {
    position: relative;
    margin-left: -200px;
    width: 100%;
    z-index: 6;
  }
}

@media (max-width: 1024px) {
.vasilisa-card.glass-panel {
    overflow: visible;
  }.vasilisa-card {
    position: relative;
  }.vasilisa-card.is-active {
    z-index: 5;
  }
}

.vasilisa-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);

  display: grid;
  place-items: center;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  cursor: pointer;
  user-select: none;
}

.vasilisa-arrow--prev {
  left: -20px;
}

.vasilisa-arrow--next {
  right: -20px;
}

.vasilisa-arrow:hover {
  background: rgba(0, 0, 0, 0.45);
}

.meaning-section {
  margin-bottom: 140px;
}

.meaning-text {
  height: 480px;
  padding: 70px 80px 70px 10%;
}

.meaning-text p {
  font-size: 1.35rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.brand-side {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.brand-mark {
  position: relative;
  display: inline-block;
  text-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
  line-height: 1.1;
}

.brand-mid {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-top {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 10px;

  font-weight: 300;
  opacity: 0.9;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-bot {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 6px;

  font-weight: 300;
  opacity: 0.9;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.outro-section {
  padding: 100px 50px 60px;
  min-height: auto;
  display: block;
}

.outro-inner {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: auto;
}

.outro-title {
  text-align: center;
  margin-top: 0;
}

.outro-h2 {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: 0.02em;

  display: inline-flex;
  align-items: baseline;
  gap: 22px;
  white-space: nowrap;
}

.outro-word {
  position: relative;
  display: inline-block;
}

.outro-mid {
  display: inline-block;
}

.outro-under {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 5px;

  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: 0.25em;
  opacity: 0.95;
  white-space: nowrap;
}

.outro-over {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 5px;

  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: 0.25em;
  opacity: 0.85;
  white-space: nowrap;
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.img-modal.is-open {
  display: block;
}

.img-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.img-modal__img {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 50px;
  transform: translate(-50%, -50%);
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.img-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

@media (max-width: 1200px) {
.glass-panel {
    padding: 48px;
    border-radius: 34px;
  }.section-title {
    font-size: 2.6rem;
    margin-bottom: 56px;
  }.stages-section,
  .features-section {
    padding: 86px 36px;
  }.comparison-section,
  .examples-section {
    padding: 80px 36px 100px;
  }.split-row {
    margin-bottom: 120px;
    column-gap: 4%;
  }.img-right {
    height: 520px;
  }.outro-section {
    padding: 90px 36px 70px;
  }
}

@media (max-width: 1024px) {
.intro-section {
    justify-content: center;
    text-align: left;
    padding: 0 28px;
  }.intro-content h1 {
    font-size: 3.4rem;
  }.intro-dp {
    font-size: 5.6rem;
  }.intro-sub {
    font-size: 1.25rem;
    letter-spacing: 0.16em;
  }.split-row {
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding: 0 24px;
    min-height: auto;
  }
  .img-right {
    height: 380px;
    padding: 18px;
    border-radius: 28px;
    border-right: 1px solid var(--glass-border);
  }
  .stages-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }.stage-card {
    min-height: auto;
  }.feat-card {
    min-height: auto;
  }.vasilisa-grid {
    grid-template-columns: 1fr;
    row-gap: 26px;
    padding: 0 24px;
  }.vasilisa-panel {
    width: 100%;
    margin-left: 0;
    height: auto;
    border-radius: 28px;
    padding: 38px 34px;
  }.vasilisa-panel h2 {
    font-size: 1.6rem;
  }.vasilisa-list li {
    font-size: 1.1rem;
  }.vasilisa-renders {
    display: block;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }.vasilisa-track {
    display: flex;
    min-width: 0;
  }.vasilisa-renders::-webkit-scrollbar {
    display: none;
  }.vasilisa-img {
    scroll-snap-align: center;
    height: 520px;
    width: 100%;
    object-fit: contain;
  }.vasilisa-slogan {
    position: static;
    max-width: 100%;
    margin: 22px auto 0;
    padding: 30px 32px;
    border-radius: 28px;
    font-size: 1.05rem;
  }.meaning-section {
    padding: 0 24px;
  }.meaning-section.split-row {
    row-gap: 42px;
  }.meaning-text {
    height: auto;
    padding: 40px 34px;
  }.meaning-text p {
    font-size: 1.55rem;
  }.brand-side {
    min-height: auto;
    padding: 34px 0 0;
  }.outro-h2 {
    font-size: 3.6rem;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }.outro-under,
  .outro-over {
    font-size: 1.25rem;
    letter-spacing: 0.18em;
  }.fly-left {
    transform: translateX(-60px);
  }.fly-right {
    transform: translateX(60px);
  }
}

@media (max-width: 900px) {
.site-brand {
    display: none;
  }.comparison-section {
    padding: 66px 0 84px;
  }.comparison-inner {
    padding: 0 16px;
  }.comp-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
  }.comp-head-title {
    width: min(78vw, 560px);
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);

    font-size: 1.55rem;
    letter-spacing: 0.02em;
  }.comp-header .comp-head-title:first-child {
    align-self: flex-start;
  }.comp-header .comp-head-title:last-child {
    align-self: flex-end;
  }.comp-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }.comp-item.bad-item {
    align-self: flex-end;
  }.comp-wrapper .comp-column:first-child .comp-item:nth-child(1) {
    order: 1;
  }.comp-wrapper .comp-column:last-child .comp-item:nth-child(1) {
    order: 2;
  }.comp-wrapper .comp-column:first-child .comp-item:nth-child(2) {
    order: 3;
  }.comp-wrapper .comp-column:last-child .comp-item:nth-child(2) {
    order: 4;
  }.comp-wrapper .comp-column:first-child .comp-item:nth-child(3) {
    order: 5;
  }.comp-wrapper .comp-column:last-child .comp-item:nth-child(3) {
    order: 6;
  }.comp-wrapper .comp-column:first-child .comp-item:nth-child(4) {
    order: 7;
  }.comp-wrapper .comp-column:last-child .comp-item:nth-child(4) {
    order: 8;
  }.comp-wrapper .comp-column:first-child .comp-item:nth-child(5) {
    order: 9;
  }.comp-wrapper .comp-column:last-child .comp-item:nth-child(5) {
    order: 10;
  }.comp-item.bad-item {
    transform: translateX(28px);
    opacity: 0;
    transition: all 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
  }.active .comp-item.good-item,
  .active .comp-item.bad-item {
    transform: translateX(0);
    opacity: 1;
  }.examples-section {
    padding: 70px 0 90px;
  }.examples-section .section-title {
    margin-bottom: 30px;
  }.example-trio {
    max-width: none;
    justify-content: flex-start;
    align-items: stretch;

    display: flex;
    gap: 16px;

    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;

    padding: 0 8vw;
  }.example-trio::-webkit-scrollbar {
    display: none;
  }.shot-img {
    height: min(62vh, 520px);
    border-radius: 26px;
  }.shot-cap {
    margin-top: 10px;
    font-size: 1.05rem;
  }.shot-img {
    box-shadow: none;
  }.section-title {
    font-size: 2rem;
  }
}

@media (max-width: 720px) {
.glass-panel {
    padding: 24px;
    border-radius: 22px;
  }.intro-section {
    padding: 0 18px;
  }.intro-content h1 {
    font-size: 2.6rem;
    line-height: 1.02;
  }.intro-dp {
    font-size: 4.6rem;
  }.intro-sub {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
  }.split-row {
    padding: 0 14px;
    margin-bottom: 90px;
  }
  .img-right {
    height: 300px;
    padding: 14px;
    border-radius: 22px;
  }
  .stages-section,
  .features-section {
    padding: 70px 16px;
  }.comparison-inner,
  .meaning-section {
    padding: 0 14px;
  }.vasilisa-section {
    padding: 70px 0 24px;
    min-height: auto;
  }.vasilisa-grid {
    padding: 0 14px;
  }.vasilisa-panel {
    padding: 30px 24px;
  }.vasilisa-panel h2 {
    font-size: 1.35rem;
  }.vasilisa-img {
    height: 460px;
  }.vasilisa-slogan {
    margin-top: 28px;
    padding: 24px 20px;
    font-size: 0.98rem;
  }.meaning-text {
    padding: 30px 24px;
  }.meaning-text p {
    font-size: 1.15rem;
  }.brand-mid {
    font-size: 2rem;
  }.brand-top,
  .brand-bot {
    font-size: 1rem;
  }.brand-top {
    margin-bottom: 12px;
  }.brand-bot {
    margin-top: 12px;
  }.outro-section {
    padding: 70px 14px 10px;
  }.outro-h2 {
    font-size: 2.8rem;
    gap: 14px;
  }.outro-under,
  .outro-over {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
  }.outro-under {
    margin-top: 10px;
  }.outro-over {
    margin-bottom: 10px;
  }.fly-left {
    transform: translateX(-36px);
  }.fly-right {
    transform: translateX(36px);
  }
}

@media (max-width: 480px) {
.intro-content h1 {
    font-size: 2.25rem;
  }.intro-dp {
    font-size: 4.1rem;
  }.shot-img {
    height: min(58vh, 480px);
  }.comp-head-title,
  .comp-column {
    width: 84vw;
  }.outro-h2 {
    font-size: 2.4rem;
  }
}

:root {
  --header-h: 74px;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-header__inner {
  width: min(1450px, calc(100% - 24px));
  min-height: 66px;
  margin: 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--panel-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-strong);
  box-shadow: var(--glass-highlight), 0 16px 40px rgba(0, 0, 0, 0.22);
}

.site-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}
.site-brand,
.mobile-nav__link {
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.9) 22%,
    rgba(255, 255, 255, 0.72) 52%,
    rgba(255, 255, 255, 0.62) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(255, 255, 255, 0.05);
}
.site-brand {
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.site-nav__link--btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font: inherit;

  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0;
  padding: 10px 14px;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.site-nav__link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-soft);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgb(255, 255, 255),
    0 1px 2px rgba(255, 255, 255, 0.945);
}

.site-nav__link.is-active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.26);
}

.nav-burger {
    display: none;
    width: 44px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
   
}


.mobile-nav-backdrop {
  display: none;
}

.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
.site-nav {
    display: none;
  }
    .nav-burger {
        display: inline-block;
    }
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1998;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }.mobile-nav {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(14px + var(--header-h) + 12px);
    z-index: 1999;

    flex-direction: column;
    gap: 10px;

    padding: 14px;
    border-radius: 26px;

    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      0 26px 70px rgba(0, 0, 0, 0.65),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06);

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }.mobile-nav.glass-panel {
    padding: 14px;
    border-radius: 26px;
  }.mobile-nav .site-nav__link {
    width: 100%;
    display: block;
    text-align: left;
    padding: 12px 14px;
     border-radius: 10px;
    font-size: 1rem;
  }.site-header.menu-open .mobile-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }.site-header.menu-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

#start,
#about,
#features,
#functionality,
#interaction,
#mobility,
#ai,
#cta,
#outro {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

@media (max-width: 720px) {
:root {
    --header-h: 68px;
  }.site-header {
    top: 10px;
  }.site-header__inner {
    border-radius: 28px;
    padding: 12px 14px;
  }.site-brand {
    display: none;
  }.site-nav__link {
    font-size: 0.95rem;
    padding: 9px 12px;
  }
}

.outro-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.contact-open-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-open-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.contact-modal__panel.glass-panel {
  position: relative;
  z-index: 2;

  width: min(980px, 92vw);
  padding: 28px;
  border-radius: 34px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.contact-modal__panel.glass-panel {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.contact-modal__panel.glass-panel::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.contact-modal__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
  padding-top: 8px;
}

.contact-modal__left {
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-modal__title {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.contact-modal__caption {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.contact-modal__contacts {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.contact-row {
  display: grid;
  gap: 4px;
}

.contact-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-value {
  text-decoration: none;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
}

.contact-value:hover {
  opacity: 0.9;
}

.contact-modal__social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
}

.contact-social-btn {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 0.9rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-social-icon {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.contact-social-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;

  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 0;
  outline: none;
}

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

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-submit-btn {
  margin-top: 6px;
  margin-left: auto;

  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(120, 170, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);

  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;

  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-1px);
  background: rgba(120, 170, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 720px) {
.contact-modal__panel.glass-panel {
    width: min(620px, 94vw);
    padding: 22px;
  }.contact-modal__grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }.contact-modal__left {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }.contact-submit-btn {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
.vasilisa-track {
    min-width: 0;
    flex: 1 1 auto;
  }
}

.container {
  overflow-x: clip;
  overflow-y: visible;
}

@media (max-width: 1024px) {
.vasilisa-panel {
    width: min(720px, 100%);
    margin: 0 auto;
  }.vasilisa-renders {
    width: min(980px, 100%);
    margin: 0 auto;
    overflow: hidden;
  }.vasilisa-track {
    --card-w: min(78vw, 440px);
    gap: 16px;

    padding: 0 8vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }.vasilisa-card.glass-panel {
    flex: 0 0 var(--card-w);
    scroll-snap-align: center;
    transition:
      transform 0.1s ease-out,
      opacity 0.1s ease-out;
    
    
    
    
  }.vasilisa-img {
    width: 100%;
    height: min(62vh, 520px);
    object-fit: contain;
  }.vasilisa-arrow {
    display: none;
  }.vasilisa-slogan {
    margin: 14px;
  }
}

@media (max-width: 720px) {
.vasilisa-track {
    padding: 0 7vw;
  }.vasilisa-img {
    height: min(58vh, 480px);
  }
}

.contact-consents {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.contact-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.86rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.contact-check__input {
  width: 18px;
  height: 18px;
  accent-color: rgba(120, 170, 255, 0.9);
}

.contact-check__link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-check__link:hover {
  opacity: 0.9;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  display: grid;
  place-items: center;
}

.cookie-banner__inner.glass-panel {
  width: min(1100px, 100%);
  padding: 18px 20px;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.cookie-banner__text {
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}

.cookie-banner__text a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: inline-flex;
  gap: 10px;
}

.cookie-banner__btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner__btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 720px) {
.cookie-banner__inner.glass-panel {
    grid-template-columns: 1fr;
  }.cookie-banner__actions {
    justify-content: flex-start;
  }
}

.cookie-banner {
  pointer-events: auto;
}

.cookie-banner__inner {
  pointer-events: auto;
}

.cookie-banner[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
.tp-left--title {
    padding: 28px 24px;
  }.tp-left--title h2 {
    font-size: 2.35rem;
    line-height: 1.05;

    
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }
}

@media (max-width: 480px) {
.tp-left--title h2 {
    font-size: 2.05rem;
  }
}

.site-brand-group{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-logo-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}
.site-logo-link:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.site-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.intro-logo{
  position: absolute;
  right: 5%;


  pointer-events: none;
  opacity: 0.95;
}

.intro-logo__img{
  width: min(260px, 28vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 70px rgba(0,0,0,0.55));
}

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

  .site-header__inner {
    justify-content: space-between;
  }

  .site-brand-group {
    order: 0;
    margin-left: 0;
    gap: 0;
  }

    .nav-burger {
        display: inline-block;
    }

  .intro-logo {
    display: none;
  }
}

.callout-section{
  padding: 0 50px;
  margin: -30px 0 70px;
}

.section-callout{
  width: min(1200px, 92vw);
  margin: 0 auto;

  padding: 38px 50px;
  border-radius: 38px;

  font-size: 1.15rem;
  line-height: 1.55;
  text-align: center;

  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.section-callout__tel{
  white-space: nowrap;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}@media (max-width: 1024px) {
.callout-section{ padding: 0 24px; margin: -12px 0 56px; }.section-callout{ padding: 30px 32px; border-radius: 28px; font-size: 1.08rem; }
}

@media (max-width: 720px) {
.callout-section{ padding: 0 14px; }
}

.callout-section{
  padding: 0 50px;
  margin: 70px 0;
  display: flex;
  justify-content: center;
}

.section-callout{
  width: min(1200px, 92vw);
  padding: 34px 54px;
  border-radius: 999px;

  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;

  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.4;

  --glass-grad: linear-gradient(225deg, rgba(10, 25, 60, 0.68));
}

.section-callout__tel{
  margin-left: 0 !important;
  white-space: nowrap;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

@media (max-width: 1024px) {
.callout-section{ padding: 0 24px; margin: 52px 0; }.section-callout{ padding: 28px 28px; font-size: 1.12rem; }.section-callout__tel{ font-size: 1.12rem; }
}

@media (max-width: 720px) {
.callout-section{ padding: 0 14px; }.section-callout{ padding: 24px 22px; border-radius: 34px; }
}

/* =========================
   Spacing + centered callout (final)
   ========================= */
:root{
  --section-pad-y: 70px;
  --callout-pad-y: 70px;
}

.split-row{
  margin: 0;
  padding: var(--section-pad-y) 0;
}

.callout-section{
  margin: 0;
  padding: var(--callout-pad-y) 50px;
  display: flex;
  justify-content: center;
}

/* pill callout */
.section-callout{
  width: min(1200px, 92vw);
  padding: 34px 54px;
  border-radius: 999px;

  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;

  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.4;

  --glass-grad: linear-gradient(225deg, rgba(10, 25, 60, 0.68));
}

.section-callout__tel{
  margin-left: 18px;
  white-space: nowrap;
  font-weight: 800;
  font-size: inherit;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.section-callout__tel:hover{
  border-bottom-color: rgba(255,255,255,0.9);
}

@media (max-width: 1024px){
  :root{ --section-pad-y: 52px; --callout-pad-y: 52px; }
  .split-row{ padding: var(--section-pad-y) 24px; }
  .callout-section{ padding: var(--callout-pad-y) 24px; }
  .section-callout{ padding: 28px 28px; font-size: 1.12rem; }
}

@media (max-width: 720px){
  :root{ --section-pad-y: 44px; --callout-pad-y: 44px; }
  .split-row{ padding: var(--section-pad-y) 14px; }
  .callout-section{ padding: var(--callout-pad-y) 14px; margin-bottom: 14px;}
  .section-callout{ padding: 24px 22px; border-radius: 34px; }
  .section-callout__tel{ margin-left: 10px; }
}

/* =========================
   Memorial intro / outro refresh
   ========================= */
.intro-section--memorial,
.outro-section {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.intro-section--memorial::before,
.outro-section::before {
  content: none;
}








.intro-section--memorial {
  display: block;
}

.intro-centerpiece,
.intro-side-note,
.intro-contact-block,
.outro-heading,
.outro-corner {
  position: absolute;
  z-index: 3;
}

.intro-centerpiece {
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(940px, 88vw);
  text-align: center;
}

.intro-centerpiece__logo {
  width: clamp(62px, 5vw, 86px);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.intro-centerpiece__eyebrow {
  font-weight: 700;
  font-size: clamp(1.15rem, 1.75vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.intro-centerpiece__title {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: clamp(3.8rem, 6.2vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.intro-side-note {
  top: 70%;
  right: 0;
  transform: translateY(-50%);
  width: min(560px, 43vw);
  padding-right: clamp(28px, 4.4vw, 74px);
  text-align: right;
}

.intro-side-note__company {
  font-weight: 400;
  font-size: clamp(1.05rem, 1.45vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.intro-side-note__divider {
  width: calc(100% + clamp(28px, 4.4vw, 74px));
  height: 2px;
  margin: 16px calc(clamp(28px, 4.4vw, 74px) * -1) 16px auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.45));
}

.intro-side-note__copy {
  font-weight: 300;
  font-size: clamp(1rem, 1.3vw, 1.45rem);
  line-height: 1.18;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.intro-contact-block {
  left: 50%;
  bottom: 4.8vh;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.intro-contact-block a,
.outro-corner__contacts a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.intro-contact-block a {
  font-size: clamp(0.92rem, 1.15vw, 1.28rem);
}

.outro-heading {
  top: 18vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, 88vw);
  text-align: center;
}

.outro-heading__eyebrow {
  font-size: clamp(2rem, 1.55vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.outro-heading__title {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.outro-corner {
  right: clamp(30px, 5vw, 80px);
  bottom: 9vh;
  width: min(320px, 24vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.outro-corner__logo {
  width: clamp(90px, 10.5vw, 174px);
  height: auto;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
  margin-left: 100px;
}

.outro-corner__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  
}

.outro-corner__contacts a {
  font-size: clamp(1rem, 1.45vw, 1.5rem);
  
}

@media (max-width: 1024px) {
  .intro-section--memorial,
  .outro-section {
    min-height: 100svh;
  }

  .intro-centerpiece {
    top: 8vh;
    width: min(92vw, 720px);
  }

  .intro-centerpiece__title {
    font-size: clamp(3rem, 8vw, 4.7rem);
  }


  .intro-side-note {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 12vh;
    transform: translateX(-50%);
    width: min(90vw, 680px);
    padding-right: 0;
    text-align: center;
  }

  .intro-side-note__divider {
    width: 100%;
    margin: 16px 0;
  }

  .intro-contact-block {
    bottom: 4vh;
  }

  .outro-heading {
    top: 10vh;
    width: min(90vw, 740px);
  }



  .outro-corner {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 360px);
    bottom: 2vh;
  }
}

@media (max-width: 720px) {
  .intro-centerpiece {
    top: 7vh;
  }

  .intro-centerpiece__logo {
    width: 56px;
    margin-bottom: 14px;
  }

  .intro-centerpiece__eyebrow {
    font-size: 1rem;
  }

  .intro-centerpiece__title {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
    line-height: 0.98;
  }



  .intro-side-note {
    bottom: 12vh;
  }

  .intro-side-note__company {
    font-size: 0.98rem;
  }

  .intro-side-note__copy {
    font-size: 0.92rem;
    line-height: 1.24;
  }

  .intro-contact-block a,
  .outro-corner__contacts a {
    letter-spacing: 0.09em;
  }

  .outro-heading {
    top: 20vh;
  }

  .outro-heading__eyebrow {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    font-weight: 500;
  }

  .outro-heading__title {
    font-size: clamp(2.3rem, 9vw, 3rem);
  }



  .outro-corner__logo {
    width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
  }
}
@media (max-width: 1024px) {
  .split-row {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 0 20px;
    min-height: auto;
    margin-bottom: 90px;
  }

  .tp-left,
  .tp-right,
  .tp-left--title,
  .tp-left--body {
    height: auto;
    padding: 34px 28px;
    margin: 0;
    border-radius: 28px;
    border-left: 1px solid rgba(255,255,255,0.18);
    border-right: 1px solid rgba(255,255,255,0.18);
  }

  .tp-left p,
  .tp-right p,
  .tp-left--body p {
    font-size: 1.05rem;
    line-height: 1.58;
    letter-spacing: 0;
  }

  .tp-left--title h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4.5vw, 2.7rem);
    line-height: 1.04;
  }

  .tp-left--body h3 {
    margin: 0 0 14px;
    font-size: clamp(1.38rem, 3vw, 1.8rem);
    line-height: 1.08;
  }

  .img-right {
    border-radius: 28px;
    border-right: 1px solid rgba(255,255,255,0.16);
    height: 420px;
  }

  .section-title {
    font-size: 2.35rem;
    margin-bottom: 42px;
    letter-spacing: 1.5px;
  }

  .glass-panel h3 {
    font-size: 1.6rem;
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .glass-panel p {
    font-size: 1.02rem;
    line-height: 1.56;
    letter-spacing: 0;
  }
}
@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }

  .site-header {
    top: 10px;
  }

  .site-header__inner {
    width: calc(100% - 24px);
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 999px;
    justify-content: space-between;
  }

  .site-brand {
    display: none;
  }

  .site-nav {
    display: none;
  }

    .nav-burger {
        display: inline-block;
    }

  .site-brand-group {
    order: 0;
    gap: 0;
    margin-left: 0;
    margin-right: auto;
  }

  .site-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.06);
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-logo {
    width: 30px;
    height: 30px;
object-fit: contain;

  }

  .split-row {
    row-gap: 18px;
    padding: 0 16px;
    margin-bottom: 20px;
  }

  .tp-left,
  .tp-right,
  .tp-left--title,
  .tp-left--body {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .tp-left p,
  .tp-right p,
  .tp-left--body p,
  .glass-panel p {
    font-size: 0.96rem;
    line-height: 1.52;
    letter-spacing: 0;
  }

  .tp-left--title h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.04;
  }

  .tp-left--body h3,
  .glass-panel h3 {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .img-right {
    height: 300px;
    border-radius: 22px;
  }

  .section-title {
    font-size: 1.85rem;
    margin-bottom: 28px;
    letter-spacing: 1px;
  }

  .intro-side-note {
    width: min(92vw, 520px);
    bottom: 14vh;
  }

  .intro-side-note__company {
    font-size: 0.96rem;
    line-height: 1.25;
  }

  .intro-side-note__copy {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .intro-contact-block {
    bottom: 4vh;
    width: 100%;
    padding: 0 16px;
  }

  .intro-contact-block a {
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }
}
@media (max-width: 720px) {
    .contact-modal__panel.glass-panel {
        width: min(620px, 94vw);
        padding: 22px;
        
    }

    .contact-modal__grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .contact-modal__left {
        padding-right: 0;
        padding-bottom: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .contact-submit-btn {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 640px) {
    .contact-modal {
        padding: 10px;
    }

    .contact-modal__panel.glass-panel {
        width: min(620px, 94vw);
        padding: 18px 16px 16px;
      
        max-height: calc(100svh - 20px);
    }

    .contact-modal__close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .contact-modal__grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 24px;
    }

    .contact-modal__left {
        padding-right: 0;
        padding-bottom: 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .contact-modal__title {
        font-size: 1.32rem;
        line-height: 1.1;
    }

    .contact-modal__contacts {
        margin-top: 12px;
        gap: 10px;
    }

    .contact-modal__social {
        margin-top: 14px;
        gap: 8px;
    }

    .contact-social-btn {
        width: 40px;
        height: 40px;
    }

    .contact-social-icon {
        width: 36px;
        height: 36px;
    }

    .contact-form {
        gap: 12px;
    }

    .contact-field {
        gap: 6px;
    }

    .contact-field input,
    .contact-field textarea {
        padding: 8px 0;
    }

    .contact-field textarea {
        min-height: 72px;
    }

    .contact-consents {
        gap: 8px;
    }

    .contact-check {
        grid-template-columns: 16px 1fr;
        gap: 8px;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .contact-check__input {
        width: 16px;
        height: 16px;
    }

    .contact-submit-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 2px;
        padding: 11px 16px;
    }
}

@media (max-width: 420px) {
    .contact-modal {
        padding: 6px;
    }

    .contact-modal__panel.glass-panel {
        width: 96vw;
        padding: 16px 14px 14px;
       
        max-height: calc(100svh - 12px);
    }

    .contact-modal__close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .contact-modal__grid {
        gap: 12px;
        padding-top: 22px;
    }

    .contact-modal__title {
        font-size: 1.16rem;
    }

    .contact-label,
    .contact-field span {
        font-size: 0.76rem;
    }

    .contact-value {
        font-size: 0.95rem;
    }

    .contact-social-btn {
        width: 38px;
        height: 38px;
    }

    .contact-social-icon {
        width: 32px;
        height: 32px;
    }

    .contact-form {
        gap: 10px;
    }

    .contact-field textarea {
        min-height: 64px;
    }

    .contact-check {
        font-size: 0.76rem;
    }

    .contact-submit-btn {
        padding: 10px 14px;
        font-size: 0.92rem;
    }
}
@supports (-webkit-touch-callout: none) {
    @media (max-width: 640px) {
        .contact-modal {
            padding:
                max(8px, env(safe-area-inset-top))
                8px
                max(8px, env(safe-area-inset-bottom));
        }

        .contact-modal__panel.glass-panel {
            max-height: calc(
                100svh
                - env(safe-area-inset-top)
                - env(safe-area-inset-bottom)
                - 16px
            );
        }
    }

    @media (max-width: 420px) {
        .contact-modal {
            padding:
                max(6px, env(safe-area-inset-top))
                6px
                max(6px, env(safe-area-inset-bottom));
        }

        .contact-modal__panel.glass-panel {
            max-height: calc(
                100svh
                - env(safe-area-inset-top)
                - env(safe-area-inset-bottom)
                - 12px
            );
        }
    }
}