/* ============ CLIPPER HERO — DESIGN SYSTEM ============ */
:root {
  --blue: #4d9fe6;
  --blue-light: #7fbcf0;
  --blue-soft: #e3f1fc;
  --navy: #1e3a6e;
  --navy-deep: #142a52;
  --coral: #f2724b;
  --coral-soft: #fde7df;
  --green: #8cc63e;
  --green-soft: #eef7df;
  --cream: #fdf6ec;
  --white: #ffffff;
  --text: #2b3a55;
  --text-muted: #64748f;

  --radius: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 14px rgba(30, 58, 110, 0.08);
  --shadow-md: 0 12px 34px rgba(30, 58, 110, 0.13);
  --shadow-lg: 0 24px 60px rgba(30, 58, 110, 0.18);

  --font-head: "Baloo 2", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS (Arex-inspired: pill, tinted, smooth) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  padding: 0 26px;
  height: 52px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.97); }

.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--lg { height: 58px; padding: 0 32px; font-size: 17px; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, #3b8dd9 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(77, 159, 230, 0.4);
}
.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(77, 159, 230, 0.5);
}

.btn--ghost {
  background: color-mix(in srgb, var(--white) 82%, transparent);
  border-color: color-mix(in srgb, var(--navy) 16%, transparent);
  color: var(--navy);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--blue) 44%, transparent);
  background: color-mix(in srgb, var(--blue) 10%, var(--white));
}

.btn--secondary {
  background: color-mix(in srgb, var(--blue) 14%, var(--white));
  border-color: color-mix(in srgb, var(--blue) 30%, transparent);
  color: var(--navy);
}
.btn--secondary:hover {
  background: color-mix(in srgb, var(--blue) 22%, var(--white));
  border-color: color-mix(in srgb, var(--blue) 48%, transparent);
}

.btn--coral {
  background: linear-gradient(135deg, var(--coral) 0%, #e85c33 100%);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(242, 114, 75, 0.42);
}
.btn--coral:hover { box-shadow: 0 16px 36px rgba(242, 114, 75, 0.52); }

/* ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3.4); opacity: 0; } }

/* ============ BADGE ============ */
.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: color-mix(in srgb, var(--blue) 12%, var(--white));
  border: 1px solid color-mix(in srgb, var(--blue) 26%, transparent);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}
.badge--light {
  color: #cfe6fb;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}
.badge--pop { animation: pop-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.15s; }
@keyframes pop-in { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.header.is-scrolled {
  background: rgba(253, 246, 236, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header__brand { display: flex; align-items: center; gap: 10px; }
.header__logo { width: 46px; height: auto; border-radius: 12px; transition: transform 0.3s ease; }
.header__brand:hover .header__logo { transform: rotate(-8deg) scale(1.08); }
.header__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--navy);
}
.header__name em { font-style: normal; color: var(--blue); }

.nav { display: flex; gap: 6px; }
.nav__link {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  padding: 9px 15px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__link:hover, .nav__link.is-active {
  color: var(--navy);
  background: color-mix(in srgb, var(--blue) 13%, transparent);
}

.header__actions { display: flex; align-items: center; gap: 12px; }

/* lang switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--navy) 14%, transparent);
  background: color-mix(in srgb, var(--white) 80%, transparent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lang__btn:hover { border-color: color-mix(in srgb, var(--blue) 44%, transparent); background: var(--white); }
.lang__btn svg { transition: transform 0.25s ease; }
.lang.is-open .lang__btn svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lang.is-open .lang__menu { opacity: 1; transform: none; pointer-events: auto; }
.lang__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: none;
  background: none;
  border-radius: 11px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s ease;
}
.lang__item:hover { background: var(--blue-soft); color: var(--navy); }
.lang__item.is-active { background: color-mix(in srgb, var(--blue) 16%, var(--white)); color: var(--navy); }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--navy) 14%, transparent);
  border-radius: 12px;
  background: var(--white);
}
.burger span {
  width: 20px; height: 2.4px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 120px;
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(127, 188, 240, 0.35), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(242, 114, 75, 0.14), transparent 60%),
    linear-gradient(180deg, #eaf4fd 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 14px;
}
.hero__title span { display: block; }
.hero__title-accent {
  background: linear-gradient(100deg, var(--blue) 20%, var(--coral) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__tagline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--coral);
  margin-bottom: 16px;
}
.hero__text {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num, .stat__plus {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  color: var(--navy);
  display: inline;
}
.stat__num + .stat__plus { margin-left: 1px; }
.stat { flex-direction: row; align-items: baseline; gap: 8px; }
.stat__label { font-size: 14px; font-weight: 700; color: var(--text-muted); max-width: 110px; line-height: 1.3; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__blob {
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.4) 62%, transparent 75%);
  border-radius: 50%;
  filter: blur(6px);
}
.hero__img {
  position: relative;
  width: min(420px, 85%);
  border-radius: clamp(26px, 5vw, 42px);
  box-shadow: 0 24px 44px rgba(30, 58, 110, 0.22);
}
.float { animation: float 4.6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1.4deg); }
}
.hero__spark {
  position: absolute;
  font-size: 26px;
  color: var(--coral);
  animation: spark 3s ease-in-out infinite;
}
.hero__spark.s1 { top: 8%; left: 10%; color: var(--blue); animation-delay: 0s; }
.hero__spark.s2 { top: 16%; right: 8%; font-size: 20px; animation-delay: 0.8s; }
.hero__spark.s3 { bottom: 12%; left: 16%; font-size: 18px; color: var(--green); animation-delay: 1.6s; }
@keyframes spark {
  0%, 100% { transform: scale(0.7) rotate(0deg); opacity: 0.45; }
  50% { transform: scale(1.25) rotate(22deg); opacity: 1; }
}

/* floating bubbles */
.hero__bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--blue) 16%, transparent);
  animation: bubble-rise 14s linear infinite;
  bottom: -80px;
}
.bubble.b1 { width: 46px; height: 46px; left: 8%; animation-duration: 16s; }
.bubble.b2 { width: 26px; height: 26px; left: 24%; animation-duration: 12s; animation-delay: 3s; background: color-mix(in srgb, var(--coral) 18%, transparent); }
.bubble.b3 { width: 60px; height: 60px; left: 46%; animation-duration: 19s; animation-delay: 6s; }
.bubble.b4 { width: 20px; height: 20px; left: 64%; animation-duration: 11s; animation-delay: 1.5s; background: color-mix(in srgb, var(--green) 22%, transparent); }
.bubble.b5 { width: 38px; height: 38px; left: 80%; animation-duration: 15s; animation-delay: 4.5s; }
.bubble.b6 { width: 30px; height: 30px; left: 92%; animation-duration: 13s; animation-delay: 8s; background: color-mix(in srgb, var(--coral) 15%, transparent); }
@keyframes bubble-rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateY(-105vh) scale(1.25); opacity: 0; }
}

.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 3;
}
.hero__wave svg { width: 100%; height: 70px; }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -12px 0 10px;
  box-shadow: var(--shadow-sm);
}
.marquee__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #bcd9f5;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}
.marquee__item::after { content: "✦"; color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.16;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title--light { color: var(--white); }
.section__text { font-size: 16.5px; color: var(--text-muted); margin-bottom: 14px; }
.section__text--center { margin-bottom: 0; }
.section__text--light { color: #b9cfe8; }

/* ============ ABOUT ============ */
.about { padding-top: 60px; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.about__card-float {
  position: absolute;
  bottom: -22px;
  right: -14px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  animation: float 5s ease-in-out infinite reverse;
}
.about__card-emoji { font-size: 22px; }
.about__list { list-style: none; margin: 6px 0 28px; }
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  font-weight: 700;
  color: var(--text);
}
.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: #5d9922;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

/* ============ CHARACTERS ============ */
.characters {
  background:
    radial-gradient(700px 400px at 110% 20%, rgba(140, 198, 62, 0.1), transparent 60%),
    radial-gradient(700px 400px at -10% 80%, rgba(77, 159, 230, 0.1), transparent 60%);
}
.chars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.char-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 26px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid color-mix(in srgb, var(--navy) 6%, transparent);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.char-card:hover {
  transform: translateY(-10px) rotate(-0.6deg);
  box-shadow: var(--shadow-lg);
}
.char-card__img-wrap {
  height: 240px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 22px;
}
.char-card__img-wrap--blue { background: linear-gradient(160deg, #dceefc, #bcdcf7); }
.char-card__img-wrap--green { background: linear-gradient(160deg, #f0f8e2, #dcefc0); }
.char-card__img-wrap--coral { background: linear-gradient(160deg, #fdeae2, #fbd4c5); }
.char-card__img {
  max-height: 86%;
  width: auto;
  border-radius: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.char-card__img--cover { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: top; }
.char-card:hover .char-card__img { transform: scale(1.07); }
.char-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 23px;
  color: var(--navy);
}
.char-card__role {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  background: var(--coral-soft);
  border-radius: 999px;
  padding: 4px 13px;
  margin: 8px 0 12px;
}
.char-card__desc { font-size: 15px; color: var(--text-muted); }

/* ============ ADVENTURE ============ */
.adventure {
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(77, 159, 230, 0.25), transparent 55%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, #26498a 100%);
  border-radius: clamp(24px, 4vw, 48px);
  margin: 0 clamp(10px, 2vw, 28px);
}
.adventure__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.adventure__img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.adventure__features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 34px; }
.adv-feat { display: flex; gap: 16px; align-items: flex-start; }
.adv-feat__icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.adv-feat h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 3px;
}
.adv-feat p { font-size: 14.5px; color: #a9c3e2; }

/* ============ WHY ============ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1px solid color-mix(in srgb, var(--navy) 6%, transparent);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--blue) 34%, transparent);
}
.why-card__icon {
  display: inline-flex;
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--blue-soft);
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin-bottom: 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-card:hover .why-card__icon { transform: rotate(-8deg) scale(1.12); }
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18.5px;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: 14.5px; color: var(--text-muted); }

/* ============ VIDEOS CAROUSEL ============ */
.videos {
  background:
    radial-gradient(700px 400px at -10% 30%, rgba(242, 114, 75, 0.09), transparent 60%),
    radial-gradient(700px 400px at 110% 70%, rgba(77, 159, 230, 0.12), transparent 60%);
}
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 26px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 min(400px, 82vw);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--navy) 7%, transparent);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.video-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
  cursor: pointer;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card__thumb:hover img { transform: scale(1.06); }
.video-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(20, 42, 82, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
  pointer-events: none;
}
.video-card__thumb:hover .video-card__play { transform: scale(1.14); background: var(--white); }
.video-card__play::after {
  content: "";
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 5px;
}
.video-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.video-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.35;
  color: var(--navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.video-card__lang {
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 3px 11px;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--navy) 12%, transparent);
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.carousel__arrow:hover { background: var(--blue); color: var(--white); transform: translateY(-50%) scale(1.1); }
.carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel__arrow--prev { left: -14px; }
.carousel__arrow--next { right: -14px; }
.carousel__arrow.is-disabled { opacity: 0.35; pointer-events: none; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  background: color-mix(in srgb, var(--navy) 18%, transparent);
  padding: 0;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}
.carousel__dot.is-active { width: 26px; background: var(--blue); }

.videos__more { text-align: center; margin-top: 34px; }

/* ============ CONTACT ============ */
.contact { padding-bottom: 110px; }
.contact__card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(135deg, var(--blue) 0%, #3577c9 100%);
  border-radius: clamp(26px, 4vw, 44px);
  padding: clamp(38px, 6vw, 70px);
  text-align: center;
  box-shadow: 0 30px 70px rgba(59, 141, 217, 0.4);
}
.contact__deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.contact__deco.d1 { width: 220px; height: 220px; top: -80px; left: -60px; }
.contact__deco.d2 { width: 300px; height: 300px; bottom: -140px; right: -90px; }
.contact__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
}
.contact__text {
  color: #e3f0fc;
  font-size: 16.5px;
  max-width: 560px;
  margin: 0 auto 40px;
}
.contact__socials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 15px 18px;
  text-align: left;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}
.social-btn:hover {
  transform: translateY(-6px) scale(1.03);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(20, 42, 82, 0.28);
}
.social-btn__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-btn:hover .social-btn__icon { transform: rotate(-10deg) scale(1.1); }
.social-btn--tg .social-btn__icon { background: linear-gradient(135deg, #34aadf, #1e88c7); }
.social-btn--ig .social-btn__icon { background: linear-gradient(135deg, #f58529, #dd2a7b 60%, #8134af); }
.social-btn--yt .social-btn__icon { background: linear-gradient(135deg, #ff4e45, #d90000); }
.social-btn--phone .social-btn__icon { background: linear-gradient(135deg, var(--green), #6aa22b); }
.social-btn__info { display: flex; flex-direction: column; min-width: 0; }
.social-btn__info b {
  font-family: var(--font-head);
  font-size: 15.5px;
  color: var(--navy);
  line-height: 1.25;
}
.social-btn__info small {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============ FOOTER ============ */
.footer { background: var(--navy-deep); color: #9db8dc; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 46px;
  padding-bottom: 34px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo { width: 74px; border-radius: 16px; background: var(--white); padding: 6px; }
.footer__tagline { font-family: var(--font-head); font-weight: 700; color: #cfe0f5; }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a { font-weight: 700; font-size: 14.5px; transition: color 0.2s ease; }
.footer__nav a:hover { color: var(--white); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfe0f5;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}
.footer__socials a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-4px);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 24px;
  text-align: center;
  font-size: 13.5px;
}

/* ============ TO TOP ============ */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--blue); transform: translateY(-4px); }

/* ============ CONFETTI CANVAS ============ */
#confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.reveal--delay { transition-delay: 0.14s; }
.reveal--delay2 { transition-delay: 0.28s; }
.reveal--delay3 { transition-delay: 0.42s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* language switch flash */
.i18n-swap { animation: i18n-swap 0.45s ease; }
@keyframes i18n-swap {
  0% { opacity: 0.25; transform: translateY(4px); }
  100% { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */

/* Large monitors */
@media (min-width: 1600px) {
  :root { --container: 1320px; }
  .hero__img { width: min(480px, 90%); }
  .section { padding: 116px 0; }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: inline-flex; }

  .nav.is-open {
    display: flex;
    position: fixed;
    top: 66px;
    left: 14px; right: 14px;
    flex-direction: column;
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    gap: 2px;
    z-index: 99;
    animation: pop-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav.is-open .nav__link { padding: 13px 18px; font-size: 16px; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .hero__content { order: 2; }
  .hero__visual { order: 1; }
  .hero__img { width: min(300px, 62%); }
  .hero__text { margin-inline: auto; }
  .hero__btns, .hero__stats { justify-content: center; }
  .hero { padding: 110px 0 100px; }

  .about__grid, .adventure__grid { grid-template-columns: 1fr; gap: 44px; }
  .adventure__media { order: -1; }
  .chars__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__socials { grid-template-columns: repeat(2, 1fr); }
}

/* Phone */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 68px 0; }
  .header__name { font-size: 18px; }
  .header__logo { width: 38px; }

  .hero { padding: 100px 0 88px; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn { width: 100%; }
  .hero__stats { gap: 20px; justify-content: center; }
  .stat__num, .stat__plus { font-size: 26px; }
  .stat__label { font-size: 12.5px; }

  .chars__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; gap: 16px; }
  .contact__socials { grid-template-columns: 1fr; }
  .about__card-float { right: 6px; bottom: -16px; padding: 11px 15px; font-size: 13px; }
  .adventure { margin: 0 8px; }

  .carousel__arrow { width: 42px; height: 42px; }
  .carousel__arrow--prev { left: -6px; }
  .carousel__arrow--next { right: -6px; }
  .video-card { flex-basis: 86vw; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand { flex-direction: column; }
  .to-top { right: 14px; bottom: 14px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
