:root {
  --bg: #040404;
  --bg-deep: #070709;
  --panel: rgba(14, 14, 18, 0.96);
  --panel-strong: rgba(10, 10, 14, 0.98);
  --text: #f5f5f5;
  --muted: #c9c9cf;
  --muted-soft: rgba(255, 255, 255, 0.62);
  --red: #d8181f;
  --red-deep: #8f1015;
  --red-bright: #ff3838;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff4d4d;
  --shadow: 0 28px 64px rgba(0, 0, 0, 0.48);
  --shell: min(1180px, calc(100% - 2rem));
}

/* Reset / base */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 14%, rgba(216, 24, 31, 0.16), transparent 22%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.05), transparent 16%),
    radial-gradient(circle at 50% 100%, rgba(216, 24, 31, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(216, 24, 31, 0.11), transparent 20%),
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.02), transparent 24%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

/* Layout */
.site-shell { position: relative; isolation: isolate; }
.shell { width: var(--shell); margin: 0 auto; }
.section { position: relative; padding: 5rem 0; }
.eyebrow {
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-heading { max-width: 860px; margin-bottom: 1.6rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2, .hero h1, .cta-panel h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.04em;
}
.section-heading h2 { font-size: clamp(2.3rem, 6vw, 5rem); }
.section-heading__copy {
  max-width: 700px;
  margin: 0.95rem auto 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 1.02rem;
}

/* Header / hero */
.topbar {
  position: relative;
  z-index: 20;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.66) 70%, rgba(0, 0, 0, 0));
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0 0.9rem;
}
.brand { width: clamp(86px, 10vw, 124px); transition: transform 180ms ease; }
.brand:hover { transform: scale(1.04); }
.topnav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.55rem; }
.topnav__link {
  min-width: 168px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.6rem;
  background: linear-gradient(180deg, #b31a20 0%, #931217 100%);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  transition: transform 180ms ease, background 180ms ease;
}
.topnav__link:hover, .topnav__link:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #b4181f, var(--red-bright));
}
.topnav__link--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.4rem;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.94)),
    url("../../pics/BG.png") center/cover no-repeat;
  filter: saturate(0.78) contrast(1.05);
}
.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.8)),
    linear-gradient(90deg, rgba(216, 24, 31, 0.14), transparent 42%);
}
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 130px 130px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 72%);
  opacity: 0.3;
}
.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.82;
}
.hero__glow--left {
  top: 5rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(216, 24, 31, 0.22);
}
.hero__glow--right {
  right: -8rem;
  bottom: 1rem;
  width: 26rem;
  height: 26rem;
  background: rgba(255, 255, 255, 0.05);
}
.hero__inner {
  display: grid;
  gap: 1.4rem;
  min-height: min(74vh, 780px);
  align-content: center;
}
.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--muted-soft);
  font-size: 0.95rem;
}
.breadcrumb a { transition: color 160ms ease; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--text); }
.hero__copy { max-width: 760px; padding: 1.8rem 0; }
.hero h1 { font-size: clamp(3.7rem, 10vw, 8rem); }
.hero__lead {
  max-width: 48rem;
  margin-top: 1rem;
  color: var(--text);
  font-size: clamp(1.08rem, 2.2vw, 1.38rem);
  line-height: 1.45;
}
.hero__support {
  max-width: 46rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(18, 18, 22, 0.88), rgba(10, 10, 14, 0.82)),
    radial-gradient(circle at 50% 0, rgba(216, 24, 31, 0.12), transparent 56%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

/* Premium strip */
.premium-strip {
  padding-top: 1.25rem;
}
.premium-strip__inner {
  display: grid;
  gap: 1rem;
}
.premium-strip__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(16, 16, 19, 0.9), rgba(8, 8, 10, 0.82)),
    radial-gradient(circle at 100% 0, rgba(216, 24, 31, 0.12), transparent 32%);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.premium-strip__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red-bright), transparent 78%);
}
.premium-strip__index {
  display: inline-flex;
  align-items: flex-start;
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.premium-strip__item h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.premium-strip__item p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Buttons */
.button {
  min-width: 196px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 18px;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:focus-visible, .topnav__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}
.button--primary {
  background: linear-gradient(90deg, #a5141b, var(--red-bright));
  box-shadow: 0 18px 40px rgba(216, 24, 31, 0.28);
}
.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Packages */
.packages__grid { display: grid; gap: 1.1rem; }
.packages__note {
  margin-top: 0.95rem;
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.6rem 1.3rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 15, 18, 0.98), rgba(8, 8, 10, 0.96)),
    radial-gradient(circle at 50% 0, rgba(216, 24, 31, 0.08), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.package-card .button {
  position: relative;
  z-index: 2;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(216, 24, 31, 0.18), transparent 32%);
  pointer-events: none;
}
.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.06), transparent 16%),
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.02) 34%, rgba(255, 255, 255, 0.12) 46%, rgba(255, 255, 255, 0.03) 58%, transparent 74%),
    radial-gradient(circle at 50% 120%, rgba(216, 24, 31, 0.08), transparent 38%);
  transform: translateX(-128%) skewX(-14deg) scale(1.02);
  transition: transform 760ms ease, opacity 360ms ease;
  pointer-events: none;
  opacity: 0.72;
}
.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 24, 31, 0.34);
  box-shadow: 0 32px 56px rgba(0, 0, 0, 0.45), 0 0 26px rgba(216, 24, 31, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}
.package-card:hover::after {
  transform: translateX(126%) skewX(-14deg) scale(1.02);
  opacity: 1;
}
.package-card > * { position: relative; z-index: 1; }
.package-card--featured {
  border-color: rgba(216, 24, 31, 0.32);
  box-shadow: 0 34px 60px rgba(0, 0, 0, 0.48), 0 0 34px rgba(216, 24, 31, 0.16);
}
.package-card--ultimate {
  background:
    linear-gradient(180deg, rgba(12, 12, 16, 0.98), rgba(7, 7, 9, 0.98)),
    radial-gradient(circle at 50% 0, rgba(216, 24, 31, 0.12), transparent 44%);
}
.package-card__badge {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(216, 24, 31, 0.18);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.package-card__badge--floating {
  width: fit-content;
  margin: auto auto 0.75rem;
}
.package-card__head { position: relative; margin-bottom: 1.2rem; padding-right: 8.9rem; }
.package-card__kicker {
  color: var(--red-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.package-card h3 {
  margin-top: 0.38rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.package-card__price {
  position: absolute;
  top: 0.05rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.1rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}
.package-card__lead { margin-top: 0.9rem; color: var(--muted); line-height: 1.55; }
.package-card__head::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--red-bright), transparent);
}
.package-card__list {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 1.3rem;
  list-style: none;
}
.package-card__list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text);
  line-height: 1.45;
}
.package-card__list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  box-shadow: 0 0 16px rgba(216, 24, 31, 0.32);
}
.package-card__cta { margin-top: auto; }
.package-card--featured .package-card__cta { margin-top: 0; }

/* Comparison */
.comparison-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.35rem;
}
.comparison-scroll::-webkit-scrollbar {
  height: 10px;
}
.comparison-scroll::-webkit-scrollbar-thumb {
  background: rgba(216, 24, 31, 0.34);
  border-radius: 999px;
}
.comparison-table {
  display: grid;
  min-width: 920px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.97), rgba(8, 8, 10, 0.95));
  box-shadow: var(--shadow);
}
.comparison-table__header,
.comparison-table__row {
  display: grid;
  grid-template-columns: minmax(320px, 1.7fr) repeat(3, minmax(140px, 1fr));
  align-items: center;
}
.comparison-table__header {
  background: linear-gradient(90deg, rgba(216, 24, 31, 0.22), rgba(216, 24, 31, 0.05));
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-table__row:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.comparison-table__header > span,
.comparison-table__row > span {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.comparison-table__service {
  text-align: left !important;
  color: var(--text);
  display: grid;
  gap: 0.16rem;
}
.comparison-table__service-name {
  font-weight: 600;
  font-size: 1rem;
}
.comparison-table__service-note {
  color: var(--muted-soft);
  font-size: 0.83rem;
  line-height: 1.35;
}
.comparison-table__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  color: var(--accent);
  font-size: 1.18rem;
  font-weight: 700;
}
.comparison-table__mark--muted { color: rgba(255, 255, 255, 0.24); }
.comparison-mobile {
  display: grid;
  gap: 1rem;
}
.comparison-mobile__card {
  padding: 1.25rem 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 16, 18, 0.92), rgba(8, 8, 10, 0.82));
  box-shadow: var(--shadow);
}
.comparison-mobile__card--featured {
  border-color: rgba(216, 24, 31, 0.3);
}
.comparison-mobile__card--ultimate {
  border-color: rgba(255, 255, 255, 0.12);
}
.comparison-mobile__card h3 {
  margin-bottom: 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.comparison-mobile__card ul {
  display: grid;
  gap: 0.7rem;
  list-style: none;
}
.comparison-mobile__card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.comparison-mobile__card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.comparison-mobile__card strong {
  color: var(--text);
  min-width: 1.5rem;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1;
}

/* Difference */
.difference__grid { display: grid; gap: 1rem; }
.difference-card {
  position: relative;
  padding: 1.35rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.94), rgba(8, 8, 10, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.difference-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(216, 24, 31, 0.12), transparent 30%);
  pointer-events: none;
}
.difference-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.6rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.difference-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.55;
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 1.7rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.96), rgba(7, 7, 9, 0.98)),
    radial-gradient(circle at 20% 0, rgba(216, 24, 31, 0.18), transparent 32%);
  box-shadow: var(--shadow);
  text-align: center;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 36%),
    radial-gradient(circle at 100% 0, rgba(216, 24, 31, 0.14), transparent 32%);
  pointer-events: none;
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -35% auto;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(216, 24, 31, 0.18), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.cta-panel h2 {
  margin-top: 0.35rem;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
}
.cta-panel p:last-of-type {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.58;
}
.cta-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

/* Responsive */
@media (min-width: 700px) {
  .premium-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .difference__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-panel__actions { flex-direction: row; justify-content: center; }
}

@media (min-width: 960px) {
  .section { padding: 6rem 0; }
  .hero { padding: 4.8rem 0 5rem; }
  .packages__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .comparison-table > .comparison-table__row:last-child > span {
    border-bottom: 0;
  }
  .comparison-mobile {
    display: none;
  }
}

@media (max-width: 959px) {
  .comparison-scroll {
    display: none;
  }
}

@media (max-width: 699px) {
  .topbar__inner { flex-direction: column; align-items: stretch; }
  .brand { width: 76px; }
  .topnav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .topnav__link {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    clip-path: none;
    border-radius: 16px;
  }
  .hero__copy { text-align: center; }
  .hero__chips { justify-content: center; }
  .hero__actions,
  .cta-panel__actions { flex-direction: column; }
  .button { width: 100%; min-width: 0; }
  .package-card__badge {
    position: static;
    width: fit-content;
    margin-bottom: 1rem;
  }
  .package-card__badge--floating {
    margin: auto auto 0.75rem;
  }
  .package-card__head {
    padding-right: 6.9rem;
  }
  .package-card__price {
    font-size: 1.5rem;
  }
}
