* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

button {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: none;
  background: rgba(7, 17, 32, 0.94);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  padding: 2px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2d63, #153f8a);
  box-shadow: 0 14px 28px rgba(8, 19, 43, 0.55);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
  transform: translateY(-7px) scale(2.18);
  transform-origin: center center;
}

.brand-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-toggle::after {
  content: "+";
  font-size: 12px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 20;
  min-width: 200px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 17, 32, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(45deg);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 18px;
}

.mobile-menu {
  display: none;
  padding: 0 0 20px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
}

.mobile-menu-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
}

.mobile-dropdown-toggle {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-dropdown-toggle::before {
  content: "+";
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mobile-menu-group.open .mobile-dropdown-toggle::before {
  transform: rotate(45deg);
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-left: 0;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.mobile-menu-group.open .mobile-submenu {
  display: flex;
}

.mobile-menu a {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.mobile-menu-inner > a,
.mobile-menu-parent > a {
  padding: 6px 0;
}

.mobile-menu-parent > a {
  flex: 1;
}

.mobile-menu .btn {
  display: flex;
  width: 100%;
  margin-top: 4px;
}

.mobile-submenu a {
  font-size: 15px;
  color: var(--muted-2);
}

.hero {
  padding: 38px 0 28px;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #09172e;
}

.hero-slides {
  position: relative;
  min-height: 560px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 32, 0.54) 0%, rgba(7, 17, 32, 0.3) 34%, rgba(7, 17, 32, 0.08) 100%);
  z-index: 1;
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  z-index: 0;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 48px 48px 48px 24px;
}

.hero-panel {
  max-width: 520px;
  margin-right: auto;
  text-align: left;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-meta-card {
  min-width: 140px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-meta-card strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.hero-meta-card span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #d8e5f8;
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-arrow,
.slider-dot {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 18px;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin: 0 6px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  padding: 0;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.slider-dot.active {
  opacity: 1;
  transform: scale(1.2);
  background: var(--cyan);
}

.experience-section {
  padding: 34px 0 28px;
}

.experience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(131, 215, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.experience-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #d7e7ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  opacity: 0.8;
}

.experience-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.experience-lead {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.9;
  font-weight: 600;
}

.experience-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(131, 215, 255, 0.16);
  background: linear-gradient(160deg, rgba(15, 45, 99, 0.9), rgba(9, 23, 46, 0.94));
}

.experience-highlight-label {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(226, 239, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.experience-highlight p {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 45, 99, 0.95), rgba(21, 63, 138, 0.9));
  border: 1px solid rgba(131, 215, 255, 0.14);
  box-shadow: 0 16px 30px rgba(8, 19, 43, 0.45);
  font-size: 26px;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 250px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(131, 215, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.package-card .btn {
  width: 100%;
  margin-top: auto;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: 56px;
  padding: 52px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(131, 215, 255, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(18, 51, 111, 0.6), transparent 34%),
    linear-gradient(180deg, rgba(9, 21, 39, 0.76), rgba(7, 17, 32, 0.98));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 1fr) minmax(190px, 0.8fr) minmax(190px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
}

.footer-copy {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.footer-brand-block,
.footer-contact-group,
.footer-nav-group,
.footer-social-group {
  min-width: 0;
}

.footer-title {
  display: inline-block;
  margin-bottom: 16px;
  color: #d7e7ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  opacity: 0.78;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-link {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(131, 215, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.footer-contact-label {
  color: rgba(215, 231, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.footer-contact-link strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.footer-links a,
.footer-note {
  color: var(--muted);
  font-size: 15px;
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(131, 215, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.social-icon {
  display: block;
  width: 22px;
  height: 22px;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-link[aria-label="Instagram"] .social-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23fff' stroke='none'/%3E%3C/svg%3E");
}

.social-link[aria-label="Facebook"] .social-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M13.5 21v-7h2.4l.4-3h-2.8V9.1c0-.9.3-1.6 1.6-1.6H16V4.9c-.3 0-.9-.1-1.8-.1-2.6 0-4.2 1.6-4.2 4.5V11H7.5v3H10v7h3.5Z'/%3E%3C/svg%3E");
}

.social-link[aria-label="WhatsApp"] .social-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 11.5A8.5 8.5 0 0 1 7.4 19l-3.4 1 1.1-3.2A8.5 8.5 0 1 1 20 11.5Z'/%3E%3Cpath d='M9.2 8.8c.2-.4.4-.4.7-.4h.6c.2 0 .5 0 .7.5l.6 1.4c.1.3.1.5-.1.8l-.5.7c-.1.1-.2.3 0 .6.4.7 1 1.3 1.7 1.7.2.1.4.1.5 0l.8-.5c.2-.2.5-.2.8-.1l1.3.6c.4.2.5.4.5.7v.6c0 .3 0 .5-.4.7-.4.2-1 .4-1.7.3-1-.1-2.2-.6-3.4-1.7-1.5-1.3-2.4-2.9-2.5-4.3 0-.7.1-1.2.4-1.6Z' fill='%23fff' stroke='none'/%3E%3C/svg%3E");
}

.social-link[aria-label="TikTok"] .social-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M14 3c.3 1.8 1.4 3.3 3 4.1.9.4 1.8.7 2.7.7v2.8c-1.8 0-3.7-.6-5.2-1.7v5.3a5.2 5.2 0 1 1-5.2-5.2c.4 0 .7 0 1.1.1V12a2.8 2.8 0 1 0 1.8 2.6V3H14Z'/%3E%3C/svg%3E");
}

.footer-note {
  margin: 16px 0 0;
  line-height: 1.7;
}

.typography-section {
  padding: 30px 0 72px;
}

.typography-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.content-block {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.content-block h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.content-block p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: 15px;
}

.content-stack {
  display: grid;
  gap: 20px;
}

.content-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #d7e7ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  opacity: 0.75;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(131, 215, 255, 0.22);
  background: rgba(23, 63, 137, 0.16);
  color: #d8ecff;
  font-size: 13px;
  margin-bottom: 20px;
}

h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.gradient-text {
  background: linear-gradient(90deg, #e4f0ff, #83d7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin-top: 22px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 700px;
  margin-top: 34px;
}

.card,
.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 22px;
  backdrop-filter: blur(12px);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.preview-shell {
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.preview-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.preview-label {
  color: var(--muted-2);
  font-size: 13px;
  margin-bottom: 4px;
}

.preview-title {
  margin: 0;
  font-size: 22px;
}

.ready-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(116, 240, 176, 0.12);
  color: #b9ffd8;
  font-size: 12px;
  white-space: nowrap;
}

.feature-banner {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(90deg, #0f2857, #0a1b37);
  border: 1px solid rgba(131, 215, 255, 0.08);
}

.feature-banner small {
  color: #cfe5ff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.feature-banner h3 {
  margin: 10px 0 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.feature-banner p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.mini-card span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
}

.mini-card strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
}

.section {
  padding: 28px 0 72px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-kicker {
  color: #c9defd;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.package-top {
  flex: 1;
  margin-top: 2px;
}

.package-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.package-subtitle {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.price-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 63, 137, 0.18);
  color: #dcecff;
  font-size: 12px;
  border: 1px solid rgba(131, 215, 255, 0.12);
  white-space: nowrap;
}

.points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: #deebff;
  font-size: 14px;
}

.points li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--cyan);
  font-size: 15px;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.reveal-left {
  transform: translateX(-42px);
}

.scroll-reveal.reveal-right {
  transform: translateX(42px);
}

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

.reveal-delay-80 {
  --reveal-delay: 80ms;
}

.reveal-delay-100 {
  --reveal-delay: 100ms;
}

.reveal-delay-140 {
  --reveal-delay: 140ms;
}

.reveal-delay-160 {
  --reveal-delay: 160ms;
}

.reveal-delay-240 {
  --reveal-delay: 240ms;
}

.section-kicker-light {
  color: rgba(226, 239, 255, 0.8);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 1100px) {
  .typography-layout {
    grid-template-columns: 1fr;
  }

  .experience-panel {
    grid-template-columns: 1fr;
  }

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

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

  .hero-slide-content {
    min-height: 520px;
    padding: 40px 40px 40px 22px;
  }
}

@media (max-width: 860px) {
  .nav,
  .header-cta {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide-content {
    min-height: 500px;
  }

  .hero-slide-content {
    padding: 28px 54px 110px;
    align-items: end;
    justify-content: center;
  }

  .hero-panel {
    margin: 0 auto;
    text-align: center;
  }

  .hero-panel h1 {
    font-size: clamp(22px, 5.4vw, 27px);
    line-height: 1.2;
  }

  .experience-panel {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-slider-controls {
    inset: 0;
    width: 100%;
    padding: 0;
    transform: none;
  }

  .slider-arrow {
    display: inline-grid;
    place-items: center;
    position: absolute;
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    transform: translateY(-50%);
  }

  .slider-dots {
    display: flex;
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 31px;
    transform: translateX(-50%);
  }

  #prevSlide {
    left: 14px;
  }

  #nextSlide {
    right: 14px;
  }

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

  .package-card {
    padding: 18px;
    gap: 14px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 22px;
  }

  .package-title {
    font-size: 18px;
  }

  .package-subtitle {
    font-size: 13px;
    line-height: 1.6;
  }

  .package-card .btn {
    min-height: 44px;
    padding: 0 14px;
  }

  .section {
    padding-bottom: 56px;
  }

  .cta-box {
    padding: 28px;
  }
}
