:root {
  --bg: #050505;
  --bg-deep: #09090b;
  --panel: rgba(15, 15, 18, 0.94);
  --panel-soft: rgba(18, 18, 22, 0.88);
  --text: #f5f5f5;
  --muted: #c6c6ca;
  --muted-soft: rgba(255, 255, 255, 0.62);
  --red: #d8181f;
  --red-deep: #9e1218;
  --red-bright: #ff3434;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --success: #ff4a4a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --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: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 24, 31, 0.12), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(216, 24, 31, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 34%);
}

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: 820px;
  margin-bottom: 1.5rem;
}

.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.2rem, 5.8vw, 4.8rem);
}

/* Header / Hero */
.topbar {
  position: relative;
  z-index: 20;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62) 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: 3.8rem 0 4rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52) 40%, rgba(0, 0, 0, 0.9)),
    url("../../pics/BG.png") center/cover no-repeat;
  filter: saturate(0.8);
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(216, 24, 31, 0.08), transparent 38%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.7;
}

.hero__glow--left {
  top: 4rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(216, 24, 31, 0.22);
}

.hero__glow--right {
  right: -6rem;
  bottom: 2rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.05);
}

.hero__inner {
  display: grid;
  gap: 1.4rem;
  min-height: min(72vh, 760px);
  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: 720px;
  padding: 1.8rem 0;
}

.hero h1 {
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}

.hero__lead {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

/* 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.7);
  outline-offset: 3px;
}

.button--primary {
  background: linear-gradient(90deg, #a5141b, var(--red-bright));
  box-shadow: 0 18px 40px rgba(216, 24, 31, 0.25);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Intro */
.intro__inner {
  display: grid;
  justify-items: center;
}

.intro__text {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  text-align: center;
}

/* Cards */
.packages__grid {
  display: grid;
  gap: 1.1rem;
}

.packages__note {
  margin-top: 0.85rem;
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: center;
}

.packages__note--price {
  max-width: 420px;
  margin: 1rem auto 0;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(7, 7, 9, 0.96)),
    radial-gradient(circle at 50% 0, rgba(216, 24, 31, 0.09), transparent 40%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.package-card::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.15), transparent 30%);
  pointer-events: none;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 24, 31, 0.3);
  box-shadow:
    0 30px 54px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(216, 24, 31, 0.08);
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-card--featured {
  border-color: rgba(216, 24, 31, 0.3);
  transform: translateY(-0.2rem);
}

.package-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  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.16);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card__head {
  position: relative;
  margin-bottom: 1.15rem;
  padding-right: 8.25rem;
}

.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.35rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.package-card__price {
  position: absolute;
  top: 0.1rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-card--featured .package-card__head {
  padding-top: 0;
}

.package-card__badge--floating {
  position: static;
  width: fit-content;
  margin: 0.2rem auto 1.35rem;
}

.package-card__lead {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.package-card__list {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 1.3rem;
  list-style: none;
}

.package-card__list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
  line-height: 1.45;
}

.package-card__list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  box-shadow: 0 0 14px rgba(216, 24, 31, 0.28);
}

.package-card__cta {
  margin-top: auto;
}

/* Comparison */
.comparison-table {
  display: none;
}

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

/* Help */
.guide__grid {
  display: grid;
  gap: 1rem;
}

.guide-card {
  padding: 1.25rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.92), rgba(8, 8, 10, 0.88));
  box-shadow: var(--shadow);
}

.guide-card h3 {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guide-card p {
  color: var(--muted);
  line-height: 1.55;
}

/* Final CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 1.6rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(18, 18, 20, 0.94), rgba(6, 6, 8, 0.96)),
    radial-gradient(circle at 20% 0, rgba(216, 24, 31, 0.16), transparent 30%);
  box-shadow: var(--shadow);
  text-align: center;
}

.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.4rem, 7vw, 4.6rem);
}

.cta-panel p:last-of-type {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.55;
}

.cta-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

/* Responsive breakpoints */
@media (min-width: 700px) {
  .packages__grid,
  .guide__grid {
    grid-template-columns: repeat(2, 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;
  }

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

  .comparison-table {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(15, 15, 18, 0.95), rgba(8, 8, 10, 0.94));
    box-shadow: var(--shadow);
  }

  .comparison-table__header,
  .comparison-table__row {
    display: grid;
    grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(110px, 1fr));
    align-items: center;
  }

  .comparison-table__header {
    background: linear-gradient(90deg, rgba(216, 24, 31, 0.18), rgba(216, 24, 31, 0.04));
    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__row:last-child > span {
    border-bottom: 0;
  }

  .comparison-table__service {
    text-align: left !important;
    color: var(--text);
  }

  .comparison-table__mark {
    color: var(--success);
    font-size: 1.18rem;
    font-weight: 700;
  }

  .comparison-table__mark--muted {
    color: rgba(255, 255, 255, 0.24);
  }

  .comparison-mobile {
    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__actions,
  .cta-panel__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .package-card__head {
    padding-right: 6.1rem;
  }

  .package-card__price {
    font-size: 1.55rem;
  }

  .package-card__badge {
    position: static;
    width: fit-content;
    margin-bottom: 1rem;
  }

  .package-card__badge--floating {
    margin: 0.1rem auto 1rem;
  }
}
