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

:root {
  color-scheme: light;
  --bg: #f5fbff;
  --bg-2: #e5efff;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(245, 250, 255, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.64);
  --line: rgba(92, 142, 255, 0.14);
  --line-strong: rgba(92, 142, 255, 0.28);
  --text: #10243f;
  --muted: #5d728f;
  --accent: #58caff;
  --accent-2: #7a8eff;
  --accent-3: #43e7c8;
  --shadow: 0 24px 70px rgba(76, 110, 170, 0.18);
  --shadow-soft: 0 14px 36px rgba(76, 110, 170, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content-width: 1240px;
  --header-top: 0px;
  --page-top: 0px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--page-top);
}

body {
  min-height: 100vh;
  padding-top: var(--page-top);
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 12% 10%, rgba(88, 202, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(122, 142, 255, 0.14), transparent 24%),
    radial-gradient(circle at 70% 72%, rgba(67, 231, 200, 0.1), transparent 22%),
    linear-gradient(180deg, #f8fcff 0%, #eef5ff 42%, #eaf2ff 100%);
  transition: padding-top 0.28s ease;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
}

body::before {
  top: 100px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(88, 202, 255, 0.14);
}

body::after {
  right: -120px;
  top: 420px;
  width: 380px;
  height: 380px;
  background: rgba(122, 142, 255, 0.12);
}

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

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

button,
a,
summary,
.hamburger,
#city {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
summary,
.logo-subtitle,
.nav-bar > a,
.hero-kicker,
.slide-desc span,
.video-label h2 a,
.foot-cont-three a {
  font-family: "Space Grotesk", "Inter", sans-serif;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.hamburger:focus-visible,
#city:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.99);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(234, 242, 255, 0.64);
  backdrop-filter: blur(18px);
  z-index: 9999;
}

.modal-content {
  width: min(100%, 440px);
  padding: 34px 30px 30px;
  border-radius: 28px;
  border: 1px solid rgba(92, 142, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 255, 0.96)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.08), rgba(122, 142, 255, 0.08));
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.modal-content p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.02rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

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

#yesBtn {
  color: #06101d;
  background: linear-gradient(135deg, #79efff, #7aa8ff);
  box-shadow: 0 18px 36px rgba(114, 214, 255, 0.24);
}

#noBtn {
  color: #fff;
  background: linear-gradient(135deg, #d95d7e, #a33f61);
}

.warn {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(calc(100% - 24px), var(--content-width));
  transform: translateX(-50%);
  padding: 12px 16px;
  z-index: 999;
  text-align: center;
  color: rgba(16, 36, 63, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(92, 142, 255, 0.1);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
  will-change: transform, opacity;
}

.warn.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-110%);
}

header {
  position: fixed;
  top: var(--header-top);
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), var(--content-width));
  margin: 0 auto;
  z-index: 998;
  transition: top 0.28s ease;
}

header.is-scrolled {
  padding: 8px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.88)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.1), rgba(122, 142, 255, 0.08));
  border: 1px solid rgba(92, 142, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

header.is-scrolled .nav-bar,
header.is-scrolled .mobile-nav-bar {
  background: transparent;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 92px;
  padding: 14px 8px;
}

.logo-hayati {
  margin-right: auto;
}

.logo-hayati a,
.logo a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-bar .logoh {
  width: auto;
  height: 58px;
}

.nav-bar .logoh2 {
  display: none;
}

.logo-subtitle {
  color: rgba(16, 36, 63, 0.68);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-bar > a {
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(16, 36, 63, 0.86);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-bar > a:hover,
.nav-bar > a.active {
  color: #10243f;
}

.nav-bar > a:hover {
  background: rgba(92, 142, 255, 0.08);
  transform: translateY(-1px);
}

.nav-bar > a.nav-cta {
  margin-left: 8px;
  color: #04101f;
  background: linear-gradient(135deg, #79efff, #7a8eff);
  box-shadow: 0 16px 32px rgba(114, 214, 255, 0.22);
}

.nav-bar > a.nav-cta:hover {
  box-shadow: 0 20px 38px rgba(114, 214, 255, 0.3);
}

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

.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #10243f;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active .top {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .middle {
  opacity: 0;
}

.hamburger.active .bottom {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger-content {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(92vw, 360px);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(92, 142, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.94)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.08), rgba(122, 142, 255, 0.06));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

.hamburger-content a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.hamburger-content a.nav-cta {
  color: #04101f;
  background: linear-gradient(135deg, #79efff, #7a8eff);
}

.hamburger-content.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.carousel {
  position: relative;
  width: min(calc(100% - 24px), var(--content-width));
  margin: 6px auto 0;
  display: grid;
  grid-template-columns: minmax(310px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.8)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.06), rgba(122, 142, 255, 0.05));
  box-shadow: var(--shadow);
}

.carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(88, 202, 255, 0.16), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(122, 142, 255, 0.12), transparent 16%),
    linear-gradient(90deg, rgba(88, 202, 255, 0.08), rgba(255, 255, 255, 0));
  z-index: 0;
}

.hero-copy,
.carousel-track,
.carousel-btn,
.carousel-indicators {
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 640px;
  border-radius: 28px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 247, 255, 0.5)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.08), rgba(122, 142, 255, 0.04));
  backdrop-filter: blur(12px);
}

.hero-kicker {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(135deg, #7df2ff 0%, #8e8aff 46%, #40ffb8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 440px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 4px;
  padding: 15px 30px;
  border-radius: 999px;
  color: #0b1c33;
  font-size: 1.02rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7df2ff, #7a8eff);
  box-shadow: 0 24px 45px rgba(114, 214, 255, 0.24);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 54px rgba(114, 214, 255, 0.3);
}

.carousel-track {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 640px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(88, 202, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(233, 241, 255, 0.98));
  border: 1px solid rgba(92, 142, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.6s ease-in-out,
    visibility 0.6s ease-in-out;
  pointer-events: none;
  background: transparent;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: none;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(60, 84, 130, 0.18)),
    linear-gradient(90deg, rgba(88, 202, 255, 0.08), rgba(255, 255, 255, 0));
  z-index: 0;
  pointer-events: none;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  background-image: var(--slide-image);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.26;
  filter: blur(34px) saturate(1.05);
  transform: scale(1.08);
  z-index: 0;
  pointer-events: none;
}

.carousel-slide.active::before {
  opacity: 0.38;
}

.carousel-slide img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.36));
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.carousel-slide.active img {
  transform: scale(1);
}

.carousel-slide:not(.active) img {
  transform: scale(0.975);
}

.carousel-slide h2 {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
  max-width: min(80%, 340px);
  opacity: 1;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.carousel-slide:not(.active) h2 {
  opacity: 0;
  transform: translateY(10px);
}

.carousel-slide h2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(92, 142, 255, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: #10243f;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.carousel-slide h2 a:hover {
  transform: translateY(-1px);
  background: rgba(17, 30, 55, 0.88);
  border-color: rgba(114, 214, 255, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(92, 142, 255, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: #10243f;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  z-index: 4;
}

.carousel-indicator {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(92, 142, 255, 0.2);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.carousel-indicator.active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #58caff, #7a8eff);
  transform: translateY(-1px);
}

main {
  display: block;
}

.container,
.slider-container-header,
.slider-container,
.container_video,
footer {
  width: min(calc(100% - 24px), var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

.container {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.15fr) minmax(0, 0.92fr);
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

.story-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 255, 0.72)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.05), rgba(122, 142, 255, 0.04));
  box-shadow: var(--shadow-soft);
}

.story-panel h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 2.9vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.story-panel > p:nth-of-type(2) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.story-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.story-list > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(92, 142, 255, 0.06);
  border: 1px solid rgba(92, 142, 255, 0.08);
}

.story-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, #7df2ff, #7a8eff);
  font-size: 0.88rem;
  font-weight: 800;
}

.story-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.story-list p {
  color: var(--muted);
  font-size: 0.92rem;
}

.image-box {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 255, 0.76)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.04), rgba(122, 142, 255, 0.04));
  box-shadow: var(--shadow-soft);
}

.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(104, 130, 186, 0.28)),
    radial-gradient(circle at 30% 20%, rgba(88, 202, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease;
}

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

.image-box-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 420px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.image-box-copy p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-box-copy h2 {
  font-size: 1.6rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #10243f;
}

.image-box2 {
  margin-top: 60px;
}

.slider-container-header {
  margin-top: 28px;
  padding: 10px 4px 0;
}

.slider-container-header h1 a {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.05em;
}

.slider-container-header h3 {
  margin-top: 10px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 400;
}

.slider-container {
  margin-top: 18px;
  padding-bottom: 10px;
  overflow-x: auto;
  scrollbar-color: rgba(125, 242, 255, 0.5) transparent;
}

.slider-container::-webkit-scrollbar {
  height: 8px;
}

.slider-container::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(135deg, #7df2ff, #7a8eff);
}

.slider-track {
  display: flex;
  gap: 18px;
  padding-bottom: 6px;
}

.slide {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.76)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.05), rgba(122, 142, 255, 0.04));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.slide:hover {
  transform: translateY(-6px);
  border-color: rgba(114, 214, 255, 0.3);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.slide > a {
  display: block;
  order: 1;
}

.slide img {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  background: rgba(236, 243, 255, 0.92);
}

.slide-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  order: 2;
  padding: 18px 18px 16px;
}

.slide-copy h3 {
  font-size: 1.02rem;
  line-height: 1.2;
}

.slide-copy p {
  min-height: 58px;
  color: var(--muted);
  font-size: 0.94rem;
}

.slide-desc {
  order: 3;
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding: 0 18px 18px;
  text-align: center;
}

.slide-desc span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(92, 142, 255, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #10243f;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.slide-desc span:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(92, 142, 255, 0.4);
}

.container_video {
  margin-top: 42px;
}

.header {
  margin-bottom: 22px;
}

.header p {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header h1,
.header h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.faq-intro {
  max-width: 560px;
}

.faq-intro > p:last-child {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.video-block {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.76)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.05), rgba(122, 142, 255, 0.05));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease;
}

.video-block:hover {
  transform: translateY(-4px);
  border-color: rgba(114, 214, 255, 0.28);
}

.video-block:first-child {
  grid-row: span 2;
  min-height: 700px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: rgba(236, 243, 255, 0.92);
}

.video-block:first-child .video-wrapper {
  min-height: 700px;
}

.video-block video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(104, 130, 186, 0.16) 48%, rgba(255, 255, 255, 0.7) 100%);
  z-index: 1;
}

.video-text {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  max-width: 400px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.video-text h2 {
  margin-bottom: 8px;
  font-size: 1.58rem;
  line-height: 1.15;
  color: #10243f;
}

.video-text p {
  color: rgba(16, 36, 63, 0.85);
  font-size: 1rem;
}

.video-label {
  position: absolute;
  left: 26px;
  bottom: 26px;
  z-index: 2;
}

.video-label h2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(92, 142, 255, 0.2);
  background: rgba(255, 255, 255, 0.8);
  color: #10243f;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.video-label h2 a:hover {
  transform: translateY(-1px);
  border-color: rgba(92, 142, 255, 0.4);
  background: rgba(255, 255, 255, 0.96);
}

#faq.container_video {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: start;
}

#faq .header {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 255, 0.72)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.04), rgba(122, 142, 255, 0.04));
  box-shadow: var(--shadow-soft);
}

#faq .faq-list {
  grid-column: 2;
}

#faq .benefit-strip {
  grid-column: 1 / -1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.76)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.04), rgba(122, 142, 255, 0.04));
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 22px 56px 22px 24px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 1rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 4px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.76)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.04), rgba(122, 142, 255, 0.04));
}

.benefit-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #06101d;
  background: linear-gradient(135deg, #7df2ff, #7a8eff);
  font-size: 0.88rem;
  font-weight: 800;
  flex: 0 0 42px;
}

.benefit-item h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.benefit-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

footer {
  margin-top: 54px;
  margin-bottom: 34px;
  padding: 32px 30px 30px;
  border-radius: 30px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 255, 0.78)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.04), rgba(122, 142, 255, 0.04));
  box-shadow: var(--shadow);
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(92, 142, 255, 0.08);
}

.footer-logo {
  margin-right: auto;
}

.footer-logo img {
  width: 152px;
  height: auto;
}

.social > div:not(.footer-logo) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(92, 142, 255, 0.1);
  background: rgba(92, 142, 255, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.social > div:not(.footer-logo) a:hover {
  transform: translateY(-2px);
  border-color: rgba(92, 142, 255, 0.28);
  background: rgba(92, 142, 255, 0.1);
}

footer svg {
  width: 22px;
  height: 22px;
  fill: rgba(16, 36, 63, 0.9);
}

.footer-cont {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(92, 142, 255, 0.08);
}

.foot-cont-one {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cont-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cont-col a:first-child {
  margin-bottom: 4px;
  color: #10243f;
  font-size: 1.04rem;
  font-weight: 700;
}

.cont-col a:not(:first-child),
.foot-cont-two a,
.foot-cont-two p {
  color: var(--muted);
}

.foot-cont-two {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.foot-cont-two div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  flex: 0 0 22px;
}

.foot-cont-three {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(92, 142, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 247, 255, 0.8)),
    linear-gradient(135deg, rgba(88, 202, 255, 0.06), rgba(122, 142, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow-soft);
}

.city {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(92, 142, 255, 0.08);
}

#city {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 0;
  cursor: pointer;
  color: #10243f;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#city::after {
  content: "^";
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-1px);
}

#city.is-collapsed::after {
  content: "+";
}

.foot-cont-three a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(114, 214, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(16, 36, 63, 0.82);
  font-size: 0.96rem;
  font-weight: 500;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.foot-cont-three a:hover,
.foot-cont-three a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(92, 142, 255, 0.34);
  background: rgba(92, 142, 255, 0.1);
  color: #10243f;
}

.foot-cont-three.is-collapsed a {
  display: none;
}

.copyright {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(92, 142, 255, 0.08);
  text-align: center;
  color: rgba(16, 36, 63, 0.62);
}

@media (max-width: 1180px) {
  .carousel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }

  .carousel-track {
    min-height: 540px;
  }

  .carousel-slide img {
    height: 100%;
  }

  .container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .story-panel {
    grid-column: 1 / -1;
  }

  .image-box2 {
    margin-top: 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-block:first-child {
    grid-row: auto;
    min-height: 420px;
  }

  .video-block:first-child .video-wrapper {
    min-height: 420px;
  }

  #faq.container_video {
    grid-template-columns: 1fr;
  }

  #faq .header {
    position: relative;
    top: auto;
  }

  #faq .faq-list {
    grid-column: auto;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-bar {
    display: none;
  }

  .mobile-nav-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 14px 4px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    margin-bottom: 10px;
  }

  .mobile-nav-bar img {
    width: auto;
    height: 30px;
  }

  .mobile-nav-bar .logo-subtitle {
    display: none;
  }

  header.is-scrolled {
    padding: 6px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
  }

  .carousel {
    padding: 18px;
    border-radius: 28px;
  }

  .carousel-slide {
    padding: 14px;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 8vw, 4.4rem);
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .carousel-track {
    min-height: 470px;
  }

  .carousel-slide img {
    height: 100%;
  }

  .container {
    grid-template-columns: 1fr;
  }

  .image-box {
    min-height: 280px;
  }

  .footer-cont {
    grid-template-columns: 1fr;
  }

  .image-box-copy,
  .video-text,
  .carousel-slide h2 {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .warn {
    font-size: 0.78rem;
  }

  .carousel,
  .container,
  .slider-container-header,
  .slider-container,
  .container_video,
  footer,
  header,
  .warn {
    width: min(calc(100% - 18px), var(--content-width));
  }

  .carousel {
    border-radius: 24px;
  }

  .hero-copy {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
  }

  .hero-link {
    padding: 14px 22px;
    font-size: 0.98rem;
  }

  .carousel-track {
    min-height: 420px;
  }

  .carousel-slide img {
    height: 100%;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .carousel-slide {
    padding: 12px;
  }

  .slider-container-header h3 {
    font-size: 0.96rem;
  }

  .slide {
    flex-basis: 78%;
  }

  .slide-copy p {
    min-height: auto;
  }

  .header h1,
  .header h2 {
    font-size: 2.25rem;
  }

  .video-label {
    left: 18px;
    bottom: 18px;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 24px 18px;
  }

  .social {
    flex-wrap: wrap;
  }

  .footer-logo {
    width: 100%;
  }

  .foot-cont-one {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .modal-content {
    padding: 24px 20px 22px;
  }

  .modal-content h2 {
    font-size: 1.6rem;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero-kicker {
    margin-bottom: 10px;
    font-size: 0.78rem;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 0.95rem;
    max-width: 280px;
  }

  .carousel-slide img {
    height: 100%;
  }

  .image-box {
    min-height: 240px;
  }

  .image-box-copy h2 {
    font-size: 1.32rem;
  }

  .slider-container-header h1 a {
    font-size: 1.95rem;
  }

  .header h1,
  .header h2 {
    font-size: 1.95rem;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 18px 50px 18px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 0.94rem;
  }

  #city {
    font-size: 1rem;
  }
}
