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

:root {
  --bg: #040913;
  --bg-deep: #071221;
  --panel: rgba(7, 17, 33, 0.86);
  --panel-strong: rgba(8, 21, 38, 0.96);
  --panel-soft: rgba(11, 28, 50, 0.74);
  --line: rgba(95, 151, 214, 0.2);
  --line-strong: rgba(95, 196, 255, 0.45);
  --text: #f4f8ff;
  --muted: #b2c5dd;
  --accent: #29d8ff;
  --accent-strong: #2b8cff;
  --accent-soft: rgba(41, 216, 255, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --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;
  background:
    radial-gradient(circle at top left, rgba(16, 87, 170, 0.28), transparent 34%),
    radial-gradient(circle at 78% 20%, rgba(38, 202, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #02060d 0%, #040913 18%, #06111f 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: var(--page-top);
  transition: padding-top 0.28s ease;
}

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

body::before {
  top: 120px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgba(29, 119, 255, 0.12);
}

body::after {
  right: -80px;
  top: 440px;
  width: 340px;
  height: 340px;
  background: rgba(41, 216, 255, 0.1);
}

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

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

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

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

.modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(2, 8, 17, 0.84);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 20px;
}

.modal-content {
  width: min(100%, 420px);
  padding: 34px 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(11, 28, 50, 0.92));
  border: 1px solid rgba(76, 150, 224, 0.28);
  box-shadow: var(--shadow);
  color: var(--text);
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.2;
}

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

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

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

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

#yesBtn {
  color: #04101d;
  background: linear-gradient(135deg, #37e4ff, #50a8ff);
  box-shadow: 0 16px 24px rgba(41, 216, 255, 0.24);
}

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

.warn {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(calc(100% - 24px), var(--content-width));
  transform: translateX(-50%);
  padding: 12px 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(222, 236, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
  z-index: 999;
  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: 28px;
  background: linear-gradient(180deg, rgba(4, 10, 19, 0.9), rgba(7, 17, 33, 0.82));
  border: 1px solid rgba(95, 196, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

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

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

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

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

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

.logo-subtitle {
  color: rgba(239, 246, 255, 0.9);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-bar > a {
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(239, 246, 255, 0.92);
  font-size: 1.28rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

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

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

.nav-bar > a.nav-cta {
  margin-left: 8px;
  padding: 14px 26px;
  color: #f8fdff;
  background: linear-gradient(135deg, #14d8ef, #2b8cff);
  box-shadow: 0 18px 36px rgba(41, 216, 255, 0.2);
}

.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: #fff;
  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;
  background: rgba(5, 14, 27, 0.98);
  border: 1px solid rgba(95, 151, 214, 0.22);
  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: 1.05rem;
}

.hamburger-content a.nav-cta {
  background: linear-gradient(135deg, #14d8ef, #2b8cff);
  color: #fff;
}

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

.carousel {
  position: relative;
  width: min(calc(100% - 24px), var(--content-width));
  margin: 4px auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(90, 153, 219, 0.18);
  background: #030a15;
  box-shadow: var(--shadow);
}

.carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 15, 0.85) 0%, rgba(2, 7, 15, 0.6) 42%, rgba(2, 7, 15, 0.2) 65%, rgba(2, 7, 15, 0.3) 100%),
    radial-gradient(circle at 38% 50%, rgba(47, 191, 255, 0.28), transparent 18%);
  z-index: 2;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  top: 78px;
  left: 56px;
  z-index: 4;
  width: min(48%, 470px);
}

.hero-kicker {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(135deg, #3ce9ff 0%, #2ca8ff 55%, #89dfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  width: min(100%, 420px);
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.45;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 34px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  background: linear-gradient(135deg, #19d8ef, #2c8fff);
  box-shadow: 0 24px 45px rgba(41, 216, 255, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 56px rgba(41, 216, 255, 0.3);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.carousel-slide h1,
.carousel-slide h2 {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 19, 35, 0.8);
  color: #fff;
  transform: translateY(-50%);
  transition: background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, transform 0.25s ease;
}

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

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

.carousel-btn:hover {
  background: rgba(16, 43, 76, 0.92);
  transform: translateY(-50%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.carousel-btn:active {
  transform: translateY(-50%);
}

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

.carousel-indicator {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
}

.carousel-indicator.active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14d8ef, #2b8cff);
}

.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: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 28px;
}

.image-box {
  position: relative;
  min-height: 290px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(95, 151, 214, 0.16);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(3, 10, 21, 0.7));
}

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

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

.image-box-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

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

.image-box-copy h2 {
  max-width: 440px;
  font-size: 1.75rem;
  line-height: 1.16;
}

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

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

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

.slider-container {
  margin-top: 18px;
  padding-bottom: 10px;
  overflow-x: auto;
}

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

.slider-container::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(135deg, #14d8ef, #2b8cff);
}

.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;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(95, 151, 214, 0.16);
  background: linear-gradient(180deg, rgba(7, 17, 33, 0.94), rgba(7, 17, 33, 0.78));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.slide:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 196, 255, 0.32);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
}

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

.slide img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  border: 0;
  background: #08111f;
}

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

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

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

.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: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(85, 187, 255, 0.42);
  background: rgba(9, 25, 47, 0.72);
  color: #f5fbff;
  font-size: 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.slide-desc span:hover {
  transform: translateY(-1px);
  background: rgba(19, 54, 92, 0.84);
  border-color: rgba(98, 210, 255, 0.72);
}

.container_video {
  margin-top: 40px;
}

.header {
  margin-bottom: 22px;
}

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

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

.video-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 22px;
}

.video-block {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(95, 151, 214, 0.18);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-block:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 196, 255, 0.34);
}

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

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: #040b14;
}

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

.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(3, 9, 19, 0.12) 0%, rgba(3, 9, 19, 0.45) 50%, rgba(3, 9, 19, 0.88) 100%);
  z-index: 1;
}

.video-text {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  z-index: 2;
  width: auto;
  transform: none;
  text-align: left;
}

.video-text h2 {
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1.15;
}

.video-text p {
  max-width: 420px;
  color: rgba(229, 240, 255, 0.88);
  font-size: 1rem;
}

.video-label {
  position: absolute;
  left: 26px;
  right: auto;
  bottom: 26px;
  z-index: 2;
  padding: 0;
  transform: none;
}

.video-label h2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(85, 187, 255, 0.42);
  background: rgba(9, 25, 47, 0.72);
  color: #fff;
  font-size: 1rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.video-label h2 a:hover {
  background: rgba(19, 54, 92, 0.84);
  border-color: rgba(98, 210, 255, 0.72);
}

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

.faq-item {
  border-radius: 20px;
  border: 1px solid rgba(95, 151, 214, 0.16);
  background: linear-gradient(180deg, rgba(7, 17, 33, 0.92), rgba(8, 20, 36, 0.8));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

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

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  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, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(95, 151, 214, 0.16);
  background: linear-gradient(180deg, rgba(7, 17, 33, 0.92), rgba(8, 20, 36, 0.8));
}

.benefit-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(17, 50, 88, 0.82);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  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: 28px;
  border: 1px solid rgba(95, 151, 214, 0.14);
  background: linear-gradient(180deg, rgba(5, 13, 25, 0.94), rgba(5, 13, 25, 0.82));
  box-shadow: var(--shadow);
}

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

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

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

.social > div:not(.footer-logo) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

footer svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.88);
}

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

.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: #fff;
  font-size: 1.08rem;
  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(95, 151, 214, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 17, 31, 0.96), rgba(5, 13, 25, 0.92)),
    linear-gradient(135deg, rgba(41, 216, 255, 0.08), rgba(43, 140, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 58px rgba(0, 0, 0, 0.28);
}

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

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

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

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

.foot-cont-three a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(95, 151, 214, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(226, 236, 248, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.foot-cont-three a:hover,
.foot-cont-three a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(41, 216, 255, 0.42);
  background: rgba(41, 216, 255, 0.12);
  color: #fff;
}

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

.copyright {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(202, 214, 228, 0.72);
}

@media (max-width: 1180px) {
  .hero-copy {
    top: 54px;
    left: 38px;
    width: min(52%, 430px);
  }

  .carousel-slide img {
    height: 560px;
  }

  .slide {
    flex-basis: calc((100% - 36px) / 3);
  }

  .benefit-strip {
    grid-template-columns: repeat(2, 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;
  }

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

  .mobile-nav-bar .logo-subtitle {
    font-size: 0.84rem;
    letter-spacing: 0.14em;
  }

  header.is-scrolled {
    padding: 6px;
    border-radius: 24px;
  }

  .hero-copy {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 34px;
    width: auto;
  }

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

  .carousel-slide img {
    height: 500px;
  }

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

  .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;
  }

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

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

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

  .carousel {
    border-radius: 22px;
  }

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

  .hero-link {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .carousel-slide img {
    height: 440px;
  }

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

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

  .slide {
    flex-basis: 78%;
  }

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

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

  .video-text {
    top: 22px;
    left: 20px;
    right: 20px;
  }

  .video-text h2 {
    font-size: 1.35rem;
  }

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

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

  footer {
    padding: 26px 20px;
  }

  .social {
    flex-wrap: wrap;
  }

  .footer-logo {
    width: 100%;
  }

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

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

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

  .hero-copy {
    top: 28px;
    left: 22px;
    right: 22px;
  }

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

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

  .logo-subtitle {
    display: none;
  }

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

  .carousel-slide img {
    height: 400px;
  }

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

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

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

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

  .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;
  }
}
