:root {
  --bg: #f7f9ff;
  --bg-card: rgba(255, 255, 255, 0.8);
  --text: #101828;
  --muted: #667085;
  --primary: #1d4ed8;
  --primary-2: #2563eb;
  --ring: rgba(37, 99, 235, 0.24);
  --border: rgba(23, 92, 230, 0.15);
  --shadow: 0 20px 45px rgba(16, 24, 40, 0.1);
  --section-content-width: 914px;
}

body.dark,
html.dark {
  --bg: #0b1020;
  --bg-card: rgba(17, 25, 44, 0.7);
  --text: #f4f7ff;
  --muted: #c7d2ea;
  --primary: #60a5fa;
  --primary-2: #3b82f6;
  --ring: rgba(96, 165, 250, 0.25);
  --border: rgba(147, 197, 253, 0.2);
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  padding-top: 118px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

input,
button {
  font: inherit;
}

body .container {
  width: min(1120px, 92%);
  max-width: none !important;
  margin: 0 auto;
}

.text-primary {
  color: var(--primary);
}

.text-primary:hover {
  color: var(--primary-2);
}

.blob {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  filter: blur(45px);
  z-index: -2;
}

.blob-1 {
  top: -70px;
  left: -70px;
  background: rgba(37, 99, 235, 0.35);
}

.blob-2 {
  bottom: -90px;
  right: -70px;
  background: rgba(14, 165, 233, 0.3);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
}

body.dark .header,
html.dark .header {
  background: rgba(7, 12, 27, 0.7);
}

.topbar {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.58);
}

body.dark .topbar,
html.dark .topbar {
  background: rgba(7, 12, 27, 0.65);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.topbar-contact,
.topbar-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-contact a,
.topbar-menu a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact a i {
  color: var(--primary);
}

.topbar-contact a:hover,
.topbar-menu a:hover {
  color: var(--text);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

/* .logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  max-width: min(280px, calc(100vw - 132px));
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.88);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.24);
  flex-shrink: 0;
} */

.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.logo .logo-theme-light {
  display: block;
}

.logo .logo-theme-dark {
  display: none;
}

body.dark .logo .logo-theme-light,
html.dark .logo .logo-theme-light {
  display: none;
}

body.dark .logo .logo-theme-dark,
html.dark .logo .logo-theme-dark {
  display: block;
}

.logo span {
  color: var(--primary);
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--primary), #06b6d4);
  box-shadow: 0 0 0 5px var(--ring);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.menu-btn,
.theme-btn {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.25s ease;
}

.menu-btn:hover,
.theme-btn:hover {
  border-color: var(--primary);
}

.menu-btn {
  display: none;
}

.mobile-theme-item {
  display: none;
}

.theme-inline-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.theme-inline-btn:hover {
  border-color: var(--primary);
}

.hero {
  padding: 12px 0 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 34px;
  width: 100%;
  margin-inline: auto;
}

body .hero.container,
body .clients.container {
  width: min(var(--section-content-width), 100%);
}

.hero-content {
  max-width: 650px;
  width: 100%;
}

.hero-card {
  width: 100%;
}

.hero.hero--single {
  grid-template-columns: 1fr;
}

.hero.hero--single .hero-content {
  max-width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--primary);
  font-weight: 600;
  background: var(--bg-card);
}

.hero h1 {
  font-size: clamp(2rem, 2.6vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0;
  min-height: 2.4em;
}

.hero h1 span {
  color: var(--primary-2);
  display: inline-block;
  min-width: 18ch;
  white-space: nowrap;
}

.hero-desc {
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin: 26px 0 28px;
}

.trusted-by {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.trusted-by span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trusted-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 46px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), var(--bg-card));
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.trusted-logo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trusted-logo__image {
  width: 100%;
  height: 54px;
  object-fit: contain;
  display: block;
}

.trusted-logo--placeholder {
  padding-inline: 14px;
}

.trusted-logo--placeholder strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

body.dark .trusted-logo {
  border-color: rgba(96, 165, 250, 0.3);
  background: linear-gradient(150deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.78));
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.36);
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--primary), #0ea5e9);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.22);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: var(--bg-card);
}

.btn-full {
  width: 100%;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  padding: 14px 14px 13px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), var(--bg-card));
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.stat-head {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stat-head i {
  color: var(--primary);
  font-size: 0.8rem;
}

.stat h3 {
  margin: 0;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

body.dark .stat {
  border-color: rgba(96, 165, 250, 0.26);
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.75));
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.38);
}

body.dark .stat-head {
  color: #93a4c4;
}

.event-slider {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  height: 500px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.event-slide {
  display: none;
  height: 100%;
  min-height: 0;
  overflow: visible;
}

.event-slide.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-image {
  width: 100%;
  height: 136px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0;
  border: 1px solid var(--border);
}

.event-tag {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  max-width: max-content;
  margin-top: 10px;
  margin-bottom: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.12);
}

.event-slide h3 {
  margin: 0;
  font-size: 1.45rem;
  /* line-height: 1.32; */
  letter-spacing: -0.01em;
  /* min-height: 2.6em; */
}

.event-slide p {
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
  min-height: 5.1em;
  display: block;
  max-height: none;
  overflow: visible;
}

body.dark .event-slide p {
  color: #d5def1;
}

body.dark .footer-col a:hover {
  color: #f8fbff;
}

.event-meta {
  display: grid;
  gap: 8px;
  min-height: 60px;
  align-content: start;
  margin-top: auto;
  padding-top: 4px;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.event-meta i {
  color: var(--primary);
}

.event-controls {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
}

.event-nav {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
}

.event-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.event-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(100, 116, 139, 0.45);
  cursor: pointer;
}

.event-dot.active {
  width: 24px;
  background: var(--primary);
}

.section {
  padding: 82px 0 20px;
}

.coverage {
  padding-top: 18px;
}

.coverage-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(
      140deg,
      rgba(37, 99, 235, 0.12),
      rgba(14, 165, 233, 0.08)
    ),
    var(--bg-card);
  box-shadow: var(--shadow);
  width: min(var(--section-content-width), 100%);
  margin-inline: auto;
}

.coverage-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: -0.01em;
}

.coverage-card p {
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.72;
}

.coverage-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.coverage-tags span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.45);
}

body.dark .coverage-tags span {
  background: rgba(15, 23, 42, 0.62);
}

.coverage-map {
  margin-top: 16px;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 26px;
}

.section-tag {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--section-content-width), 100%);
  margin-inline: auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(120deg, var(--primary), #0ea5e9);
}

.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.promo-carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-window {
  overflow: hidden;
  border-radius: 18px;
  width: min(var(--section-content-width), 100%);
  padding: 4px 0;
  min-height: 250px;
}

.promo-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.promo-item {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: visible;
  border: 0;
  box-shadow: none;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  opacity: 0.46;
  transform: scale(0.94);
  filter: blur(2px);
  background: transparent;
}

.promo-item.is-left-2,
.promo-item.is-left,
.promo-item.is-active,
.promo-item.is-right,
.promo-item.is-right-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-item.is-left-2 {
  order: 1;
}

.promo-item.is-left {
  order: 2;
}

.promo-item.is-active {
  order: 3;
}

.promo-item.is-right {
  order: 4;
}

.promo-item.is-right-2 {
  order: 5;
}

.promo-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(64vh, 620px);
  object-fit: contain;
  object-position: center center;
  display: block;
  margin-inline: auto;
  margin-block: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
  background: transparent;
}

.promo-item img.js-promo-zoom-image {
  cursor: zoom-in;
}

.promo-item.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  z-index: 4;
}

.promo-item.is-active.is-portrait {
  transform: scale(1.06);
}

.promo-item.is-left-2,
.promo-item.is-right-2 {
  opacity: 0.28;
  transform: scale(0.92);
  z-index: 1;
}

.promo-item.is-left {
  opacity: 0.45;
  transform: scale(0.96);
  z-index: 2;
}

.promo-item.is-right {
  opacity: 0.45;
  transform: scale(0.96);
  z-index: 2;
}

.promo-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
}

.promo-prev {
  left: calc(50% - min(860px, 100%) / 2 - 20px);
}

.promo-next {
  right: calc(50% - min(860px, 100%) / 2 - 20px);
}

.promo-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(var(--section-content-width), 100%);
  gap: 12px;
  margin-inline: auto;
  margin-top: 10px;
  min-height: 30px;
  overflow: hidden;
}

.promo-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.promo-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.35;
  cursor: pointer;
}

.promo-dot.active {
  width: 22px;
  background: var(--primary);
  opacity: 1;
}

.promo-footer a {
  text-decoration: none;
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: right;
}

.promo-footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--section-content-width), 100%);
  margin-inline: auto;
}

.product-showcase-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), var(--bg-card));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-showcase-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.product-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.product-showcase-card:hover .product-showcase-media img {
  transform: scale(1.05);
}

.product-showcase-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 5px 11px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(4px);
}

.product-showcase-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}

.product-showcase-body h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.product-showcase-description,
.product-showcase-description p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.94rem;
}

.product-showcase-actions {
  margin-top: 4px;
}

.product-showcase-actions .btn {
  width: 100%;
  text-align: center;
}

.product-showcase-card--empty {
  grid-column: 1 / -1;
  text-align: center;
  min-height: 180px;
  justify-content: center;
}

body.dark .product-showcase-card {
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.92), var(--bg-card));
}

.product-category-filter {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.product-category-chip {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.product-category-chip:hover {
  border-color: var(--primary);
}

.product-category-chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--primary), #0ea5e9);
}

.product-detail-layout {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.product-detail-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-detail-banner {
  width: 100%;
  display: block;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid var(--border);
}

.product-detail-content {
  padding: 18px;
}

.product-detail-content h1 {
  margin: 8px 0 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.product-detail-category {
  display: inline-flex;
  width: fit-content;
  justify-self: start;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
}

.product-detail-content .product-html-content,
.product-detail-content .product-html-content p {
  color: var(--muted);
  line-height: 1.72;
}

.product-gallery-mini {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-gallery-mini img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.event-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
  width: min(var(--section-content-width), 100%);
  margin-inline: auto;
}

.gallery-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.gallery-card-main {
  grid-row: span 2;
  min-height: 456px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.72));
  color: #fff;
}

.gallery-caption h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
}

.gallery-caption p {
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.gallery-actions {
  width: min(var(--section-content-width), 100%);
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
}

/* .events-page-main {
  padding-top: 118px;
} */

.events-hero {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 10px;
}

.events-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.events-hero p {
  margin: 0;
  /* color: var(--muted); */
}

.all-events-grid {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card-full {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.event-card-full img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.event-card-full__body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.event-card-full__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--primary);
}

.event-card-full__body h3 {
  margin: 0;
  font-size: 1.06rem;
}

.event-card-full__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.events-pagination {
  width: min(var(--section-content-width), 100%);
  margin: 28px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.events-pagination__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Link nomor halaman (bukan Prev / Next; ellipsis tetap span) */
.events-pagination > a.events-pagination__btn:not(:first-child):not(:last-child) {
  min-width: 48px;
  min-height: 48px;
  padding: 0 12px;
}

.events-pagination > span.events-pagination__btn.is-active {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
}

.events-pagination > span.events-pagination__btn.is-disabled:not(.is-active) {
  min-width: 44px;
  min-height: 48px;
  padding: 0 10px;
  font-weight: 700;
}

/* Prev / Next */
.events-pagination > .events-pagination__btn:first-child,
.events-pagination > a.events-pagination__btn:first-child,
.events-pagination > .events-pagination__btn:last-child,
.events-pagination > a.events-pagination__btn:last-child {
  min-width: 92px;
  width: auto;
  padding: 0 20px;
}

.events-pagination a.events-pagination__btn {
  text-decoration: none;
}

.events-pagination__btn:hover:not(:disabled):not(.is-disabled):not(.is-active) {
  border-color: var(--primary-2);
  color: var(--primary-2);
  box-shadow: 0 0 0 1px var(--ring);
}

body.dark .events-pagination__btn:hover:not(:disabled):not(.is-disabled):not(.is-active) {
  color: #fff;
  border-color: rgba(147, 197, 253, 0.45);
  box-shadow: none;
}

.events-pagination__btn:disabled,
.events-pagination__btn.is-disabled {
  color: var(--muted);
  border-color: var(--border);
  background: transparent;
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

body.dark .events-pagination__btn:disabled,
body.dark .events-pagination__btn.is-disabled {
  opacity: 0.42;
}

.events-pagination__btn.is-active {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px var(--ring);
  cursor: default;
  pointer-events: none;
}

body.dark .events-pagination__btn.is-active {
  background: var(--primary-2);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.event-card-link {
  margin-top: 4px;
  width: fit-content;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 10px;
}

.event-detail-hero {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.event-detail-hero.is-portrait {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: start;
}

.event-detail-media {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.event-detail-media img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.event-detail-hero.is-portrait .event-detail-media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.event-detail-hero.is-portrait .event-detail-media {
  height: clamp(360px, 56vh, 520px);
}

.event-detail-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1), transparent 48%), var(--bg-card);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.event-detail-panel h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.22;
}

.event-detail-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.event-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-detail-meta span i {
  color: var(--primary);
}

.event-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.event-detail-layout {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
}

.event-detail-card {
  width: min(var(--section-content-width), 100%);
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  padding: 18px;
}

.event-detail-card h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.event-detail-card p, .event-detail-card ul, .event-detail-card ol {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.event-detail-card ol li, .event-detail-card ul li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 22px;
}

.event-detail-card ol li::before, .event-detail-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.02em;
}

.event-highlights {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 0;
}

.event-highlights li {
  list-style: none;
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.event-highlights li i {
  color: var(--primary);
  margin-top: 3px;
}

.event-rundown {
  display: grid;
  gap: 10px;
}

.event-rundown-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}

.event-rundown-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.event-rundown-time {
  font-weight: 700;
  color: var(--primary);
}

.event-rundown-item p {
  margin: 2px 0 0;
}

.event-gallery-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.event-gallery-mini img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: zoom-in;
}

.event-image-viewer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1320;
}

.event-image-viewer.open {
  display: block;
}

.event-image-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(3px);
}

.event-image-viewer__content {
  position: relative;
  width: min(960px, 94vw);
  margin: 4vh auto 0;
  max-height: 92vh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.5);
  background: #020617;
}

.event-image-viewer__content img {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  display: block;
}

.event-image-viewer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e2e8f0;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.event-image-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #e2e8f0;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.event-image-viewer__nav.is-prev {
  left: 10px;
}

.event-image-viewer__nav.is-next {
  right: 10px;
}

.about-layout {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.about-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  padding: 18px;
}

.about-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-points {
  margin: 12px 0 0;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.about-points li {
  list-style: none;
  color: var(--muted);
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.about-points li i {
  color: var(--primary);
  margin-top: 3px;
}

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

.about-metric {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: rgba(37, 99, 235, 0.06);
}

.about-metric strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.2;
}

.about-metric span {
  display: block;
  margin-top: 4px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
}

.contact-layout {
  width: min(var(--section-content-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  padding: 18px;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.contact-list li i {
  color: var(--primary);
  margin-top: 3px;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

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

.contact-social {
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.05);
}

.contact-social i {
  color: var(--primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 290px));
  justify-content: center;
  gap: 22px;
}

.price-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), var(--bg-card));
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 20px;
  padding: 16px 14px 18px;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.price-card.popular {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-6px);
  padding: 20px 16px 22px;
  min-height: 548px;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.22);
}

.popular-label {
  position: absolute;
  right: -14px;
  top: 30px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 4px 11px;
  max-width: calc(100% - 14px);
  white-space: nowrap;
  border-radius: 5px;
  transform: rotate(27deg) translateX(8px);
  transform-origin: top right;
  border: 1px solid rgba(161, 98, 7, 0.28);
  background: linear-gradient(135deg, #fef08a 0%, #facc15 55%, #f59e0b 100%);
  color: #4a3203;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow:
    0 10px 18px rgba(245, 158, 11, 0.28),
    0 4px 10px rgba(30, 41, 59, 0.12);
}

.popular-label::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.54rem;
  line-height: 1;
  color: rgba(74, 50, 3, 0.9);
}

body.dark .popular-label {
  border-color: rgba(250, 204, 21, 0.4);
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  color: #2f1f00;
  box-shadow:
    0 10px 18px rgba(250, 204, 21, 0.22),
    0 4px 10px rgba(2, 6, 23, 0.22);
}

@media (max-width: 620px) {
  .popular-label {
    top: 24px;
    right: -12px;
    font-size: 0.58rem;
    padding: 4px 10px;
  }

  .trusted-logo {
    max-width: 90px !important;
    min-width: unset;
  }
}

.speed-badge {
  position: relative;
  z-index: 7;
  --meter-start: 210deg;
  --meter-sweep: 300deg;
  --speed-progress-val: var(--speed-progress, 200deg);
  --meter-fill-start: #22d3ee;
  --meter-fill-end: #1d4ed8;
  --meter-track: #dfe8fb;
  --needle-from: rgba(37, 99, 235, 0);
  --needle-mid: #2563eb;
  --needle-to: #06b6d4;
  --needle-glow: rgba(14, 165, 233, 0.42);
  width: 132px;
  height: 132px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1px;
  text-align: center;
  padding-top: 6px;
  margin-top: -48px;
  margin-bottom: 12px;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid rgba(191, 219, 254, 0.9);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.985) 58%, transparent 59%),
    radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08) 0 4px, transparent 5px),
    conic-gradient(from var(--meter-start), rgba(255, 255, 255, 0.55) 0deg, rgba(255, 255, 255, 0) 36deg),
    conic-gradient(
      from var(--meter-start),
      var(--meter-fill-start) 0deg,
      var(--meter-fill-end) var(--speed-progress-val),
      var(--meter-track) var(--speed-progress-val),
      var(--meter-track) var(--meter-sweep),
      rgba(223, 232, 251, 0) var(--meter-sweep),
      rgba(223, 232, 251, 0) 360deg
    );
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.2),
    inset 0 2px 6px rgba(255, 255, 255, 0.7);
}

.speed-badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from var(--meter-start),
    rgba(37, 99, 235, 0.34) 0deg 1.8deg,
    transparent 1.8deg 12deg
  );
  -webkit-mask: radial-gradient(circle, transparent 0 61%, #000 62% 76%, transparent 77%);
  mask: radial-gradient(circle, transparent 0 61%, #000 62% 76%, transparent 77%);
  opacity: 0.55;
  z-index: 1;
}

.speed-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 2.8px;
  border-radius: 999px;
  transform-origin: 0 50%;
  transform: translateY(-50%) rotate(calc(var(--meter-start) + var(--speed-progress-val) - 90deg));
  background: linear-gradient(90deg, var(--needle-from), var(--needle-mid) 55%, var(--needle-to) 100%);
  box-shadow: 0 0 10px var(--needle-glow);
  z-index: 2;
}

.price-card.popular .speed-badge {
  --meter-fill-start: #fde68a;
  --meter-fill-end: #f59e0b;
  --meter-track: #fef3c7;
  --needle-from: rgba(245, 158, 11, 0);
  --needle-mid: #f59e0b;
  --needle-to: #facc15;
  --needle-glow: rgba(250, 204, 21, 0.42);
}

.price-card.popular .speed-badge span {
  color: #a16207;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.78),
    0 0 10px rgba(250, 204, 21, 0.25);
}

.price-card.popular .speed-badge strong {
  color: #c2410c;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86),
    0 7px 12px rgba(194, 65, 12, 0.28),
    0 0 12px rgba(250, 204, 21, 0.22);
}

.price-card.popular .speed-badge em {
  color: #b45309;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 10px rgba(245, 158, 11, 0.24);
}

.speed-badge span {
  position: relative;
  z-index: 3;
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.038em;
  text-transform: lowercase;
  color: #475569;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}

.speed-badge strong {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: 1px;
  color: #1e3a8a;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.015em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82),
    0 6px 12px rgba(37, 99, 235, 0.12);
  font-variant-numeric: tabular-nums;
}

.speed-badge em {
  position: relative;
  z-index: 3;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1d4ed8;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.package-name {
  margin: 0 0 12px;
  color: #1f4f87;
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.single-price {
  margin: 0 0 20px;
  color: #1f4f87;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 800;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
}

.price-meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.price-last {
  font-size: 0.68rem;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 2px;
}

.price-period {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 700;
}

.spec-stack {
  width: 100%;
  margin-bottom: 14px;
}

.spec-item {
  margin-bottom: 10px;
}

.spec-item {
  margin: 0;
  margin-inline: 20px;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.68;
}

.spec-item p, .spec-item ul {
  margin: 0;
  margin-inline: 24px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.68;
}

.spec-item ol, .spec-item ul {
  margin: 0;
  padding-left: 0;
  color: #000000;
  font-size: 0.93rem;
  list-style: none;
}

.spec-item ol li, .spec-item ul li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 22px;
}

.spec-item ol li::before, .spec-item ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.02em;
}

.spec-item-2 {
  margin-bottom: 10px;
}

.spec-item-2 {
  margin: 0;
  margin-inline: 20px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.68;
}

.spec-item-2 p, .spec-item-2 ul {
  margin: 0;
  margin-inline: 24px;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.68;
}

.spec-item-2 ol, .spec-item-2 ul {
  margin: 0;
  padding-left: 0;
  color: #475569;
  font-size: 0.93rem;
  list-style: none;
}

.spec-item-2 ol li, .spec-item-2 ul li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 22px;
}

.spec-item-2 ol li::before, .spec-item-2 ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.02em;
}

.spec-item-3 {
  margin-bottom: 10px;
}

.spec-item-3 {
  margin: 0;
  /* margin-inline: 20px; */
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.spec-item-3 p, .spec-item-3 ul {
  margin: 0;
  /* margin-inline: 24px; */
  font-size: 0.95rem;
  line-height: 1.68;
}

.spec-item-3 ol, .spec-item-3 ul {
  margin: 0;
  padding-left: 0;
  font-size: 0.93rem;
  list-style: none;
}

.spec-item-3 ol li, .spec-item-3 ul li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 22px;
}

.spec-item-3 ol li::before, .spec-item-3 ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.02em;
}

.spec-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: #0f172a;
  font-weight: 700;
}

.spec-title i {
  color: var(--primary);
}

.package-services {
  margin: 0;
  padding-left: 0;
  color: #475569;
  font-size: 0.93rem;
  list-style: none;
}

.package-services li {
  margin-bottom: 2px;
  position: relative;
  padding-left: 22px;
}

.package-services li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.02em;
}

.price-card .btn-full {
  border-radius: 999px;
  padding-block: 8px;
  width: 100%;
}

.package-actions {
  margin-top: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.package-actions .btn {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 8px 10px;
  min-height: 36px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.package-actions .btn-primary {
  background: linear-gradient(125deg, #1d4ed8, #06b6d4);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.22);
}

.package-actions .btn-primary:hover {
  transform: none;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
  filter: saturate(1.08);
}

.package-actions .btn-ghost {
  border-color: rgba(29, 78, 216, 0.35);
  background: rgba(37, 99, 235, 0.08);
}

.package-actions .btn-ghost:hover {
  transform: none;
  border-color: rgba(29, 78, 216, 0.6);
  background: rgba(37, 99, 235, 0.16);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.14);
}

.package-actions .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
}

.terms-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: #0891b2;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

.package-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1200;
}

.package-modal.open {
  display: block;
}

.package-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.56);
  backdrop-filter: blur(2px);
}

.package-modal__content {
  position: relative;
  width: min(640px, 92%);
  margin: 7vh auto 0;
  background: #fff;
  color: #0f172a;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.35);
  padding: 20px;
  max-height: 86vh;
  overflow: auto;
}

.booking-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1250;
}

.booking-modal.open {
  display: block;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.56);
  backdrop-filter: blur(2px);
}

.booking-modal__content {
  position: relative;
  width: min(620px, 92%);
  margin: 8vh auto 0;
  background: #fff;
  color: #0f172a;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.35);
  padding: 20px;
  max-height: 84vh;
  overflow: auto;
}

.promo-image-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1300;
}

.promo-image-modal.open {
  display: block;
}

.promo-image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(2px);
}

.promo-image-modal__content {
  position: relative;
  width: min(1100px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  border-radius: 16px;
  padding: 40px 14px 14px;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

.promo-image-modal__content img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 80px);
  object-fit: contain;
  object-position: center center;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.5);
  background: rgba(15, 23, 42, 0.25);
}

.promo-image-modal__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.45);
  background: rgba(15, 23, 42, 0.76);
  color: #f8fafc;
  cursor: pointer;
}

.booking-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
}

.booking-modal__subtitle {
  margin: 6px 0 14px;
  color: #64748b;
}

.booking-form {
  display: grid;
  gap: 10px;
}

.booking-form__row {
  display: grid;
  gap: 6px;
}

.booking-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

.booking-form input,
.booking-form textarea {
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #0f172a;
  outline: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

body.dark .booking-modal__content {
  background: #0f172a;
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.4);
}

body.dark .booking-modal__subtitle {
  color: #94a3b8;
}

body.dark .booking-form label {
  color: #dbeafe;
}

body.dark .booking-form input,
body.dark .booking-form textarea {
  background: rgba(30, 41, 59, 0.85);
  color: #e2e8f0;
  border-color: rgba(148, 163, 184, 0.45);
}

.package-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
}

.package-modal__content h3 {
  margin: 0 0 10px;
  padding-right: 42px;
}

.modal-subtitle {
  margin: 0 0 10px;
  color: #475569;
}

.modal-highlight {
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
  padding: 12px;
  margin-bottom: 12px;
}

.modal-speed-box {
  border: 1px solid rgba(37, 99, 235, 0.26);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.08));
  padding: 14px;
  margin-bottom: 10px;
}

.modal-speed-box h4 {
  margin: 0;
  color: #1d4ed8;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.modal-speed-box p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.modal-divider {
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  margin: 12px 0;
}

.modal-block-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #1e293b;
}

.modal-list {
  margin: 0;
  padding-left: 0;
  color: #334155;
  list-style: none;
}

.modal-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
}

.modal-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.02em;
}

.modal-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #64748b;
}

.modal-device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.modal-device-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  padding: 8px 10px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.9rem;
}

.modal-device-chip i {
  color: #0ea5e9;
}

.modal-usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.modal-usage-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
}

.modal-usage-chip i {
  color: #2563eb;
}

body.dark .price-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.94), var(--bg-card));
}

body.dark .speed-badge {
  --meter-fill-start: #22d3ee;
  --meter-fill-end: #60a5fa;
  --meter-track: rgba(148, 163, 184, 0.26);
  --needle-from: rgba(96, 165, 250, 0);
  --needle-mid: #60a5fa;
  --needle-to: #22d3ee;
  --needle-glow: rgba(34, 211, 238, 0.38);
  border-color: rgba(148, 163, 184, 0.4);
  background:
    radial-gradient(circle at center, #0f172a 58%, transparent 59%),
    radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.22) 0 4px, transparent 5px),
    conic-gradient(from var(--meter-start), rgba(255, 255, 255, 0.2) 0deg, rgba(255, 255, 255, 0) 36deg),
    conic-gradient(
      from var(--meter-start),
      var(--meter-fill-start) 0deg,
      var(--meter-fill-end) var(--speed-progress-val),
      var(--meter-track) var(--speed-progress-val),
      var(--meter-track) var(--meter-sweep),
      rgba(148, 163, 184, 0) var(--meter-sweep),
      rgba(148, 163, 184, 0) 360deg
    );
  box-shadow:
    0 14px 28px rgba(2, 6, 23, 0.45),
    inset 0 2px 5px rgba(255, 255, 255, 0.08);
}

body.dark .speed-badge::before {
  opacity: 0.45;
  background: repeating-conic-gradient(
    from var(--meter-start),
    rgba(148, 163, 184, 0.45) 0deg 1.8deg,
    transparent 1.8deg 12deg
  );
}

body.dark .speed-badge::after {
  background: linear-gradient(90deg, var(--needle-from), var(--needle-mid) 58%, var(--needle-to) 100%);
  box-shadow: 0 0 10px var(--needle-glow);
}

body.dark .price-card.popular .speed-badge {
  --meter-fill-start: #fef08a;
  --meter-fill-end: #f59e0b;
  --meter-track: rgba(245, 158, 11, 0.2);
  --needle-from: rgba(245, 158, 11, 0);
  --needle-mid: #f59e0b;
  --needle-to: #fde68a;
  --needle-glow: rgba(250, 204, 21, 0.34);
}

body.dark .price-card.popular .speed-badge span {
  color: #fef08a;
}

body.dark .price-card.popular .speed-badge strong {
  color: #fde68a;
  text-shadow:
    0 1px 0 rgba(15, 23, 42, 0.62),
    0 8px 14px rgba(2, 6, 23, 0.48),
    0 0 12px rgba(250, 204, 21, 0.25);
}

body.dark .price-card.popular .speed-badge em {
  color: #fbbf24;
}

body.dark .speed-badge strong,
body.dark .package-name,
body.dark .single-price {
  color: #dbeafe;
}

body.dark .speed-badge span {
  color: #dbe7ff;
  text-shadow: none;
}

body.dark .speed-badge strong {
  color: #f1f5ff;
  text-shadow:
    0 1px 0 rgba(15, 23, 42, 0.55),
    0 8px 14px rgba(15, 23, 42, 0.5);
}

body.dark .speed-badge em {
  color: #a5d8ff;
  text-shadow: none;
}

body.dark .price-period {
  color: #9ec5ff;
}

body.dark .spec-item p,
body.dark .package-services {
  color: #cbd5e1;
}

body.dark .spec-item ol,
body.dark .spec-item ul {
  color: #cbd5e1;
}

body.dark .spec-title {
  color: #f8fbff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--section-content-width), 100%);
  margin-inline: auto;
}

.process-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  width: max-content;
  height: 34px;
  padding-inline: 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(120deg, var(--primary), #06b6d4);
}

.process-card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.testimonial-wrap {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 28px;
  text-align: center;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.testimonial h4 {
  margin: 16px 0 2px;
}

.testimonial span {
  color: var(--primary);
  font-size: 0.92rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 22px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.5);
  border: 0;
  cursor: pointer;
}

.dot.active {
  width: 24px;
  background: var(--primary);
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(var(--section-content-width), 100%);
  margin-inline: auto;
}

.faq-item {
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), var(--bg-card));
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  padding: 0 18px 18px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 150px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.13);
}

.cta {
  margin: 82px auto;
  text-align: center;
  padding: 46px 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(
      140deg,
      rgba(37, 99, 235, 0.18),
      rgba(14, 165, 233, 0.14)
    ),
    var(--bg-card);
  box-shadow: var(--shadow);
  width: min(var(--section-content-width), 100%);
}

.cta h2 {
  margin-top: 0;
}

.cta p {
  color: var(--muted);
  margin: 0 auto 18px;
  max-width: 55ch;
}

.cta-form {
  width: min(560px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.cta-form input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--bg-card);
  color: var(--text);
  outline: none;
}

.cta-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}

.clients {
  margin: 82px auto;
  text-align: center;
  padding: 42px 22px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 24px;
  background: linear-gradient(
      140deg,
      rgba(37, 99, 235, 0.14),
      rgba(14, 165, 233, 0.1)
    ),
    var(--bg-card);
  box-shadow:
    0 20px 42px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  width: min(var(--section-content-width), 100%);
}

.clients h2 {
  margin: 0 0 8px;
}

.clients p {
  color: var(--muted);
  margin: 0 auto 20px;
  max-width: 64ch;
  line-height: 1.72;
}

.client-slider {
  display: grid;
  gap: 12px;
}

.client-row {
  overflow: hidden;
  border-radius: 16px;
  padding: 6px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation-duration: 22s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.client-row-left .client-track {
  animation-name: clientSlideLeft;
}

.client-row-right .client-track {
  animation-name: clientSlideRight;
}

.client-logo {
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 185px;
  margin-right: 12px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.client-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.16);
}

.client-logo span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), #06b6d4);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.24);
}

.client-logo h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
}

.client-logo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.client-logo__image {
  width: 100%;
  height: 80px;
  object-fit: contain;
  display: block;
}

body.dark .faq-item {
  border-color: rgba(96, 165, 250, 0.28);
  background: linear-gradient(165deg, rgba(30, 41, 59, 0.92), var(--bg-card));
  box-shadow: 0 14px 26px rgba(2, 6, 23, 0.42);
}

body.dark .faq-item:hover,
body.dark .faq-item.active {
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.3);
}

body.dark .clients {
  border-color: rgba(96, 165, 250, 0.28);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.26), rgba(14, 165, 233, 0.18)), var(--bg-card);
  box-shadow:
    0 20px 42px rgba(2, 6, 23, 0.45),
    inset 0 1px 0 rgba(148, 163, 184, 0.12);
}

body.dark .client-row {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.28));
  border-color: rgba(148, 163, 184, 0.26);
}

body.dark .client-logo {
  border-color: rgba(96, 165, 250, 0.3);
  background: linear-gradient(170deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.7));
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.4);
}

body.dark .client-logo:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 14px 24px rgba(37, 99, 235, 0.35);
}

@keyframes clientSlideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes clientSlideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.footer {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: linear-gradient(
      170deg,
      rgba(37, 99, 235, 0.06),
      rgba(14, 165, 233, 0.03)
    ),
    var(--bg-card);
  backdrop-filter: blur(8px);
}

.footer-top {
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 26px;
}

.footer-brand p {
  color: var(--muted);
  margin: 14px 0 16px;
  max-width: 42ch;
  line-height: 1.72;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-col p i {
  color: var(--primary);
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 14px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.36);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (max-width: 960px) {
  .menu-btn {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .theme-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-theme-item {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    max-width: none;
  }

  .grid-3,
  .pricing-grid,
  .process-grid,
  .product-showcase-grid,
  .event-gallery,
  .all-events-grid {
    grid-template-columns: 1fr;
  }

  .event-detail-hero,
  .event-detail-hero.is-portrait,
  .event-detail-layout,
  .product-detail-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .event-detail-media img {
    min-height: 220px;
  }

  .event-detail-hero.is-portrait .event-detail-media {
    height: clamp(260px, 48vh, 420px);
  }

  .client-logo {
    min-width: 165px;
  }

  .gallery-card-main {
    min-height: 260px;
  }

  .promo-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .coverage-map {
    height: 280px;
  }

  .promo-window {
    min-height: 0;
    padding: 0;
  }

  .promo-prev {
    left: 6px;
  }

  .promo-next {
    right: 6px;
  }

  .promo-item {
    display: none;
    transform: scale(1);
    opacity: 0;
    filter: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 14px;
    overflow: visible;
  }

  .promo-item.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
    z-index: 3;
  }

  .promo-item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(62vh, 420px);
    object-fit: contain;
    object-position: center center;
    margin-inline: auto;
    margin-block: auto;
    aspect-ratio: auto;
    border-radius: 14px;
    box-shadow: var(--shadow);
    background: transparent;
  }

  .promo-item.is-left-2,
  .promo-item.is-left,
  .promo-item.is-right,
  .promo-item.is-right-2 {
    display: none;
    opacity: 0;
    transform: none;
  }

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

@media (max-width: 620px) {
  body {
    padding-top: 154px;
  }

  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    padding-block: 6px;
    gap: 6px;
  }

  .topbar-contact {
    order: 1;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .topbar-contact a {
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .topbar-menu {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 8px 12px;
  }

  body .container {
    width: 100%;
    padding-inline: 18px;
  }

  body .clients.container {
    width: min(var(--section-content-width), calc(100% - 28px));
    padding-inline: 16px;
  }

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

  /* .hero-cta {
    flex-direction: column;
  } */

  /* .hero {
    padding-top: 74px;
  } */

  .cta-form {
    grid-template-columns: 1fr;
  }

  .promo-carousel {
    gap: 8px;
  }

  .promo-window {
    min-height: 0;
  }

  .promo-footer {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-inline: 4px;
  }

  .promo-footer a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .promo-dots {
    justify-content: center;
  }

  .promo-nav {
    width: 34px;
    height: 34px;
  }

  .client-track {
    animation-duration: 18s;
  }

  .client-logo {
    min-width: 150px;
    padding: 10px 12px;
  }

  .promo-prev {
    left: 6px;
  }

  .promo-next {
    right: 6px;
  }

  .coverage-map {
    height: 230px;
  }

  .modal-device-grid,
  .modal-usage-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 span {
    min-width: 14ch;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .section-head h2 {
    line-height: 1.3;
  }

  .event-image {
    height: 120px;
  }

  .event-slide h3 {
    font-size: 1.34rem;
    min-height: 2.58em;
  }

  .event-slide p {
    max-height: 6.2em;
  }

  .event-slider {
    height: 468px;
    min-height: 468px;
  }

  .event-slide {
    height: 100%;
    min-height: 0;
  }

  .pricing-grid {
    row-gap: 58px;
  }

  .speed-badge {
    width: 122px;
    height: 122px;
  }

  .speed-badge strong {
    font-size: 1.85rem;
  }

  .package-name {
    font-size: 1.7rem;
  }

  .price-metrics {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top > .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-top > .footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 621px) and (max-width: 960px) {
  body .container {
    width: min(1120px, calc(100% - 72px)) !important;
  }

  .hero {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: start;
    gap: 22px;
    padding-top: 16px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  }

  .hero-desc {
    max-width: 44ch;
  }

  .grid-3,
  .process-grid,
  .product-showcase-grid,
  .event-gallery,
  .all-events-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-card-main {
    grid-row: span 2;
    min-height: 420px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    justify-content: center;
    gap: 18px;
  }

  .price-card {
    min-height: 520px;
  }

  .footer-top {
    gap: 22px;
  }
}

@media (max-width: 420px) {
  body {
    padding-top: 160px;
  }

  .topbar-inner {
    min-height: 44px;
    padding-block: 6px;
  }

  .topbar-contact {
    gap: 8px;
  }

  .topbar-contact a {
    font-size: 0.74rem;
  }

  .topbar-menu {
    gap: 8px 10px;
  }

  .topbar-menu a {
    font-size: 0.78rem;
  }

  .about-metrics {
    grid-template-columns: 1fr;
  }

  .contact-socials {
    grid-template-columns: 1fr;
  }

  body .container {
    width: 100%;
    padding-inline: 16px;
  }

  body .clients.container {
    width: min(var(--section-content-width), calc(100% - 20px));
    padding-inline: 14px;
  }

  .pricing-grid {
    row-gap: 52px;
  }

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

  .hero h1 span {
    min-width: 0;
    white-space: normal;
  }

  .nav {
    min-height: 68px;
  }

  .logo {
    max-width: min(250px, calc(100vw - 104px));
    padding: 3px 8px;
  }

  .logo img {
    max-height: 40px;
  }

  .package-modal__content {
    width: 94%;
    margin-top: 4vh;
    padding: 16px;
  }

  .package-actions {
    grid-template-columns: 1fr;
  }

  .client-logo {
    min-width: 138px;
  }
}

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

  .tilt-card {
    transform: none !important;
  }
}
